* Fix a bug that makes Alpine not wrap lines correctly in HTML messages
[alpine.git] / pith / pine.hlp
blobce2beef1ecaa56c3be9e553579c7c35929e65213
1 # $Id: pine.hlp 1266 2009-07-14 18:39:12Z hubert@u.washington.edu $
3 #        T H E   A L P I N E    M E S S A G E   S Y S T E M
5 #/* ========================================================================
6 # * Copyright 2013-2016 Eduardo Chappa
7 # * Copyright 2006-2008 University of Washington
8 # *
9 # * Licensed under the Apache License, Version 2.0 (the "License");
10 # * you may not use this file except in compliance with the License.
11 # * You may obtain a copy of the License at
12 # *
13 # *     http://www.apache.org/licenses/LICENSE-2.0
14 # *
15 # * ========================================================================
16 # */
18          Help text for the Alpine mailer
20 This file is in a format created to be turned into text strings in a C
21 program.
23 There are two shell scripts that run on this.  Cmplhelp.sh is the
24 first and turns this into a C file (helptext.c) of text strings that
25 are compiled and linked. The other program, cmplhlp2.sh, turns this
26 into a .h file (helptext.h) with extern string definitions of the
27 strings in the .c file.  The code that actually processes these files
28 while alpine is running is in help.c
30 The lines with "===== xxxx ====" divide the different help screens.  The
31 xxx is the name of the variable that strings will be put in, which are
32 also declared in helptext.h.
34 # is a comment
36 Help text screen text can be either plain text OR HTML.  The latter is
37 denoted by the first line starting with "<HTML>".  The former is simply
38 displayed as it's formatted here.
40 HTML is limited to simple formatting ala HTML 2.0.  No forms, or tables.
41 In addition a small set of tools are are available to customize the HTML
42 screen's text:
44 1a)  Default and function key bindings are separated like this:
46 <!--chtml if pinemode="function_key"-->
47         Function key bindings here
48 <!--chtml else-->
49         Default key bindings here
50 <!--chtml endif-->
53 1b)  A way to distinguish HTML text that is to be displayed when
54      pine is running vs. when the text is served up outside Alpine
55      (someday) can be done via:
57 <!--chtml if pinemode="running"-->
58    Text displayed when viewed within a running pine session
59 <!--chtml else-->
60    Text displayed when HTML viewed outside pine (using chtml aware server)
61 <!--chtml endif-->
63 1c)  A way to distinguish HTML text that is to be displayed under
64      PC-Alpine vs. not is available via:
66 <!--chtml if pinemode="os_windows"-->
67    Text displayed under PC-Alpine
68 <!--chtml else-->
69    Text displayed otherwise
70 <!--chtml endif-->
72 WARNING ABOUT CHTML "if-else-endif" CLAUSES: They don't nest.
74 2a) Several "server side include" commented elements are supported:
76 <!--#include file="textfile"--> 
78 The file "textfile" will be inserted into the HTML text directly.
79 Alpine does no formatting of the text.  At some point we might want to
80 look at the first line for <HTML> but not today.
82 2b) Various bits of Alpine's running state can be inserted into the
83 HTML text as well using the special comment:
85 <!--#echo var="variable"--> 
87 Where "variable" is one of either:
89     ALPINE_VERSION
90     ALPINE_REVISION
91     ALPINE_COMPILE_DATE
92     ALPINE_TODAYS_DATE
93     C_CLIENT_VERSION
94     _LOCAL_FULLNAME_
95     _LOCAL_ADDRESS_
96     _BUGS_FULLNAME_
97     _BUGS_ADDRESS_
98     CURRENT_DIR
99     HOME_DIR
100     PINE_CONF_PATH
101     PINE_CONF_FIXED_PATH
102     PINE_INFO_PATH
103     MAIL_SPOOL_PATH
104     MAIL_SPOOL_LOCK_PATH
105     VAR_<VARNAME> - where <VARNAME> is config variable name
106     FEAT_<FEATURENAME> - where <FEATURENAME> is config feature name
108 3) The URL scheme "X-Alpine-Gripe:" is available to insert links to
109    pine's composer such that various debugging data can be attached to the
110    message. Aside from normal email addresses, this can be set to
111    either "_LOCAL_ADDRESS_" for the configured local help address, or
112    "_BUGS_ADDRESS_" for the configured local bug reporting address.
113    Aside from the special tokens above, the default behavior only differs
114    from "mailto:" by the insertion of a special Subject: prefix that
115    consists of a randomly-generated token for tracking purposes.
116    Several optional parameters can be included to control what is
117    attached or offered for attachment to the message:
119         ?config  --  Automatically attaches the user's configuration
120                      information to the trouble report
121         ?keys    --  Automatically attaches the user's most recent
122                      keystrokes
123         ?curmsg  --  Causes the user to get an offer to attach the
124                      current message to the trouble report
125         ?local   --  Automatically attaches the result of the script 
126                      defined by VAR_BUGS_EXTRAS
128 For HTML-format sections, the help screen dividers  "===== xxxx ====" must 
129 contain one and only one space after the first and before the second set of 
130 equal signs.
132 Note to authors of this file: to mark sections that need further revision, 
133 please use the text string on the following line consistently so that it is 
134 easy to find those places again in this file:
135 *revision needed*
137 NOTE: Several sections of help text which weren't being used were removed
138 at RCS version number 4.122.  In particular, there were some placeholders
139 with help text for the config screen and the composer that didn't have any
140 reasonable place to be called from.
141 Dummy change to get revision in pine.hlp
142 ============= h_revision =================
143 Alpine Commit 116 2015-12-14 19:09:59
144 ============= h_news =================
145 <HTML>
146 <HEAD>
147 <TITLE>RELEASE NOTES for Alpine</TITLE>
148 </HEAD>
149 <BODY>                 
150 <H1>Alpine Release Notes</H1>
151 <DIV ALIGN=CENTER>
152 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
153 <BR>
154 <!--chtml if pinemode="running"-->
155 (built <!--#echo var=ALPINE_COMPILE_DATE-->)
156 <!--chtml endif-->
158 <BR>
159 <BR>Copyright 2013-2016 Eduardo Chappa
160 <BR>Copyright 2006-2008 University of Washington
161 </DIV>
164 Alpine is an &quot;Alternatively Licensed Program for Internet
165 News and Email&quot; produced until 2009 by the University of Washington.
166 It is intended to be an easy-to-use program for
167 sending, receiving, and filing Internet electronic mail messages and
168 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
169 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
170 is available as is a world wide web based version designed to run under the
171 Apache web server.
174 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
176 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
177 addresses bugs found in previous releases and has a few additions as well.
180 Additions include:
181 <UL>
182   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
183        user to choose the dictionary used to spell, in case the user 
184        communicates in more than one language. Examples of values for the 
185        variable are "en_US" or "de_DE", etc. Only the first 10 
186        dictionaries are offered.
188   <LI> Added support for RFC 2971 - IMAP ID extension.
190   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
191        that allows users to ignore errors in the computation of the size
192        of a message from defective servers.
194   <LI> Ignore message from smtp server after a successful authentication
195        challenge.
197   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
198        SSLCERTSDIR is not found.
200   <LI> When Alpine sends an attachment, it will set the boundary attribute
201        in lower case, as some SMTP servers, such as those of libero.it 
202        reject messages if the boundary attribute is in uppercase.
204   <LI> Add the ability to change the private key and certificates used
205        to encrypt a password file in the SMIME setup configuration screen.
206        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
208   <LI> SMIME: The ctrl-E command that gives information on the certificate
209        is only available for messages that have a signed or encrypted 
210        part.
212   <LI> SMIME: If a message contains a RFC822 attachment that is
213        signed/decrypted add the ability to view its SMIME information.
215   <LI> SMIME: Certificate information in the S/MIME screen is available 
216        for certificates stored in a container.
218   <LI> SMIME: Offer the common name of the person, instead of the name of
219        file containing the certificate, as the name to be displayed in the 
220        certificate management screen for certificate authorities. 
221        Suggested by Matthias Rieber.
223   <LI> SMIME: Management of several alternate name (SAN) certificates is 
224        improved. When importing a SAN certificate, also import a certificate
225        for the filename, besides for the e-mail addresses in the
226        certificate. Suggested by Matthias Rieber.
228   <LI> SMIME: add full year when displaying information about a certificate
229        in the certificate management screen. Suggested by Matthias Rieber.
231   <LI> SMIME: sort certificates by some type of alphabetical order in the
232        displayed name.
234   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
235        certificates included in signatures, when the option "Validate 
236        Using Certificate Store Only" is enabled. If the user does not wish 
237        to save it, validation will fail.
239   <LI> HTML: Add support for decoding entities in hexadecimal notation.
240        Suggested by Tulip&aacute;nt Gergely.
242   <LI> If the charset of a message can not be determined, use the value set
243        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
245   <LI> Resizing setup screen will redraw screen.
247   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
248        in the width ambiguous zone, it will use other means to determine
249        the width, such as call wcwidth.
251   <LI> Pico: Code reorganization in the search command to make it easier to
252        add subcommands of the search command.
254   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
255        subcommand of the search command to bring this choice into view.
257   <LI> Pico: Add the ability to search for strings in the beginning or end
258        of a line. Use the Ctrl-^ subcommand of the search command to bring 
259        this choice into view.
261   <LI> For a multipart/alternative message, the Take Address command will 
262        work on the part that is being read.
264   <LI> When sending a message, allow for 512 characters of consecutive 
265        non-white space before folding the subject line.
267   <LI> Make sure titlebar (the line at the top of the screen) always 
268        contains the name of the folder/newsgroup that is open, if this 
269        fits in the title.
271   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
272        will also scramble the name, version and operative system in the message-id header. 
273        Based on a contribution by Dennis Davis, which is itself based on a contribution by 
274        Mark Hills.
276   <LI> Change in logic in imap_set_password function to make Alpine ask if
277        a user wants to save a password before reading the password file.
279   <LI> Add the Control-R subcommand to the save command for attachments. 
280        This subcommand toggles if the saving will be done in binary mode 
281        for text attachments. When a user saves an attachment using binary
282        mode it will be saved as it was sent, otherwise the attachment will
283        be transformed to UTF-8 for further transformation through internal
284        and user defined filters for saving.
286   <LI> Add command line argument -smimedir, which allows to specify
287        the default path for a directory that contains the public, private, 
288        and ca directories. This is useful in case a user has a backup of 
289        old certificates that cannot be installed in the ~/.alpine-smime 
290        dir.
292   <LI> Reimplementation of the code that allows the .pinerc file to be a
293        symbolic link by Kyle George from tcpsoft.com to use realpath.
295   <LI> When saving an attachment, the "^T" command leads to a screen where the
296        "A" command can be used to add a file. A directory can be added by
297        pressing "^X" after the "A" command. Added after a suggestion by
298        Stefan Goessling.
300   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
301        scroll through the history of directories used to save attachments, 
302        while preserving the given name of the file. Suggested by Peter 
303        Koellner.
305   <LI> SMIME: Turn off automatic signing and encrypting of a message when
306        bouncing. Suggested after a discussion with Matthias Rieber.
307 </UL>
311 Bugs that have been addressed include:
312 <UL>
313   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
314        Alpine will use the function ASN1_TIME_print to determine the date 
315        of validity. Reported by Ben Stienstra.
317   <LI> SMIME: Crash when attempting to unlock the password file and an
318        incorrect password is entered.
320   <LI> SMIME: Crash when checking the signature of a message that contains
321        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
322        Krellner.
324   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
326   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
327        remote containers. Reported by Matthias Rieber.
329   <LI> SMIME: certificates included in messages were not being transferred
330        to a remote container.
332   <LI> SMIME: Crash if public certificates are located in an inaccessible
333        remote server and the private key is not available.
335   <LI> SMIME: Alpine does not remove temporary files created when adding a 
336        CA certificate to a container. Reported by Holger Trapp.
338   <LI> SMIME: When reading a local certificate, Alpine converts the name 
339        of the certificate to lowercase, which may make Alpine not be able 
340        to read such certificate. Reported by Dennis Davis.
342   <LI> Crash when attempting to read a message after a bounce command. 
343        In order to produce a crash one needed to use the ^T subcommand and 
344        do a search in a LDAP directory. The crash is produced by changes 
345        to the text in the title bar. Reported by Heinrich Mislik in the 
346        Alpine-info list.
348   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
349        making Alpine not display the correct character at the position 
350        that wrapping is done.
352   <LI> Pico: Searching for a string that is too long causes Pico to crash
353        in the next search.
355   <LI> Fix vulnerability in regex library. This only affects those who use
356        this library, such as the windows version of Alpine. See 
357        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
358        for more details.
360   <LI> Alpine would not set include and lib paths for OpenSSL if this was
361        installed in /usr/local/ssl.
363   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
364        contents when saving its configuration.
366   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
367        the name. Reported by Andreas Fehr.
369   <LI> Mismatch in size of UCS and CELL caused a corruption in the
370        content of a pointer, which made the speller in PC-Alpine get the 
371        content of a word incorrectly.
373   <LI> Skip testing openssl compatibility version when cross-compilation
374        is detected. Fix contributed by Antti Sepp&auml;l&auml;
376   <LI> Alpine fails to remove temporary files used during a display or sending
377        filter. Fix contributed by Phil Brooke.
379   <LI> When the index is in zoomed state, adding new messages to the 
380        selection would not show those messages if those messages are on 
381        top of the current message in the top of the screen. Reported by
382        Ulf-Dietrich Braumann. In addition, when the user scrolls through
383        the index, this scroll smoothly, without jumping pages. Reported
384        by Holger Trapp.
386   <LI> Crash when reviewing history of saving attachments.
388   <LI> Crash in Pico when forwarding messages that contain a direction mark
389        at the end of a line. Reported by James Mingo.
391   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
392 </UL>
396 Version 2.20 addresses bugs found in previous releases and has several 
397 additions as well.
400 Additions include:
403 <UL>
404   <LI> Upgrade UW-IMAP to Panda IMAP from 
405        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
406   <LI> S/MIME: Add screen to manage certificates.
407   <LI> S/MIME: Signatures are validated using the user's certificates instead
408        of the ones included in the message. Behavior can be disabled by
409        disabling the option <A href="h_config_smime_use_cert_store">
410         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
411        by default.
412   <LI> S/MIME: sign messages using intermediate certificates when needed 
413        and possible.
414   <LI> S/MIME: validation of certificates for servers that modify signed 
415        content.
416   <LI> S/MIME: signed and encrypted messages will be signed first and 
417        encrypted second, so that they can be decoded by other clients.
418   <LI> S/MIME: add the sender certificate to the list of certificates in
419        encrypted messages to make it possible for the sender to decrypt
420        the message they sent.
421   <LI> S/MIME: When transferring certificates to a local container, create 
422        container with default names PublicContainer, PrivateContainer and 
423        CAContainer, as appropriate for these files, unless the user has 
424        provided some other names.
425   <LI> S/MIME: Forwarding a message will include the signed part as part
426        of the text and not as a multipart message, just as the reply
427        command does.
428   <LI> HTML: Style tag in body of html message causes Alpine to not write
429        its content until a new &lt;/style&gt;
430   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
431        the same inline tag; the same is valid for the &lt;HR&gt; tag.
432   <LI> Add support to selective expunge through a subcommand of the 
433        select-apply commands. Read more in the <A 
434        HREF="h_index_cmd_expunge">help</A> for the expunge command.
435   <LI> Pico: New subcommand of the search command, allows to reverse the
436        direction of search.
437   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
438        the key and certificate used to encrypt the password file are saved 
439        in the ~/.alpine-smime/.pwd directory, or in the directory specified
440        by the -pwdcertdir command line option. 
441        <A HREF="h_password_file_support">Learn more</A>.
442   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
443        server to use different ways to connect using ssl, for 
444        example {server.com/tls1} will attempt to connect to 
445        server.com at the ssl imap port (port 993) and establish a 
446        connection using TLSv1. These flags can be used in 
447        conjunction with the /ssl flag, the ssl flag is redundant. 
448        Conversely, however, the /ssl flag does not imply any of 
449        these flags; the /ssl flag means SSLv3 or, if not available, 
450        SSLv2 in the SSL port.
451   <LI> Alpine does not attempt to automatically reopen a collection 
452        that was not opened due to cancellation by the user. 
453        Instead, the user must try to open it explicitly.
454   <LI> Alpine searches for a certificate that matches an email address in
455        all addresses in a certificate (instead of just the first 
456        one) but when it tries to unlock the certificate, it asks 
457        for the password for the first email address in that 
458        certificate.
459   <LI> Style tag in body of html message causes Alpine to not write its content
460        until a new &lt;/style&gt;
461   <LI> Experimental: Write the content-type of a message in 
462        lowercase, as some non-compliant servers do not understand 
463        uppercase content-type, such as those of GMX.de.
464   <LI> Experimental: Do not send the RSET command before attempting
465        to send a message, as this causes a delay in some evily managed
466        servers.
467   <LI> Opening a folder updates recent count in maildrops (this 
468        already works for other types of folders)
469   <LI> Automatically redraw screen after opening an attachment 
470        instead of simply clearing it.
471   <LI> Pico: Justification works without need of a predefined quote 
472        string. This allows justification of blocks of text that are 
473        indented with spaces.
474   <LI> Decode the name of attachment names, so they can be written as part   
475        of the description of the part. 
476   <LI> Check bounds and tie strings off to improve security. Contributed 
477        by James Jerkins.
478   <LI> Replace tabs by spaces in From and Subject fields to control for
479        size in screen of these fields. Change only in index screen display.
480   <LI> Aggregate operations allows bouncing a list of messages using a role.
481        Suggested by Ulf-Dietrich Braumann.
482   <LI> Disable saving new passwords to the password file. Implemented
483        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
484   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
485      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
486      Charles M. Register.
487 </UL>
491 Bugs that have been addressed include:
492 <UL>
493   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
494        in personal names. Reported by Lev Gorenstein.
495   <LI> When writing the .pinerc file, lines were truncated if they were longer
496        than 10,000 characters. This could cause data corruption, so now lines
497        are allowed to be of any length.
498   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
499        remove attachments before they were open by a mailcap viewer. It 
500        requires that the user has an equivalent to a command such as "ps 
501        auxww" to list the list of processes, and check if there is any 
502        program using the attachment. The default is "/bin/ps auxww", but 
503        it can be changed at compile time with the option --with-ps-cmd. 
504        See the help of the variable 
505        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
506        for more information.
507   <LI> S/MIME: signed messages that contained an attachment would not validate.
508   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
509        validate. Thanks to Andreas Schamanek for testing, debugging and 
510        advising during the process of fixing this problem.
511   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
512        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
513        and Stefan Mueller.
514   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
515        home directory.
516   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
517        SMIME making it not possible to sign or encrypt messages.
518   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
519        information that is not part of the body, and hence making the body
520        of the message seem wrong.
521   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
522        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
523        enabled, the message contains 8bit characters and the smtp server 
524        supports 8bit sending.
525   <LI> When replying to several messages, subject will be decoded first,
526        and then stripped from re/fwd before they are compared to determine
527        the subject of the replied message.
528   <LI> Crash when tcp connection to NNTP server was lost after connection
529        had been established, but lost immediately afterwards.
530   <LI> Crash with message &quot;lock when already locked&quot;, when painting
531        an index was based on scores that needed information from a remote
532        addressbook in the same server as the folder opened. Reported by
533        Peter Koellner.
534   <LI> Crash in message/rfc822 attachments encoded in base64.
535   <LI> Postponed messages whose content-type is text/html, text/enriched and
536        text/richtext are sent with that content-type, even though, after
537        resuming composition, Alpine had changed its type to text/plain.
538   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
539        character set, which might lead to a crash or a corruption in the 
540        screen. Work was done to contain the bug. A more complete fix will 
541        be done in a future release. Reported by Professor Robert Funnell.
542   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
543   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
544   <LI> Save command did not warn of existence of a message with a deleted 
545        attachment in an aggregate save, unless cursor was positioned on a message 
546        with a deleted attachment. Reported by Florian Herzig.
547   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
548        in an IMAP server.
549   <LI> DATE tokens were not internally transformed to UTF-8, which made their
550        values not appear complete in the screen. Reported by Werner Scheinast.
551   <LI> Fixes to configure script so that it will not require PAM for every system.
552   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
553        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
554        during the build. Fix by Ulf-Dietrich Braumann.
555   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
556        needs to use tcl_getstringresult() instead. Reported by 
557        Ulf-Dietrich Braumann.
558   <LI> Quoted string in URL Viewers configuration variable were not 
559        unquoted before passing to viewer.
560   <LI> Fix in configure script to detect location of tcl library; add
561        /usr/local in FreeBSD and fix a bug in configure script that used 
562        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
563        by Werner Scheinast.
564   <LI> Move SSL configurations from UW-IMAP to configure script, and
565        update OpenSSL configuration for Mac OS X.
566   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
567   <LI> When the download of an attachment is interrumpted, Alpine stills
568      caches what was downloaded, making the download incomplete for 
569      subsequent calls of Alpine attempting to open the attachment. In the 
570      future, Alpine will not cache any downloaded part of the attachment 
571      when it is interrupted.
572 </UL>
577 Version 2.11 addresses bugs found in previous releases and has a few 
578 additions as well.
581 Additions include:
584 <UL>
585    <LI> Alpine requires version 1.0.0c of Openssl to build.
586    <LI> Increase encryption of S/MIME encrypted messages.
587    <LI> Pico: Improvements in justification of paragraphs: lines that begin
588 with a quote string, followed by a space were considered individual paragraphs,
589 now they are considered part of a paragraph. Based on earlier joint work
590 with Jeff Franklin.
591    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
592    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
593 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
594    <LI> Added recognition of ws and wss URIs.
595    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
596  <A HREF="h_config_directory_color">directory names</A>,
597  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
598    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
599 used in the display of the INDEX SCREEN.
600    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
601 that adds the ability to preserve To: and Cc: fields when replying to a 
602 message, as specified by original sender.
603    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
604  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
605    <LI> Quota command includes subcommands for printing, forwarding, etc.
606 </UL>
609 Bugs that have been addressed include:
611 <UL>
612   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
613   <LI> Crash when resizing the screen in a configuration screen.
614   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
615   <LI> Do not use a shell to open a browser.
616   <LI> Configure script did not test for crypto or pam libraries.
617   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
618   <LI> Change Cygwin directory separator to &quot;/&quot;.
619   <LI> Alpine could set List- headers, contrary to RFC 2369.
620 </UL>
623 Version 2.10 addresses bugs found in previous releases and has a few 
624 additions as well.
627 Additions include:
630 <UL>
631    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
632    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
633    <LI> Foreign characters are decoded correctly in IMAP folder names.
634    <LI> Question about breaking connection to slow servers includes their name.
635    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
636    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
637    <LI> Cygwin: Alpine builds without need of patch.
638    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
639    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
640    <LI> Add support for strong encryption of password file when S/MIME is built in.
641 </UL>
644 Bugs that have been addressed include:
647 <UL>
648    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
649    <LI> Double allocation of memory in Pico.
650    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
651    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
652    <LI> Not recognition of environment variables in some options.
653    <LI> Not display of login prompt during initial keystrokes.
654    <LI> justification of long urls breaks them.
655    <LI> Incorrect New Mail message when envelope is not available.
656    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
657    <LI> Crash when resizing the screen after display of LDAP search.
658    <LI> Crash when redrawing screen while opening a remote folder collection.
659    <LI> Infinite loop in scrolltool function during notification of new mail.
660    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
661    <LI> No display of signed and encrypted S/MIME messages.
662    <LI> Alpine will not build with OpenSSL.
663    <LI> Crash for double locking in calls to c-client.
664    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
665    <LI> Ignore the references header when threading messages
666    <LI> No update of colors in index screen after update to addressbook.
667 </UL>
670 Version 2.01 addresses bugs found in previous releases and has a few 
671 additions as well.
674 Additions include:
677 <UL>
678    <LI> Fixed non-ASCII web alpine handling
679    <LI> Added web alpine help.
680    <LI> Allow web alpine inbox on second IMAP server.
681    <LI> Allow web alpine config reset after bad inbox-path gets set.
682    <LI> Added web alpine ability to create group contact from contact list members.
683    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
684    <LI> Tidied up web alpine script layout.
685    <LI> Fixed web alpine status message ordering
686    <LI> Added web alpine Fcc setting via Contacts in Compose
687    <LI> Fixed web alpine autodraft attachment issues
688    <LI> Fixed web alpine problems with recent count maintenance
689    <LI> Fixed web alpine newmail arrival display in message list
690    <LI> Added web alpine confirmation to folder create for Move/Copy
691    <LI> Added web alpine user-domain support
692    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
693 </UL>
696 Bugs that have been addressed include:
699 <UL>
700    <LI> In web alpine fixed delete all selected within a search result to reorient
701         correctly to whole-mailbox message list.
702    <LI> Fixed web alpine delete in view page to be sensitive to sort
703    <LI> Fixed web alpine open of folder within directory from folder manager page.
704    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
705    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
706    <LI> Fixed web alpine adding contacts from message list and view
707    <LI> Fixed web alpine create of non-existent fcc
708    <LI> Remove mistakenly left debugger statement in web alpine javascript.
709    <LI> Some UNIX alpine build problems fixed
710    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
711         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
712         by locale charmap call on some Solaris 8 systems.
713    <LI> MacOS Keychain logins were not working correctly with generic host names, like
714         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
715         new password requests when not needed
716    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
717         last folder in the list
718    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
719         looked for along with the email address
720    <LI> Changes to configure to get spellcheck options with work with arguments.
721    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
722         returned by gethostname (iPhone can do this)
723    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
724         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
725    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
726         Jake Scott of marganstanley.com.
727    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
728         is not used in alpine.
729    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
730         Apparently this causes RIM Blackberry BIS service problems. This is not
731         used in alpine.
732    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
733    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
734         Fix from Ludwig Nussel of SUSE and from Crispin.
735    <LI> Include whole filename in export filename history
736    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
737 </UL>
740 Version 2.00
741 addressed bugs found in previous releases and had a few additions as well.
743 Additions included:
746 <UL>
747    <LI> Redesigned Web Alpine interface
748    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
749         in UNIX versions of Alpine
750    <LI> Attempt to include the attachment filename as part of the name of the
751         temporary file used when viewing an attachment with an external program.
752         Add some randomness to that filename to make it hard to predict the filename.
753         Add a filename extension, usually derived from the type/subtype, to the
754         temporary filename. This was previously done only on Windows and MacOS X.
755    <LI> Enhance address completion in the composer (TAB command) so that it looks
756         through nicknames, fullnames, and addresses from the address book; addresses
757         from the message being viewed, if any; and the results from
758         <A HREF="h_direct_config">LDAP Directory Server</A>
759         lookups for all of the defined directory servers that have the
760         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
761         feature set.
762    <LI> Make the default character set setting more liberal in what it will accept
763         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
764    <LI> Remove the Alpine revision number from the titlebar in released versions
765         while leaving it there in snapshot versions
766    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
767         display of asterisks when you type a password for Alpine
768    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
769    <LI> When the
770         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
771         feature is turned on convert not only the dates in the index screen but also
772         the dates in the MESSAGE VIEW
773 </UL>
776 Bugs addressed in the 2.00 release included:
779 <UL>
780    <LI> Crash when using tab-completion for selecting a Save filename
781    <LI> Make Web Alpine help text images relative for more portability
782    <LI> Fixed attach save of html parts in Web Alpine
783    <LI> Viewing, printing, exporting, replying, and bouncing of message
784         digests was broken. Replying and bouncing should not have been
785         allowed at all for digests. It would be nice to have a more standard
786         index-like view of a message digest but that has not been addressed
787         with this minor bug fix.
788    <LI> Adjust wrapping of HTML messages so that the margins specified by
789         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
790         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
791         are observed correctly
792    <LI> Interrupt of WhereIs command in index was broken
793    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
794         option did not work correctly interpreting unknown characters in message headers
795    <LI> Long address lines could cause blank continuation lines
796    <LI> Save to a local default INBOX failed if the primary collection was also local,
797         which it is by default. The save went to  ~/mail/inbox instead.
798    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
799         inbox, not the inbox in the primary collection
800    <LI> Address book entries with lots of addresses would be truncated when
801         entered in the composer with a screen size wider than 270 or so charcters
802    <LI> Some fields in the index screen were truncated when the screen width was
803         wider than 256 characters
804    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
805         folder, and there is a more than 10 minute pause between typing the TAB
806         and typing the Yes
807 </UL>
810 Version 1.10(962)
811 addressed bugs found in previous releases and had a few additions as well.
813 Additions included:
816 <UL>
817    <LI> Add the possibility of setting a default role
818         (see <A HREF="h_role_select">Roles Screen</A>)
819         which may be convenient if your work flow involves acting in one
820         role for a while then switching to another role and staying in the
821         new role for another period of time
822    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
823         is encountered, ask the user if he or she wants to continue with the
824         risky Save anyway instead of aborting. This may be helpful if your
825         IMAP server is broken in this way but be aware that it is possible there
826         was a real error instead of just a broken server implementation.
827    <LI> Some configure adjustments for Kerberos detection and
828         for SCO OpenServer 5 support
829    <LI> Hide INBOX in a collection if it also appears as an
830         <A HREF="h_config_enable_incoming">Incoming Folder</A>
831    <LI> Show asterisks for feedback when the user is typing a password
832    <LI> Performance improvement for threading of large folders
833    <LI> Previously, the search used to find
834         Pattern matches containing To patterns searched for both To
835         and Resent-To headers. The relatively complicated search this
836         produces causes problems when using some deficient IMAP servers.
837         Now the default is to look only for To headers and ignore the
838         presence of Resent-To. The previous behavior may be restored
839         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
840    <LI> Add an
841         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
842         to help with reading malformed unlabeled messages
843    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
844    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
845    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
846 </UL>
849 Bugs addressed in the 1.10(962) release included:
852 <UL>
853    <LI> Crash when encountering certain errors from an SMTP server
854    <LI> Crash in composer caused by overflow in replace_pat()
855    <LI> Hang when authenticating to an SMTP server that fails with a
856         &quot;connection disconnected&quot; error
857    <LI> Bug in handling of trailing tab character in flowed text
858    <LI> Security enhancement for mailcap parameter substitution
859    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
860         did not work if the message being replied to was not flowed text
861         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
862         was not turned on
863    <LI> Don't allow printer to be changed through hidden config screen
864         if system administrator didn't want it to be allowed
865    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
866         should know that it won't work, causing error messages to appear
867    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
868         of double-quote double-quote didn't work right
869    <LI> Quoting wasn't being done to protect special characters from the
870         MacOS X shell when
871         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
872         was not defined
873    <LI> On MacOS X message attachments should be shown internally instead of
874         being shown using the Mail application
875    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
876         sometimes set the outgoing charset to X-UNKNOWN, making the result
877         unreadable
878    <LI> When the sending of a message failed lines with leading spaces had one
879         additional space inserted in each of those lines when the user
880         was returned to the composer
881    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
882         that contained non-ascii characters because it was truncating the
883         line being searched so that it was shorter than what was visible on
884         the screen
885    <LI> When composing, an attachment with a long name that causes wrapping in
886         just the wrong place would generate an error and cause the send
887         of the attachment to fail
888    <LI> After calling the file browser to attach a file in the composer, a resize
889         of the window when back in the composer would redraw the last screen that
890         had been shown in the browser instead of the current composer screen
891    <LI> Possible crash in index screen when encountering unparseable addresses
892         or when using one of the PRIORITY tokens or the HEADER token in the
893         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
894    <LI> Problems with Header Color editing if the configuration option
895         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
896         was inadvertently changed to the Empty Value in the hidden config screen
897    <LI> When resuming the final postponed message from an Exchange server the user
898         could get a certificate validation failure because alpine was trying
899         to validate the canonical name of the folder instead of the name the
900         user used
901    <LI> Windows line endings in a mimetypes file on a Unix system cause a
902         failure to find a match
903    <LI> Make matching of extension names case independent in mimetypes files
904    <LI> Windows dialog boxes for entering text were not working correctly
905    <LI> Replying to or Forwarding multipart/alternative messages which had a
906         single text/html part did not work well
907    <LI> Printing the print confirmation page caused a crash
908    <LI> A To line with a long, quoted personal name could display incorrectly
909         if it was close to the same width as the screen
910    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
911         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
912         are turned on hide (0/0) when the folder is empty
913    <LI> Folder completion while Saving didn't work if the collection being
914         saved to was the local home directory
915 </UL>
918 Version 1.00
919 was an evolutionary release based on
920 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
921 developed at the University of Washington.
922 It is upwards-compatible for existing Pine users.
925 Changes included:
927 <UL>
928    <LI> Ground-up reorganization of source code around addition
929         of "pith/" core routine library.
930    <LI> Fundamental improvement in Alpine's internal text handling, which
931         is now based exclusively on Unicode. This allows displaying incoming
932         messages and producing outgoing messages in many different languages.
933    <LI> Ground-up reorganization of build and install procedures
934         based on GNU Build System's autotools. NOTE, the included IMAP library
935         build is not based on autotools, so some features will not work. However,
936         it should get built automatically during the Alpine build process.
937    <LI> Web-based version included built on TCL designed to run under
938         a suitable CGI-supporting web server such as Apache.
939 </UL>
943 Details on changes in previous (prerelease) versions of Alpine
944 may be found at the following URL:
946 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP></CENTER>
949 <HR WIDTH="75%"><P>
951 <H2>Getting Help</H2>
952 <DL>
953 <DT>Online Help</DT>
954 <DD>
955 Every Alpine screen and command has associated help text
956 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
957 </DD>
959 <DT>Web Help</DT>
960 <DD>
961 The most current source of information about Alpine,
962 including new version availability, is the web page at
964 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></SAMP></CENTER>
965 </DD>
966 </DL>
968 Frequently Asked Questions (and answers) may be found at the following
969 URL:
971 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
974 <HR WIDTH="75%"><P>
976 <H2>Additional Information</H2>
978 General Alpine configuration information can be found
979 <A HREF="h_news_config">here</A>.
981 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
982 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
983 access is provided by the IMAP Toolkit Environment (c-client library)
984 version <!--#echo var="C_CLIENT_VERSION"-->.
985 <P> 
986 Alpine was developed until 2009 by the Office of Computing 
987 &amp; Communications at the University of Washington in Seattle.  
988 Since then, the effort of developing Alpine has been continued by
989 a community of volunteers who make good software even better!
992 Alpine Copyright 2013-2016 Eduardo Chappa, 
993 <BR> Copyright 2006-2008 University of Washington.
996 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
997 or instead you can find the Apache License, version 2.0 at the web URL:
1000 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1003 &lt;End of Release Notes&gt;
1004 </BODY>
1005 </HTML>
1006 ====== h_password_file_support ======
1007 <HTML>
1008 <HEAD>
1009 <TITLE>Encryption for Password File Support Explained</TITLE>
1010 </HEAD>
1011 <BODY>
1012 <H1>Encryption for Password File Support Explained</H1>
1014 Index<BR>
1015 <OL>
1016 <LI><A HREF="#content">Explanation</A>
1017 <LI><A HREF="#example">Example</A>
1018 </OL>
1020 <P><A NAME="content">Unix Alpine Only.</A>
1022 <P> If your version of Alpine has been built with password file support
1023 then you can use a special file to save your passwords, and avoid typing
1024 them every time you open a connection to a remote server.
1026 <P> If your version of Alpine was built with SMIME support, and you have a
1027 public certificate/private key pair, then Alpine will use such pair to
1028 encrypt your password file. If you have more than one key/certificate
1029 pair, Alpine will pick the first pair that it finds that works. You can also
1030 select a pair, and the way to do this is explained below.
1032 <P> Once a pair has been chosen, it will be copied to the directory 
1033 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1034 that directory. The first time this process is done, this directory will 
1035 be created, a key/certificate pair will be copied to it, and this pair 
1036 will be used in the future to encrypt and decrypt your password file. You 
1037 can create this directory and copy any key/certificate pair there. You
1038 can add a self-signed certificate there, if you like, and you can let
1039 this certificate expire. This will not affect the encryption and decryption
1040 of the password file.
1042 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1043 your key/certificate pair, you can specify a different one with the 
1044 -pwdcertdir command line option in Alpine. If the directory specified by 
1045 this option is not found or there is no valid key/certificate pair there, 
1046 Alpine will fail to encrypt and decrypt your password file. In other words,
1047 Alpine will not initialize this directory for you.
1049 <P> Alpine does not care about the names of the key and certificates in 
1050 this directory, but the private key must have &quot;.key&quot; extension 
1051 and your public certificate must have the &quot;.crt&quot; extension. The
1052 name of the private key will be used in the prompt when you are asked
1053 to unlock your key to decrypt your password.
1055 <P><A NAME="example">An example follows</A>
1057 <P>Assume you have a private key called peter@address.com.key in your, 
1058 ~/.alpine-smime/private directory, and a public certificate called 
1059 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1060 are your only key/certificate pair.
1062 <P> When Alpine starts for the first time, without command line options, 
1063 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1064 it will create it. Then it will go through your keys and certificates and 
1065 find a pair that it can use, and copy the files peter@address.com.key,
1066 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1067 you can do the same by copying these files by yourself. This can be done
1068 with the sequence of commands
1070 <PRE>
1071 mkdir ~/.alpine-smime/.pwd
1072 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1073 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1074 </PRE>
1076 <P> When Alpine starts, you will be asked the password to unlock your
1077 private key with the prompt.
1079 <PRE>
1080 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1081 </PRE>
1083 <P> If you prefer to use different names for your private and public keys 
1084 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1085 preserve the extension of the files. For example, you can use the names 
1086 private_key.key and public_cert.crt instead. In this case, the prompt you 
1087 will see when you are asked to unlock your private key will read
1089 <PRE>
1090 Enter password of key &lt;private_key&gt; to unlock password file:
1091 </PRE>
1093 <P>Observe that you do not need to use an existing key/certificate pair, 
1094 and that you can create a new private key/public certificate pair to 
1095 encrypt and decrypt your password. However, once one is used, Alpine does 
1096 not provide a mechanism to switch the encryption and decryption files to 
1097 another key/certificate pair. This will be implemented in a future 
1098 release of Alpine.
1101 &lt;End of help&gt;
1102 </BODY>
1103 </HTML>
1104 ====== h_tls_failure_details ======
1105 <HTML>
1106 <HEAD>
1107 <TITLE>Certificate Validation Details</TITLE>
1108 </HEAD>
1109 <BODY>
1110 <H1>Certificate Validation Details</H1>
1112 This screen gives details as to why the certificate validation failed: the
1113 name of the desired server system; the reason for failure; and the name on
1114 the certificate.  This is primarily of interest to experts.
1117 &lt;End of help&gt;
1118 </BODY>
1119 </HTML>
1120 ====== h_tls_failure ======
1121 <HTML>
1122 <HEAD>
1123 <TITLE>TLS or SSL Failure</TITLE>
1124 </HEAD>
1125 <BODY>
1126 <H1>TLS or SSL Failure</H1>
1128 An attempt was made to establish a secure, encrypted connection to the
1129 server system using either Transport Layer Security (TLS) or the older
1130 Secure Sockets Layer (SSL).  This attempt failed.
1133 You should contact your server system management for more assistance.
1134 The problem is probably at the server system and not in Alpine or your local
1135 system.  The text in this screen may be helpful for the server system
1136 management in debugging the problem,
1139 &lt;End of help&gt;
1140 </BODY>
1141 </HTML>
1142 ====== h_tls_validation_failure ======
1143 <HTML>
1144 <HEAD>
1145 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1146 </HEAD>
1147 <BODY>
1148 <H1>TLS and SSL Certificate Validation Failures</H1>
1150 An attempt was made to establish a secure, encrypted connection to the
1151 server system using either Transport Layer Security (TLS) or the older
1152 Secure Sockets Layer (SSL).
1155 An important part of this procedure is server certificate validation.  A
1156 server certificate is an &quot;electronic identification card&quot; for the server
1157 system that is signed by a well-known certificate authority (CA).  Alpine
1158 compares the server system identity in the server certificate with the
1159 name of the server system to which it is trying to connect.  Alpine also
1160 verifies that the CA signature is authentic.
1163 Some common failure conditions are:
1166 <UL>
1167   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1168 signed its own certificate.  This does not necessarily indicate anything
1169 bad; the server operators may simply have elected to not purchase a
1170 signed certificate from a certificate authority.
1172   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1173 the signature on the server system is from an unknown certificate authority.
1174 It can also mean that no certificate authority certificates have been
1175 installed on the local UNIX system.
1177   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1178 the same as either of the above two conditions in UNIX Alpine.  Note that
1179 Windows systems typically have a full set of certificate authority
1180 certificates installed, so it is more likely to be a self-signed
1181 certificate than an unknown certificate authority.
1183   <LI> Server name does not match certificate.  This means that the server
1184 presented a proper signed certificate for a name other than the desired
1185 name.
1186 </UL>
1189 Any of these conditions can indicate that you are being attacked and have
1190 been directed to an imposter server that will record your password and
1191 your private mail messages.  It can also mean something innocuous.
1194 If you are certain that the problem is innocuous, you can append the
1195 option
1198 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1201 to the server system name where it appears in your configuration (e.g. the
1202 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1203 a folder-collection, or a news or SMTP server).  This will
1204 disable certificate validation.  On the other hand, if you are attacked,
1205 you will get no warning if you do this.
1208 &lt;End of Cert Validation Failures help&gt;
1209 </BODY>
1210 </HTML>
1211 ====== h_release_tlscerts ======
1212 <HTML>
1213 <HEAD>
1214 <TITLE>TLS and SSL usage note</TITLE>
1215 </HEAD>
1216 <BODY>
1217 <H1>TLS and SSL usage note</H1>
1220 When using Alpine from Unix or Windows 2000,
1221 server certificates must be signed by a trusted certificate authority.
1222 You may relax this requirement (at the cost of some security) by using
1224 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1225 modifier in the mailbox name.
1228 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1231 The fully-qualified host name of the server should be used
1232 so that it matches the host name in the server certificate.
1234 Here is an example of a host specification that directs Alpine to use
1235 the SSL port (993) and an encrypted data stream.
1237 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1239 &lt;End of TLS usage help&gt;
1240 </BODY>
1241 </HTML>
1242 ====== h_news_config ======
1243 <HTML>
1244 <HEAD>
1245 <TITLE>Alpine Configuration</TITLE>
1246 </HEAD>
1247 <BODY>
1248 <H1>Alpine Configuration</H1>
1250 <H2>Using Environment Variables</H2>
1252 The values of Alpine configuration options may include environment variables
1253 that are replaced by the value of the variable at the time Alpine is run
1254 (and also at the time the config option is changed).
1255 The syntax to use environment variables is a subset of the common Unix
1256 shell dollar-syntax.
1257 For example, if
1259 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1261 appears in the value of an Alpine configuration option it is looked up in the
1262 environent (using getenv(&quot;VAR&quot;)) and its
1263 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1264 To include a literal dollar sign you may precede the dollar sign with another
1265 dollar sign.
1266 In other words, if the text
1268 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1270 is the value of a configuration option, it will be expanded to
1272 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1274 and no environment lookup will be done.
1275 For Unix Alpine it will also work to use a backslash character to
1276 escape the special meaning of the dollar sign, but $$ is preferable since
1277 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1278 to be in a shared configuration file.
1281 This all sounds more complicated than it actually is.
1282 An example may make it clearer.
1283 Unfortunately, the way in which environment variables are set is OS-dependent 
1284 and command shell-dependent.
1285 In some Unix command shells you may use
1287 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1288    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1290 Now, if you use Alpine's Setup/Config screen to set
1292 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1294 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1295 so that this would be equivalent to
1297 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1299 Note, environment variable substitution happens after configuration
1300 options that are lists are split into the separate elements of the list,
1301 so a single environment variable can't contain a list of values.
1304 The environment variable doesn't have to be the only thing
1305 after the equal sign.
1306 However, if the name of the variable is not at the end of the line or
1307 followed by a space (so that you can tell where the variable name ends),
1308 it must be enclosed in curly braces like
1310 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1312 It is always ok to use the braces even if you don't need to.
1314 It is also possible to set a default value for an environment variable.
1315 This default value will be used if the environment variable is not
1316 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1317 The syntax used to set a default value is
1319 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1321 If the config file contains
1323 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1325 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1326 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1327 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1328 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1329 the default value.
1330 (Note that the variable is called &quot;personal-name&quot; in the config
1331 file but is displayed in the config screen as
1332 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1333 In general, the value that goes into a config file is never exactly the
1334 same as the value you see on the screen.)
1337 An example where an environment variable might be useful is the
1338 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1339 Suppose most users used the server
1341 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1343 but that there were some exceptions who used
1345 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1347 In this case, the system manager might include the following line in
1348 the systemwide default Alpine configuration file
1350 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1352 For the exceptional users adding
1354 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1356 to their environment should work.
1358 Another example might be the case where a user has to use a different
1359 SMTP server from work and from home.
1360 The setup might be something as simple as
1362 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1364 or perhaps a default value could be given.
1365 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1366 a list of SMTP servers.
1369 <H2>Configuration precedence</H2>
1371 There are several levels of Alpine configuration.  Configuration values at
1372 a given level override corresponding values at lower levels.  In order of
1373 increasing precedence:
1375 <UL>
1376  <LI> built-in defaults
1377  <LI> system-wide
1378 <!--chtml if pinemode="os_windows"-->
1379       config file from command line or provided
1380       by "PINECONF" environment variable
1381 <!--chtml else-->
1382       pine.conf file
1383 <!--chtml endif-->
1384  <LI> personal configuration file
1385  <LI> personal exceptions configuration file
1386  <LI> command-line options
1387  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1388  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1389 </UL>
1391 The values in both the personal configuration file and the
1392 <A HREF="h_config_exceptions">exceptions</A>
1393 configuration file may be set using the Setup command.
1394 Setup/Config is the command to change most of the personal configuration
1395 options.
1396 The other Setup subcommands are also used to change the configuration,
1397 for example, Setup/AddressBook, Setup/Rules, and so on.
1398 Changing the personal exceptions configuration is very similar.
1399 To change a value in the Config screen you would use the command
1400 Setup/eXceptions/Config.
1401 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1403 There are a couple exceptions to the rule that configuration values are replaced
1404 by the value of the same option in a higher-precedence file.
1405 The Feature-List variable has values that are additive, but can be
1406 negated by prepending &quot;no-&quot; in front of an individual feature name.
1407 So for features, each individual feature's value is replaced by the value
1408 of the same feature in a higher-precedence file.
1409 Note that this is done automatically for you when you change these values via
1410 the Setup/Config command.
1411 The other exception to the <EM>replace</EM> semantics happens when you
1412 use <A HREF="h_config_inheritance">configuration inheritance</A>
1413 for option lists.
1416 <H2>File name defaults</H2>
1418 Notes:<P>
1420 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1421 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1422 <BR> # = default file name is overridable in pinerc.
1423 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1424 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1425 <BR> + between the mailcap paths implies that the two files are combined.
1426 <BR> ; between other default paths implies that the first one found is used.
1427 </P>
1428 Alpine looks for most support files in the same directory it finds its
1429 personal configuration file (pinerc).  The -p command-line flag may be
1430 used to specify a particular path name for the pinerc file.  If a
1431 pinerc file does not exist, it will be created (if directory permissions
1432 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1433 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1434 file does not exist in either one, it will create one in the first of those
1435 two directories that is writable.  In detail:
1436 <PRE>
1438 PC-Alpine:
1440  executable     &lt;DOS search path&gt;&#92;pine.exe
1441  help index     &lt;exe dir&gt;&#92;pine.ndx
1442  help text      &lt;exe dir&gt;&#92;pine.hlp
1444  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1445  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1446  global cfg     $PINECONF
1448  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1449  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1450  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1451  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1452  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1453  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1454  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1455  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1456  postponed#     $HOME&#92;mail&#92;postpond.mtx
1457  interrupted    $HOME&#92;mail&#92;intruptd
1459 Unix Alpine:
1461  executable     &lt;Unix search path&gt;/pine
1462  persnl cfg     ~/.pinerc
1463  except cfg     ~/.pinercex
1464  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1465  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1466  local help     <!--#echo var="PINE_INFO_PATH"-->
1468  interrupted    ~/.pine-interrupted-mail
1469  debug          ~/.pine-debugN
1470  crash          ~/.pine-crash
1471  newsrc#        ~/.newsrc
1472  signature#     &lt;pinerc dir&gt;/.signature
1473  addressbook#   &lt;pinerc dir&gt;/.addressbook
1474  postponed#     ~/mail/postponed-msgs
1475  sentmail#      ~/mail/sent-mail
1476  mailcap#       ~/.mailcap + /etc/mailcap
1477                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1478  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1480  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1481  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1482  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1483  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1484  password       /etc/passwd
1486 Unix Alpine and PC-Alpine:
1488  .ab*           remote addressbook support files
1489  a[1-9]*        temporary (while Alpine is running) addressbook files
1491 </PRE>
1494 <H2>Mailcap files</H2>
1496 Alpine honors the mailcap configuration system for specifying external
1497 programs for handling attachments.  The mailcap file maps MIME attachment
1498 types to the external programs loaded on your system that can display
1499 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1500 distribution.  It includes comments that explain the syntax you need to
1501 use for mailcap.  With the mailcap file, any program (mail readers,
1502 newsreaders, WWW clients) can use the same configuration for handling
1503 MIME-encoded data.
1506 <H2>MIME-Types files</H2>
1508 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1509 what Content-Type to use for labeling an attached file, based on
1510 the file extension.  That is, this file provides a mapping between
1511 filename extensions and MIME content-types.
1514 <H2>Environment variables</H2>
1516 PC-Alpine uses the following environment variables:
1517 <DL>
1518 <DT>PINERC</DT>
1519 <DD>Optional path to pinerc file.</DD>
1520 <DT>PINERCEX</DT>
1521 <DD>Optional path to personal exceptions configuration file.</DD>
1522 <DT>PINECONF</DT>
1523 <DD>Optional path to global pine config file.</DD>
1524 <DT>HOME</DT>
1525 <DT>TMPDIR, TMP, or TEMP</DT>
1526 <DT>COMSPEC</DT>
1527 <DT>MAILCAPS</DT>
1528 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1529 <DT>USER_DICTIONARY</DT>
1530 <DD>Used to specify the file to contain the user's spell check
1531 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1532 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1533 </DL>
1535 Unix Alpine uses the following environment variables:
1536 <DL>
1537 <DT>TERM</DT>
1538 <DD>Tells Alpine what kind of terminal is being used.</DD>
1539 <DT>DISPLAY</DT>
1540 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1541 <DT>SHELL</DT>
1542 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1543 <DT>TMPDIR, TMP, or TEMP</DT>
1544 <DT>MAILCAPS</DT>
1545 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1546 </DL>
1547 <!--chtml if pinemode="os_windows"-->
1549 <H2>Common PC-Alpine Configuration Problems</H2>
1551 <H3>Configuration settings aren't being saved</H3>
1553 <P>This problem can happen if you run pine from one directory and
1554 then decide to move your pine directory to another location.  PC-Alpine
1555 stores certain variables, including the configuration location, in the
1556 Windows Registry (which you shouldn't ever need to manually edit).  There
1557 are a couple of ways to go about removing or resetting the values in the
1558 registry.
1561 1) Run PC-Alpine's registry value deletion command.  This can be done by
1562 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1563 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1564 value to the above command.
1567 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1568 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1569 option, you can tell PC-Alpine the location of your pinerc.  An example of
1570 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;.
1571 Again, you can use the DOS prompt or the shortcut method explained in (1).
1574 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1575 set registry values to the current setting, and is therefore useful with
1576 the &quot;-p&nbsp;PINERC&quot; option.
1578 <!--chtml endif-->
1580 &lt;End of Configuration Notes&gt;
1581 </BODY>
1582 </HTML>
1583 ====== h_news_legal ======
1584 <html>
1585 <head>
1586 <TITLE>Alpine Legal Notices</TITLE>
1587 </head>
1588 <body>
1590 <H1>Alpine Legal Notices</H1>
1592 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1596 &lt;End of Alpine Legal Notices&gt;
1597 </BODY>
1598 </HTML>
1599 ===== h_info_on_mbox =====
1600 <HTML>
1601 <HEAD>
1602 <TITLE>Information on mbox driver</TITLE>
1603 </HEAD>
1604 <BODY>
1605 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1607 Beginning with Pine 4.00 (Pine came before Alpine)
1608 a new INBOX access method is
1609 available as part of the standard configuration.  It is called the
1610 &quot;mbox&quot; driver and it works like this:<P>
1613 <BLOCKQUOTE>
1614 If the file &quot;mbox&quot; exists in the user's home directory, and
1615 is in Unix mailbox format, then when INBOX is opened this file will be
1616 selected as INBOX instead of the mail spool file.  Messages will be
1617 automatically transferred from the mail spool file into the mbox
1618 file.
1619 </BLOCKQUOTE>
1622 The advantage of this method is that, after new mail has been copied
1623 from the system mail spool, all subsequent access is confined to the
1624 user's home directory, which is desirable on some systems.  However, a
1625 possible disadvantage is that mail tools other than those from the
1626 University of Washington will not know to look for mail in the user's
1627 mbox file.  For example, POP or IMAP servers other than those from the
1628 University of Washington, and many &quot;new mail notification&quot;
1629 programs may not work as expected with this driver enabled.<P>
1631 To disable this behavior, either remove/rename the &quot;mbox&quot;
1632 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1633 option in Setup/Config
1634 and add &quot;mbox&quot; to it:
1636 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1638 &lt;End of help on this topic&gt;
1639 </BODY>
1640 </HTML>
1641 ===== h_info_on_locking =====
1642 <HTML>
1643 <HEAD>
1644 <TITLE>FAQs on Alpine Locking</TITLE>
1645 </HEAD>
1646 <BODY>
1647 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1649 There is an extensive section on locking in the Alpine technical notes;
1650 this information is intended to provide answers to some common questions:<P>
1651 <OL>
1652 <LI> Why did locking change in Pine 4.00?<BR>
1653 The actual locking mechanisms did not change in 4.00.
1654 What changed is that when one particular locking mechanism used by Alpine 
1655 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1656 failure would occur, but no warning was issued.<P>
1658 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1659 Yes.  It means that Alpine was unable to create a lockfile in the
1660 spool directory, generally because of overly restrictive protections on the
1661 spool directory.  The correct permissions on the spool directory for
1662 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1663 with the sticky-bit set, so only owners of a file can delete them.<P>
1665 <LI> Why does Alpine require that the mail spool directory have 1777
1666    protections?<BR>
1667 Alpine was designed to run without special privileges.  This means that in
1668 order to create a lockfile in the spool directory, it is necessary to have
1669 the spool directory permissions be world-writable.<P>
1671 <LI> Can't you create the lockfile somewhere else?<BR>
1672 No.  The lockfile in question must be in the mail spool directory, because
1673 that's where the mail delivery program expects to find it, and the purpose
1674 of the file is to coordinate access between the mail client (Alpine) and the
1675 mail delivery program.<P>
1677 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1678 No.  Remember that the individual mail files in the spool directory are
1679 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1680 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1681 -- means that only the owner of the file (or root) can delete files in the 
1682 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1683 anyone could
1684 create a random file in the spool directory.  If the spool directory is
1685 under quota control along with home directories, there is little incentive
1686 for anyone to do this, and even without quotas a periodic scan for
1687 non-mail files usually takes care of the problem.  <P>
1689 <LI> Why not run Alpine as setgid mail?<BR>
1690 Alpine was never designed to run with privileges, and to do so introduces a
1691 significant security vulnerability.  For example, if a user suspends Alpine,
1692 the resulting shell will have group privileges.  This is one example of
1693 why we strongly recommend against running Alpine as a privileged program.
1694 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1695 users
1696 could not test Alpine versions or other mailers that had not been installed
1697 by the system administrators.<P>
1700 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1701 There are, but they all have different sets of tradeoffs, and not all will
1702 work on all systems.  Some examples:<UL>
1703  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1704    spool is local.   Doesn't work reliably if NFS is used.
1705    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1706    use the same calls.
1707  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1708    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1709 mail tools that always look in the spool directory for the mail.
1710 </UL><P>
1712 <LI> Are these spool directory lock files the only kinds of locks used by
1713    Alpine?<BR>
1714 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1715 mailbox format folders, these are used to coordinate access between
1716 multiple Alpine sessions.  <P>
1718 <LI> What about the 
1719 <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>
1720 This is for people who are content to live dangerously, or who have
1721 specific knowledge that the spool directory lockfiles are superfluous on
1722 their system (because both Alpine and the mail delivery program are using 
1723 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1725 <LI> Where can I find more details on how Alpine locking works?<BR>
1726 See the Alpine Technical Notes.<P>
1728 </OL>
1730 &lt;End of help on this topic&gt;
1731 </BODY>
1732 </HTML>
1733 ===== h_finding_help ====
1734 <HTML>
1735 <HEAD>
1736 <TITLE>Finding more information and requesting help</TITLE>
1737 </HEAD>
1738 <BODY>
1739 <H1>Places to Look for More Answers</H1>
1740 If you have questions about or problems with Alpine that you cannot resolve 
1741 after consulting the program's internal, context-sensitive help screens, here 
1742 are additional information resources that you may find helpful:
1744 <UL>
1745   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1747   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1749   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1750 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1751   since the last version, which may be useful for you to be aware of, 
1752 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1753 a change in the way an aspect of Alpine works.  There, you will also find notes 
1754 on Alpine configuration.<P>
1756   <LI> The main site for Alpine contains information on configuring and solving problems
1757        with Alpine, it can be found at
1759 <CENTER><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></CENTER>  
1761   <LI> The Alpine Information Center (maintained by the University of
1762            Washington) World Wide Web site contains, among other things
1763            <UL>
1764            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
1765            <LI>an overview of the basics for beginning Alpine users
1766            <LI>Technical Notes for systems administrators
1767            <LI>archives (including a searchable index) of the alpine-info 
1768 mailing list, on which matters of interest to systems/email administrators,
1769 developers, trainers, user support personnel, and others involved with Alpine 
1770 messaging on a &quot;technical&quot; level are discussed.
1771 </UL>
1772         The Alpine Information Center can be accessed with a WWW browser at:<P>
1773             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
1774 </UL>
1775 <P><HR WIDTH="75%">
1776 <H1>Requesting help</H1>
1777 If the internal help, the Release Notes, the Alpine Information Center, and your 
1778 local online and print resources do not help you resolve a problem, please
1779 start by contacting your local computer support staff and asking for help.
1781 This is especially true if:
1782 <ul>
1783   <li>You suddenly have trouble sending or receiving mail.
1784   <li>You receive a "disk quota exceeded" message.
1785   <li>You have forgotten your password.
1786   <li>You think your account may have been compromised.
1787   <li>You need help viewing an attachment.
1788   <li>You need to know how to configure your:
1789       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
1790       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
1791       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
1792       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
1793   <li>You want to know what alternative editors or spellcheckers you may be able to use.
1794   <li>You want to block email from a particular person.
1795   <li>You're going on vacation and need to autorespond to incoming mail.
1796   <li>You want to automatically file or filter incoming messages.
1797 </ul>
1799 In all of these cases,
1800 you should contact <B>your</B> support staff, because <B>only they</B> 
1801 will be able to assist you effectively. Your support staff may be, depending on who 
1802 provides you with the email account you use Alpine with, for example:<UL>
1803 <LI> the computing help desk of (a department of) your university, school, 
1804 employer, ... ; or
1805 <LI> the customer service center of your Internet Service Provider; or
1806 <LI> the friendly volunteer helpers of your Freenet; or
1807 <LI> the person who setup your computer and internet connection.
1808 </UL>
1810 Due to the large number of Alpine installations worldwide, and because we
1811 receive no funding for it, the University of Washington <B>cannot provide 
1812 individual support services outside the University of Washington</B>.
1814 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
1815 newsgroup can be a valuable source of information and assistance for Alpine 
1816 user issues.
1818 For systems/email administrators, developers, trainers, user support
1819 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
1820 level, the mailing list alpine-info is available; for information on
1821 subscribing and posting to it, see
1823 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
1826 Regardless of whom you are asking for help with Alpine, remember 
1827 to provide as much detail as you can about the
1828 nature of any problem you are encountering, such as
1829 <UL>
1830 <LI>when it first occurred;
1831 <LI>what, if anything, happened that might have brought it about;
1832 <LI>whether it still persists;
1833 <LI>whether it is reproducible, and if so, how;
1834 <LI>what, if anything, you already tried to solve it.
1835 </UL> 
1836 It may also be helpful if you specify what version of Alpine you are using 
1837 <!--chtml if pinemode="running"-->
1838 -- this is <!--#echo var="ALPINE_VERSION"--> --
1839 <!--chtml endif-->
1840 and on what system, and when the copy of Alpine you are using was created
1841 <!--chtml if pinemode="running"-->
1842 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
1843 <!--chtml endif-->
1845 <!--chtml if pinemode="running"-->
1846 <P>   
1847 When the Alpine program you are currently using was installed, a support
1848 contact email address may have been set up; in that case, you can simply select
1849 this link now to send a message to it:<BR>
1850 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
1851 <!--chtml endif-->
1852 <!--chtml if [ -r PINE_INFO_PATH ]-->
1853 <HR WIDTH="75%">Local Support Contacts:<P>
1854 <!--#include file="PINE_INFO_PATH"-->
1855 <HR WIDTH="75%">
1856 <!--chtml endif-->
1857 <P> 
1858 &lt;End of help on this topic&gt;
1859 </BODY>
1860 </HTML>
1861 ===== new_user_greeting ======
1862 <HTML>
1863 <HEAD>
1864 <TITLE>NEW USER GREETING</TITLE>
1865 </HEAD>
1866 <BODY>
1867 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1868 <BR>
1869 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1870 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
1871 select Setup/Config to see many of the options available to you. Also note
1872 that all screens have context-sensitive help text available.<P>
1873 <!--chtml if pinemode="phone_home"-->
1874 SPECIAL REQUEST:
1875 This software was originally created and maintained as a public
1876 service by the University of Washington until 2009; updates are made 
1877 available as a public service of the Alpine community. It is always 
1878 helpful to have an idea of how many users are using Alpine. Are you 
1879 willing to be counted as an Alpine user? Pressing 
1880 <A HREF="X-Alpine-Phone-Home:">Return</A>
1881 will send an anonymous (meaning, your real email address will not be revealed) 
1882 message to the Alpine developers for purposes of tallying.
1884 <!--To Exit this screen and continue your Alpine session press "E".-->
1885 <!--chtml else-->
1886 To Exit this screen and continue your Alpine session press "Return".
1887 <!--chtml endif-->
1888 </BODY>
1889 </HTML>
1890 ===== new_alpine_user_greeting ======
1891 <HTML>
1892 <HEAD>
1893 <TITLE>NEW ALPINE USER GREETING</TITLE>
1894 </HEAD>
1895 <BODY>
1896 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1897 <BR>
1898 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1899 Your Alpine configuration file indicates that you may have used Pine before
1900 but not Alpine.
1901 If you are familiar with the way Pine works, you should be comfortable
1902 using Alpine.
1903 Your Pine configuration file is automatically used for Alpine.
1904 The Release Notes may be viewed by pressing 
1905 &quot;R&quot; now or while in the MAIN MENU.
1907 <!--chtml if pinemode="phone_home"-->
1908 SPECIAL REQUEST:
1909 This software was originally created and maintained as a public
1910 service by the University of Washington until 2009; updates are made 
1911 available as a public service of the Alpine community. It is always 
1912 helpful to have an idea of how many users are using Alpine. Are you 
1913 willing to be counted as an Alpine user? Pressing 
1914 <A HREF="X-Alpine-Phone-Home:">Return</A>
1915 will send an anonymous (meaning, your real email address will not be revealed) 
1916 message to the Alpine developers for purposes of tallying.
1918 <!--To Exit this screen and continue your Alpine session press "E".-->
1919 <!--chtml else-->
1920 To Exit this screen and continue your Alpine session press "Return".
1921 <!--chtml endif-->
1922 </BODY>
1923 </HTML>
1924 ===== new_version_greeting ======
1925 <HTML>
1926 <HEAD>
1927 <TITLE>NEW VERSION GREETING</TITLE>
1928 </HEAD>
1929 <BODY>
1930 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1931 <BR>
1932 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
1933 Your Alpine configuration file indicates that you may not have used 
1934 this version of Alpine before.  This version's significant changes are
1935 documented in the Release Notes, which may be viewed by pressing 
1936 &quot;R&quot; now or while in the MAIN MENU.
1938 <!--chtml if pinemode="phone_home"-->
1939 SPECIAL REQUEST:
1940 This software was originally created and maintained as a public
1941 service by the University of Washington until 2009; updates are made 
1942 available as a public service of the Alpine community. It is always 
1943 helpful to have an idea of how many users are using Alpine. Are you 
1944 willing to be counted as an Alpine user? Pressing 
1945 <A HREF="X-Alpine-Phone-Home:">Return</A>
1946 will send an anonymous (meaning, your real email address will not be revealed) 
1947 message to the Alpine developers for purposes of tallying.
1949 <!--To Exit this screen and continue your Alpine session press "E".-->
1950 <!--chtml else-->
1951 To Exit this screen and continue your Alpine session press "Return".
1952 <!--chtml endif-->
1953 </BODY>
1954 </HTML>
1956 ===== main_menu_tx ======
1957 <HTML>
1958 <HEAD>
1959 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
1960 </HEAD>
1961 <BODY>
1962 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
1963 <DIV ALIGN=CENTER>
1964 Version <!--#echo var="ALPINE_VERSION"-->
1965 <!--chtml if pinemode="running"-->
1966 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
1967 <!--chtml endif-->
1968 </DIV>
1969 <CENTER>Copyright 2013-2016 Eduardo Chappa,
1970 <BR>Copyright 2006-2008 University of Washington.
1971 </CENTER>
1974 When you are viewing a help screen, there may be links to
1975 other topics highlighted (in Reverse video) in the text.
1976 Here is an example.
1977 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
1978 highlighted.
1979 If you type carriage return (or V for View Link, see the commands at the
1980 bottom of the screen) you will be taken to a new help screen to view the
1981 Introduction.
1982 The commands at the bottom of the screen should then include
1983 &quot;P Prev Help&quot;.
1984 If you type &quot;P&quot; you will end up back here.
1985 If you type &quot;E&quot; for Exit, you will be back out of help and returned
1986 to the place you were in Alpine when you entered Help.
1987 In this case, you would go back to the MAIN MENU.
1988 There are also other links that are highlighted in bold (or the color used
1989 by your terminal to display bold).
1990 The items after the Introduction in the TABLE OF CONTENTS are all examples
1991 of such links.
1992 In order to view those links, you first have to make the link you want
1993 to view the current link.
1994 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
1995 (see bottom of screen) can do that for you.
1998 <H2>TABLE OF CONTENTS</H2>
1999 <OL>
2000   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2001   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2002 <!--chtml if [ -r PINE_INFO_PATH ]-->
2003   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2004 <!--chtml endif-->
2005   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2006   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2007   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2008   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2009   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2010   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2011   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2012   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2013   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2014   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2015   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2016   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2017   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2018   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2019   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2020   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2021   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2022   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2023   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2024   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2025   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2026   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2027   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2028   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2029   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2030 </OL>
2033 &lt;End of help on this topic&gt;
2034 </BODY>
2035 </HTML>
2036 ===== h_mainhelp_intro ======
2037 <HTML>
2038 <HEAD>
2039 <TITLE>Introduction</TITLE>
2040 </HEAD>
2041 <BODY>
2042 <H1>Introduction</H1>
2044 Alpine is an &quot;Alternatively Licensed Program for Internet
2045 News and Email&quot; produced until 2009 by the University of Washington.
2046 It is intended to be an easy-to-use program for
2047 sending, receiving, and filing Internet electronic mail messages and
2048 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2049 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2050 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2051 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2052 Directory Access Protocol).<p>
2054 Although originally designed for inexperienced email users, Alpine has
2055 evolved to support many advanced features.  There are an ever-growing
2056 number of configuration and personal-preference options, though which of
2057 them are available to you is determined by your local system managers. 
2059 <H2>WHAT ALPINE DOES...</H2>
2061 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2062 allows you to
2063 compose and read messages using Internet mail standards.  (Whether you
2064 can correspond with others on the Internet depends on whether or not your
2065 computer is connected to the Internet.)  Alpine also allows reading and
2066 posting messages on the Internet &quot;net news&quot; system, provided
2067 that your site operates a suitable news server.
2069 <H2>WHAT ALPINE DOES NOT DO...</H2>
2071 A &quot;mail user agent&quot; such as Alpine is just one part of a
2072 messaging system. Here are some things that are <B>not</B> done by Alpine,
2073 but require other programs:<P>
2074 <UL>
2075  <LI> Actual relaying of email... which is done by &quot;message transfer 
2076 agents&quot;.
2077  <LI> Vacation messages... automatically responding to incoming messages
2078  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2079 email.
2080  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2081  <LI> List processing... resending one message to a list of recipients.
2082 </UL>
2085 &lt;End of help on this topic&gt;
2086 </BODY>
2087 </HTML>
2089 ===== h_mainhelp_pinehelp ======
2090 <HTML>
2091 <HEAD>
2092 <TITLE>Alpine Help</TITLE>
2093 </HEAD>
2094 <BODY>
2095 <H1>Alpine Help</H1>
2097 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2098 use will have its own help text, explaining the choices available for that
2099 screen. This general help section, on the other hand, attempts to give an 
2100 overall picture of what Alpine is capable of doing, as well as pointers to 
2101 additional help sections about specific topics.<p>
2103 Much of the help text contains links to further help topics, similar to
2104 how the World Wide Web works.
2105 You may choose a link to view using the &quot;NextLink&quot; and
2106 &quot;PrevLink&quot; commands to change the link that is highlighted.
2107 The &quot;View Link&quot; command will then show you the highlighted link.
2108 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2109 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2110 will return you to the location in Alpine before you asked for help.
2111 For example, if you are reading this text in Alpine you may return to the
2112 help table of contents with the &quot;Prev Help&quot; command or you may view the
2113 Release notes link in the next paragraph and then return here with
2114 &quot;Prev Help&quot;.
2117 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2118 on the current Alpine version are also available from the MAIN MENU: Press
2119 <!--chtml if pinemode="function_key"-->
2120 &quot;F9&quot;
2121 <!--chtml else-->
2122 &quot;R&quot;
2123 <!--chtml endif-->
2124 to browse the release notes.  These include changes since the last release,
2125 configuration information, the history of the Alpine
2126 project, credits, and legal notices.
2128 Alpine releases are available via the world wide web at
2130 <CENTER><SAMP><A 
2131 HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP
2132 ></CENTER>
2135 If you would like to print <EM>all</EM> of Alpine's internal help text
2136 (not recommended) for a little light bedtime reading, then press
2137 <!--chtml if pinemode="function_key"-->
2138 &quot;F12&quot;
2139 <!--chtml else-->
2140 &quot;Z&quot;
2141 <!--chtml endif-->
2142 now.  (This assumes that the
2143 copy of Alpine you are using has been properly configured for printing
2144 at your site.)
2146 &lt;End of help on this topic&gt;
2147 </BODY>
2148 </HTML>
2149 ===== h_mainhelp_localsupport ======
2150 <HTML>
2151 <HEAD>
2152 <TITLE>Local Support Contacts</TITLE>
2153 </HEAD>
2154 <BODY>
2155 <H1>Local Support Contacts</H1>
2157 <!--chtml if [ -r PINE_INFO_PATH ]-->
2158 <!--#include file="PINE_INFO_PATH"-->
2159 <!--chtml else-->
2160 No Local Support Contacts configured.
2161 <!--chtml endif-->
2164 &lt;End of help on this topic&gt;
2165 </BODY>
2166 </HTML>
2168 ===== h_mainhelp_cmds ======
2169 <HTML>
2170 <HEAD>
2171 <TITLE>Giving Commands in Alpine</TITLE>
2172 </HEAD>
2173 <BODY>
2174 <H1>Giving Commands in Alpine</H1>
2176 Unless configured otherwise
2177 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2178 the bottom two lines of the screen are always used to list the
2179 commands you can give.  You press the keys that are highlighted to give
2180 the command.  The commands for getting help and going back to the main
2181 menu are always present (except when viewing help as you are now).
2182 <!--chtml if pinemode="function_key"-->
2183 <!--chtml else-->
2185 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2186 you see at the bottom of any screen. In some cases there are 3 or
2187 even 4 different
2188 sets of keys that can be seen by using the O key. <EM>All commands are 
2189 active</EM>, even if they are not currently showing at the bottom of your 
2190 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2191 remind yourself of the proper key to press to perform an operation.
2193 <H2>Control Key Commands</H2>
2194 When composing mail, and in a few other places, in Alpine you
2195 have to use Control keys. This means pressing the Control key (usually labeled 
2196 &quot;Ctrl&quot;) and the
2197 letter indicated at the same time.  Usually, this is shown with a
2198 &quot;^&quot; in front of the letter.  On some systems, certain control
2199 characters are intercepted before they get to Alpine.  As a work-around,
2200 you can press the ESCAPE key twice followed by the desired key.  For
2201 example, if Ctrl-O (^O) does not work on your system, try typing
2202 &quot;ESC ESC O&quot;.
2203 <!--chtml endif-->
2204 <H2>Paging Up and Down</H2>
2205 The &quot;+&quot; and &quot;-&quot; keys are used for
2206 moving to the next or previous page.  The space bar is a synonym for
2207 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2208 up as you do in the message composer.  On screens with a WhereIs (search)
2209 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2210 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2211 of the message or list.
2213 <H2>Return Key</H2>
2214 The return key is usually a synonym for a frequently used
2215 command.  When viewing a message, there is currently not a default
2216 command, so RETURN does nothing; when in the index, it is synonymous with
2217 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2218 enclosed in square brackets [] is the same as the return key.
2220 <H2>Control Keys Not Used By Alpine</H2>
2221 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2222 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2223 at prompts for file/folder names, control keys must be used for editing and 
2224 navigation functions.
2227 Alpine has used nearly all the control keys available.  There are, however,
2228 certain control keys that are reserved by other programs or for technical
2229 reasons.  Alpine does not use any of these keys:
2230 <DL>
2231  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2232  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2233  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2234 </DL>
2236 Note: Ctrl-S and Ctrl-Q can be subject to 
2237 <A HREF="h_special_xon_xoff">special handling</A>.
2239 In addition, while the ESC key alone is not used for command input,
2240 Alpine will recognize two consecutive ESC key presses followed by a letter 
2241 key as a substitute for control key input.  For example, the control key
2242 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2243 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2244 This is useful if the communication program you are using
2245 (e.g. Telnet) has its own, conflicting, idea of what certain control
2246 characters mean.
2249 <H2>Repainting the Screen</H2>
2250 Sometimes what is displayed on the screen will be
2251 incorrect due to noise on the phone line or other causes and you will want
2252 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2253 command to do this.  It never hurts to do it when in doubt.
2256 &lt;End of help on this topic&gt;
2257 </BODY>
2258 </HTML>
2259 ===== h_mainhelp_status ======
2260 <HTML>
2261 <HEAD>
2262 <TITLE>Titlebar Line</TITLE>
2263 </HEAD>
2264 <BODY>
2265 <H1>Titlebar Line</H1>
2267 The top line of the screen is Alpine's titlebar line.  It will always display
2268 the current version of Alpine and will also convey information about the
2269 status of the program.  This is where you look to find out what
2270 collection, folder and message number is active and where you are in Alpine.
2273 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2274 (typically your INBOX) is &quot;locked&quot; by another mail session --
2275 most likely a more recent session of Alpine has taken the INBOX lock.
2278 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2279 access a
2280 folder on a remote mail server, and for some reason, communication with
2281 the mail server has either been lost, or never successfully established.
2282 This can be a result of trying to open a non-existent folder, or one
2283 stored on an invalid or non-operational server, or it can mean that Alpine
2284 has been suspended for more that 30 minutes while accessing a remote mail
2285 server.
2288 &lt;End of help on this topic&gt;
2289 </BODY>
2290 </HTML>
2291 ===== h_mainhelp_mainmenu ======
2292 <HTML>
2293 <HEAD>
2294 <TITLE>Main Menu</TITLE>
2295 </HEAD>
2296 <BODY>
2297 <H1>Main Menu</H1>
2299 The Main Menu lists Alpine's main options.
2300 The key or keys you must type to enter your
2301 choice are to the left of each option or command name.
2302 You can type either uppercase or lowercase letters,
2303 and you should not press &lt;Return&gt; after typing the
2304 letter (unless you are specifically asking for the default,
2305 highlighted command).
2308 From the Main Menu you can choose to read online help, write (compose) and 
2309 send a message, look at an index of your mail messages, open or maintain
2310 your mail folders, update your address book, configure Alpine, and quit Alpine.
2311 There are additional options listed at
2312 the bottom of the screen as well.
2315 The Help command usually returns context-sensitive help information.
2316 However, in the Main Menu you get the most general help, which includes
2317 a Table of Contents.
2318 The last entry in the Table of Contents is an Index of help topics,
2319 so this is a good place to go if you are having trouble finding how
2320 to do something.
2322 <H2>Main Menu Commands</H2>
2323 The Alpine main menu lists the most common Alpine functions. A <a
2324 href="h_main_menu_commands">full list of these
2325 commands</a> and what they do is available.
2327 &lt;End of help on this topic&gt;
2328 </BODY>
2329 </HTML>
2330 ===== h_mainhelp_abooks ======
2331 <HTML>
2332 <HEAD>
2333 <TITLE>Address Books</TITLE>
2334 </HEAD>
2335 <BODY>
2336 <H1>Address Books</H1>
2339 As you use email, you can build a list of your regular email correspondents 
2340 in your Alpine
2341 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2342 screen. Your
2343 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2344 You can use the address book to store email addresses for individuals or
2345 groups, to create easily
2346 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2347 address when you are composing a message.
2349 There are two ways to add addresses to your address book: you can add them 
2350 manually or take them from messages (by pressing T to access the Take command). 
2351 With either method, you specify nicknames for your correspondents. A single 
2352 address book entry (or nickname) can point to just one email address, or, it can
2353 point to more than one. When it points to more than one, it is called a 
2354 distribution list. Each distribution list has a nickname, a full name, and a 
2355 list of addresses. These
2356 addresses may be actual addresses, other nicknames in your address book, or 
2357 other
2358 distribution lists.
2361 Additional information is available in Alpine's online help:
2362 <ul>
2363   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2364 </ul>
2366 &lt;End of help on this topic&gt;
2367 </BODY>
2368 </HTML>
2369 ===== h_mainhelp_ldap ======
2370 <HTML>
2371 <HEAD>
2372 <TITLE>LDAP</TITLE>
2373 </HEAD>
2374 <BODY>
2375 <H1>LDAP</H1>
2377 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2378 an organization's shared
2379 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2380 large address
2381 books, rather like the White Pages provided by the phone company. As an Alpine 
2382 user, it is not
2383 necessary to know much about how this works, only how to use it and how to 
2384 configure
2387 More information on configuring LDAP is available in Alpine's online help:
2388 <ul>
2389   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2390 </ul>
2392 Additional help on using LDAP in Alpine is also available:
2393 <ul>
2394   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2395 </ul>
2397 &lt;End of help on this topic&gt;
2398 </BODY>
2399 </HTML>
2400 ===== h_mainhelp_index ======
2401 <HTML>
2402 <HEAD>
2403 <TITLE>Index of Messages</TITLE>
2404 </HEAD>
2405 <BODY>
2406 <H1>Index of Messages</H1>
2408 In Alpine's message index, the selected message is highlighted. The first 
2409 column on the left is blank, shows a &quot;+&quot; if the message was
2410 sent directly to you (i.e., it is not a
2411 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2413 The second column may be blank, or it may contain:
2414 <ul>
2415   <li>"N" if the message is new (unread), </li>
2416   <li>"A" if you have answered the message (using the Reply command), </li>
2417   <li>"D" if you have marked the message for deletion.</li>
2418 </ul>
2421 Note: If you answer a message as well as mark it deleted (in either order), 
2422 you will only see the &quot;D&quot;.
2425 The rest of the columns in the message line show you the message
2426 number, date sent, sender, size, and subject. For details, press ? (Help).  
2427 The behavior and appearance of the Index screen is highly configurable.
2428 In the Setup/Config screen search (with the WhereIs command) for options
2429 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2430 many of the configuration possibilities.
2431 In particular, the
2432 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2433 option may be used to configure the look of the standard MESSAGE INDEX lines
2434 in many different ways.
2435 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2436 read the help text there for more information.
2438 Most of the commands you need to handle your messages are visible at the
2439 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2440 commands that are available.
2441 You do not need to see these &quot;other commands&quot;
2442 on the screen to use them. That is, you never need to press O as a prefix
2443 for any other command.
2446 Additional information is available in Alpine's online help:
2447 <ul>
2448   <li><a href="h_mail_index">Message Index Commands</a></li>
2449 </ul>
2451 &lt;End of help on this topic&gt;
2452 </BODY>
2453 </HTML>
2454 ===== h_mainhelp_reading ======
2455 <HTML>
2456 <HEAD>
2457 <TITLE>Reading Messages</TITLE>
2458 </HEAD>
2459 <BODY>
2460 <H1>Reading Messages</H1>
2462 The message text screen shows you the text of the message along with
2463 its header. If a message has attachments, those will be listed (but not
2464 displayed) also.  The titlebar line displays information about the currently
2465 open message, folder and collection.  You see the name of the collection
2466 (if there is one) in angle brackets, then the name of the folder, then the
2467 message number and finally the position within the current message (in
2468 percent). If the message is marked for deletion
2469 &quot;DEL&quot; will appear in the
2470 upper right as well.
2473 As with every Alpine screen, the bottom two lines show you the commands 
2474 available.
2476 <P>Additional information is available in Alpine's online help:
2477 <ul>
2478   <li><a href="h_mail_view">Message Text Screen</a></li>
2479   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2480   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2481 </ul>
2483 &lt;End of help on this topic&gt;
2484 </BODY>
2485 </HTML>
2486 ===== h_mainhelp_composing ======
2487 <HTML>
2488 <HEAD>
2489 <TITLE>Composing Messages</TITLE>
2490 </HEAD>
2491 <BODY>
2492 <H1>Composing Messages</H1>
2494 To write a message, press C (Compose). You see the Compose Message
2495 screen, which is divided into two parts: the header area and the message
2496 text area. The header area is where information on the recipient (the To:
2497 field) and the subject line go, while the message text area contains the
2498 actual text of the email message. Different commands are available to you
2499 when your cursor is in different areas on this screen. To see additional
2500 help on commands in either the message text or header area, type
2501 <Control>G (Get help).
2504 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2505 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2507 <P>The following information from Alpine's online help may prove useful:
2508 <ul>
2509   <li><a href="h_composer_to">Message Header Commands</a></li>
2510   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2511   <li><a href="h_composer">Composer Commands</a></li>
2512   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2513   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2514   <li><a href="h_compose_send">Send Command</a></li>
2515   <li><a href="h_compose_spell">Spell Check Command</a></li>
2516 </ul>
2518 &lt;End of help on this topic&gt;
2519 </BODY>
2520 </HTML>
2521 ===== h_mainhelp_collections ======
2522 <HTML>
2523 <HEAD>
2524 <TITLE>Collection Lists</TITLE>
2525 </HEAD>
2526 <BODY>
2527 <H1>Collection Lists</H1>
2529 Collection lists are Alpine's way of organizing groups of folders. Each
2530 "collection" can reside on a different server, for example, and contain a
2531 different group of mail folders.
2534 For more information on this, see:
2535 <ul>
2536   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2537 </ul>
2539 Additional information relating to collection lists is also available in 
2540 Alpine's online
2541 help:
2542 <ul>
2543   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2544   <li><a href="h_collection_screen">Collection List Screen</a></li>
2545 </ul>
2547 &lt;End of help on this topic&gt;
2548 </BODY>
2549 </HTML>
2550 ===== h_mainhelp_folders ======
2551 <HTML>
2552 <HEAD>
2553 <TITLE>Folders</TITLE>
2554 </HEAD>
2555 <BODY>
2556 <H1>Folders</H1>
2558 Messages can quickly accumulate in your INBOX folder. If you use email
2559 often, you soon could have hundreds. You need to delete messages you do
2560 not want, and you can use folders to organize messages you wish to save. A
2561 folder is a collection of one or more messages that are stored (just like
2562 the messages in your INBOX) so you can access and manage them.
2565 You can organize your email messages into different folders by topic,
2566 correspondent, date, or any other category that is meaningful to you. You
2567 can create your own folders, and Alpine automatically provides three:
2568 <ul>
2569   <li>The INBOX folder: messages sent to you are listed in this folder.
2570       When you first start Alpine and go to the Message Index screen, you are
2571 looking at the list of messages in your INBOX folder. Every incoming
2572 message remains in your INBOX until you delete it or save it in another
2573 folder. </li>
2574   <li>The sent-mail folder: copies of messages you send are stored in this 
2575 folder. This is
2576 convenient if you cannot remember whether you actually sent a message and want 
2577 to check, or
2578 if you want to send a message again.</li>
2579   <li>The saved-messages folder: copies of messages you save are stored in this 
2580 folder
2581 unless you choose to save them to other folders you create yourself.</li>
2582 </ul>
2585 More information about folders is available in Alpine's online help:
2586 <ul>
2587   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2588   <li><a href="h_folder_maint">Help for Folder List</a></li>
2589   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2590   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2591 Explained</a></li>
2592   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2593 </ul>
2595 &lt;End of help on this topic&gt;
2596 </BODY>
2597 </HTML>
2598 ===== h_mainhelp_color ======
2599 <HTML>
2600 <HEAD>
2601 <TITLE>Color</TITLE>
2602 </HEAD>
2603 <BODY>
2604 <H1>Color</H1>
2606 If the terminal emulator you are using is capable of displaying color or if
2607 you are using PC-Alpine, then it is possible to set up Alpine so that various
2608 parts of the display will be shown in colors you configure. This is done
2609 using the Setup Color screen, available from the MAIN MENU by selecting
2610 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2611 stands for Config in this context).
2614 For example, you may color things like the titlebar, the current item,
2615 the keymenu, and the status messages.
2616 You may also color lines in the index, and headers and quoted text in the
2617 MESSAGE TEXT screen.
2618 You use the Color Setup screen for configuring most of this, but you must
2619 use the IndexColor setup for coloring whole index lines.
2620 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2623 The following entries in Alpine's online help provide additional information 
2624 about how to use color:
2625 <UL>
2626   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2627   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2628   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2629   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2630 </UL>
2632 &lt;End of help on this topic&gt;
2633 </BODY>
2634 </HTML>
2635 ===== h_mainhelp_mouse ======
2636 <HTML>
2637 <HEAD>
2638 <TITLE>Using a Mouse</TITLE>
2639 </HEAD>
2640 <BODY>
2641 <H1>Using a Mouse</H1>
2643 If you are using PC-Alpine mouse support is turned on automatically.
2644 If you are using UNIX Alpine within an X terminal window or within
2645 a terminal emulator that supports an xterm-style mouse, then you may
2646 turn on support for the mouse with the feature
2647 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2648 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2650 PC-Alpine offers considerable mouse support.  You can view what is
2651 &quot;clickable&quot; by dragging your mouse over any screen; when the
2652 arrow cursor changes into a hand, you found something. Mouse-click
2653 possibilities include navigating between screens and folders and
2654 double-clicking on hyperlinks to open your Web browser.
2655 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2656 screen.  Examples of right-click options include &quot;copy&quot; after
2657 selecting text to copy and &quot;View in New Window&quot; when you click
2658 on a particular message in the Message Index. The menu choices available
2659 to you will vary based upon what screen is open, where on the screen your
2660 cursor is located, and even what action you have already taken.
2661 Within a folder, you may set the &quot;Important&quot; flag on any
2662 message.
2664 X terminal mouse support is more limited but still quite powerful.
2665 As with PC-Alpine, clicking on any of the commands in the keymenu at
2666 the bottom of the screen will execute that command as if you typed it.
2667 Double-clicking on a link, for example the link to the
2668 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2669 will take you to that link.
2670 Double-clicking on an index line will view the message, and so on.
2672 &lt;End of help on this topic&gt;
2673 </BODY>
2674 </HTML>
2675 ===== h_mainhelp_keywords ======
2676 <HTML>
2677 <HEAD>
2678 <TITLE>Keywords</TITLE>
2679 </HEAD>
2680 <BODY>
2681 <H1>Keywords</H1>
2683 Within a folder, you may set the &quot;Important&quot; flag on any
2684 message.
2685 This doesn't have any system-defined meaning and is only called
2686 the Important flag because many users use it to signify that a message
2687 is important to them in some way.
2689 You may also define your own set of keywords.
2690 You might know these as user defined flags or as labels.
2691 These are similar to the Important flag but you choose the names for yourself.
2693 Alpine will only display keywords that
2694 have been added by you in the Flag Details screen or
2695 that have been configured by you using the Setup/Config option
2696 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2697 Keywords set by other means (for example, by another email client) will not
2698 show up in Alpine unless you configure Alpine to know about them.
2699 They will show up in the Flag Details screen, but will not show up, for example,
2700 in the index line.
2703 The following entries in Alpine's online help provide additional information 
2704 about how to use keywords:
2705 <ul>
2706   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2707   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2708 </ul>
2710 &lt;End of help on this topic&gt;
2711 </BODY>
2712 </HTML>
2713 ===== h_mainhelp_roles ======
2714 <HTML>
2715 <HEAD>
2716 <TITLE>Roles</TITLE>
2717 </HEAD>
2718 <BODY>
2719 <H1>Roles</H1>
2721 You may play different roles depending on who you are replying to. For
2722 example, if you are replying to a message addressed to help-desk you may
2723 be acting as a Help Desk Worker. That role may require that you use a
2724 different return address and/or a different signature.
2727 To configure roles, go to the MAIN MENU and use the Setup command
2728 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2729 The following entries in Alpine's online help provide additional information 
2730 about how to
2731 use roles:
2732 <ul>
2733   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2734   <li><a href="h_role_select">Roles Screen</a></li>
2735 </ul>
2737 &lt;End of help on this topic&gt;
2738 </BODY>
2739 </HTML>
2740 ===== h_mainhelp_filtering ======
2741 <HTML>
2742 <HEAD>
2743 <TITLE>Filtering</TITLE>
2744 </HEAD>
2745 <BODY>
2746 <H1>Filtering</H1>
2748 The software that actually delivers mail (the stuff that happens
2749 before Alpine is involved) for you is in a better position to do mail filtering
2750 than Alpine itself.
2751 If possible, you may want to look into using that sort of mail filtering to
2752 deliver mail to different folders, delete it, or forward it.
2753 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
2756 Filtering is a way to automatically move certain messages from one folder
2757 to another or to automatically delete messages.
2758 You may also automatically set the state (Important, New, Deleted, Answered) of messages
2759 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
2760 Alpine doesn't have the ability to forward mail to another address or
2761 to deliver vacation messages.
2764 To configure filtering, go to the MAIN MENU and use the Setup command
2765 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
2766 The following entries in Alpine's online help provide additional information 
2767 about how to use filtering:
2768 <UL>
2769   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
2770 </UL>
2772 &lt;End of help on this topic&gt;
2773 </BODY>
2774 </HTML>
2775 ===== h_mainhelp_patterns ======
2776 <HTML>
2777 <HEAD>
2778 <TITLE>Patterns</TITLE>
2779 </HEAD>
2780 <BODY>
2781 <H1>Patterns</H1>
2783 Patterns are used with Roles, Filtering, Index Coloring,
2784 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
2785 The following entries in Alpine's online help provide information 
2786 about using Patterns:
2787 <UL>
2788   <LI> <A HREF="h_rule_patterns">Patterns</A>
2789 </UL>
2791 &lt;End of help on this topic&gt;
2792 </BODY>
2793 </HTML>
2794 ===== h_mainhelp_cmdlineopts ======
2795 <HTML>
2796 <HEAD>
2797 <TITLE>Command Line Options</TITLE>
2798 </HEAD>
2799 <BODY>
2800 <H1>Command Line Options</H1>
2802 Alpine accepts a number of command line arguments, allowing you, for
2803 example, to start Alpine and immediately access a particular folder.
2804 Many of these arguments overlap with options in the Alpine configuration file.
2805 If there is a difference, then an option set on the command line takes
2806 precedence.
2807 Alpine expects command line arguments (other than addresses) to be
2808 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
2809 A <a href="h_command_line_options">full list</a> of command line
2810 possibilities is available.
2812 &lt;End of help on this topic&gt;
2813 </BODY>
2814 </HTML>
2815 ===== h_mainhelp_config ======
2816 <HTML>
2817 <HEAD>
2818 <TITLE>Alpine Configuration</TITLE>
2819 </HEAD>
2820 <BODY>
2821 <H1>Alpine Configuration</H1>
2823 Unless it has been administratively disabled, the Setup command on the
2824 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
2825 The possible subcommands are for general Configuration settings,
2826 Printer settings, Changing your Password, Signature setup,
2827 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
2828 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
2829 and Color configuration.
2830 In particular, the &quot;Config&quot; subcommand has many features you may
2831 set or unset and many other configuration variables that may be set to change
2832 the way Alpine works.
2833 Every one of the hundreds of options available in that configuration settings
2834 screen has help text associated with it.
2835 You may read that text by moving the cursor to highlight the option and then
2836 typing the Help command.
2838 These settings are stored in your personal
2839 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
2840 <A HREF="h_config_remote_config">remotely</A>),
2841 but on shared systems these settings
2842 may be over-ridden by a system-wide control file (due to local site
2843 security or support policies).  A global pine configuration file can also
2844 be used to set default values for all Alpine users on a particular system.
2845 Power users may be interested in splitting their personal configuration
2846 data into two pieces, a generic piece and
2847 <A HREF="h_config_exceptions">exceptions</A> which apply to
2848 a particular platform.
2849 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
2850 General Alpine configuration information can be found
2851 <A HREF="h_news_config">here</A>.
2853 &lt;End of help on this topic&gt;
2854 </BODY>
2855 </HTML>
2856 ===== h_mainhelp_aggops ======
2857 <HTML>
2858 <HEAD>
2859 <TITLE>Aggregate Operations</TITLE>
2860 </HEAD>
2861 <BODY>
2862 <H1>Aggregate Operations</H1>
2864 When you are in the MESSAGE INDEX, the available commands
2865 (for example, Delete, Undelete, Save, Reply, and so on)
2866 normally act on a single message.
2867 So, for example, if you press the Delete command, the currently highlighted
2868 message is marked Deleted.
2869 These commands that normally act on a single message may be applied to
2870 several messages at once instead.
2872 By default this feature is turned on, but it could be administratively turned
2873 off to reduce complexity.
2874 The feature
2875 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
2876 in the Setup/Config screen is used to turn it off or on.
2877 When this feature is turned on, the four commands &quot;Select&quot;,
2878 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
2879 are available.
2880 The two selection commands allow you to mark a set of
2881 messages as being &quot;selected&quot;.
2882 The &quot;ZoomMode&quot; command will toggle between
2883 displaying only the selected messages and displaying all the messages.
2884 The &quot;Apply&quot; command allows you to
2885 apply one of the regular MESSAGE INDEX commands to all of the selected
2886 messages instead of to only the highlighted message.
2888 An example aggregate operation would be to catch up when reading
2889 a news group.
2890 That is, get rid of all the messages in the news group so that you can
2891 start fresh.
2892 The easiest way to do this in Alpine is to use aggregate operations.
2893 You want to Delete all of the messages in the group.
2894 You could start at the top and type &quot;D&quot; once for every message.
2895 A much faster method is to first Select all of the messages in the group,
2896 and then Delete all of them.
2897 This would take four keystrokes:
2899 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
2900 <BR>
2901 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
2903 Another use of Select is to use it for searching for a particular message
2904 or set of messages in a large folder.
2905 You may know that the message was From a certain user.
2906 You could select all messages from that user to start, and use Zoom to
2907 look at only those messages.
2908 If there were still too many messages to look at you could Narrow the
2909 set of messages further by selecting from all of those messages only
2910 the ones that were after a certain date, or contained a particular phrase
2911 in the Subject, or were too a particular address, and so on.
2912 That may be the end of what you are doing, or you may want to use Apply to
2913 Save or Forward or Print all of the selected messages.
2915 Some related help topics are
2916 <UL>
2917 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
2918 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
2919 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
2920 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
2921 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
2922 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
2923 </UL>
2925 &lt;End of help on this topic&gt;
2926 </BODY>
2927 </HTML>
2928 ===== h_mainhelp_readingnews ======
2929 <HTML>
2930 <HEAD>
2931 <TITLE>Reading News</TITLE>
2932 </HEAD>
2933 <BODY>
2934 <H1>Reading News</H1>
2936 <H2>Background</H2>
2937 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
2938 commands as for mail. Similar to mailing lists but existing on a larger scale, 
2939 Usenet newsgroups allow groups of people with common interests to discuss 
2940 particular topics. You might find newsgroups related to your career, or you 
2941 might wish to check out the online discussion among the fans of your favorite 
2942 television show. 
2944 <H2>Configuring Alpine for Reading News</H2>
2945 Alpine often arrives
2946 pre-configured by your system administrator to automatically access the
2947 newsgroups offered by your organization, Internet Service Provider, or
2948 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
2949 need additional details on <a href="h_configuring_news">how to
2950 configure Alpine to read news</a>.
2952 <H2>Accessing Newsgroups</H2>
2953 The first step in reading news is to access the newsgroups collections
2954 screen from Alpine. If everything is configured properly, you should be able
2955 to do this by first typing L (folder List), then selecting the folder
2956 collection listed as "News." The actual name of this collection may differ
2957 from system to system.
2959 <H2>Subscribing to Newsgroups</H2>
2961 Once you have accessed the news collection, you need to subscribe to a
2962 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
2963 will keep a record of the newsgroups in which you are interested and which
2964 articles in those newsgroups have been read.
2966 <H2>Using Newsgroups</H2> 
2967 Alpine uses the similar commands to read news as to read mail. For example,
2968 the D command marks messages as Deleted (or "Dismissed," if you prefer),
2969 and the R command Replies to a news posting. Basically, Alpine allows you to
2970 read news as if it were mail, so you don't need to change the way you
2971 interact with Alpine.
2973 There is also additional Alpine help available on 
2974 <A HREF="h_reading_news">how to use Alpine to read news</A>.
2976 &lt;End of help on this topic&gt;
2977 </BODY>
2978 </HTML>
2979 ===== h_mainhelp_securing ======
2980 <HTML>
2981 <HEAD>
2982 <TITLE>Securing your Alpine Session</TITLE>
2983 </HEAD>
2984 <BODY>
2985 <H1>Securing your Alpine Session</H1>
2987 By default, Alpine will attempt to connect to an IMAP server on the normal
2988 IMAP service port (143).
2989 If the Alpine you are using has been built to
2990 support &quot;Transport Layer Security&quot; (TLS)
2991 and &quot;Secure Sockets Layer&quot; (SSL) 
2992 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
2993 and the server offers the STARTTLS capability, then a secure (encrypted)
2994 session will be established.
2996 When you are connected to a remote folder the titlebar will contain a plus sign
2997 in the far right column if the connection is encrypted using TLS or SSL.
2998 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
2999 if the connection is encrypted.
3001 <H2>More Information on Alpine with SSL and TLS</H2>
3002 <UL>
3003 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3004 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3005 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3006 <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>
3007 </UL>
3008 <H2>Here are some other security-related features and options</H2>
3010 <UL>
3011 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3012 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3013 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3014 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3015 </UL>
3017 &lt;End of help on this topic&gt;
3018 </BODY>
3019 </HTML>
3020 ===== h_mainhelp_problems ======
3021 <HTML>
3022 <HEAD>
3023 <TITLE>Reporting Problems</TITLE>
3024 </HEAD>
3025 <BODY>
3026 <H1>Reporting Problems</H1>
3028 We ask that you first read the relevant help screens and then seek
3029 assistance from your own local support staff.  Once you are sure that your
3030 difficulty is not a local configuration problem, you might look at the
3031 help section explaining where to look for
3032 <A HREF="h_finding_help">more information</A> and where to 
3033 get assistance.
3036 <ADDRESS>
3037    Eduardo Chappa &lt;chappa@gmx.com&gt;
3038 </ADDRESS>
3041 &lt;End of help on this topic&gt;
3042 </BODY>
3043 </HTML>
3044 ===== h_main_menu_commands ======
3045 <HTML>
3046 <HEAD>
3047 <TITLE>MAIN MENU COMMANDS</TITLE>
3048 </HEAD>
3049 <BODY>
3050 <H1>MAIN MENU COMMANDS</H1>
3052 <!--chtml if pinemode="function_key"-->
3053 &nbsp;Available&nbsp;Commands&nbsp;--
3054 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3055 &nbsp;------------------------------
3056 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3057 ----------<BR>
3058 &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>
3059 &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>
3060 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3061 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3062 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3063 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3064 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3065 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3066 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3067 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3068 &nbsp;F7&nbsp;&nbsp;<A 
3069 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3070 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3071 &nbsp;F8&nbsp;&nbsp;<A 
3072 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3073 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3074 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 
3075 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3076 &nbsp;F10&nbsp;<A 
3077 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 
3078 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3079 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3080 &nbsp;F11&nbsp;<A 
3081 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3082 <!--chtml else-->
3083 &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>
3084 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3085 &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>
3086 &nbsp;C&nbsp;&nbsp;<A 
3087 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>
3088 &nbsp;I&nbsp;&nbsp;<A 
3089 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>
3090 &nbsp;L&nbsp;&nbsp;<A 
3091 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>
3092 &nbsp;A&nbsp;&nbsp;<A 
3093 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3094 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3095 &nbsp;S&nbsp;&nbsp;<A 
3096 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 
3097 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3098 &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>
3099 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
3100 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3101 <!--chtml endif-->
3104 NOTE:
3105 <OL>
3106  <LI>For help on a particular command, highlight the bold text associated
3107 with it above and hit Return.
3108  <LI> The availability of certain commands (e.g. some of the options under
3109 SETUP) is determined by Alpine configuration files and system capabilities.
3110 At some sites, certain commands may not be available due to security or
3111 support concerns.
3112 </OL>
3114 &lt;End of help on this topic&gt;
3115 </BODY>
3116 </HTML>
3118 ===== h_command_line_options ======
3119 <HTML>
3120 <HEAD>
3121 <TITLE>COMMAND LINE OPTIONS</TITLE>
3122 </HEAD>
3123 <BODY>
3124 <H1>COMMAND LINE OPTIONS</H1>
3125 Possible starting arguments for Alpine:
3127 <DL COMPACT>
3129 <DT> <EM>[addresses]</EM>
3131 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3132 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3133 <EM>Alpine</EM> will startup in
3134 the composer with a message started to the addresses specified.
3135 Once the message is sent, the <EM>Alpine</EM> session closes.
3136 Standard input redirection is allowed.
3137 Separate multiple addresses with a space between them.
3138 Addresses are placed in the &quot;To&quot; field only.
3141 <DT> &lt; <EM>file</EM>
3143 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3144 into the body of the message.
3145 Once the message is sent, the <EM>Alpine</EM> session closes. 
3148 <DT> -attach <EM>file</EM>
3150 <DD> Go directly into composer with given file attached.
3153 <DT> -attachlist <EM>file-list</EM>
3155 <DD> Go directly into composer with given files attached.
3156 This must be the last option on the command line.
3159 <DT> -attach_and_delete <EM>file</EM>
3161 <DD> Go directly into composer with given file attached, delete when finished.
3164 <DT> -aux <EM>local_directory</EM>
3166 <DD> <EM>PC-Alpine</EM> only.
3167 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3168 files, like debug files, address books, and signature files.  The pinerc may 
3169 be local or remote.
3172 <DT> -bail
3174 <DD> If the personal configuration file doesn't already exist, exit.
3175 This might be useful if the configuration file is accessed using some
3176 remote filesystem protocol. If the remote mount is missing this will cause
3177 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3180 <DT> -c <EM>n</EM>
3182 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3183 This is used when there are multiple folder collections (contexts) and you 
3184 want to open a folder not in the primary collection.
3187 <DT> -conf
3189 <DD> Configuration: Prints a sample system configuration file to the
3190 screen or standard output. To generate an initial system configuration 
3191 file, execute
3193 <PRE><CODE>
3194                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3195 </CODE></PRE>
3198 To generate a system configuration file using settings from an old
3199 system configuration file, execute
3201 <PRE><CODE>
3202                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3203 </CODE></PRE>
3205 A system configuration file is not required.
3208 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3210 <DD> Copy an address book file to a remote address book folder.
3211 If the remote folder doesn't exist, it will be created.
3212 If it exists but the first message in the folder isn't a remote address
3213 book header message, the copy will be aborted.
3214 This flag will not usually be used by a user.
3215 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3216 and copy entries from the local address book by using aggregate Save in
3217 the address book screen.
3220 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3222 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3223 If the remote folder doesn't exist, it will be created.
3224 If it exists but the first message in the folder isn't a remote pinerc
3225 header message, the copy will be aborted.
3226 This flag may be useful to users who already have a local pinerc file and
3227 would like to convert it to a remote pinerc folder and use that instead.
3228 This gives a way to bootstrap that conversion without having to manually
3229 reset all of the variables in the remote pinerc folder.
3232 <DT> -d <EM>debug-level</EM>
3234 <DD> Debug Level:  Sets the level of debugging information written by
3235 <EM>Alpine</EM>.
3236 <EM>debug-level</EM> can be set to any integer 0-9.
3237 A debug level of 0 turns off debugging for the session.
3238 (Actually there are some levels higher than 9, but you probably don't
3239 want to see them.)
3242 <DT> -d <EM>keywords</EM>
3244 <DD> You may use a more detailed version of the debugging flag to set
3245 the debug level in separate parts of <EM>Alpine</EM>.
3246 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3247 verbose=0..9.
3248 <EM>Flush</EM> causes debugging information to be flushed immediately to
3249 the debug file as it is written.
3250 <EM>Verbose</EM> is the general debugging verbosity level.
3251 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3252 is useful when you are trying to figure out what is responsible for delays.
3253 <EM>Numfiles</EM> sets the number of debug files saved.
3254 <EM>Imap</EM> sets the debug level for the debugging statements related
3255 to the conversation with the IMAP server, and more generally, for the
3256 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3257 <EM>Tcp</EM> turns on some TCP/IP debugging.
3260 <DT> -f <EM>folder</EM>
3262 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3263 of the standard INBOX.
3266 <DT> -F <EM>file</EM>
3268 <DD> Open named text file for viewing and forwarding.
3271 <DT> -h
3273 <DD> Help:  Prints the list of available command-line arguments to the
3274 screen.
3277 <DT> -i
3279 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3280 screen instead of the MAIN MENU.
3283 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3286 <DT> -I <EM>a,b,c,...</EM>
3288 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3289 sequence of commands upon startup.
3290 This allows users to get <EM>Alpine</EM> to start in any
3291 of its menus/screens.
3292 You cannot include any input to the composer in the initial keystrokes.
3293 The key &lt;Return&gt; is represented by a ``CR'' in
3294 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3295 Control keys are two character sequences beginning with ``^'', such as
3296 ``^I''.
3297 A tab character is ``TAB''.
3298 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3299 ``DOWN'', ``LEFT'', and ``RIGHT''.
3300 A restriction is that you can't mix function keys and character keys in this
3301 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3302 A user can always use only <EM>character</EM> keys in the startup list even
3303 if he or she is using <EM>function</EM> keys normally, or vice versa.
3304 If an element in this list is a string of characters surrounded by double
3305 quotes (&quot;) then it will be expanded into the individual characters in
3306 the string, excluding the double quotes.
3309 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3312 <DT> -install
3314 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3315 some basic information to help with getting properly set up.
3318 <DT> -k
3320 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3321 the input of commands to be function-keys.
3322 Otherwise, commands are linked to the regular character keys.
3325 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3326 <EM>Feature-List</EM>.
3329 <DT> -n <EM>n</EM>
3331 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3332 FOLDER INDEX screen with the current message being the specified
3333 message number.
3336 <DT> -nosplash
3338 <DD> <EM>PC-Alpine</EM> only.
3339 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3340 This may be helpful for certain troubleshooting or terminal server scenarios.
3343 <DT> -o <EM>folder</EM>
3345 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3348 <DT> -p <EM>pinerc</EM>
3350 <DD> Uses the named file as the personal configuration file instead of
3351 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3352 Alpinerc may be either a local file or a remote configuration folder.
3355 <DT> -P <EM>pinerc</EM>
3357 <DD> Uses the named file as the system wide configuration file instead of
3358 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3359 Alpinerc may be either a local file or a remote configuration folder.
3362 <DT> -passfile <EM>passfile</EM>
3364 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3365 This should be a fully-qualified filename.
3368 <DT> -pinerc <EM>file</EM>
3370 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3371 settings of variables that the user has made.
3372 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3375 <DT> -r
3377 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3378 <EM>Alpine</EM> in restricted mode can only send email to itself.
3379 Save and export are limited.
3382 <DT> -registry <EM>cmd</EM>
3384 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3385 <EM>Alpine</EM>'s registry entries.
3386 Possible values for <EM>cmd</EM> are set, clear, and dump.
3387 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3388 entries according to its current settings.
3389 <EM>Clear</EM> will clear the registry values.
3390 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3391 <EM>Dump</EM> will display the values of current registry settings.
3392 Note that the dump command is currently disabled.
3393 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3394 the registry only if there currently aren't any values set.
3397 <DT> -sort <EM>key</EM>
3399 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3400 FOLDER INDEX screen.
3401 <EM>Key</EM> can have the following values: 
3402 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3403 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3404 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3405 The default value is &quot;arrival&quot;.
3406 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3409 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3412 <DT> -uninstall
3414 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3415 in Windows settings.  The registry settings are removed and
3416 the password cache is cleared.
3419 <DT> -url <EM>url</EM>
3421 <DD> Open the given URL.
3424 <DT> -v
3426 <DD> Version:  Print version information to the screen.
3429 <DT> -x <EM>exceptions_config</EM>
3431 <DD> Configuration settings in the exceptions configuration override your normal
3432 default settings.
3433 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3436 <DT> -z
3438 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3439 will suspend the <EM>Alpine</EM> session.
3442 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3443 <EM>Feature-List</EM>.
3446 <DT> -<EM>option</EM>=<EM>value</EM>
3448 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3449 For example, <EM>-signature-file=sig1</EM> or
3450 <EM>-Feature-List=signature-at-bottom</EM>.
3451 Note:  Feature-List values are
3452 additive and features may be preceded with no- to turn them off.
3453 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3454 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3455 <EM>-Feature-List=signature-at-bottom</EM>.
3458 </DL>
3460 &lt;End of help on this topic&gt;
3461 </BODY>
3462 </HTML>
3463 ===== h_configuring_news ======
3464 <HTML>
3465 <HEAD>
3466 <TITLE>CONFIGURING NEWS</TITLE>
3467 </HEAD>
3468 <BODY>
3469 <H1>CONFIGURING NEWS</H1>
3470 Alpine can access news folders in any one of three different ways:
3471 <DL>
3472 <DT>REMOTE NNTP</DT>
3473 <DD>Using the Network News Transport Protocol (NNTP) to
3474 access news on a remote news server.  In this case the newsrc file is
3475 stored on the machine where Alpine is running.
3478 To specify a remote news-collection accessed via NNTP use the
3479 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3480 Server: value to the NNTP server's hostname appended with the
3481 communication method &quot;/service=NNTP&quot;, and set the Path:
3482 value to the &quot;#news.&quot; namespace (without the quotes).  See
3483 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3484 help text for a more complete explanation of access method, and the
3485 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3486 text for a more complete explanation of &quot;namespace&quot;.
3488 Instead of specifying a news-collection, you may simply set the
3489 <A HREF="h_config_nntp_server">NNTP Server</A>
3490 option, which will cause Alpine to create a default news-collection for you.
3491 Another NNTP option that may be of interest is
3492 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3494 <DT>REMOTE IMAP</DT>
3495 <DD>Using the Internet Message Access Protocol (IMAP) to
3496 access news on a remote news server.  In this case, your newsrc file is
3497 stored on the news server, in your home directory, so you must have an
3498 account on the news server, but you would be running Alpine on a different
3499 machine.  The news server must be running an IMAPd server process. 
3502 To specify a remote news-collection accessed via IMAP use the
3503 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3504 Server: value to the IMAP server's hostname, and set the Path: value
3505 to the &quot;#news.&quot; namespace (without the quotes).  See the
3506 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3507 text for a more complete explanation of &quot;namespace&quot;.
3509 </DD>
3511 <DT>LOCAL</DT>
3512 <DD>Using local file access to the news database.  In this
3513 case, your newsrc file is stored on the news server, in your home
3514 directory, so you must have an account on the news server, and you would
3515 be running Alpine on the same machine.
3518 To specify a local news-collection use the SETUP/collectionList
3519 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3520 set the Path: value to the &quot;#news.&quot; namespace (without the
3521 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3522 field's help text for a more complete explanation of &quot;namespace&quot;.
3524 </DD>
3525 </DL>
3529 NOTE: Should no news-collection be defined as above, Alpine will
3530 automatically create one using the Setup/Config screen's
3531 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3532 will be created as a &quot;Remote NNTP&quot; as described above.
3536 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3537 possible.  If you don't have an account on the news server, or if the news
3538 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3539 sure, ask your service provider, university, or company for help.)  In
3540 this case, your Unix .newsrc file can be transferred to your PC.  A good
3541 place to put it would be in the same directory as your PINERC file, under
3542 the name NEWSRC, but you can 
3543 <A HREF="h_config_newsrc_path">specify a different location</A>
3544 via Alpine's Setup/Config screen.
3547 Other configuration features related to news are
3548 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3549 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3550 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3551 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3552 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3553 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3554 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3555 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3558 &lt;End of help on this topic&gt;
3559 </BODY>
3560 </HTML>
3561 ===== h_reading_news ======
3562 <HTML>
3563 <HEAD>
3564 <TITLE>READING NEWS</TITLE>
3565 </HEAD>
3566 <BODY>
3567 <H1>READING NEWS</H1>
3569 Alpine uses almost the same commands for manipulating news folders as for
3570 mail folders.  This means, for example, that when you are done with a
3571 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3572 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3573 most newsreaders, wherein a message is implicitly dismissed after you have
3574 looked at it once. We strongly believe that Alpine should offer as much
3575 consistency as possible between mail and news, so the mail paradigm --
3576 wherein a message does not magically disappear without explicit action by
3577 the user -- is used for news as well. <P>
3579 If you answer a message in a news folder, the index view will show the
3580 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3581 keep track of what news as been read has no way of storing this flag, so
3582 it will not be preserved across sessions.  The Deleted flag is the only
3583 one that is preserved when you leave and then return to a newsgroup.  As an
3584 additional note on replies, when you Reply to a newsgroup message and say
3585 you want to reply to all recipients, Alpine will ask if you want to post the
3586 message to all the newsgroups listed in the original message. <P>
3588 If you would like Alpine to mark more-or-less recent news messages as
3589 &quot;New&quot;, then set the
3590 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3591 feature (which is set by default).  This will cause messages after the last one you have marked as
3592 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3593 &quot;N&quot; status often makes it easier to distinguish later news
3594 articles from those you've previously seen, but not yet disposed of via
3595 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3596 record of which messages you have not seen.
3599 A frequent operation in news-reading is &quot;catching up&quot; -- that
3600 is, getting rid of all the messages in the newsgroup so that you can
3601 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3602 Select command.  You would enter the following four keystrokes:
3603 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3604 dismiss) command to all of them.
3607 There are also additional details on 
3608 <A HREF="h_configuring_news">configuring news</a>.
3611 &lt;End of help on this topic&gt;
3612 </BODY>
3613 </HTML>
3614 ====== h_help_index ======
3615 <HTML>
3616 <HEAD>
3617 <TITLE>Help Index</TITLE>
3618 </HEAD>
3619 <BODY>
3620 <H1>Help Index</H1>
3621 <ul>
3622 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3623 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3624 <li><a href="h_main_addrbook">Address Book Command</a>
3625 <li><a href="h_abook_view">Address Book View Explained</a>
3626 <li><a href="h_compose_addrcomplete">Address Completion</a>
3627 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3628 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3629 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3630 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3631 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3632 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3633 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3634 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3635 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3636 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3637 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3638 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3639 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3640 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3641 <li><a href="h_news_legal">Alpine Legal Notices</a>
3642 <li><a href="h_compose_alted">Alt Editor Command</a>
3643 <li><a href="h_index_cmd_apply">Apply Command</a>
3644 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3645 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3646 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3647 <li><a href="h_composer_browse">BROWSER</a>
3648 <li><a href="h_common_bounce">Bounce Command</a>
3649 <li><a href="h_compose_cancel">Cancel Command</a>
3650 <li><a href="h_config_change_your_from">Changing your From Address</a>
3651 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3652 <li><a href="h_mainhelp_color">Color</a>
3653 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3654 <li><a href="h_composer">COMPOSER COMMANDS</a>
3655 <li><a href="h_mainhelp_composing">Composing Messages</a>
3656 <li><a href="h_mainhelp_collections">Collection Lists</a>
3657 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3658 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3659 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3660 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3661 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3662 <li><a href="h_common_compose">Compose Command</a>
3663 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3664 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3665 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3666 <li><a href="h_mainhelp_config">Configuration</a>
3667 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3668 <li><a href="h_config_dflt_color">Default Color</a>
3669 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3670 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3671 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3672 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3673 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3674 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3675 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3676 <li><a href="h_ge_export">Export File Selection</a>
3677 <li><a href="h_ge_allparts">Export Message File Selection</a>
3678 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3679 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3680 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3681 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3682 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3683 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3684 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3685 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3686 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3687 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3688 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3689 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3690 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3691 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3692 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3693 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3694 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3695 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3696 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3697 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3698 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3699 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3700 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3701 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3702 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3703 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3704 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3705 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3706 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3707 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3708 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3709 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3710 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3711 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3712 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3713 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3714 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3715 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3716 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3717 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3718 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3719 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3720 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3721 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3722 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3723 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3724 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3725 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3726 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3727 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3728 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3729 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3730 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3731 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3732 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3733 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3734 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3735 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3736 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3737 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3738 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3739 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3740 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3741 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3742 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3743 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3744 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3745 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3746 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3747 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3748 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3749 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3750 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3751 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3752 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3753 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
3754 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
3755 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
3756 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
3757 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
3758 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
3759 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
3760 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
3761 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
3762 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
3763 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
3764 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
3765 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
3766 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
3767 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
3768 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
3769 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
3770 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
3771 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
3772 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
3773 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
3774 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
3775 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
3776 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
3777 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
3778 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
3779 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
3780 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
3781 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
3782 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
3783 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
3784 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
3785 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
3786 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
3787 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
3788 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
3789 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
3790 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
3791 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
3792 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
3793 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
3794 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
3795 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
3796 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
3797 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
3798 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
3799 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
3800 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
3801 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
3802 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
3803 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
3804 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
3805 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
3806 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
3807 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
3808 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
3809 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
3810 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
3811 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
3812 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
3813 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
3814 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
3815 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
3816 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
3817 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
3818 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
3819 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
3820 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
3821 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
3822 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
3823 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
3824 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
3825 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
3826 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
3827 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
3828 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
3829 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
3830 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
3831 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
3832 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
3833 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
3834 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
3835 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
3836 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
3837 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
3838 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
3839 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
3840 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
3841 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
3842 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
3843 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
3844 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
3845 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
3846 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
3847 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
3848 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
3849 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
3850 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
3851 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
3852 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
3853 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
3854 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
3855 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
3856 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
3857 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
3858 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
3859 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
3860 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
3861 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
3862 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
3863 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
3864 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
3865 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
3866 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
3867 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
3868 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
3869 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
3870 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
3871 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
3872 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
3873 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
3874 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
3875 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
3876 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
3877 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
3878 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
3879 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
3880 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
3881 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
3882 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
3883 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
3884 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
3885 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
3886 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
3887 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
3888 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
3889 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
3890 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
3891 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
3892 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
3893 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
3894 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
3895 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
3896 <li><a href="h_mainhelp_filtering">Filtering</a>
3897 <li><a href="h_finding_help">Finding more information and requesting help</a>
3898 <li><a href="h_common_flag">Flag Command</a>
3899 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
3900 <li><a href="h_mainhelp_folders">Folders</a>
3901 <li><a href="h_what_are_collections">Folder Collections Explained</a>
3902 <li><a href="h_common_folders">Folder List Command</a>
3903 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
3904 <li><a href="h_folder_save">Folder Select for Save Explained</a>
3905 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
3906 <li><a href="h_config_change_your_from">From Address, Changing</a>
3907 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
3908 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
3909 <li><a href="h_common_goto">Goto Command</a>
3910 <li><a href="h_common_hdrmode">HdrMode Command</a>
3911 <li><a href="h_mainhelp_pinehelp">Help</a>
3912 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
3913 <li><a href="h_folder_maint">Help for Folder List</a>
3914 <li><a href="h_valid_folder_names">IMAP</a>
3915 <li><a href="h_ge_import">Import File Selection</a>
3916 <li><a href="h_mainhelp_index">Index of Messages</a>
3917 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
3918 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
3919 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
3920 <li><a href="h_info_on_mbox">Information on mbox driver</a>
3921 <li><a href="h_mainhelp_intro">Introduction</a>
3922 <li><a href="h_main_journal">Journal Command</a>
3923 <li><a href="h_common_jump">Jump Command</a>
3924 <li><a href="h_compose_justify">Justify Command</a>
3925 <li><a href="h_main_kblock">Keyboard Lock Command</a>
3926 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
3927 <li><a href="h_mainhelp_ldap">LDAP</a>
3928 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
3929 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
3930 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
3931 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
3932 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
3933 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
3934 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
3935 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
3936 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
3937 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
3938 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
3939 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
3940 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
3941 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
3942 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
3943 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
3944 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
3945 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
3946 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
3947 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
3948 <li><a href="h_ldap_view">LDAP Response View Explained</a>
3949 <li><a href="h_maildrop">Mail Drop: What is it?</a>
3950 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
3951 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
3952 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
3953 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
3954 <li><a href="h_common_index">Message Index Command</a>
3955 <li><a href="h_mainhelp_mouse">Mouse</a>
3956 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
3957 <li><a href="new_user_greeting">NEW USER GREETING</a>
3958 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
3959 <li><a href="h_mainhelp_readingnews">News Reading</a>
3960 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
3961 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
3962 <li><a href="h_common_nextnew">NextNew Command</a>
3963 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
3964 <li><a href="h_mainhelp_readingnews">NNTP</a>
3965 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
3966 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
3967 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
3968 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
3969 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
3970 <li><a href="h_config_color_style">OPTION: Color Style</a>
3971 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
3972 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
3973 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
3974 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
3975 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
3976 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
3977 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
3978 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
3979 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
3980 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
3981 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
3982 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
3983 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
3984 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
3985 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
3986 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
3987 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
3988 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
3989 <li><a href="h_config_file_dir">OPTION: File Directory</a>
3990 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
3991 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
3992 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
3993 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
3994 <li><a href="h_config_font_name">OPTION: Font Name</a>
3995 <li><a href="h_config_font_size">OPTION: Font Size</a>
3996 <li><a href="h_config_font_style">OPTION: Font Style</a>
3997 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
3998 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
3999 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4000 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4001 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4002 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4003 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4004 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
4005 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4006 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4007 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4008 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4009 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4010 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4011 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4012 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4013 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4014 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4015 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4016 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4017 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4018 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4019 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4020 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4021 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4022 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4023 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4024 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4025 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4026 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4027 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4028 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4029 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4030 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4031 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4032 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4033 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4034 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4035 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4036 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4037 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4038 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4039 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4040 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4041 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4042 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4043 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4044 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4045 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4046 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4047 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4048 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4049 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4050 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4051 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4052 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4053 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4054 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4055 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4056 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4057 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4058 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4059 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4060 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4061 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4062 <li><a href="h_config_printer">OPTION: Printer</a>
4063 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4064 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4065 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4066 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4067 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4068 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4069 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4070 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4071 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4072 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4073 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4074 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4075 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4076 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4077 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4078 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4079 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4080 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4081 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4082 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4083 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4084 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4085 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4086 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4087 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4088 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4089 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4090 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4091 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4092 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4093 <li><a href="h_config_status_color">OPTION: Status Color</a>
4094 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4095 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4096 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4097 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4098 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4099 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4100 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4101 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4102 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4103 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4104 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4105 <li><a href="h_config_title_color">OPTION: Title Color</a>
4106 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4107 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4108 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4109 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4110 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4111 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4112 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4113 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4114 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4115 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4116 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4117 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4118 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4119 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4120 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4121 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4122 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4123 <li><a href="h_mainhelp_patterns">Patterns</a>
4124 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4125 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4126 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4127 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4128 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4129 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4130 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4131 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4132 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4133 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4134 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4135 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4136 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4137 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4138 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4139 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4140 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4141 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4142 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4143 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4144 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4145 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4146 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4147 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4148 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4149 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4150 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4151 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4152 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4153 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4154 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4155 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4156 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4157 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4158 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4159 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4160 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4161 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4162 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4163 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4164 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4165 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4166 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4167 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4168 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4169 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4170 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4171 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4172 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4173 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4174 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4175 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4176 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4177 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4178 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4179 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4180 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4181 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4182 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4183 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4184 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4185 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4186 <li><a href="h_common_pipe">Pipe Command</a>
4187 <li><a href="h_valid_folder_names">POP</a>
4188 <li><a href="h_common_postpone">Postpone Command</a>
4189 <li><a href="h_common_print">Print Command</a>
4190 <li><a href="h_mainhelp_readingnews">Reading News</a>
4191 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4192 <li><a href="h_mainhelp_roles">Roles</a>
4193 <li><a href="h_role_select">ROLES SCREEN</a>
4194 <li><a href="h_compose_readfile">Read File Command</a>
4195 <li><a href="h_mainhelp_reading">Reading Messages</a>
4196 <li><a href="h_main_release_notes">Release Notes Command</a>
4197 <li><a href="h_common_reply">Reply and Forward Commands</a>
4198 <li><a href="h_compose_richhdr">Rich Header Command</a>
4199 <li><a href="h_common_role">Role Command</a>
4200 <li><a href="h_mainhelp_smime">S/MIME</a>
4201 <li><a href="h_index_cmd_select">Searching for Messages</a>
4202 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4203 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4204 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4205 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4206 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4207 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4208 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4209 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4210 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4211 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4212 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4213 <li><a href="h_common_save">Save and Export Commands</a>
4214 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4215 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4216 <li><a href="h_compose_send">Send Command</a>
4217 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4218 <li><a href="h_main_setup">Setup Command</a>
4219 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4220 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4221 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4222 <li><a href="h_mainhelp_smime">S/MIME</a>
4223 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4224 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4225 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4226 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4227 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4228 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4229 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4230 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4231 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4232 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4233 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4234 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4235 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4236 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4237 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4238 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4239 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4240 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4241 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4242 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4243 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4244 <li><a href="h_index_cmd_sort">Sort Command</a>
4245 <li><a href="h_compose_spell">Spell Check Command</a>
4246 <li><a href="h_common_suspend">Suspend Command</a>
4247 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4248 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4249 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4250 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4251 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4252 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4253 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4254 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4255 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4256 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4257 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4258 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4259 <li><a href="h_common_take">TakeAddr Command</a>
4260 <li><a href="h_mainhelp_status">Titlebar Line</a>
4261 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4262 <li><a href="h_config_usenone_color">Use None Color</a>
4263 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4264 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4265 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4266 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4267 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4268 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4269 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4270 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4271 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4272 </UL>
4275 &lt;End of Help Index&gt;
4276 </BODY>
4277 </HTML>
4280 ============== h_config_remote_config =============
4281 <HTML>
4282 <HEAD>
4283 <TITLE>Remote Configuration</TITLE>
4284 </HEAD>
4285 <BODY>
4286 <H1>Remote Configuration</H1>
4288 You may use the command line argument &quot;-p pinerc&quot; to tell
4289 Alpine to use a non-default configuration file.
4290 There are two types of storage for configuration information.
4291 <EM>Local</EM> configuration files are used by default.
4292 These are just regular files on the UNIX system or on the PC.
4293 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4294 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4295 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4296 The advantage of using a remote configuration is that the same information
4297 may be accessed from multiple platforms.
4298 For example, if you use one computer at work and another at home, the same
4299 configuration could be used from both places.
4300 A configuration change from one place would be seen in both places.
4301 To use a remote configuration you simply give a
4302 <A HREF="h_valid_folder_names">remote folder name</A>
4303 as the argument to the &quot;-p&quot; command line option.
4304 The command line might look something like:
4306 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4308 If there are special characters in the command shell you use, you may need to
4309 quote the last argument (to protect the curly braces from the shell).
4310 The command might look like:
4312 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4314 You should choose a folder name for a folder that does not yet exist.
4315 It will be created containing an empty configuration.
4316 Do not use a folder that you wish to store regular mail messages in.
4318 The Setup/RemoteConfigSetup command will help you convert from a local
4319 configuration to a remote configuration.
4320 It will create a remote configuration for you and copy your current local
4321 configuration to it.
4322 It will also help you convert local address books into remote address books
4323 and local signature files into literal signatures contained in the
4324 remote configuration file.
4326 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4327 may copy a local pinerc file to a remote configuration folder by hand
4328 by using the command line option &quot;-copy_pinerc&quot;.
4330 Another command line option, which is somewhat related to remote
4331 configuration, is the option &quot;-x exceptions_config&quot;.
4332 The configuration settings in the exceptions configuration override
4333 your default settings.
4334 It may be useful to store the default configuration (the -p argument) remotely
4335 and to have the exceptions configuration stored in a local file.
4336 You might put generic configuration information in the remote configuration
4337 and platform-specific configuration on each platform in the exceptions
4338 configuration.
4339 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4340 can be either remote folders or local files.
4342 There is another command line argument that works only with PC-Alpine and
4343 which may prove useful when using a remote configuration.
4344 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4345 to store your local auxiliary files.
4346 This only has an effect if your configuration file is remote.
4347 Some examples of auxiliary files are debug files, address book files, and
4348 signature files.
4350 &lt;End of help on this topic&gt;
4351 </BODY>
4352 </HTML>
4353 ============== h_config_exceptions =============
4354 <HTML>
4355 <HEAD>
4356 <TITLE>Generic and Exceptional Configuration</TITLE>
4357 </HEAD>
4358 <BODY>
4359 <H1>Generic and Exceptional Configuration</H1>
4361 If you use Alpine from more than one platform it may be convenient
4362 to split your configuration information into two pieces, a generic piece
4363 and exceptions that apply to a particular platform.
4364 For example, suppose you use Alpine from home and from work.
4365 Most of your configuration settings are probably the
4366 same in both locations, so those settings belong in the generic settings
4367 configuration.
4368 However, you may use a different SMTP server and INBOX
4369 from home than you do from work.
4371 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4373 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4374 options could be
4375 part of your exceptional configuration so that they could be different in the
4376 two places.
4378 The command line option &quot;-x exceptions_config&quot;
4379 may be used to split your configuration into generic and exceptional pieces.
4380 &quot;Exceptions_config&quot; may be either local or remote.
4381 The regular Alpine configuration file will contain the generic data, and
4382 &quot;exceptions_config&quot; will contain the exceptional data.
4384 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4385 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4386 in the same local directory that the regular config file is located in (usually
4387 the Unix home directory).
4388 If the regular config file is remote (because the command line option
4389 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4390 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4391 If the file does not already exist then no exceptions will be used.
4392 You can force exceptions to be used by using the &quot;-x&quot; option or
4393 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4395 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4396 PC-Alpine will use the value of the
4397 environment variable <CODE>$PINERCEX</CODE>.
4398 If that is not set, PC-Alpine will look for
4399 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4400 in the same local directory that the regular config file is located in.
4401 If the regular config file is remote (because the command line option
4402 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4403 local directory specified by the &quot;-aux local_directory&quot; command
4404 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4405 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4407 When you have an exception configuration there is a new command
4408 in the Alpine Setup screen, Setup/eXceptions.
4409 It toggles between exceptions and the regular configuration.
4410 This is the usual way to make changes in your exceptional configuration data.
4411 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4412 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4413 for Config or &quot;K&quot; for Kolor.
4415 For most people, splitting the configuration information into two pieces is
4416 going to be most useful if the generic information is accessed
4417 <A HREF="h_config_remote_config">remotely</A>).
4418 That data will be the same no matter where you access it from and if you
4419 change it that change will show up everywhere.
4420 The exceptional data will most commonly be in a local file, so that the
4421 contents may easily be different on each computing platform used.
4423 If you already have a local configuration file with settings you like
4424 you may find that the command Setup/RemoteConfigSetup is useful
4425 in helping you convert to a remote configuration.
4426 The command line flag &quot;-copy_pinerc&quot;
4427 may also be useful.
4429 &lt;End of help on this topic&gt;
4430 </BODY>
4431 </HTML>
4432 ============== h_config_inheritance =============
4433 <HTML>
4434 <HEAD>
4435 <TITLE>Configuration Inheritance</TITLE>
4436 </HEAD>
4437 <BODY>
4438 <H1>Configuration Inheritance</H1>
4440 Configuration inheritance is a power user feature.
4441 It is confusing and not completely supported by the configuration
4442 user interface.
4443 We start with an explanation of how configuration works in hopes of making
4444 it easier to describe how inheritance works.
4446 Alpine uses a hierarchy of configuration values from different locations.
4447 There are five ways in which each configuration option (configuration
4448 variable) can be set.
4449 In increasing order of precedence they are:
4451 <OL>
4452 <LI> the system-wide configuration file.
4454 <LI> the personal configuration file
4456 <LI> the personal exceptions file
4458 <LI> a command line argument
4460 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4461 </OL>
4463 The fixed configuration file is normally
4464 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4466 The system-wide configuration file is normally
4467 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4468 set for PC-Alpine.
4469 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4470 is used for the system-wide configuration.
4471 This location can be set or changed on the command line with the -P flag.
4472 The system-wide configuration file can be either a local file or a
4473 remote configuration folder.
4475 For Unix Alpine, the personal configuration file is normally the file
4476 <CODE>.pinerc</CODE> in the user's home directory.
4477 This can be changed with the -p command line flag.
4478 For PC-Alpine, the personal configuration file is in
4479 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4480 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4481 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4482 This can be changed with the -p command line flag.
4483 If -p is used, the configuration data may be in a local file or a remote config
4484 folder.
4486 For Unix Alpine, the personal exceptions configuration file is named
4487 <CODE>.pinercex</CODE> and is in the same directory as the personal
4488 configuration file, if that configuration file is not remote, and is in
4489 the home directory if the personal configuration file is remote.
4490 If the file exists, then exceptions are turned on.
4491 If it doesn't, then you are not using exceptions.
4492 Alternatively, you may change the location of the exceptions configuration
4493 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4494 Like the personal configuration data, exceptions_config may be
4495 either local or remote.
4497 For PC-Alpine, the personal exceptions configuration file is named
4498 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4499 configuration file unless the personal configuration file is remote.
4500 In that case, it is in the local directory specfied by the
4501 &quot;-aux local_directory&quot; command line argument.
4502 (In the case that the personal configuration is remote and there is no
4503 &quot;-aux&quot; command line argument, Alpine searches for
4504 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4505 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4506 If the file exists, then exceptions are turned on.
4507 If it doesn't, then you are not using exceptions.
4508 You may change the location of the exceptions configuration
4509 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4510 or with the
4511 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4512 option).
4514 To reiterate, the value of a configuration option is taken from the
4515 last location in the list above in which it is set.
4516 Or, thinking about it slightly differently, a default value for an option
4517 is established in the system-wide configuration file (or internally by Alpine
4518 if there is no value in the system-wide file).
4519 That default remains in effect until and unless it is overridden by a value in a
4520 location further down the list, in which case a new &quot;default&quot;
4521 value is established.
4522 As we continue down the list of locations we either retain the
4523 value at each step or establish a new value.
4524 The value that is still set after going through the whole list of
4525 configuration locations is the one that is used.
4527 So, for example, if an option is set in the system-wide configuration
4528 file and in the personal configuration file, but is not set in the
4529 exceptions, on the command line, or in the fixed file; then the value
4530 from the personal configuration file is the one that is used.
4531 Or, if it is set in the system-wide config, in the personal config, not
4532 in the exceptions, but is set on the command line; then the value
4533 on the command line is used.
4535 Finally we get to inheritance.
4536 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4537 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4538 the inheritance mechanism makes it possible to <EM>combine</EM>
4539 the values from different locations instead of <EM>replacing</EM> the value.
4540 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4541 for which you may already set whatever you want at
4542 any configuration location (by using the &quot;no-&quot; prefix if
4543 necessary).
4545 To use inheritance, set the first item in a configuration list to the
4546 token &quot;INHERIT&quot;, without the quotes.
4547 If the first item is &quot;INHERIT&quot;,
4548 then instead of replacing the default value established so far, the rest of
4549 the list is appended to the default value established so far and that is
4550 the new value.
4552 Here is an example which may make it clearer. Suppose we have:
4554 <PRE>
4555  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4556  Personal config    :   smtp-server = INHERIT, mysmtp.home
4557  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4558  Command line       :   smtp-server = &lt;No Value Set&gt;
4559  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4560 </PRE>
4563 This would result in an effective smtp-server option of
4565 <PRE>
4566  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4567 </PRE>
4569 The &quot;INHERIT&quot; token can be used in any of the configuration files
4570 and the effect cascades.
4571 For example, if we change the above example to:
4573 <PRE>
4574  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4575  Personal config    :   smtp-server = INHERIT, mysmtp.home
4576  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4577  Command line       :   smtp-server = &lt;No Value Set&gt;
4578  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4579 </PRE>
4582 This would result in:
4584 <PRE>
4585  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4586 </PRE>
4588 Unset variables are skipped over (the default value is carried forward) so
4589 that, for example:
4591 <PRE>
4592  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4593  Personal config    :   smtp-server = &lt;No Value Set&gt;
4594  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4595  Command line       :   smtp-server = &lt;No Value Set&gt;
4596  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4597 </PRE>
4600 produces:
4602 <PRE>
4603  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4604 </PRE>
4607 If any later configuration location has a value set (for a particular list
4608 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4609 then that value replaces whatever value has been defined up to that point.
4610 In other words, that cancels out any previous inheritance.
4612 <PRE>
4613  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4614  Personal config    :   smtp-server = INHERIT, mysmtp.org
4615  Exceptions config  :   smtp-server = yoursmtp.org
4616  Command line       :   smtp-server = &lt;No Value Set&gt;
4617  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4618 </PRE>
4621 results in:
4623 <PRE>
4624  smtp-server = yoursmtp.org
4625 </PRE>
4628 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4629 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4630 difficult to insert the value &quot;INHERIT&quot; into the list of values
4631 for the option using the normal Setup tools.
4632 In other words, the color setting screen (for example) does not
4633 provide a way to input the text &quot;INHERIT&quot; as the first
4634 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4635 The way to do this is to either edit the pinerc file directly and manually
4636 insert it, or turn
4637 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4638 feature and insert it using the Setup/Config screen.
4640 &lt;End of help on this topic&gt;
4641 </BODY>
4642 </HTML>
4643 ============== h_special_xon_xoff =============
4644 <HTML>
4645 <HEAD>
4646 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4647 </HEAD>
4648 <BODY>
4649 <H1>XOFF/XON Handling within Alpine</H1>
4651 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4652 and XON) as normal characters, even though Alpine does not use them.
4653 However, the printer, modem, or communication software you are using may
4654 be configured for &quot;software flow control,&quot; which means that
4655 XON/XOFF must be treated as special characters by the operating system.
4656 If you see messages such as &quot;^S not defined for this screen&quot;,
4657 then your system is probably using software flow control. In this case
4658 you will need to set the
4659 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4660 feature.
4662 If you <EM>do</EM> set this
4663 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4664 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4665 and see if that puts things right.  Printing via the
4666 &quot;attached-to-ansi&quot; or 
4667 &quot;attached-to-wyse&quot;
4668 option will automatically enable software
4669 flow-control handling for the duration of the printing.
4671 &lt;End of help on this topic&gt;
4672 </BODY>
4673 </HTML>
4674 ============= h_special_help_nav =============
4675 <HTML>
4676 <HEAD>
4677 <TITLE>Help Text Navigation Explained</TITLE>
4678 </HEAD>
4679 <BODY>
4680 <H1>Help Text Navigation Explained</H1>
4682 Alpine contains extensive context-sensitive help text.   At any point, 
4683 pressing the &quot;?&quot; key will bring up a page of help text
4684 explaining the options available to you.  You can leave the help
4685 text screen and return to normal Alpine operation by pressing
4687 <!--chtml if pinemode="function_key"-->
4688 F3 function
4689 <!--chtml else-->
4690 &quot;E&quot;
4691 <!--chtml endif-->
4692 key to Exit Help at any time.
4695 Within the help screen you might find a word or phrase displayed in 
4696 inverse text and others displayed in bold typeface.  Such words and
4697 phrases are used to tell you Alpine has more information available on
4698 the topic they describe.
4699 The inverted text is the &quot;selected&quot; topic.  
4700 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4701 displayed in bold type
4702 is &quot;selected&quot;.
4703 Hit the Return key to display the information Alpine has available on that
4704 topic.  While viewing such additional information, the 
4705 <!--chtml if pinemode="function_key"-->
4706 F3 function
4707 <!--chtml else-->
4708 &quot;P&quot;
4709 <!--chtml endif-->
4710 key will return you to the previous help screen, and the
4711 <!--chtml if pinemode="function_key"-->
4712 F2 function
4713 <!--chtml else-->
4714 &quot;E&quot;
4715 <!--chtml endif-->
4716 key will Exit the Help system altogether.
4719 The "N" command will tell you the internal name of the help text you are 
4720 reading each time, so that you can send this name in the text of a message 
4721 and create a direct link to that internal help using the x-pine-help URL 
4722 scheme. For example, the direct link to this item is 
4723 x-pine-help:h_special_help_nav. If you add this text to a message, then
4724 a person using Pine to read such message would have a direct link to this
4725 help text.
4728 When you are finished reading this help text, you can press the
4729 <!--chtml if pinemode="function_key"-->
4730 F3 function
4731 <!--chtml else-->
4732 &quot;P&quot;
4733 <!--chtml endif-->
4734 key to return to the previously displayed help text.
4737 &lt;End of help on this topic&gt;
4738 </BODY>
4739 </HTML>
4740 ============= h_special_list_commands =============
4741 <HTML>
4742 <HEAD>
4743 <TITLE>Email List Commands Explained</TITLE>
4744 </HEAD>
4745 <BODY>
4746 <H1>Email List Commands Explained</H1>
4748 Electonic mail lists provide a way for like-minded users to join in
4749 discussions on topics of interest.  The email list itself is 
4750 represented by a
4751 single address that participants send messages to when they have
4752 something of interest to share with other members of the list.  The
4753 receiving computer then, either automatically or after review by the
4754 list's owner (or moderator), sends a copy of that message to each
4755 member of the list.
4758 Usually, subscribing and unsubscribing is done by sending requests in
4759 an email message to a special address setup to handle managing list
4760 membership.  Often this is the name of the list followed by
4761 <I>-request</I>.  This address is almost <EM>never</EM> the same as
4762 the address used to send messages to the list.
4765 Unfortunately, email list participation commands are more a matter
4766 of convention than standard, and thus may vary from list to list.
4767 Increasingly, list management software is adding information to
4768 the copy of the postings as they're copied to the list members that
4769 explains how to do the various list management functions.
4772 Alpine will recognize this information and offer the management commands
4773 they represent in a simple display. One or more of the following
4774 operations will be made available:
4776 <DL>
4777 <DT>Help</DT>
4778 <DD>
4779 A method to get help on subscribing, unsubscribing, 
4780 an explanation of what the list is about, or special instructions
4781 for participation.  This may be in the form of a reply in response
4782 to an email message, or instructions on how to connect to a Web site.
4783 </DD>
4785 <DT>Unsubscribe</DT>
4786 <DD>
4787 A method to get your email addressed removed from the list of
4788 recipients of the email list.
4789 </DD>
4791 <DT>Subscribe</DT>
4792 <DD>
4793 A method to get your email address added to the list of recipients
4794 of the email list.  It may be in the form of a message sent to 
4795 a special address or you may be connected to a web site.
4796 <DD>
4797 </DD>
4799 <DT>Post</DT>
4800 <DD>
4801 A method used to post to the email list.  However, it might also 
4802 indicate that no posting is allowed directly to the list.
4803 </DD>
4805 <DT>Owner</DT>
4806 <DD>
4807 A method to contact the list owner for special questions you might
4808 have regarding the list.
4809 </DD>
4811 <DT>Archive</DT>
4812 <DD>
4813 A method to view an archive of previous messages posted to the list.
4814 This may be in the form of a mail folder on a remote computer, an
4815 IMAP mailbox or even a Web site.
4816 </DD>
4817 </DL>
4820 &lt;End of help on this topic&gt;
4821 </BODY>
4822 </HTML>
4823 ============= h_quota_command =============
4824 <HTML>
4825 <HEAD>
4826 <TITLE>Quota Screen Explained</TITLE>
4827 </HEAD>
4828 <BODY>
4829 <H1>Quota Screen Explained</H1>
4831 <P> This screen summarizes the quota report for this mailbox in the
4832 IMAP server. For each resource that you have a quota, this reports summarizes
4833 its use and limit.
4835 <P> Your IMAP server administrator may have set a quota based either on 
4836 the total size of your mailbox (STORAGE), or the number of messages in 
4837 your mailbox (MESSAGES), or some other criteria. This will be reported
4838 to you indicating the type of quota, its total use and its limit.
4840 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
4841 1024 bytes. Each of the characters that you see in this help text is one 
4842 byte, and this help text is about 1 kibibyte in size. Small messages sent 
4843 by Alpine are normally less than 4 kibibytes in size (which includes 
4844 headers and text). Other email programs may send messages with bigger 
4845 sizes when they send messages, since they send plain text and an 
4846 alternative part in HTML.
4848 <P> A convenient way to save space for the STORAGE type of quota is by 
4849 deleting attachments. This is done on each individual message by pressing 
4850 the &quot;V&quot; command while reading the message text, then moving the cursor 
4851 to the position of the attachment that is to be deleted, then pressing
4852 &quot;D&quot; to delete such attachment, going back to reading the 
4853 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
4854 save the message in the same folder you are reading from. The saved 
4855 message will not have the attachment that was marked deleted. Now you
4856 can delete and expunge the message with the unwanted attachment.
4859 &lt;End of help on this topic&gt;
4860 </BODY>
4861 </HTML>
4862 ============= h_mail_thread_index =============
4863 <HTML>
4864 <HEAD>
4865 <TITLE>THREAD INDEX COMMANDS</TITLE>
4866 </HEAD>
4867 <BODY>                 
4868 <H1>THREAD INDEX COMMANDS</H1>
4869 <!--chtml if pinemode="function_key"-->
4870 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>
4871 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4872 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>
4873 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>
4874 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>
4875 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>
4876 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>
4877 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>
4878 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>
4879 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>
4880 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>
4881 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>
4882 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>
4883 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>
4884 <BR>
4885 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4886 -----------------------------<BR>
4887 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>
4888 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>
4889 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>
4890 <BR>
4891 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4892 -----------------------------<BR>
4893 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
4894 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
4895 <BR>
4896 <!--chtml else-->
4897 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>
4898 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4899 &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>
4900 &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>
4901 &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>
4902 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>
4903 &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>
4904 &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>
4905 &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>
4906 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>
4907 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4908 <BR>
4909 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
4910 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
4911 &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>
4912 &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>
4913 &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>
4914 &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>
4915 &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>
4916 &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>
4917 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
4918 <!--chtml endif-->
4921 NOTE:
4922 <OL>
4923  <LI>For help on a particular command, highlight the bold text associated
4924 with it above and hit Return.
4925  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4926 </OL>
4928 <H2>Description of the THREAD INDEX Screen</H2>
4930 The THREAD INDEX displays summary information from each
4931 thread (conversation) in the current folder.
4932 This is useful if you want to quickly
4933 scan new threads, or find a particular thread without having to go
4934 through the text of each message, or to quickly get rid of junk
4935 threads, etc.
4936 The current thread is always highlighted.
4937 Each line of the THREAD INDEX contains the following columns: <P>
4938 <DL>
4939  <DT>STATUS:</DT>
4940  <DD> The markings on the left side of the thread tell you about its
4941 status.  You may see one or more of the following codes on any given
4942 thread:
4943 <UL>
4944   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
4945   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
4946   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
4947   <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.
4948   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4949         message in the thread was sent to you as a cc:. This symbol will only show up if
4950         the feature
4951         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4952   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
4953         &quot;select&quot; command.  (Some systems may optionally allow selected
4954         messages to be denoted by the index line being displayed in bold
4955         type instead.)
4956   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4957       to mark at least one message in this thread as &quot;important&quot;.
4958 </UL></DD><P>
4960  <DT>THREAD NUMBER:</DT>
4961  <DD>Threads in a folder are numbered, from one through the number
4962 of threads in the folder, to help you know where you are in the folder.
4963 </DD><P>
4965  <DT>DATE STARTED:</DT>
4966  <DD>The date the thread was started. This is actually from the Date header
4967 of the first message in the thread. It doesn't take different time zones
4968 into account.</DD><P>
4970  <DT>WHO STARTED THE THREAD:</DT>
4971  <DD>This is usually the name of the sender of the first message in the thread, taken from
4972 the From header of the message.
4973 If there is no personal name given in that
4974 address, then the email address is used instead.
4975 If the message is from you (or from one of your
4976 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4977 then the recipient's name is shown here instead, with the characters
4978 &quot;To: &quot; inserted before the name.
4979 (The idea of this is that if you started the thread you would rather see who
4980 the mail was sent to instead of that the mail was from you.)
4981 In Newsgroups, if you are
4982 the sender and there are no email recipients, the newsgroup name will be
4983 listed after the &quot;To: &quot;.
4984 </DD><P>
4986  <DT>SIZE:</DT>
4987  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
4989  <DT>SUBJECT:</DT>
4990  <DD>As much of the thread's subject line as will fit on the screen.
4991 This is the subject of the first message in the thread.</DD>
4992 </DL>
4994 <P><UL>
4995 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4996 </UL>
4998 &lt;End of help on this topic&gt;
4999 </BODY>
5000 </HTML>
5001 ============= h_mail_index =============
5002 <HTML>
5003 <HEAD>
5004 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5005 </HEAD>
5006 <BODY>                 
5007 <H1>MESSAGE INDEX COMMANDS</H1>
5008 <!--chtml if pinemode="function_key"-->
5009 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>
5010 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5011 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>
5012 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>
5013 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>
5014 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>
5015 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>
5016 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>
5017 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>
5018 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>
5019 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>
5020 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>
5021 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>
5022 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>
5023 <BR>
5024 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5025 -----------------------------<BR>
5026 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>
5027 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>
5028 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>
5029 <BR>
5030 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5031 -----------------------------<BR>
5032 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
5033 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>
5034 <BR>
5035 <!--chtml else-->
5036 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>
5037 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5038 &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>
5039 &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>
5040 &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>
5041 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>
5042 &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>
5043 &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>
5044 &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>
5045 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>
5046 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5047 Miscellaneous&nbsp;Operations<BR>
5048 ------------------------<BR>
5049 &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>
5050 &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>
5051 &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>
5052 &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>
5053 &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>
5054 &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>
5055 &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>
5056 &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>
5057 <!--chtml endif-->
5060 NOTE:
5061 <OL>
5062  <LI>For help on a particular command, highlight the bold text associated
5063 with it above and hit Return.
5064  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5065 </OL>
5067 <H2>Description of the MESSAGE INDEX Screen</H2>
5069 The MESSAGE INDEX displays summary information from each
5070 message in the current folder.
5071 This is useful if you want to quickly
5072 scan new messages, or find a particular message without having to go
5073 through the text of each message, or to quickly get rid of junk
5074 messages, etc.
5076 The current message is always highlighted
5077 and many commands operate on the current message.
5078 For example, the Delete command will delete the current message.
5079 If the folder is sorted by either Threads or OrderedSubject, then, depending
5080 on some of your configuration settings, a single line in the index may
5081 refer to an entire thread or to a subthread.
5082 If that is the case, then the commands that normally operate on the current
5083 message will operate on the thread or subthread instead.
5084 For example, the Delete command will delete the whole collapsed thread
5085 instead of just a single message.
5087 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5088 you can change this with the 
5089 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5090 in the SETUP CONFIGURATION screen): <P>
5091 <DL>
5092  <DT>STATUS:</DT>
5093  <DD> The markings on the left side of the message tell you about its
5094 status.  You may see one or more of the following codes on any given
5095 message:
5096 <UL>
5097   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5098          yet eXpunged the folder.
5099   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5100   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5101          to be answered.
5102   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5103          forward a message.
5104   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5105         directly to your account, your copy is not part of a cc: or a
5106         mailing list.
5107   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5108         message was sent to you as a cc:. This symbol will only show up if
5109         the feature
5110         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5111   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5112         &quot;select&quot; command.  (Some systems may optionally allow selected
5113         messages to be denoted by the index line being displayed in bold
5114         type.)
5115   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5116       to mark this message as &quot;important&quot;.
5117 </UL></DD><P>
5119  <DT>MESSAGE NUMBER:</DT>
5120  <DD>Messages in a folder are numbered, from one through the number
5121 of messages in the folder, to help you know where you are in the folder.
5122 These numbers are always in increasing order, even if you sort the folder
5123 in a different way.</DD><P>
5125  <DT>DATE SENT:</DT>
5126  <DD>The date the message was sent.  By default, messages are
5127 ordered by arrival time, not by date sent.  Most of the time, arrival time
5128 and date sent (effectively departure time) are similar.  Sometimes,
5129 however, the index will appear to be out of order because a message took a
5130 long time in delivery or because the sender is in a different time
5131 zone than you are. This date is just the date from the Date header
5132 field in the message.</DD><P>
5134  <DT>WHO SENT THE MESSAGE:</DT>
5135  <DD>This is usually the name of the sender of the message, taken from
5136 the From header of the message.
5137 If there is no personal name given in that
5138 address, then the email address is used instead.
5139 If the message is from you (or from one of your
5140 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5141 then the recipient's name is shown here instead, with the characters
5142 &quot;To: &quot; inserted before the name.
5143 (The idea of this is that if you sent the mail you would rather see who
5144 the mail was sent to instead of that the mail was from you.
5145 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5146 above.
5147 In particular, use the FROM token or the FROMORTONOTNEWS token
5148 in place of the FROMORTO token.)
5149 In Newsgroups, if you are
5150 the sender and there are no email recipients, the newsgroup name will be
5151 listed after the &quot;To: &quot;. </DD><P>
5153  <DT>SIZE:</DT>
5154  <DD>The number in parentheses is the number of characters in the message.
5155 It may have a suffix of K, M, or G which means the number should be
5156 multiplied by one thousand, one million, or one billion to get the
5157 size of the message.</DD><P>
5159  <DT>SUBJECT:</DT>
5160  <DD>As much of the message's subject line as will fit on the screen.</DD>
5161 </DL>
5163 <P><UL>
5164 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5165 </UL>
5167 &lt;End of help on this topic&gt;
5168 </BODY>
5169 </HTML>
5170 ============= h_mail_view ========================
5171 <HTML>
5172 <HEAD>
5173 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5174 </HEAD>
5175 <BODY>
5176 <H1>MESSAGE TEXT SCREEN</H1>
5177 <!--chtml if pinemode="function_key"-->
5178 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>
5179 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5180 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>
5181 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>
5182 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>
5183 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>
5184 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>
5185 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>
5186 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>
5187 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>
5188 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>
5189 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>
5190 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>
5191 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>
5192 <BR>
5193 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5194 ------------------------------<BR>
5195 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5196 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5197 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5198 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5199 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5200 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5201 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5202 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5203 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5204 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5205 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5206 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5207 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5208 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5209 <!--chtml else-->
5210 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5211 ---------------------------------<BR>
5212 <BR>
5213 &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>
5214 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>
5215 &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>
5216 &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>
5217 &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>
5218 &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>
5219 &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>
5220 &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>
5221 &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>
5222 <BR>
5223 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5224 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5225 &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>
5226 &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>
5227 &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>
5228 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>
5229 <BR>
5230 General&nbsp;Alpine&nbsp;Commands<BR>
5231 ---------------------<BR>
5232 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5233 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5234 &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>
5235 &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>
5236 &nbsp;&nbsp;&nbsp;&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>
5237 <!--chtml endif-->
5240 NOTE:
5241 <OL>
5242  <LI>For help on a particular command, highlight the bold text associated
5243 with it above and hit Return.
5244  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5245 </OL>
5247 <H2>Description of the MESSAGE TEXT Screen</H2>
5249 The top line of the view message screen displays status
5250 information about the currently open collection and folder and about the
5251 current message.  It shows the name of the collection in angle brackets
5252 and then the name of the folder.  The line also displays the number
5253 of messages in the folder, the number of the current message and the
5254 percentage of the current message that has been displayed on the screen.
5255 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5256 right corner.
5257 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5258 in the corner.
5261 NOTE: to rapidly move to the end of a message, hit the
5262 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5263 (or Ctrl-W) key followed
5264 by Ctrl-V.  Similarly,
5265 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5266 followed by Ctrl-Y will take you to the beginning of
5267 a message.
5269 <H2>Explanation of Alternate Character Sets</H2>
5271 Alpine attempts to stay out of the way so that it won't prevent you from
5272 viewing mail in any character set.  It will simply send the message to
5273 your display device.  If the device is capable of displaying the
5274 message as it was written it will do so.  If not, the display may be
5275 partially or totally incorrect.
5276 If the message contains characters that are not representable in your 
5277 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5278 variable in your configuration, then a warning message will be printed
5279 to your screen at the beginning of the message display.
5280 It is probably best to use UNIX Alpine in a terminal emulator
5281 capable of displaying UTF-8 characters.
5282 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5283 more information about character set settings.
5285 <P><UL>
5286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5287 </UL>
5289 &lt;End of help on this topic&gt;
5290 </BODY>
5291 </HTML>
5292 ======= h_index_cmd_select =======
5293 <HTML>
5294 <HEAD>
5295 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5296 </HEAD>
5297 <BODY>
5298 <H1>Selecting: Select and WhereIs/Select</H1>
5300 Aggregate operations give you the ability to process a group of messages
5301 at once.  Acting on multiple messages requires two steps: (1) selecting a
5302 set of messages and then; (2) applying a command to that set. The first
5303 part is handled by the select command.  Select allows you to
5304 select messages based on their status (read, answered, etc.), contents,
5305 date, size, or keywords.
5306 You may also select based on one of your Rules or based on threads,
5307 and there are quick options to select a specific message or range of messages,
5308 to select the current message, or to select all messages.
5311 We describe the various selection criteria briefly:
5314 <DL>
5315 <DT>select All</DT>
5316 <DD> Marks all the messages in the folder as selected.
5317 </DD>
5319 <DT>select Cur</DT>
5320 <DD> Selects the currently highlighted message or currently highlighted
5321 set of messages if in a threaded view.
5322 </DD>
5324 <DT>select by Number</DT>
5325 <DD> Select by message number. This may be a comma-separated list instead or
5326 a single entry.
5327 Each element in the list may be either a single message number or a range
5328 of numbers with a dash between the lowest and highest member of the range.
5329 Some examples are 7 to select only message number 7; 2-5 to select messages
5330 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5331 The word &quot;end&quot; may be used as a substitute for the highest numbered
5332 message in the folder.
5333 If in a separate thread index where the numbers refer to threads instead of
5334 to messages, then you will be selecting all of the messages in the
5335 referenced threads instead of selecting by message number.
5336 </DD>
5338 <DT>select by Date</DT>
5339 <DD> Select by either the date stored in the Date headers of each message,
5340 or by the date when the messages arrived.
5341 This does not adjust for different time zones, but just checks to see what
5342 day the message was sent on.
5343 You may type in a date. If you do, the date should be in the form
5344 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5345 For example,
5346 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5348 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5349 If the date you want is close to the current date, it is probably
5350 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5351 is displayed, instead of typing in the date yourself.
5352 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5353 the date of the currently highlighted message. 
5355 There are six possible settings that are selected using the
5356 &quot;^W&nbsp;Toggle When&quot; command.
5357 Three of them select messages based on the Date headers.
5358 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5359 and &quot;SENT ON&quot;.
5360 SINCE is all messages with the selected date or later.
5361 BEFORE is all messages earlier than the selected date (not including the day
5362 itself).
5363 ON is all messages sent on the selected date.
5364 The other three select messages in the same way but they use the arrival
5365 times of the messages instead of the Date headers included in the messages.
5366 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5367 and &quot;ARRIVED ON&quot;.
5368 When you save a message from one folder to another the arrival time is
5369 preserved.
5370 </DD>
5372 <DT>select by Text</DT>
5373 <DD> Selects messages based on the message contents.
5374 This allows you to select a set of messages based on whether or not the
5375 message headers or message body contain specified text.
5376 You may look for text in the Subject, the From header,
5377 the To header, or the Cc header.
5378 You may also choose Recipient, which searches for the text in
5379 either the To or the Cc header;
5380 or Participant, which means To or Cc or From.
5381 Besides those specific header searches, you may also search the entire
5382 header and text of the message with &quot;All Text&quot;, or just the
5383 body of the message.
5385 To search for the absence of text, first type the &quot;! Not&quot; command
5386 before typing the specific type of text search.
5387 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5388 search for all messages that do not contain a particular word in their
5389 Subjects.
5391 If you choose a Subject search, you may use the subject from the current
5392 message by typing the &quot;^X Cur Subject&quot; command.
5393 You may then edit it further if you wish.
5394 For example, you might select the subject of a reply and edit the
5395 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5396 the original message being replied to.
5397 All of the other header searches allow you to use addresses from the
5398 headers of the current message if you want to.
5399 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5400 &quot;^W Cur Cc&quot;.
5401 In each case, if there is more than one address, only the first is offered.
5402 </DD>
5404 <DT>select by Status</DT>
5405 <DD> Selects messages based on their status.
5406 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5407 messages.
5408 Or, if you first type the &quot;! Not&quot; command, you get not New,
5409 or not Important, and so on.
5410 If you select Deleted messages, you will get all messages with their
5411 Deleted flag set.
5412 Likewise for Important messages, all messages that you have flagged as
5413 being Important with the
5414 <A HREF="h_common_flag">Flag</A> command.
5415 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5416 because they try to match what you see on the screen by default.
5417 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5418 and Unanswered.
5419 If you have looked at the message, or deleted it, or answered it; then it
5420 is not considered &quot;New &quot;.
5421 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5423 &quot;Answered&quot; is another one that is a little different.
5424 It means that the message has been Answered <EM>and</EM> is not deleted.
5425 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5426 the opposite of &quot;Answered&quot;!
5427 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5428 both Unanswered <EM>and</EM> not deleted.
5430 The other two types were added later because the special nature of the
5431 New flag was not what was wanted by all users.
5432 New does match what you see in the index by default, but if you use
5433 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5434 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5435 be exactly what you want.
5436 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5437 they are deleted or answered, and
5438 &quot;Recent&quot; selects all of the messages that have been added to
5439 the folder since you started this Alpine session.
5440 (That's not technically quite true. If there are multiple mail clients
5441 reading an IMAP mailbox, each message will be marked as Recent in only
5442 one of the client's sessions.)
5443 </DD>
5445 <DT>select by siZe</DT>
5446 <DD> Selects messages based on their size being smaller than or larger
5447 than the size you specify.
5448 The size is the number of bytes.
5449 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5450 the number.
5451 For example, 7K is the same as 7000.
5452 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5453 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5454 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5455 and Larger.
5456 </DD>
5458 <DT>select by Keyword</DT>
5459 <DD> Selects messages that either have or do not have
5460 (using the &quot;!&nbsp;Not&quot; command)
5461 a particular <A HREF="h_config_keywords">Keyword</A> set.
5462 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5463 command to select one from your list of keywords.
5465 <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.
5466 </DD>
5468 <DT>select by Rule</DT>
5469 <DD> Selects messages that either match or don't match
5470 (using the &quot;!&nbsp;Not&quot; command)
5471 one of the Rules you have defined.
5472 The most likely method of filling in the Rule is to use the
5473 &quot;^T&nbsp;To&nbsp;List&quot;
5474 command to select one of your Rules.
5475 All of the Rules you have defined will be in the list, including
5476 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5477 They may not all make sense for this purpose, but they are all there for
5478 flexibility.
5479 You might find it useful to define some rules solely for the purpose
5480 of being used by the Select command.
5481 There is a special category for such Rules. They are called Search Rules.
5483 Unfortunately, Alpine does not allow all possible Rules to be defined.
5484 For example, there is no logical OR operation.
5485 OR is accomplished in the Filter Rules or the other types of Rules by
5486 simply defining two rules, one that matches the first part of the OR
5487 and another that matches the second part.
5488 But you can't do that here, since you only have a single Rule to work with.
5489 Likewise, the order of Rules is usually important.
5490 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5491 a message, then that stops the search for a further match.
5492 This means that you may be confused if you try to use Select by Rule to
5493 check your Filter rules because the order is important when filtering but
5494 is not considered here.
5495 </DD>
5497 <DT>select by tHread</DT>
5498 <DD> Selects all of the messages in the current thread.
5499 </DD>
5500 </DL>
5502 After you have an initial selection, the next and subsequent selection
5503 commands modify the selection.
5504 The select command changes. It first gives
5505 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5506 &quot;unselect Current&quot;,
5507 &quot;Broaden selection&quot; (implements a logical OR), and
5508 &quot;Narrow selection&quot; (implements a logical AND).
5509 After you choose either Broaden or Narrow, you then choose one of the
5510 selection criteria listed above (by Text or Number or ...).
5511 You may use select as many times as you wish to get the selected set right.
5514 The WhereIs command has a feature (Ctrl-X) to
5515 select all the messages that match the WhereIs search. WhereIs searches
5516 through just the text that appears on the MESSAGE INDEX screen.
5517 This method is often slower than using the select command itself, unless the
5518 line you are looking for is not too far away in the index.
5521 The availability of the aggregate operations commands is determined by the
5522 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5523 Feature-List option in your Alpine
5524 configuration, which defaults to set.
5525 The features
5526 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5528 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5529 affect the behavior of the Select command.
5532 &lt;End of help on this topic&gt;
5533 </BODY>
5534 </HTML>
5535 ======= h_select_rule =======
5536 <HTML>
5537 <HEAD>
5538 <TITLE>Select: Rule</TITLE>
5539 </HEAD>
5540 <BODY>
5541 <H1>Select: Rule</H1>
5543 You are selecting messages that either match or don't match
5544 one of the Rules you have defined.
5545 You may either type the nickname of the Rule at the prompt, or use the
5546 &quot;^T&nbsp;To&nbsp;List&quot;
5547 command to select one of your Rules.
5548 All of the Rules you have defined will be in the list, including
5549 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5550 They may not all make sense for this purpose, but they are all there for
5551 flexibility.
5552 Rules may be added by using the Setup/Rules screen off of the main Alpine
5553 menu.
5555 Unfortunately, Alpine does not allow all possible Rules to be defined.
5556 For example, there is no logical OR operation.
5557 OR is accomplished in the Filter Rules or the other types of Rules by
5558 simply defining two rules, one that matches the first part of the OR
5559 and another that matches the second part.
5560 But you can't do that here, since you only have a single Rule to work with.
5561 Likewise, the order of Rules is usually important.
5562 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5563 a message, then that stops the search for a further match.
5564 This means that you may be confused if you try to use Select by Rule to
5565 check your Filter rules because the order is important when filtering but
5566 is not considered here.
5569 &lt;End of help on this topic&gt;
5570 </BODY>
5571 </HTML>
5572 ======= h_select_text =======
5573 <HTML>
5574 <HEAD>
5575 <TITLE>Select: Text</TITLE>
5576 </HEAD>
5577 <BODY>
5578 <H1>Select: Text</H1>
5580 You are selecting messages based on the contents of the message.
5581 This allows you to select a set of messages based on whether or not the
5582 message headers or message body contain specified text.
5583 You may look for text in the Subject, the From header,
5584 the To header, or the Cc header.
5585 You may also choose Recipient, which searches for the text in
5586 either the To or the Cc header;
5587 or Participant, which means either the To header, or the Cc header,
5588 or the From header.
5589 Besides those specific header searches, you may also search the entire
5590 header and text of the message with &quot;All Text&quot;, or just the
5591 body of the message with &quot;Body&quot;.
5593 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5594 before typing the specific type of text search.
5595 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5596 search for all messages that do not contain a particular word in their
5597 Subjects.
5599 If you choose a Subject search, you may use the subject from the current
5600 message by typing the &quot;^X Cur Subject&quot; command.
5601 You may then edit it further if you wish.
5602 For example, you might select the subject of a reply and edit the
5603 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5604 the original message being replied to.
5605 All of the other header searches allow you to use addresses from the
5606 headers of the current message if you want to.
5607 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5608 &quot;^W Cur Cc&quot;.
5609 In each case, if there is more than one address, only the first is offered.
5612 &lt;End of help on this topic&gt;
5613 </BODY>
5614 </HTML>
5615 ======= h_select_status =======
5616 <HTML>
5617 <HEAD>
5618 <TITLE>Select: Status</TITLE>
5619 </HEAD>
5620 <BODY>
5621 <H1>Select: Status</H1>
5623 You are selecting messages based on the status of the message.
5624 For example, whether or not the message has been marked Deleted or Important,
5625 or whether or not it has been Answered or is New.
5626 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5627 opposite: not Deleted, not Important, and so on.
5629 If you select Deleted messages, you will get all messages with their
5630 Deleted flag set.
5631 Likewise for Important messages, all messages that you have flagged as
5632 being Important with the
5633 <A HREF="h_common_flag">Flag</A> command.
5634 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5635 because they try to match what you see on the screen by default.
5636 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5637 and Unanswered.
5638 If you have looked at the message, or deleted it, or answered it; then it
5639 is not considered &quot;New &quot;.
5640 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5642 &quot;Answered&quot; is another one that is a little different.
5643 It means that the message has been Answered <EM>and</EM> is not deleted.
5644 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5645 the opposite of &quot;Answered&quot;!
5646 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5647 both Unanswered <EM>and</EM> not deleted.
5649 (The New and Answered options may seem counter-intuitive.
5650 The reason it is done this way is
5651 because, by default, a Deleted message will show up with the &quot;D&quot;
5652 symbol in the MAIL INDEX screen even if it is New or Answered.
5653 The Delete symbol overrides the New and Answered symbols, because you
5654 usually don't care about the message anymore once you've deleted it.
5655 Similarly, you usually only care about whether a message is Answered or
5656 not if it is not Deleted.
5657 Once it is Deleted you've put it out of your mind.)
5659 The other two options were added later because the special nature of the
5660 New flag was not what was wanted by all users.
5661 New does match what you see in the index by default, but if you use
5662 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5663 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5664 be exactly what you expect.
5665 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5666 they are deleted or answered, and
5667 &quot;Recent&quot; selects all of the messages that have been added to
5668 the folder since you started this Alpine session.
5669 (That's not technically quite true. If there are multiple mail clients
5670 reading an IMAP mailbox, each message will be marked as Recent in only
5671 one of the client's sessions.
5672 That behavior can be convenienent for some purposes, like filtering, but
5673 it isn't usually what you expect when selecting.)
5676 &lt;End of help on this topic&gt;
5677 </BODY>
5678 </HTML>
5679 ======= h_index_cmd_apply =======
5680 <HTML>
5681 <HEAD>
5682 <TITLE>Apply Command</TITLE>
5683 </HEAD>
5684 <BODY>
5685 <H1>Apply Command</H1>
5687 Apply
5688 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5689 is the second step of most aggregate operations.  Apply
5690 becomes active any time there is a defined set of selected messages.  The
5691 following commands can be applied to a selected message set: delete,
5692 undelete, reply, forward,
5693 <!--chtml if pinemode="os_windows"-->
5694 <!--chtml else--> 
5695 pipe,
5696 <!--chtml endif-->
5697 print, take address, save, export, bounce, and flag.
5700 The behavior of some of these commands in an aggregate sense is not easy to
5701 explain.  Try them out to see what they do.
5702 The feature
5703 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5704 affects the behavior of the Apply command, as does the feature
5705 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5708 &lt;End of help on this topic&gt;
5709 </BODY>
5710 </HTML>
5711 ======= h_index_cmd_zoom =======
5712 <HTML>
5713 <HEAD>
5714 <TITLE>ZoomMode Command</TITLE>
5715 </HEAD>
5716 <BODY>
5717 <H1>ZoomMode Command</H1>
5719 Another action you might want to take on a set of selected messages is to
5720 zoom in on them.  Like apply, zoom only becomes active when messages have
5721 been selected.
5722 ZoomMode
5723 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5724 is a toggle command that allows you to
5725 zoom-in (and only see the selected messages) and zoom-out (to see all
5726 messages in the folder).  Neither apply nor zoom removes the markings that
5727 define the selected set; you need to use a select command in order
5728 to do that.
5731 &lt;End of help on this topic&gt;
5732 </BODY>
5733 </HTML>
5734 ======= h_index_collapse_expand =======
5735 <HTML>
5736 <HEAD>
5737 <TITLE>Collapse/Expand Command</TITLE>
5738 </HEAD>
5739 <BODY>
5740 <H1>Collapse/Expand Command</H1>
5742 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5743 the folder is sorted by either Threads or OrderedSubject, and the
5744 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5745 is set to something other than &quot;none&quot;.
5746 By default, this command collapses or expands the subthread that starts at
5747 the currently highlighted message, if any.
5748 If the subthread is already collapsed, then this command expands it.
5749 If the subthread is expanded, then this command collapses it.
5750 If there are no more messages below the current message in the
5751 thread tree (that is, there are no replies to the current message) then
5752 this command does nothing.
5755 The behavior of this command is affected by the option
5756 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
5757 Normally, this command Collapses or Expands the subthread that
5758 starts at the currently highlighted message.
5759 If the above option is set, then this command Collapses or Expands the
5760 entire current thread instead of just the subthread.
5761 The current thread is simply the top-level thread that contains the
5762 current message.
5765 &lt;End of help on this topic&gt;
5766 </BODY>
5767 </HTML>
5768 ======= h_index_cmd_sort =======
5769 <HTML>
5770 <HEAD>
5771 <TITLE>Sort Command</TITLE>
5772 </HEAD>
5773 <BODY>
5774 <H1>Sort Command</H1>
5776 In Alpine's generic configuration, messages are presented in the order in
5777 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
5778 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
5779 You can also re-sort the folder on demand with the sort
5780 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
5781 command.
5782 Your sorting options are:
5784 <UL>
5785  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
5786  <LI> <A HREF="h_index_sort_date">D</A>ate
5787  <LI> <A HREF="h_index_sort_subj">S</A>ubject
5788  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
5789  <LI> t<A HREF="h_index_sort_thread">H</A>read
5790  <LI> <A HREF="h_index_sort_from">F</A>rom
5791  <LI> si<A HREF="h_index_sort_size">Z</A>e
5792  <LI> scor<A HREF="h_index_sort_score">E</A>,
5793  <LI> <A HREF="h_index_sort_to">T</A>o
5794  <LI> <A HREF="h_index_sort_cc">C</A>c
5795 </UL>
5798 The Reverse option will toggle the order the index is currently
5799 sorted by, but will not change the relative sort order.
5802 Sorting a folder does not actually rearrange the way the folder is saved,
5803 it just re-arranges how the messages are presented to you.  This means
5804 that Alpine has to do the work of sorting every time you change sort order.
5805 Sometimes, especially with PC-Alpine or with large folders, this could take
5806 a while.
5809 &lt;End of help on this topic&gt;
5810 </BODY>
5811 </HTML>
5812 ======= h_index_sort_default =======
5813 <HTML>
5814 <HEAD>
5815 <TITLE>SORT OPTION: Default</TITLE>
5816 </HEAD>
5817 <BODY>
5818 <H1>SORT OPTION: Default</H1>
5820 The <EM>Default</EM> sort option just means to use the default sort order
5821 set in the
5822 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
5823 option in Setup/Config.
5826 &lt;End of help on this topic&gt;
5827 </BODY>
5828 </HTML>
5829 ======= h_index_sort_arrival =======
5830 <HTML>
5831 <HEAD>
5832 <TITLE>SORT OPTION: Arrival</TITLE>
5833 </HEAD>
5834 <BODY>
5835 <H1>SORT OPTION: Arrival</H1>
5837 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5838 in the order that they exist in the folder.  This is usually the same as the
5839 order in which they arrived.  This option is comparable to not sorting
5840 the messages at all.
5843 &lt;End of help on this topic&gt;
5844 </BODY>
5845 </HTML>
5846 ======= h_index_sort_date =======
5847 <HTML>
5848 <HEAD>
5849 <TITLE>SORT OPTION: Date</TITLE>
5850 </HEAD>
5851 <BODY>
5852 <H1>SORT OPTION: Date</H1>
5854 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5855 according to the date and time they were
5856 sent.
5859 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
5860 identical to sorting by &quot;Arrival&quot;.
5863 &lt;End of help on this topic&gt;
5864 </BODY>
5865 </HTML>
5866 ======= h_index_sort_subj =======
5867 <HTML>
5868 <HEAD>
5869 <TITLE>SORT OPTION: Subject</TITLE>
5870 </HEAD>
5871 <BODY>
5872 <H1>SORT OPTION: Subject</H1>
5874 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5875 by subject. 
5878 Messages with the same subject are
5879 first grouped together, and then the groups of like-subject messages
5880 are arranged alphabetically.
5883 Alpine ignores leading &quot;Re:&quot; and
5884 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
5885 likeness and alphabetical order of subject lines.
5888 &lt;End of help on this topic&gt;
5889 </BODY>
5890 </HTML>
5891 ======= h_index_sort_ordsubj =======
5892 <HTML>
5893 <HEAD>
5894 <TITLE>SORT OPTION: OrderedSubject</TITLE>
5895 </HEAD>
5896 <BODY>
5897 <H1>SORT OPTION: OrderedSubject</H1>
5899 The <EM>OrderedSubject</EM> sort option arranges messages in the
5900 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
5901 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
5904 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
5905 messages by the date of the oldest message in the group.
5908 This sort method provides for pseudo threading of conversations within
5909 a folder.
5910 You may want to try sorting by Thread instead.
5913 &lt;End of help on this topic&gt;
5914 </BODY>
5915 </HTML>
5916 ======= h_index_sort_thread =======
5917 <HTML>
5918 <HEAD>
5919 <TITLE>SORT OPTION: Thread</TITLE>
5920 </HEAD>
5921 <BODY>
5922 <H1>SORT OPTION: Thread</H1>
5924 The <EM>Thread</EM> sort option arranges messages in the
5925 MESSAGE&nbsp;INDEX by grouping all messages that indicate
5926 they are part of a conversation (discussion thread) taking
5927 place within a mailbox or newsgroup.  This indication is
5928 based on information in the message's header -- specifically
5929 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
5932 &lt;End of help on this topic&gt;
5933 </BODY>
5934 </HTML>
5935 ======= h_index_sort_from =======
5936 <HTML>
5937 <HEAD>
5938 <TITLE>SORT OPTION: From</TITLE>
5939 </HEAD>
5940 <BODY>
5941 <H1>SORT OPTION: From</H1>
5943 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5944 by the name of the author of the message.
5947 Messages with the same author are grouped together. Groups of
5948 messages are then put into alphabetical order according to message
5949 author.
5952 &lt;End of help on this topic&gt;
5953 </BODY>
5954 </HTML>
5955 ======= h_index_sort_size =======
5956 <HTML>
5957 <HEAD>
5958 <TITLE>SORT OPTION: Size</TITLE>
5959 </HEAD>
5960 <BODY>
5961 <H1>SORT OPTION: Size</H1>
5963 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5964 by their relative sizes.
5967 &lt;End of help on this topic&gt;
5968 </BODY>
5969 </HTML>
5970 ======= h_index_sort_score =======
5971 <HTML>
5972 <HEAD>
5973 <TITLE>SORT OPTION: Score</TITLE>
5974 </HEAD>
5975 <BODY>
5976 <H1>SORT OPTION: Score</H1>
5978 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5979 by their scores.
5982 Messages with the same score are sorted in arrival order.
5983 Scores are something you create using the
5984 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
5987 &lt;End of help on this topic&gt;
5988 </BODY>
5989 </HTML>
5990 ======= h_index_sort_to =======
5991 <HTML>
5992 <HEAD>
5993 <TITLE>SORT OPTION: To</TITLE>
5994 </HEAD>
5995 <BODY>
5996 <H1>SORT OPTION: To</H1>
5998 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
5999 by the names of the recipients of the message.
6002 Messages with the same recipients are grouped together. Groups of
6003 messages are then put into alphabetical order according to message
6004 recipients.
6007 &lt;End of help on this topic&gt;
6008 </BODY>
6009 </HTML>
6010 ======= h_index_sort_cc =======
6011 <HTML>
6012 <HEAD>
6013 <TITLE>SORT OPTION: Cc</TITLE>
6014 </HEAD>
6015 <BODY>
6016 <H1>SORT OPTION: Cc</H1>
6018 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6019 the names of the carbon copy addresses of the message.
6022 &lt;End of help on this topic&gt;
6023 </BODY>
6024 </HTML>
6025 ======= h_index_cmd_whereis =======
6026 <HTML>
6027 <HEAD>
6028 <TITLE>WhereIs Command</TITLE>
6029 </HEAD>
6030 <BODY>
6031 <H1>WhereIs Command</H1>
6033 The WhereIs
6034 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6035 command lets you search the MESSAGE INDEX for a word.
6036 It scans through whatever you see, usually the name of the author
6037 and the Subject line.
6038 WhereIs has special subcommands to let you find the beginning of the
6039 index (Ctrl-Y -- first message)
6040 or the end of the index (Ctrl-V -- last message).
6042 Note that WhereIs only searches through the visible text on the screen.
6043 For example, if only part of the Subject of a message is shown because it
6044 is long, then only the visible portion of the Subject is searched.
6045 Also note that WhereIs does not &quot;see&quot; the 
6046 &quot;X&quot; in column one of Index entries for selected messages
6047 so it can't be used to search for
6048 selected messages (use &quot;Zoom&quot; instead).
6050 If the feature
6051 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6052 is turned on,
6053 WhereIs can also be used as a quick way to select messages that match the
6054 string being searched for.
6055 Instead of typing carriage return to search for the next match, type
6056 Ctrl-X to select all matches.
6057 Once again, this only selects matches that are (or would be if the right
6058 index line was on the screen) visible.
6059 Truncated From lines or Subjects will cause matches to be missed.
6060 Although WhereIs is sometimes convenient for quick matching, the Select
6061 command is usually more powerful and usually faster.
6064 &lt;End of help on this topic&gt;
6065 </BODY>
6066 </HTML>
6067 ======= h_view_cmd_whereis =======
6068 <HTML>
6069 <HEAD>
6070 <TITLE>WhereIs Command</TITLE>
6071 </HEAD>
6072 <BODY>
6073 <H1>WhereIs Command</H1>
6075 The WhereIs
6076 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6077 command does a &quot;find in current message&quot; operation.  You
6078 type in text and Alpine will try to find it in the message you are
6079 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6080 or end (Ctrl-V) of the message.
6081 That is, to rapidly move to the end of a message, hit the 
6082 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6083 (or Ctrl-W) key followed
6084 by Ctrl-V.  Similarly,
6085 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6086 followed by Ctrl-Y will take you to the beginning of a message.
6089 &lt;End of help on this topic&gt;
6090 </BODY>
6091 </HTML>
6092 ======= h_view_cmd_hilite =======
6093 <HTML>
6094 <HEAD>
6095 <TITLE>View Hilite and Next item/Previous item</TITLE>
6096 </HEAD>
6097 <BODY>
6098 <H1>View Hilite and Next item/Previous item</H1>
6100 Sometimes messages may be in the form of formatted HTML text
6101 or they may contain URLs or Web server hostnames.
6102 When any of the features
6103 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6104 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6105 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6107 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6108 are enabled, Alpine will represent such selectable items in the text
6109 in bold typeface.  One of the selectable items will be displayed in
6110 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6111 Press the Return key to view the currently selected item.
6114 The Up and Down Arrows keys can be used to change the selected item
6115 (also see the feature
6116 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6117 If there are no selectable items in the direction of the arrow you
6118 pressed, Alpine will scroll the display in that direction until one
6119 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6120 items in the message text, use the Previous and Next item commands,
6121 <!--chtml if pinemode="function_key"-->F5 and F6
6122 <!--chtml else-->^B and ^F<!--chtml endif-->.
6125 &lt;End of help on this topic&gt;
6126 </BODY>
6127 </HTML>
6128 ======= h_view_cmd_viewattch =======
6129 <HTML>
6130 <HEAD>
6131 <TITLE>ViewAttch Command</TITLE>
6132 </HEAD>
6133 <BODY>
6134 <H1>ViewAttch Command</H1>
6137 The View/Save Attachment
6138 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6139 command allows you to handle MIME attachments to a message you have
6140 received.  Alpine shows you a list of the message attachments -- you just
6141 choose the attachment you want.  You may either view or save the
6142 selected attachment.
6145 Because many attachments require external programs for display, there
6146 is some system configuration that has to happen before you can
6147 actually display attachments.  Hopefully much of that will have been
6148 done already by your system administrator.  MIME configuration is
6149 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6150 on configuration in the
6151 <A HREF="h_news">release notes</A> for more information.)
6154 &lt;End of help on this topic&gt;
6155 </BODY>
6156 </HTML>
6157 ======= h_index_cmd_expunge =======
6158 <HTML>
6159 <HEAD>
6160 <TITLE>Expunge/Exclude Command</TITLE>
6161 </HEAD>
6162 <BODY>
6163 <H1>Expunge/Exclude Command</H1>
6165 Expunge/Exclude
6166 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6167 is the command Alpine uses to actually remove all messages
6168 marked for deletion.  With regular email files, expunge literally deletes
6169 the text from the current folder.  With newsgroups or shared mailboxes,
6170 you don't have permission to actually remove the message, so it is an
6171 exclude -- Alpine removes the message from your view of the folder even
6172 though it is not technically gone.
6174 <P> A selective expunge command is available in IMAP folders that support 
6175 the UID EXPUNGE extension in <A 
6176 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6177 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6178 as a subcommand of the apply command. If some selected messages are marked 
6179 deleted, then the apply command will offer the eXpunge command, which when 
6180 executed will only expunge those messages that are selected and deleted.
6182 <P> 
6183 Observe that the expunge command (when not used from the apply command) 
6184 will expunge/exclude all deleted messages from the folder, and so all 
6185 messages marked deleted will be expunged, regardless of if they are 
6186 selected or not. In other words, there is no protection against 
6187 potentially expunging more messages than only those that have been 
6188 selected and deleted.
6191 The configuration features
6192 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6194 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6195 affect the behavior of the Expunge command.
6198 &lt;End of help on this topic&gt;
6199 </BODY>
6200 </HTML>
6201 ======= h_common_compose =======
6202 <HTML>
6203 <HEAD>
6204 <TITLE>Compose Command</TITLE>
6205 </HEAD>
6206 <BODY>
6207 <H1>Compose Command</H1>
6209 The Compose command takes you into the Alpine message composer where you
6210 can start a new message for sending.  This is where you type in the
6211 message's text and specify its recipient list (the &quot;To:&quot;
6212 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6213 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6214 be attached to the message.
6217 When you type this command, Alpine will also automatically check for any
6218 interrupted (i.e., a message that was being composed when your modem
6219 or network connection was broken) or previously postponed messages and
6220 offer you a chance to continue working on those.
6223 <UL>   
6224 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6225 </UL><P>
6226 &lt;End of help on this topic&gt;
6227 </BODY>
6228 </HTML>
6229 ======= h_common_index =======
6230 <HTML>
6231 <HEAD>
6232 <TITLE>Message Index Command</TITLE>
6233 </HEAD>
6234 <BODY>
6235 <H1>Message Index Command</H1>
6237 The Index command takes you to the MESSAGE INDEX screen that displays a
6238 summary caption for each message in the currently-open folder. One
6239 message will be highlighted; this is the &quot;Current&quot; message.
6240 The message commands available from this screen (e.g. View, Reply,
6241 Forward, Delete, Print, Save, etc) apply to the current message.
6244 &lt;End of help on this topic&gt;
6245 </BODY>
6246 </HTML>
6247 ======= h_common_folders =======
6248 <HTML>
6249 <HEAD>
6250 <TITLE>Folder List Command</TITLE>
6251 </HEAD>
6252 <BODY>
6253 <H1>Folder List Command</H1>
6255 This Folder List command takes you to the FOLDER LIST screen that displays
6256 the names of all your message folders and allows you to view, rename,
6257 delete, and add folders.  You can open (view) a different folder than the
6258 one currently open by highlighting the desired one (using the arrow keys
6259 or their control-key equivalents) and pressing RETURN.
6262 If you have multiple folder collections defined (see the Help text for
6263 the FOLDER LIST screen to learn more about Collections), you may need
6264 to press Return to expand the collection and display all of the
6265 folders in it.
6268 &lt;End of help on this topic&gt;
6269 </BODY>
6270 </HTML>
6271 ======= h_main_addrbook =======
6272 <HTML>
6273 <HEAD>
6274 <TITLE>Address Book Command</TITLE>
6275 </HEAD>
6276 <BODY>
6277 <H1>Address Book Command</H1>
6279 This command, available only from the MAIN MENU, takes you
6280 to the ADDRESS BOOK management screen.  From here, your personal address
6281 book(s) may be updated.
6284 &lt;End of help on this topic&gt;
6285 </BODY>
6286 </HTML>
6287 ======= h_main_setup =======
6288 <HTML>
6289 <HEAD>
6290 <TITLE>Setup Command</TITLE>
6291 </HEAD>
6292 <BODY>
6293 <H1>Setup Command</H1>
6295 The Setup command, available only from the MAIN MENU, prompts you for
6296 one of several configuration screens, including the SETUP CONFIGURATION 
6297 screen, by which you may activate optional Alpine features.
6300 &lt;End of help on this topic&gt;
6301 </BODY>
6302 </HTML>
6303 ======= h_main_release_notes =======
6304 <HTML>
6305 <HEAD>
6306 <TITLE>Release Notes Command</TITLE>
6307 </HEAD>
6308 <BODY>
6309 <H1>Release Notes Command</H1>
6311 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6312 as well as pointers to further information such as history and legal notes.
6315 &lt;End of help on this topic&gt;
6316 </BODY>
6317 </HTML>
6318 ======= h_main_kblock =======
6319 <HTML>
6320 <HEAD>
6321 <TITLE>Keyboard Lock Command</TITLE>
6322 </HEAD>
6323 <BODY>
6324 <H1>Keyboard Lock Command</H1>
6326 This command allows your Alpine session to be protected
6327 during a temporary absence from your terminal.
6330 &lt;End of help on this topic&gt;
6331 </BODY>
6332 </HTML>
6333 ======= h_main_journal =======
6334 <HTML>
6335 <HEAD>
6336 <TITLE>Journal Command</TITLE>
6337 </HEAD>
6338 <BODY>
6339 <H1>Journal Command</H1>
6341 This command displays a list of all the status messages Alpine has
6342 displayed (on the third line from the bottom of the screen). This may
6343 be useful if a message disappeared before you had a chance to read it.
6346 &lt;End of help on this topic&gt;
6347 </BODY>
6348 </HTML>
6349 ======= h_common_role =======
6350 <HTML>
6351 <HEAD>
6352 <TITLE>Role Command</TITLE>
6353 </HEAD>
6354 <BODY>
6355 <H1>Role Command</H1>
6357 The Role command is similar to the Compose command except that it starts
6358 off by letting you select a <A HREF="h_rules_roles">role</A>
6359 to be used for the composition.
6360 You may set up alternate roles by using Setup/Rules/Roles.
6363 &lt;End of help on this topic&gt;
6364 </BODY>
6365 </HTML>
6366 ======= h_common_conditional_cmds =======
6367 <HTML>
6368 <HEAD>
6369 <TITLE>Conditional Commands</TITLE>
6370 </HEAD>
6371 <BODY>
6372 <H1>Conditional Commands</H1>
6374 The presence or absence of certain commands, particularly in the
6375 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6376 whether or not specific features are set in your Alpine configuration.  
6377 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6378 Alpine's MAIN MENU.)  To see if a desired command's availability is
6379 conditioned on a feature setting, see the command's help text (highlight
6380 the phrase associated with the command and hit Return).
6383 Also note that some
6384 commands may be administratively disabled by your system manager;
6385 if they don't work, please check with your local help desk.
6388 <UL>   
6389 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6390 </UL><P>
6391 &lt;End of help on this topic&gt;
6392 </BODY>
6393 </HTML>
6394 ======= h_common_pipe =======
6395 <HTML>
6396 <HEAD>
6397 <TITLE>Pipe Command</TITLE>
6398 </HEAD>
6399 <BODY>
6400 <H1>Pipe Command</H1>
6402 Pipe
6403 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6404 allows you to send a message to a specified Unix command for external
6405 processing.
6406 This command's availability is controlled by the
6407 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6408 feature.
6409 By default, the processed text of the message is sent to the command
6410 you specify and the output is captured by Alpine and shown to you.
6411 When you run the pipe command, there are some sub-commands which may be
6412 used to alter this behavior.
6413 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6416 &lt;End of help on this topic&gt;
6417 </BODY>
6418 </HTML>
6419 ======= h_common_goto =======
6420 <HTML>
6421 <HEAD>
6422 <TITLE>Goto Command</TITLE>
6423 </HEAD>
6424 <BODY>
6425 <H1>Goto Command</H1>
6427 Goto
6428 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6429 is the command that lets you bypass Alpine's folder selection screens
6430 and jump directly to a new folder.  You can select any folder in the
6431 world: one in your current collection, one in a different collection or
6432 one in a collection you've never even used before.
6435 Alpine will help you as much as possible to narrow in on the folder you want.
6436 However, if the folder is outside of your defined collections, you are
6437 going to have to enter the exact folder location using the correct
6438 <A HREF="h_valid_folder_names">syntax</A>
6439 for a remote folder and/or fully-qualified path name.
6442 &lt;End of help on this topic&gt;
6443 </BODY>
6444 </HTML>
6445 ======= h_common_nextnew =======
6446 <HTML>
6447 <HEAD>
6448 <TITLE>NextNew Command</TITLE>
6449 </HEAD>
6450 <BODY>
6451 <H1>NextNew Command</H1>
6453 When you press the TAB key, Alpine advances to the next
6454 &quot;interesting&quot; message.
6455 This will be the next message you have not seen before, or the next message
6456 you have flagged Important, whichever comes first.
6457 Unread messages that have been deleted are not considered interesting.
6458 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6459 articles after you have read them if you want to remove them from future
6460 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6461 more information.)
6464 The NextNew command is affected by the feature
6465 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6466 which causes Alpine to only consider Unread messages interesting, not messages
6467 flagged Important.
6470 This command behaves a little differently when it finds there are no more
6471 interesting messages left in the current folder.
6472 If the current folder is one of your Incoming Message Folders
6473 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6474 or it is a newsgroup, then Alpine will try to find the next folder or
6475 newsgroup that contains <EM>Recent</EM> messages and will ask you
6476 if you want to open that folder.
6477 This behavior may be modified by using the
6478 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6479 feature that causes Alpine to look for Unseen messages instead of Recent
6480 messages.
6481 The NextNew command's behavior is also affected by the configuration features
6482 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6484 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6487 &lt;End of help on this topic&gt;
6488 </BODY>
6489 </HTML>
6490 ======= h_common_jump =======
6491 <HTML>
6492 <HEAD>
6493 <TITLE>Jump Command</TITLE>
6494 </HEAD>
6495 <BODY>
6496 <H1>Jump Command</H1>
6498 This is Alpine's way of allowing you to go straight to a specific message.
6499 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6500 configured such that typing in any number automatically jumps you to that
6501 message 
6502 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6503 in the SETUP CONFIGURATION).
6506 &lt;End of help on this topic&gt;
6507 </BODY>
6508 </HTML>
6509 ======= h_common_flag =======
6510 <HTML>
6511 <HEAD>
6512 <TITLE>Flag Command</TITLE>
6513 </HEAD>
6514 <BODY>
6515 <H1>Flag Command</H1>
6517 Flag
6518 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6519 is the command that allows users to manipulate the status flags that
6520 appear on the left side of the MESSAGE INDEX screen.  The most common
6521 use of this is to mark a message as important. This is something of a
6522 note to yourself to get back to that message.  You may also use the
6523 flag command to set (or unset) the flags that indicate that a message
6524 is new, answered, deleted, or forwarded.<P>
6526 Provided the mail server supports it,
6527 you may also manipulate user-defined keywords
6528 for a message using the flag command.
6529 These keywords will be available if you use the Flag Details screen that you
6530 can get to after typing the
6531 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6532 command.
6533 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6534 which are always present.
6535 You may add new keywords by using the Add KW command from the Flag Details screen
6536 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6538 The availability of the flag command is determined by the
6539 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6540 feature in your Alpine configuration. Also, it is possible that Flag could be
6541 administratively disabled by your system manager; if it doesn't work,
6542 please check with your local help desk before reporting a bug.
6543 The behavior of the flag command may be modified by the
6544 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6545 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6548 &lt;End of help on this topic&gt;
6549 </BODY>
6550 </HTML>
6551 ======= h_common_hdrmode =======
6552 <HTML>
6553 <HEAD>
6554 <TITLE>HdrMode Command</TITLE>
6555 </HEAD>
6556 <BODY>
6557 <H1>HdrMode Command</H1>
6559 Every email message comes with some header lines that you normally
6560 don't see (and don't want to see).
6561 These include anywhere from 3-20 lines (or more) added by the
6562 Internet mail transport system to record the route your message took,
6563 for diagnostic purposes.
6564 These are normally of no import and simply
6565 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6566 This also includes other non-standard headers the message may contain.
6567 If you want to see these headers, there is a way to reveal them.
6570 The Header Mode
6571 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6572 command is a toggle that controls Alpine's handling of these header
6573 lines.  Normally, full headers is &quot;off&quot; and you only see a
6574 few lines about who a message is to and who it is from.  When you
6575 press
6576 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6577 to turn full headers on, Alpine will show you
6578 the normal header lines as well as delivery headers, comment headers,
6579 MIME headers, and any other headers present.
6582 Several different Alpine commands honor the header mode -- it affects how
6583 messages are displayed, how they appear in forward and reply email, how
6584 they are printed, how they are saved, and how they are exported.
6585 <!--chtml if pinemode="os_windows"-->
6586 <!--chtml else--> 
6587 The pipe command is also affected.
6588 <!--chtml endif-->
6591 The presence or absence of the Header Mode command is determined by the
6592 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6593 Feature-List option in your Alpine configuration.
6596 If you have also turned on the
6597 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6598 option then the HdrMode command actually rotates through three states
6599 instead of just two.
6600 The first is the normal view with long quotes suppressed.
6601 The second is the normal view but with the long quotes included.
6602 The last enables the display of all headers in the message.
6603 When using Export, Pipe, Print, Forward, or Reply the quotes are
6604 never suppressed, so the first two states are identical.
6607 The behavior of the Header Mode command may be altered slightly by
6608 turning on the
6609 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6610 Feature-List option in your Alpine configuration.
6611 In particular, it will cause the Header Mode to be persistent when moving
6612 from message to message instead of resetting to the default for each message.
6615 <UL>   
6616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6617 </UL><P>
6618 &lt;End of help on this topic&gt;
6619 </BODY>
6620 </HTML>
6621 ======= h_common_print =======
6622 <HTML>
6623 <HEAD>
6624 <TITLE>Print Command</TITLE>
6625 </HEAD>
6626 <BODY>
6627 <H1>Print Command</H1>
6629 The Print
6630 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6631 command allows you to print a copy of a message.
6632 There are many SETUP CONFIGURATION features that affect the
6633 Print command, including
6634 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6635 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6636 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6637 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6638 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6639 You set up for printing by using the Printer option of the Setup command
6640 on the MAIN MENU.
6644 &lt;End of help on this topic&gt;
6645 </BODY>
6646 </HTML>
6647 ======= h_common_take =======
6648 <HTML>
6649 <HEAD>
6650 <TITLE>TakeAddr Command</TITLE>
6651 </HEAD>
6652 <BODY>
6653 <H1>TakeAddr Command</H1>
6656 With the Take Address
6657 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6658 command, you can extract email addresses from an
6659 incoming message and save them in an address book.  This is an easy way
6660 to add to your address book and avoid having to remember the email
6661 addresses of the people who write to you.
6664 If the message is just to you individually, then you will only need to
6665 provide a nickname.  If the message contains more than one email address,
6666 then you will see an address
6667 selection screen that lets you choose the address you want to save into
6668 your address book, or lets you choose several of them add to a
6669 personal distribution list.
6672 Once you've added an entry to your address book, you can use it from the
6673 message composer by typing the nickname of the entry into one of the
6674 header fields (for example, into the To: field), or you can use ^T from
6675 the header field to select the entry from your address book.
6678 If the configuration feature
6679 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6680 is set, the behavior of the Take command is altered slightly.
6683 &lt;End of help on this topic&gt;
6684 </BODY>
6685 </HTML>
6686 ======= h_ge_import =======
6687 <HTML>
6688 <HEAD>
6689 <TITLE>Import File Selection</TITLE>
6690 </HEAD>
6691 <BODY>
6692 <H1>Import File Selection</H1>
6694 You are importing a file that you previously
6695 exported from Alpine.
6696 You are now being asked for the name of that file.
6697 The easiest way to select a file is probably with the &quot;^T&quot;
6698 &quot;To Files&quot; command.
6699 Alternatively, you may type in a file name.
6700 It may be an absolute pathname.
6701 Otherwise, it is a file located in your home directory
6702 or current working directory
6703 <!--chtml if pinemode="running"-->
6704 (which, at least for your current Alpine &quot;session,&quot; 
6705 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6706 <!--chtml endif-->, depending on the
6707 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6708 In any case, you finish by typing a carriage return to accept the
6709 file name that is displayed.
6710 When the feature
6711 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6712 is turned on you may use TAB to complete partially typed in names.
6714 You may cancel the import operation by typing &quot;^C&quot; after exiting
6715 this help.
6717 &lt;End of help on this topic&gt;
6718 </BODY>
6719 </HTML>
6720 ======= h_ge_allparts =======
6721 <HTML>
6722 <HEAD>
6723 <TITLE>Export Message File Selection</TITLE>
6724 </HEAD>
6725 <BODY>
6726 <H1>Export Message File Selection</H1>
6728 You are Exporting a message from an Alpine mail folder
6729 to a plain text file.
6730 You also have the option of exporting all of the attachments associated
6731 with the message.
6732 You are now being asked for the name of the file to export <EM>to</EM>.
6733 The easiest way to select a file is probably with the &quot;^T&quot;
6734 &quot;To Files&quot; subcommand.
6735 After returning from that subcommand you will still be allowed to
6736 edit the name you have selected.
6737 Alternatively, you may type in a file name.
6738 It may be an absolute pathname.
6739 Otherwise, it is a file located in your home directory
6740 or current working directory
6741 <!--chtml if pinemode="running"-->
6742 (which, at least for your current Alpine &quot;session,&quot; 
6743 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6744 <!--chtml endif-->, depending on the
6745 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6746 In any case, you finish by typing a carriage return to accept the
6747 file name that is displayed.
6748 When the feature
6749 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6750 is turned on you may use TAB to complete partially typed in names.
6752 The message you are exporting appears to have some attachments.
6753 If you wish to save <EM>all</EM> of the attachments at once,
6754 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
6755 saving of the attachments.
6756 You may turn it back off by typing &quot;^P&quot; again, which will now
6757 be labeled &quot;NoAllParts&quot; instead.
6758 If you want to save the parts the command displayed should be
6759 &quot;NoAllParts&quot;!
6760 When you choose to save attachments like this, the attachments will be saved
6761 in a newly created directory.
6762 That directory will have the same name as the file name you choose here,
6763 with the letters &quot;.d&quot; appended.
6764 If that directory already exists, then the letters &quot;.d_1&quot; will
6765 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
6766 is found.
6767 For example, if you select the file name
6769 <CENTER><SAMP>filename</SAMP></CENTER>
6771 to export the message to, then the directory used for the attachments will be
6773 <CENTER><SAMP>filename.d</SAMP></CENTER>
6775 or perhaps
6777 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
6779 The attachments will then be put into files inside that directory.
6780 The names for the attachment files will be derived from the attachments
6781 if possible.
6782 This is done in the same way as the default values are derived if you
6783 save them one at a time.
6784 (The &quot;filename&quot; parameter from the Content-Disposition header
6785 is the first choice. If that doesn't exist, the &quot;name&quot;
6786 parameter from the Content-Type header is used.)
6787 If a name for a particular attachment is not available, then the
6788 part number of the attachment is used, with the characters &quot;part_&quot;
6789 prepended.
6790 An example of that would be
6792 <CENTER><SAMP>part_2.1</SAMP></CENTER>
6794 If you want to save only some of the attachments or if you want more control
6795 over the directory and filename where an attachment is saved you may
6796 cancel out of this command and View the attachment list.
6797 From there you can save each attachment individually.
6799 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6800 this help.
6802 &lt;End of help on this topic&gt;
6803 </BODY>
6804 </HTML>
6805 ======= h_ge_export =======
6806 <HTML>
6807 <HEAD>
6808 <TITLE>Export File Selection</TITLE>
6809 </HEAD>
6810 <BODY>
6811 <H1>Export File Selection</H1>
6813 You are Exporting or Saving something from within the Alpine world
6814 (a message, an attachment, etc.)
6815 to a plain text file.
6816 You are now being asked for the name of the file to export <EM>to</EM>.
6817 The easiest way to select a file is probably with the &quot;^T&quot;
6818 &quot;To Files&quot; subcommand.
6819 After returning from that subcommand you will still be allowed to
6820 edit the name you have selected.
6821 Alternatively, you may type in a file name.
6822 It may be an absolute pathname.
6823 Otherwise, it is a file located in your home directory
6824 or current working directory
6825 <!--chtml if pinemode="running"-->
6826 (which, at least for your current Alpine &quot;session,&quot; 
6827 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6828 <!--chtml endif-->, depending on the
6829 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6830 In any case, you finish by typing a carriage return to accept the
6831 file name that is displayed.
6832 When the feature
6833 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6834 is turned on you may use TAB to complete partially typed in names.
6836 If the object you are exporting is a message with some attachments,
6837 you may wish to save all of the attachments by typing the &quot;^P&quot;
6838 &quot;AllParts&quot; command to turn on saving of the attachments.
6839 This subcommand will only be visible if the message actually has attachments.
6840 You may also View the attachment list and save individual attachments from
6841 there.
6843 If you are SAVING a text part (text/plain, text/html, etc.) you can use
6844 the Control-R subcommand to toggle if saving will be done in binary mode,
6845 meaning that the attachment will be decoded, but will not be transformed
6846 to UTF-8 for further processing (either in internal filters, or user
6847 supplied filters.) This is useful in case you either want to preserve
6848 the text as it was encoded originally to you, or the attachment was
6849 incorrectly attached (the attachment is not of text type) and you need
6850 the original text to process the attachment.
6852 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6853 this help.
6855 &lt;End of help on this topic&gt;
6856 </BODY>
6857 </HTML>
6858 ======= h_common_save =======
6859 <HTML>
6860 <HEAD>
6861 <TITLE>Save and Export Commands</TITLE>
6862 </HEAD>
6863 <BODY>
6864 <H1>Save and Export Commands</H1>
6866 Save
6867 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
6868 and Export
6869 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
6870 are the two alternatives Alpine gives you to keep a copy of the message
6871 you are reading. If you want to keep the message within Alpine's email
6872 world, use &quot;Save&quot;; if you want to use the message in another
6873 program, use &quot;Export&quot;.
6876 When you Save a message, it is put into an existing folder or into a new
6877 folder in one of your existing folder collections.  The message stays in
6878 email format and can be read by Alpine again.  Alpine may use a special format
6879 for its mail folders -- never edit an Alpine folder by hand or with any
6880 program other than Alpine.  The exact behavior of the Save command can be
6881 configured with the
6882 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
6883 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
6884 and 
6885 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
6886 feature list settings.
6887 The name of the folder offered as a default is controlled by the option
6888 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
6891 When you use Export, the message is placed in a plain text file in your
6892 home directory 
6893 <!--chtml if pinemode="running"-->
6894 (which, in the present configuration of your system, is
6895  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6896 <!--chtml endif-->
6897 or current working directory
6898 <!--chtml if pinemode="running"-->
6899 (which, at least for your current Alpine &quot;session,&quot; 
6900 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6901 <!--chtml endif-->, depending on the
6902 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
6903 configuration setting.  In the normal case, only minimal
6904 headers are exported with the message; however, if the full header mode 
6905 (whose availability may be disabled  by setting the feature 
6906 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6907 in SETUP CONFIGURATION) is
6908 toggled on, then complete headers are exported along with the message
6909 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
6910 defined, they may affect the contents of the exported file.)
6913 &lt;End of help on this topic&gt;
6914 </BODY>
6915 </HTML>
6916 ======= h_common_bounce =======
6917 <HTML>
6918 <HEAD>
6919 <TITLE>Bounce Command</TITLE>
6920 </HEAD>
6921 <BODY>
6922 <H1>Bounce Command</H1>
6924 The Bounce 
6925 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
6926 command allows you to re-send, or &quot;remail&quot;, a
6927 message, as if you were never in the loop.  It is analogous to crossing
6928 out your address on a postal letter, writing a different address on the
6929 envelope, and putting it into the mailbox. Bounce is used primarily to
6930 redirect email that was sent to you in error.
6931 Also, some owners of email
6932 lists need the bounce command to handle list traffic.
6933 Bounce is not anonymous.
6934 A ReSent-From header is added to the message so that the recipient may
6935 tell that you Bounced it to them.
6938 The presence or absence of the Bounce command is determined by the
6939 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
6940 feature in your Alpine configuration.
6941 The feature
6942 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
6943 affects the behavior of the Bounce command.
6944 Also, it is possible that Bounce could be
6945 administratively disabled by your system manager; if it doesn't work,
6946 please check with your local help desk before reporting a bug.
6949 &lt;End of help on this topic&gt;
6950 </BODY>
6951 </HTML>
6952 ======= h_common_reply =======
6953 <HTML>
6954 <HEAD>
6955 <TITLE>Reply and Forward Commands</TITLE>
6956 </HEAD>
6957 <BODY>
6959 <H1>Reply and Forward Commands</H1>
6961 Replying 
6962 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
6963 and Forwarding 
6964 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
6965 are your two alternatives for following up on the
6966 message you are reading.  You would use reply if you want to get email
6967 back to the author of the message and/or the other people who have
6968 already seen it.  You use forward if you want somebody new to see the
6969 message.
6972 In the normal case, the only thing that you must supply when forwarding a
6973 message is the name/email address of the new recipient.
6974 Alpine will include the text of the forwarded message.
6975 Alpine will also include any attachments to the message.
6976 There is space above the forwarded text for you to include additional comments.
6979 When replying, you usually have to answer some questions.
6980 If the message is to multiple people and/or specified with a Reply-To: header,
6981 then you will have to decide who should get the reply.
6982 You also need to decide whether or not to include the previous
6983 message in your reply.
6984 Some of this is configurable.
6985 Specifically, see the
6986 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
6987 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
6988 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
6990 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
6991 configuration features.
6994 Both the Reply and Forward commands react to the full header mode toggle.
6995 If the full header mode is on, then all the header and delivery lines are
6996 included with the text of the message in your reply/forward.
6999 Other configuration features that affect the Reply command are
7000 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7001 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7002 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7005 &lt;End of help on this topic&gt;
7006 </BODY>
7007 </HTML>
7008 ======= h_common_delete =======
7009 <HTML>
7010 <HEAD>
7011 <TITLE>Delete and Undelete Commands</TITLE>
7012 </HEAD>
7013 <BODY>
7014 <H1>Delete and Undelete Commands</H1>
7016 Delete 
7017 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7018 and Undelete 
7019 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7020 allow you to change the Deleted flag for the current message.
7021 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7022 removes the mark.
7023 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7024 at the left hand edge of the index line.
7025 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7026 in the upper right hand corner of the screen.
7027 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7028 get rid of the message.
7029 The eXpunge command (available from the MESSAGE INDEX screen) actually
7030 removes all of the deleted messages in a folder.
7031 Once a message is eXpunged, it can't be retrieved.
7034 The Delete command is affected by the setting of the configuration feature
7035 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7038 &lt;End of help on this topic&gt;
7039 </BODY>
7040 </HTML>
7041 ======= h_common_postpone =======
7042 <HTML>
7043 <HEAD>
7044 <TITLE>Postpone Command</TITLE>
7045 </HEAD>
7046 <BODY>
7047 <H1>Postpone Command</H1>
7049 The postpone
7050 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7051 command allows you to temporarily stop working on the current
7052 message so you may read
7053 other messages or compose another message.  When you want to resume a
7054 message later, start to compose and answer &quot;yes&quot; to the
7055 &quot;Continue postponed composition?&quot; question.  You may
7056 postpone as many messages as you like.
7059 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7060 in the Setup/Config screen, then the Postpone command will prompt you for
7061 the folder in which to store your outgoing message.
7064 &lt;End of help on this topic&gt;
7065 </BODY>
7066 </HTML>
7067 ======= h_compose_cancel =======
7068 <HTML>
7069 <HEAD>
7070 <TITLE>Cancel Command</TITLE>
7071 </HEAD>
7072 <BODY>
7073 <H1>Cancel Command</H1>
7075 Cancel
7076 <!--chtml if pinemode="function_key"-->
7077 (F2)
7078 <!--chtml else-->
7079 (^C) 
7080 <!--chtml endif-->
7082 The Cancel command returns you to Alpine's normal mail processing and
7083 causes the message currently under composition to be thrown out.
7084 The message text <EM>will be lost</EM>.
7087 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
7088 will be preserved in the file named
7089 <!--chtml if pinemode="os_windows"-->
7090 &quot;DEADLETR&quot;.
7091 <!--chtml else-->
7092 &quot;dead.letter&quot; in your home directory.
7093 <!--chtml endif-->
7094 If you unintentionally cancel a message, look there for its text.
7097 &lt;End of help on this topic&gt;
7098 </BODY>
7099 </HTML>
7100 ======= h_compose_addrcomplete =======
7101 <HTML>
7102 <HEAD>
7103 <TITLE>Address Completion</TITLE>
7104 </HEAD>
7105 <BODY>
7106 <H1>Address Completion</H1>
7108 When entering addresses in the address fields of the composer (To, Cc, etc.)
7109 the TAB key may be used to help complete the address.
7110 Type a partial nickname and tap the TAB key to complete the typing.
7111 The unambiguous part of the name will be filled in automatically.
7112 Typing TAB twice in succession will bring up a selection list of possibilities,
7113 making it easy to find and choose the correct address.
7116 The matching algorithm is rather ad hoc.
7117 The search starts with a search of your address book.
7118 It counts as a match if the nickname, address, or fullname field of an
7119 entry begins with the text typed in so far. It is also a match if
7120 a later word in the fullname (for example, the middle name or last name)
7121 begins with the entered text.
7123 Next comes an LDAP search.
7124 The search will happen for any servers that have the
7125 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7126 feature set. You can set or unset the feature for each server independently
7127 in the Setup/Directory screen.
7129 Finally, if you are replying to or forwarding a message, that message is
7130 searched for likely candidate addresses that match the typed-in text.
7133 &lt;End of help on this topic&gt;
7134 </BODY>
7135 </HTML>
7136 ======= h_compose_richhdr =======
7137 <HTML>
7138 <HEAD>
7139 <TITLE>Rich Header Command</TITLE>
7140 </HEAD>
7141 <BODY>
7142 <H1>Rich Header Command</H1>
7144 The Rich Header command allows you to toggle between the list of 
7145 all message headers available for editing and those that are most
7146 common.
7149 Use this toggle to expose headers that are not normally visible by
7150 default.
7151 This set usually includes the
7152 &quot;Bcc:&quot;,
7153 &quot;Fcc:&quot;,
7154 &quot;Lcc:&quot;,
7155 and &quot;Newsgroups&quot;
7156 headers.
7157 If you are posting to a newsgroup the set of defaults is a little different.
7158 Obviously, in that case, the Newsgroups header is of interest so is not
7159 hidden.
7160 For news posting the hidden set includes the
7161 &quot;To:&quot;,
7162 &quot;Cc:&quot;,
7163 &quot;Bcc:&quot;,
7164 &quot;Fcc:&quot;,
7165 and &quot;Lcc:&quot;
7166 headers.
7167 You won't normally want to edit these, which is why they are hidden,
7168 but it is sometimes useful to be able to set them manually.
7171 The default sets of headers listed above can be altered.
7172 Any header that you have added to the
7173 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7174 option, but not to the
7175 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7176 option will appear when you use the Rich Headers command to
7177 make the Rich Headers visible.
7178 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7179 even without toggling the Rich Headers command.)
7182 &lt;End of help on this topic&gt;
7183 </BODY>
7184 </HTML>
7185 ======= h_compose_send =======
7186 <HTML>
7187 <HEAD>
7188 <TITLE>Send Command</TITLE>
7189 </HEAD>
7190 <BODY>
7191 <H1>Send Command</H1>
7193 The Send command
7194 <!--chtml if pinemode="function_key"-->
7195 (F3)
7196 <!--chtml else-->
7197 (^X) 
7198 <!--chtml endif-->
7199 tells Alpine you are finished composing.
7200 Before actually sending it, though, Alpine will ask you to confirm 
7201 your intention, and, at the same time, redisplayed the message text
7202 with the recipients at the top of the screen to give you the opportunity
7203 to review and verify that the message is addressed to the people
7204 you intended.
7206 If the feature
7207 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7208 then this confirmation prompt and any options it allows are skipped.
7211 This confirmation prompt may also offer, depending
7212 on your particular Setup/Config, options allowing you to set
7213 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7214 include attachments in the &quot;Fcc&quot; (if you had previously
7215 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7216 observe details of the
7217 <A HREF="h_config_verbose_post">message submission process</A>,
7218 choose the filter through which the
7219 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7220 or turn of flowed text generation.
7223 &lt;End of help on this topic&gt;
7224 </BODY>
7225 </HTML>
7226 ======= h_compose_markcutpaste =======
7227 <HTML>
7228 <HEAD>
7229 <TITLE>Mark, Cut and Paste Commands</TITLE>
7230 </HEAD>
7231 <BODY>
7232 <H1>Mark, Cut and Paste Commands</H1>
7234 You can define a &quot;block&quot; of text, which can subsequently
7235  be deleted or
7236 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7237 then moving the cursor to the end of the desired text block.  You can then
7238 &quot;cut&quot; the block out 
7239 <!--chtml if pinemode="function_key"-->
7240 &quot;F9&quot;,
7241 <!--chtml else-->
7242 &quot;Ctrl-K&quot;,
7243 <!--chtml endif-->
7244 move the cursor, and &quot;paste&quot; it
7245 <!--chtml if pinemode="function_key"-->
7246 &quot;F10&quot;,
7247 <!--chtml else-->
7248 &quot;Ctrl-U&quot;,
7249 <!--chtml endif-->
7250 in the new location.  Also, you can paste more than once, allowing you
7251 to use this feature to copy a block of text.<P>
7253 If you press 
7254 <!--chtml if pinemode="function_key"-->
7255 &quot;F9&quot;
7256 <!--chtml else-->
7257 &quot;^K&quot;
7258 <!--chtml endif-->
7259 without having marked anything, Alpine will delete
7260 a single line.  If you delete a group of lines together, Alpine keeps them
7261 in the same buffer, so 
7262 <!--chtml if pinemode="function_key"-->
7264 <!--chtml else-->
7266 <!--chtml endif-->
7267 will restore them as a block.  About
7268 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7269 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7270 &quot;type the character ^&quot;.
7273 &lt;End of help on this topic&gt;
7274 </BODY>
7275 </HTML>
7276 ======= h_compose_justify =======
7277 <HTML>
7278 <HEAD>
7279 <TITLE>Justify Command</TITLE>
7280 </HEAD>
7281 <BODY>
7282 <H1>Justify Command</H1>
7284 The Justify
7285 <!--chtml if pinemode="function_key"-->
7286 (F4)
7287 <!--chtml else-->
7288 (^J) 
7289 <!--chtml endif-->
7290 command reformats the text in the paragraph the cursor is in.
7291 Paragraphs are separated by one blank line or a line beginning with a space.
7292 This is useful when you have been editing a paragraph and the lines become
7293 uneven.  The text is left aligned or justified and the right is ragged.  If
7294 the text is already justified as typed with auto-wrap, no justification will
7295 be done.
7298 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7299 block of text, the Justify command is modified.
7300 Instead of automatically justifying the current paragraph you will be
7301 asked if you want to justify the paragraph, justify the selected region,
7302 or adjust the quote level of the selected region.
7303 Adjusting the quote level only works if you are using standard
7304 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7305 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7308 When composing a reply containing included text, the justify command
7309 will reformat text to the right of the 
7310 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7311 adding or removing indented lines as needed.  Paragraphs are separated
7312 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7313 line containing the indent string and one or more blank spaces.
7314 Included text that was previously indented (or &quot;quoted&quot;) is
7315 not preserved.
7318 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7319 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7320 use the standard
7321 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7324 &lt;End of help on this topic&gt;
7325 </BODY>
7326 </HTML>
7327 ======= h_compose_spell =======
7328 <HTML>
7329 <HEAD>
7330 <TITLE>Spell Check Command</TITLE>
7331 </HEAD>
7332 <BODY>
7333 <H1>Spell Check Command</H1>
7335 The &quot;To Spell&quot;
7336 <!--chtml if pinemode="function_key"-->
7337 (F12)
7338 <!--chtml else-->
7339 (^T) 
7340 <!--chtml endif-->
7341 command calls an external spell checking program to look over the
7342 message you are composing.  By default, Alpine uses
7344 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7346 if it knows where to find &quot;aspell&quot;.
7347 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7348 then the command used is
7350 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7352 Otherwise, the ancient &quot;spell&quot; command is used.
7354 For PC-Alpine, you must install the aspell library code that you
7355 may get from
7356 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7359 &lt;End of help on this topic&gt;
7360 </BODY>
7361 </HTML>
7362 ======= h_compose_alted =======
7363 <HTML>
7364 <HEAD>
7365 <TITLE>Alt Editor Command</TITLE>
7366 </HEAD>
7367 <BODY>
7368 <H1>Alt Editor Command</H1>
7370 The &quot;Alt Editor&quot; command's availability depends on the
7371 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7374 When the variable specifies a valid editor on your system, this
7375 command will launch it with the current text of your message
7376 already filled in.
7379 &lt;End of help on this topic&gt;
7380 </BODY>
7381 </HTML>
7382 ======= h_compose_readfile =======
7383 <HTML>
7384 <HEAD>
7385 <TITLE>Read File Command</TITLE>
7386 </HEAD>
7387 <BODY>
7388 <H1>Read File Command</H1>
7390 The &quot;Read File&quot;
7391 <!--chtml if pinemode="function_key"-->
7392 (F5)
7393 <!--chtml else-->
7394 (^R) 
7395 <!--chtml endif-->
7396 command allows you to copy in text from an existing file. You will be
7397 prompted for the name of a file to be inserted into the message.  The file
7398 name is relative to your home directory 
7399 <!--chtml if pinemode="running"-->
7400 (which, in the present configuration of your system, is
7401  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7402 <!--chtml endif-->
7403 or current working directory
7404 <!--chtml if pinemode="running"-->
7405 (which, at least for your current Alpine &quot;session,&quot; 
7406 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7407 <!--chtml endif-->, depending on the
7408 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7409 configuration setting; or, the file name must be specified as a full path name 
7410 <!--chtml if pinemode="os_windows"-->
7411 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7412 <!--chtml else-->
7413 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7414 <!--chtml endif-->
7415 (without the quotation marks).
7418 The file will be inserted where the cursor is located.  <B>The
7419 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7420 Unix machine but have files on a PC or Mac, the files must be transferred
7421 to the system Alpine is running on before they can be read.  Please ask your
7422 local computer support people about the correct way to transfer a file to 
7423 your Alpine system.
7426 &lt;End of help on this topic&gt;
7427 </BODY>
7428 </HTML>
7429 ======= h_config_tray_icon =======
7430 <HTML>
7431 <HEAD>
7432 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7433 </HEAD>
7434 <BODY>
7435 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7437 PC-Alpine only.
7439 This option restores a behavior of previous versions of PC-Alpine.
7440 These
7441 versions, when started, installed a PC-Alpine icon in the notification 
7442 tray of Window's Taskbar.  The primary use of this icon was to indicate
7443 new mail arrival by turning red (while the Taskbar icon remained green).
7444 Additionally, the icon now changes to yellow to signify that a mail folder
7445 has been closed unexpectedly.
7448 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7449 color its Taskbar entry's icon red (as well as the icon in the Window
7450 Title).  This feature is only provided for backwards compatibility.
7453 &lt;End of help on this topic&gt;
7454 </BODY>
7455 </HTML>
7456 ======= h_common_suspend =======
7457 <HTML>
7458 <HEAD>
7459 <TITLE>Suspend Command</TITLE>
7460 </HEAD>
7461 <BODY>
7462 <H1>Suspend Command</H1>
7464 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7465 enabled, you can, at almost any time, temporarily halt your Alpine session,
7466 <!--chtml if pinemode="os_windows"-->
7467 minimizing it into an icon.
7468 <!--chtml else-->
7469 and return to your system prompt.
7470 <!--chtml endif-->
7473 &lt;End of help on this topic&gt;
7474 </BODY>
7475 </HTML>
7476 ======= h_pipe_command =======
7477 <HTML>
7478 <HEAD>
7479 <TITLE>Pipe Command SubOptions</TITLE>
7480 </HEAD>
7481 <BODY>
7482 <H1>Pipe Command SubOptions</H1>
7484 By default, when you use the Pipe command, the processed text of the
7485 message is sent to the Unix command
7486 you specify and the output is captured by Alpine and shown to you.
7487 (This command is available in PC-Alpine, as well, but there aren't many
7488 Windows commands that work well with piping.)
7489 There are some sub-commands that may be used to alter this behavior.
7490 These are toggles that switch the behavior between two possibilities.
7491 They can be combined in any way you wish.
7493 By default, the prompt at the bottom of the screen looks like
7495 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7499 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7501 if you are piping more than one message.
7503 The sub-command options are:
7504 <DL>
7505    <DT>Shown Text or Raw Text</DT>
7506    <DD>This option toggles between sending the shown (processed) text
7507 of the message to the Unix command, and sending the
7508 raw (unprocessed) text of the message to the Unix command.
7509 The default is to send the shown text.
7510 The raw version of the message will contain all of the headers and any
7511 MIME encoding that the message contains.
7512 If you've selected the Raw Text then the prompt will have the additional word
7513 &quot;RAW&quot; in it, like
7515 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7517 You can experiment with this option by piping to something simple like the
7518 Unix &quot;cat&quot; command.
7519    </DD>
7520    <DT>Captured Output or Free Output</DT>
7521    <DD>This option toggles between having Alpine capture the output of
7522 the Unix pipe command for display, and not capturing it.
7523 If the command you are piping to is a filter that will produce output
7524 you want to view, then you want to capture that output
7525 for display (the default).
7526 If the Unix command doesn't produce output or handles the display itself,
7527 then you want free output.
7528 When you've selected the Free Output option the prompt will change to
7530 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7532    </DD>
7533    <DT>No Delimiter or With Delimiter</DT>
7534    <DD>This option controls whether or not a Unix mailbox style delimiter
7535 will come before the text of the message.
7536 This is the delimiter used in the common Unix mailbox format.
7537 It's the single line that begins with the five characters
7538 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7539 You'll usually only want to include this if the Unix command requires
7540 input in the format of a traditional Unix mailbox file.
7541 When you've selected the With Delimiter option the prompt will change to
7543 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7545    </DD>
7546    <DT>To Same Pipe or To Individual Pipes</DT>
7547    <DD>This option only shows up if you are running an aggregate
7548 pipe command.
7549 That is, the command was Apply Pipe, not just Pipe.
7550 You have the option of piping all of the selected messages through a
7551 single pipe to a single instance of the Unix command,
7552 or piping each individual message through a separate pipe to separate
7553 instances of the Unix command.
7554 The default is that all of the output will go through a single pipe
7555 to a single instance of the command.
7556 You can try this option with a command like &quot;less&quot;, with Free
7557 Output enabled.
7558 When you've selected the Individual Pipes option the prompt will change to
7560 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7562    </DD>
7563 </DL>
7566 As mentioned earlier, the options can be combined in any way you wish.
7567 You may leave them all off, turn them all on, or turn some of them on
7568 and some of them off.
7569 If you use the pipe command a second time in the same session the default
7570 options will be what you used the last time.
7573 &lt;End of help on this topic&gt;
7574 </BODY>
7575 </HTML>
7576 ========== h_emptydir_subfolder_name =========
7577 <HTML>
7578 <HEAD>
7579 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7580 </HEAD>
7581 <BODY>
7582 <H1>Enter Subfolder Name</H1>
7584 <P> 
7585 This is the name of a new subfolder in the directory you are creating.
7586 Because empty directories are hidden and therefore not useful, you must also
7587 create a subfolder in the directory you are creating in order that the
7588 directory remains visible.
7590 Alternatively, you may turn off the configuration feature
7591 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7592 so that empty directories remain visible.
7593 If you do that, you will not be required to create the subfolder when you
7594 create a directory.
7597 &lt;End of help on this topic&gt;
7598 </BODY>
7599 </HTML>
7600 ========== h_incoming_add_folder_name =========
7601 <HTML>
7602 <HEAD>
7603 <TITLE>ENTER FOLDER NAME</TITLE>
7604 </HEAD>
7605 <BODY>
7606 <H1>Enter Folder Name</H1>
7608 <P> 
7609 This is the name of the folder on the previously specified server.
7610 By default the folder name is interpreted as defining a section of your personal
7611 folder area.  This area and how you specify it are defined by the
7612 server, if one is specified.
7615 To define a folder outside the default area, prefix
7616 the path with the namespace to use when interpreting the
7617 given path.  If a namespace is specified, the folder name begins with the
7618 sharp (#) character followed by the name of the namespace
7619 and then the namespace's path-element-delimiter.  Aside from the
7620 name's format, namespaces can also imply access rights, content
7621 policy, audience, location, and, occasionally, access methods.
7624 Each server exports its own set (possibly of size one) of 
7625 namespaces.
7626 For a more detailed explanation read about
7627 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7630 To specify the default for INBOX on the server you can usually just enter
7631 &quot;INBOX&quot;, and the server will understand the special meaning of
7632 that word.
7635 &lt;End of help on this topic&gt;
7636 </BODY>
7637 </HTML>
7638 ========== h_incoming_add_folder_host =========
7639 <HTML>
7640 <HEAD>
7641 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7642 </HEAD>
7643 <BODY>
7644 <H1>Enter Incoming Folder Server</H1>
7646 You are being asked for the name of the server for use with this incoming
7647 folder.
7648 If the folder is on the machine where Alpine is running, then just enter
7649 RETURN without typing a server name.
7652 If the folder is on an IMAP server then type the server's name followed
7653 by RETURN.
7654 You may use the ^X command if the server is the same as the server that
7655 the INBOX is on.
7658 You may have to add optional extra information to the server name.
7659 For example, if the IMAP server is using a non-standard port number you
7660 would specify that by appending a colon (:) followed by the port number
7661 to the server name
7664 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7667 or you may need to specify a different protocol if the server is not an
7668 IMAP server. For example:
7671 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7674 for a POP server or
7677 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7680 for an NNTP news server.
7681 For an explanation of all of the possibilities, see
7682 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7683 for folders.
7686 There is a special command (^W) if you want to set up a folder that gets its
7687 mail from a
7688 <A HREF="h_maildrop">Mail Drop</A>.
7689 If you type that command, you will be prompted for the information for
7690 both the Mail Drop folder and the destination folder.
7693 &lt;End of help on this topic&gt;
7694 </BODY>
7695 </HTML>
7696 ========== h_incoming_add_inbox =========
7697 <HTML>
7698 <HEAD>
7699 <TITLE>ENTER INBOX SERVER</TITLE>
7700 </HEAD>
7701 <BODY>
7702 <H1>Enter INBOX Server</H1>
7704 You are being asked for the name of the server for use with
7705 the INBOX folder.
7706 Type the server's name followed by RETURN.
7709 You may have to add optional extra information to the server name.
7710 For example, if the server is using a non-standard port number you
7711 would specify that by appending a colon (:) followed by the port number
7712 to the server name
7715 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7718 or you may need to specify a different protocol if the server is not an
7719 IMAP server. For example:
7722 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7725 for a POP server.
7728 For an explanation of all of the possibilities, see
7729 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7730 for folders.
7733 If the INBOX folder is on the machine where Alpine is running, then just enter
7734 RETURN without typing a server name.
7737 There is a special command (^W) if you want to set up a folder that gets its
7738 mail from a
7739 <A HREF="h_maildrop">Mail Drop</A>.
7740 If you type that command, you will be prompted for the information for
7741 both the Mail Drop folder and the destination folder, which will be used
7742 as your INBOX folder.
7745 &lt;End of help on this topic&gt;
7746 </BODY>
7747 </HTML>
7748 ========== h_incoming_add_maildrop_destn =========
7749 <HTML>
7750 <HEAD>
7751 <TITLE>ENTER DESTINATION SERVER</TITLE>
7752 </HEAD>
7753 <BODY>
7754 <H1>Enter Destination Server</H1>
7756 You are being asked for the name of the server where the destination
7757 folder is for use with this Mail Drop incoming folder.
7758 That is, you are using a Mail Drop for this incoming folder and
7759 you've already entered
7760 the server and folder name for the Mail Drop.
7761 Now you need to enter the server for the destination folder
7762 where the mail should be copied to.
7763 Mail will come from the Mail Drop and be copied to the destination folder.
7766 Type the server's name followed by RETURN.
7767 If the folder is local to this computer, just type RETURN without entering
7768 a server name.
7771 You may have to add optional extra information to the server name.
7772 For example, if the server is using a non-standard port number you
7773 would specify that by appending a colon (:) followed by the port number
7774 to the server name
7777 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7780 For an explanation of all of the possibilities, see
7781 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7782 for folders.
7785 &lt;End of help on this topic&gt;
7786 </BODY>
7787 </HTML>
7788 ========== h_inbox_add_maildrop_destn =========
7789 <HTML>
7790 <HEAD>
7791 <TITLE>ENTER DESTINATION SERVER</TITLE>
7792 </HEAD>
7793 <BODY>
7794 <H1>Enter Destination Server</H1>
7796 You are being asked for the name of the server where the destination
7797 folder is for use with your Mail Drop INBOX.
7798 That is, you are using a Mail Drop for your INBOX and you've already entered
7799 the server and folder name for the Mail Drop.
7800 Now you need to enter the server for the destination folder
7801 where the mail should be copied to.
7802 Mail will come from the Mail Drop and be copied to the destination folder.
7805 Type the server's name followed by RETURN.
7806 If the folder is local to this computer, just type RETURN without entering
7807 a server name.
7810 You may have to add optional extra information to the server name.
7811 For example, if the server is using a non-standard port number you
7812 would specify that by appending a colon (:) followed by the port number
7813 to the server name
7816 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7819 For an explanation of all of the possibilities, see
7820 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7821 for folders.
7824 &lt;End of help on this topic&gt;
7825 </BODY>
7826 </HTML>
7827 ========== h_inbox_add_maildrop =========
7828 <HTML>
7829 <HEAD>
7830 <TITLE>ENTER MAILDROP SERVER</TITLE>
7831 </HEAD>
7832 <BODY>
7833 <H1>Enter Mail Drop Server</H1>
7835 You are being asked for the name of the Mail Drop server for use with
7836 your INBOX.
7839 Type the server's name followed by RETURN.
7842 You may have to add optional extra information to the server name.
7843 For example, if the server is using a non-standard port number you
7844 would specify that by appending a colon (:) followed by the port number
7845 to the server name
7848 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7851 or you may need to specify a different protocol if the server is not an
7852 IMAP server. For example:
7855 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7858 for a POP server or
7861 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7864 for an NNTP news server.
7865 For an explanation of all of the possibilities, see
7866 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7867 for folders.
7870 &lt;End of help on this topic&gt;
7871 </BODY>
7872 </HTML>
7873 ========== h_incoming_add_maildrop =========
7874 <HTML>
7875 <HEAD>
7876 <TITLE>ENTER MAILDROP SERVER</TITLE>
7877 </HEAD>
7878 <BODY>
7879 <H1>Enter Mail Drop Server</H1>
7881 You are being asked for the name of the Mail Drop server for use with
7882 this incoming folder.
7885 Type the server's name followed by RETURN.
7886 You may use the ^X command if the server is the same as the server that
7887 the INBOX is on.
7890 You may have to add optional extra information to the server name.
7891 For example, if the server is using a non-standard port number you
7892 would specify that by appending a colon (:) followed by the port number
7893 to the server name
7896 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7899 or you may need to specify a different protocol if the server is not an
7900 IMAP server. For example:
7903 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7906 for a POP server or
7909 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7912 for an NNTP news server.
7913 For an explanation of all of the possibilities, see
7914 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7915 for folders.
7918 If the Mail Drop folder is on the machine where Alpine is running, then just enter
7919 RETURN without typing a server name.
7922 &lt;End of help on this topic&gt;
7923 </BODY>
7924 </HTML>
7925 ========== h_maildrop =========
7926 <HTML>
7927 <HEAD>
7928 <TITLE>WHAT IS A MAIL DROP?</TITLE>
7929 </HEAD>
7930 <BODY>
7931 <H1>What is a Mail Drop?</H1>
7933 In some situaions it may make sense to have your mail delivered to one
7934 folder (the Mail Drop) and then when you want to read mail that has been
7935 delivered to the Mail Drop folder Alpine will move it to another
7936 destination folder.
7937 Often the Mail Drop will be a remote folder and messages will be moved from
7938 there to a local destination folder.
7941 One example where this might make sense is if the Mail Drop folder is accessible
7942 only with the POP protocol.
7943 You could designate your POP inbox as the Mail Drop folder and have Alpine move
7944 mail from there to a local (on the same machine Alpine is running on)
7945 destination folder, where you'll read it.
7948 A Mail Drop may only be used as your Inbox or as an
7949 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
7952 There is no attempt to synchronize the contents of the destination folder
7953 with the contents of the Mail Drop folder.
7954 All that happens is that all of the messages in the Mail Drop folder are
7955 copied to the destination folder and then they are deleted and expunged (if possible)
7956 from the Mail Drop folder.
7957 The next time a check for new mail is made, any messages in the Mail 
7958 Drop folder are once again copied to the destination folder and deleted
7959 and expunged from the Mail Drop folder.
7960 (If the Mail Drop folder is a news group, then the messages can't be
7961 expunged from the newsgroup. Instead, only Recent messages are copied from
7962 the newsgroup to the destination folder.)
7965 Configuration of a Mail Drop is a little different from configuration of
7966 a folder that does not use a Mail Drop because you have to specify two
7967 folder names instead of one.
7968 The two folders may be any types of folders that Alpine can normally use.
7969 They don't have to be a remote folder and a local folder, that is
7970 simply the most common usage.
7971 When you use a Mail Drop folder Alpine will periodically re-open the Mail
7972 Drop to check for new mail.
7973 The new-mail checks will happen at the frequency set with the
7974 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
7975 but with a minimum time
7976 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
7977 between checks.
7978 Because of this minimum you may notice that new mail does not
7979 appear promptly when you expect it.
7980 The reason for this is to protect the server from over-zealous opening and
7981 closing of the Mail Drop folder.
7982 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
7983 the end of the folder index, then the check will happen, regardless of how
7984 long it has been since the previous check.
7986 If there is new mail, that mail will be copied to the destination folder
7987 and then will be deleted from the Mail Drop.
7988 Note that using a Mail Drop with a local destination folder does not make
7989 sense if you read mail from more than one machine, because the mail is
7990 downloaded to the destination folder (which is accessible from only one
7991 machine) and deleted from the Mail Drop.
7993 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
7996 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
7999 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8001 The brackets are not literal.
8003 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8005 is a single character that does not appear in the MailDropFolder name.
8006 If the name doesn't contain spaces then it can be a space character.
8007 The two folder names are full technical
8008 <A HREF="h_valid_folder_names">folder names</A>
8009 as used by Alpine.
8010 Here are a couple examples to give you an idea what is being talked about:
8013 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8015 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8018 A #move folder may only be used as an
8019 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8020 an Inbox.
8021 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8022 on the
8023 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8024 option)
8025 the Add command has a subcommand &quot;Use Mail Drop&quot;
8026 which may be helpful for defining the folder in your Alpine configuration.
8027 The same is true when you edit the
8028 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8029 option in Setup/Config.
8030 Each of these configuration methods will also create the DestinationFolder
8031 if it doesn't already exist.
8032 If you are having problems, make sure the DestinationFolder exists.
8035 &lt;End of help on this topic&gt;
8036 </BODY>
8037 </HTML>
8038 ========== h_save =========
8039 <HTML>
8040 <HEAD>
8041 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8042 </HEAD>
8043 <BODY>
8044 <H1>Choose a Folder to Save Into</H1>
8046 After Exiting from this help text,
8047 type the name of the folder you want to save into and press RETURN.
8049 Press ^T to get a list of your folders to choose from.
8050 Press ^C to cancel the Save.
8052 If you have Folder Collections defined you may use
8053 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8054 the collection being saved to.
8056 If Tab Completion is enabled (it is enabled by default)
8057 you may type a Tab character to have Alpine complete the folder name for you.
8059 If Partial Match Lists is enabled (it is enabled by default) you may type
8060 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8062 If the Ctrl-R subcommand is present that means you can decide to Delete or
8063 not Delete the message you are saving after you save it.
8064 The label on that key gives the action to switch to.
8065 If it says Delete and you type Ctrl-R the label displayed will change to
8066 No Delete and the source message will be deleted after the save. If it
8067 says No Delete and you type Ctrl-R the label displayed will change to
8068 Delete and the message will not be deleted.
8069 You can control the default for the Delete parameter with the
8070 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8072 Similarly, if the Ctrl-W subcommand is present that means you can decide
8073 to Preserve the order of the messages being saved or not.
8074 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8075 will be in the same order as you see them in the source folder now.
8076 The opposite action (which is usually the default) is that you don't care
8077 about the order.
8078 The Saved messages may or may not be in the same order in the destination folder.
8079 There may be a performance penalty for choosing to save the messages in order.
8080 You can control the default for the Preserve Order parameter with the
8081 configuration feature
8082 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8085 If you haven't disabled the Save Input History and you've already done a
8086 Save earlier in this session then you may use the Up and Down arrows to retrieve
8087 a folder name used in a previous Save.
8090 &lt;End of help on this topic&gt;
8091 </BODY>
8092 </HTML>
8093 ============= h_simple_index ========================
8094 <HTML>
8095 <HEAD>
8096 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8097 </HEAD>
8098 <BODY>
8099 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8100 <!--chtml if pinemode="function_key"-->
8101 <PRE>
8102 Navigating the List of Messages               General Alpine Commands
8103 -------------------------------               -----------------------
8104  F5   Move to previous message                 F1   Show this help text
8105  F6   Move to next message
8106  F7   Show previous screen of messages
8107  F8   Show next screen of messages
8109 Message Selection Commands
8110 --------------------------
8111  F3   Exit the Message Select menu (canceling Send command)
8112  F4   Select the currently highlighted message
8113  F9   Mark the currently highlighted message as deleted
8114  F10  Undelete (remove deletion mark from) the highlighted message
8115 </PRE>
8116 <!--chtml else-->
8117 <PRE>
8118 Navigating the List of Messages               General Alpine Commands
8119 -------------------------------               -----------------------
8120   P  Move to previous message                  ?  Show this help text
8121   N  Move to next message
8122   -  Show previous screen of messages
8123  Spc (space bar) Show next screen of messages
8125 Message Selection Commands
8126 --------------------------
8127   E  Exit the Message Select menu (canceling Send command)
8128   S  Select the currently highlighted message
8129   D  Mark the currently highlighted message as deleted
8130   U  Undelete (remove deletion mark from) the highlighted message
8131 </PRE>
8132 <!--chtml endif-->
8134 <H2>Description of the Select Postponed Message Screen</H2>
8136 This screen allows you to select one of several previously postponed
8137 messages in order to continue composition.  Your options are very limited
8138 -- the screen is not meant to let you manipulate these messages.  However,
8139 you may now delete messages from this list.  Once you choose a message,
8140 Alpine reads it in and puts you into the regular message composer.
8143 Messages do not stay in this postponed state automatically.  If you select
8144 a message and then want to postpone it again, use the normal postpone
8145 (Ctrl-O) command in the composer.
8148 If you exit this screen without selecting a message, the Compose command
8149 that got you here is canceled.  Other than messages explicitly marked
8150 &quot;Deleted&quot;, no messages will be removed.
8153 &lt;End of help on this topic&gt;
8154 </BODY>
8155 </HTML>
8156 ============= h_collection_screen ========================
8157 <HTML>
8158 <HEAD>
8159 <TITLE>COLLECTION LIST screen</TITLE>
8160 </HEAD>
8161 <BODY>
8162 <H1>COLLECTION LIST screen</H1>
8164 The COLLECTION LIST screen is used to select one of your  
8165 collection definitions to display the folders they contain.  See
8166 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8167 detailed explanation of collections.<P>
8169 To manage your collection definitions (Add, Change, Delete, etc.), use
8170 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8171 MAIN MENU.
8174 &lt;End of help on this topic&gt;
8175 </BODY>
8176 </HTML>
8177 ============= h_collection_maint ========================
8178 <HTML>
8179 <HEAD>
8180 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8181 </HEAD>
8182 <BODY>
8183 <H1>SETUP COLLECTION LIST screen</H1>
8185 The SETUP COLLECTION LIST screen lets you manage your collection
8186 definitions.  See 
8187 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8188 for detailed explanation of collections.<P>
8190 Maintenance commands include:
8191 <DL>
8192 <DT>Change
8193 <!--chtml if pinemode="function_key"-->
8194 (F4)
8195 <!--chtml else-->
8197 <!--chtml endif-->
8198 </DT>
8200 <DD>Modify attributes of the selected collection definition.
8202 <DT>Add Cltn
8203 <!--chtml if pinemode="function_key"-->
8204 (F9)
8205 <!--chtml else-->
8207 <!--chtml endif-->
8208 </DT>
8210 <DD>Create a new collection definition.
8211 </DD>
8213 <DT>Del Cltn
8214 <!--chtml if pinemode="function_key"-->
8215 (F10)
8216 <!--chtml else-->
8218 <!--chtml endif-->
8219 </DT>
8221 <DD>Delete the selected collection definition.<BR>
8222 NOTE: The folders and directories referred to by the
8223 collection definition are <EM>NOT</EM> deleted.  Folders must
8224 be deleted, if that's what you wish to do, from the 
8225 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8226 individual folders in a collection.
8227 </DD>
8229 <DT>Shuffle
8230 <!--chtml if pinemode="function_key"-->
8231 (F11)
8232 <!--chtml else-->
8234 <!--chtml endif-->
8235 </DT>
8237 <DD>Change the order of the displayed collections.  Alpine will offer
8238 to move the currently selected collection one position UP
8239 or DOWN.
8240 </DD>
8241 </DL>
8244 &lt;End of help on this topic&gt;
8245 </BODY>
8246 </HTML>
8247 ============ h_what_are_collections ==========
8248 <HTML>
8249 <HEAD>
8250 <TITLE>Folder Collections Explained</TITLE>
8251 </HEAD>
8252 <BODY>
8253 <H1>Folder Collections Explained</H1>
8256 Those of you with simple mail configurations will just see a list of all the
8257 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8258 The special folders for INBOX, sent mail and saved messages
8259 will appear at the top of the list.  All others are in alphabetical order.
8261 If you
8262 or your system administrator have defined more than one collection or if
8263 you have a collection (for newsgroups or email folders) defined on your 
8264 system, then you will see the COLLECTION LIST screen first when choosing 
8265 FOLDER LIST from Alpine's MAIN MENU.
8267 <H2>Why have multiple folder collections?</H2>
8269 For Alpine users who only maintain email folders (and not too many) on one host, 
8270 a single folder collection is probably sufficient.<P>
8272 However, people who have more than one email account - for example, one 
8273 at their university, and one with their personal Internet Service Provider - 
8274 will have different sets of folders on different hosts, and they may want to
8275 access them all from the same installation of Alpine, rather than use different 
8276 software and/or log into other hosts to manipulate messages in different 
8277 accounts.  (If in doubt whether one of your email accounts can be accessed 
8278 with Alpine, contact the technical support people for that account.)  Even people
8279 who have only one email account on one host, but have dozens or
8280 hundreds of email folders, may want to arrange these folders together in a 
8281 meaningful way.<BR>
8282 That is where multiple collections come in.
8284 <H2>Types of Collections</H2>
8285 <DL>
8286 <DT>INCOMING FOLDERS</DT>
8287 <DD>&quot;Incoming Message Folders&quot; 
8288 is a special collection typically used to supplement your single INBOX.  
8289 All the folders here are meant to be ones that receive incoming messages, 
8290 which you intend to check more or less frequently.  
8291 You may have multiple folders like this because you or your systems 
8292 administrator have set up an external program or you may have set up
8293 Alpine to filter incoming 
8294 messages into different folders, based on certain criteria such as 
8295 sender, recipient, or subject; or because you have multiple accounts and 
8296 wish to check their INBOXes easily.  This collection is established by 
8297 setting the 
8298 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8299 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8300 MAIN MENU.
8301 </DD>
8303 <DT>NEWS</DT>
8304 <DD>You can also define a collection specifically for
8305 newsgroups.  Alpine does this for you implicitly when you 
8306 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8307 in your Alpine configuration.  The news collection appears last in the 
8308 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8309 and Alpine knows not to save messages there.
8310 </DD>
8312 <DT>DEFAULT COLLECTION</DT>
8313 <DD>This is the default collection for your saved and sent messages folders.
8314 </DD>
8315 </DL>
8319 <H2>Defining Collections</H2>
8321 In the absence of any folder-collection definitions, Alpine will assume a
8322 single default folder collection.
8323 <!--chtml if pinemode="os_windows"-->
8324 <!--chtml else-->
8325 If necessary, Alpine will create the directory
8326 &quot;mail&quot; in your Unix home directory 
8327 to hold your folders.
8328 <!--chtml endif-->
8330 You can use the 
8331 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8332 the MAIN MENU, to manage your collection list.  
8334 &lt;End of help on this topic&gt;
8335 </BODY>
8336 </HTML>
8337 ===== h_select_address_screen =====
8338 <HTML>
8339 <HEAD>
8340 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8341 </HEAD>
8342 <BODY>
8343 <H1>SELECT AN ADDRESS SCREEN</H1>
8344 <H2>COMMANDS</H2>
8345 <!--chtml if pinemode="function_key"-->
8346 <PRE>
8347 Available  Commands                        
8348 -------------------------------            
8349 F1  Show Help Text
8350 F3  Exit without selecting anything
8351 F4  Select the highlighted address
8352 F5  Move highlight to previous address
8353 F6  Move highlight to next address
8354 F7  Previous page of addresses
8355 F8  Next page of addresses
8356 F11 Print
8357 F12 WhereIs
8358 </PRE>
8359 <!--chtml else-->
8360 <PRE>
8361 Navigation                     General Alpine Commands
8362 -------------------------      -----------------------
8363  P  Prev Address                ?  Display this help text
8364  N  Next Address                E  Exit without selecting anything
8365  -  Previous page               %  Print
8366 Spc (space bar) Next page
8367  W  WhereIs
8369 Select Command
8370 ------------------------------------------------
8371  S  Select the highlighted address
8372 </PRE>
8373 <!--chtml endif-->
8375 <H2>Description of the Select Address Screen</H2>
8377 This screen gives you an easy way to select an address from all of
8378 the address book entries that match the prefix typed so far.
8380 <P><UL>
8381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8382 </UL>
8384 &lt;End of help on this topic&gt;
8385 </BODY>
8386 </HTML>
8387 ===== h_select_rule_screen =====
8388 <HTML>
8389 <HEAD>
8390 <TITLE>SELECT A RULE SCREEN</TITLE>
8391 </HEAD>
8392 <BODY>
8393 <H1>SELECT A RULE SCREEN</H1>
8394 <H2>COMMANDS</H2>
8395 <!--chtml if pinemode="function_key"-->
8396 <PRE>
8397 Available  Commands                        
8398 -------------------------------            
8399 F1  Show Help Text
8400 F3  Exit without selecting anything
8401 F4  Select the highlighted rule
8402 F5  Move highlight to previous rule
8403 F6  Move highlight to next rule
8404 F7  Previous page of rules
8405 F8  Next page of rules
8406 F11 Print
8407 F12 WhereIs
8408 </PRE>
8409 <!--chtml else-->
8410 <PRE>
8411 Navigation                     General Alpine Commands
8412 -------------------------      -----------------------
8413  P  Prev Rule                   ?  Display this help text
8414  N  Next Rule                   E  Exit without selecting anything
8415  -  Previous page               %  Print
8416 Spc (space bar) Next page
8417  W  WhereIs
8419 Select Command
8420 ------------------------------------------------
8421  S  Select the highlighted rule
8422 </PRE>
8423 <!--chtml endif-->
8425 <H2>Description of the Select Rule Screen</H2>
8427 This screen just gives you an easy way to select a rule from all of your
8428 defined rules.
8429 The list of rules presented is the list of nicknames of all of the rules
8430 defined using Setup/Rules.
8431 For selecting messages, it is likely that the Indexcolor rules and possibly
8432 the Roles rules will be most useful.
8433 The others are there also, in case you find a use for them.
8435 In order for this to be useful for selecting messages, the nicknames of
8436 the rules have to be different.
8437 Alpine actually just gets the nickname of the rule that you select and then
8438 looks up that rule using the nickname.
8439 So if there are duplicate nicknames, the first rule that has that
8440 nickname will be used.
8442 <P><UL>
8443 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8444 </UL>
8446 &lt;End of help on this topic&gt;
8447 </BODY>
8448 </HTML>
8449 ===== h_select_priority_screen =====
8450 <HTML>
8451 <HEAD>
8452 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8453 </HEAD>
8454 <BODY>
8455 <H1>SELECT A PRIORITY SCREEN</H1>
8456 <H2>COMMANDS</H2>
8457 <!--chtml if pinemode="function_key"-->
8458 <PRE>
8459 Available  Commands                        
8460 -------------------------------            
8461 F1  Show Help Text
8462 F3  Exit without selecting anything
8463 F4  Select the highlighted priority
8464 F5  Move highlight to previous priority
8465 F6  Move highlight to next priority
8466 F7  Previous page of priorities
8467 F8  Next page of priorities
8468 F11 Print
8469 F12 WhereIs
8470 </PRE>
8471 <!--chtml else-->
8472 <PRE>
8473 Navigation                     General Alpine Commands
8474 -------------------------      -----------------------
8475  P  Prev Priority               ?  Display this help text
8476  N  Next Priority               E  Exit without selecting anything
8477  -  Previous page               %  Print
8478 Spc (space bar) Next page
8479  W  WhereIs
8481 Select Command
8482 ------------------------------------------------
8483  S  Select the highlighted priority
8484 </PRE>
8485 <!--chtml endif-->
8487 <H2>Description of the Select Priority Screen</H2>
8489 This screen gives you a way to select a priority for the message you are sending.
8490 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8491 Some mail programs will display an indication of the priority level to
8492 the recipient of the message, some will ignore it.
8493 Even in cases where the mail programs of both the sender and the recipient
8494 agree on the meaning of this header, keep in mind that it is
8495 something that the sender sets so it is only an indication
8496 of the priority that the sender attaches to the mail.
8497 Alpine can be made to display an indication of this priority in incoming
8498 messages by use of one of the tokens
8499 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8500 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8501 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8503 <P><UL>
8504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8505 </UL>
8507 &lt;End of help on this topic&gt;
8508 </BODY>
8509 </HTML>
8510 ===== h_select_keyword_screen =====
8511 <HTML>
8512 <HEAD>
8513 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8514 </HEAD>
8515 <BODY>
8516 <H1>SELECT A KEYWORD SCREEN</H1>
8517 <H2>COMMANDS</H2>
8518 <!--chtml if pinemode="function_key"-->
8519 <PRE>
8520 Available  Commands                        
8521 -------------------------------            
8522 F1  Show Help Text
8523 F3  Exit without selecting anything
8524 F4  Select the highlighted keyword
8525 F5  Move highlight to previous keyword
8526 F6  Move highlight to next keyword
8527 F7  Previous page of keywords
8528 F8  Next page of keywords
8529 F11 Print
8530 F12 WhereIs
8531 </PRE>
8532 <!--chtml else-->
8533 <PRE>
8534 Navigation                     General Alpine Commands
8535 -------------------------      -----------------------
8536  P  Prev Keyword                ?  Display this help text
8537  N  Next Keyword                E  Exit without selecting anything
8538  -  Previous page               %  Print
8539 Spc (space bar) Next page
8540  W  WhereIs
8542 Select Command
8543 ------------------------------------------------
8544  S  Select the highlighted keyword
8545 </PRE>
8546 <!--chtml endif-->
8548 <H2>Description of the Select Keyword Screen</H2>
8550 This screen just gives you an easy way to select a keyword.
8551 The list of keywords presented is the list of all keywords defined in your 
8552 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8553 If you have given a keyword a nickname, that nickname is displayed
8554 instead of the actual keyword.
8556 <P><UL>
8557 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8558 </UL>
8560 &lt;End of help on this topic&gt;
8561 </BODY>
8562 </HTML>
8563 ===== h_select_charset_screen =====
8564 <HTML>
8565 <HEAD>
8566 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8567 </HEAD>
8568 <BODY>
8569 <H1>SELECT A CHARACTER SET SCREEN</H1>
8570 <H2>COMMANDS</H2>
8571 <!--chtml if pinemode="function_key"-->
8572 <PRE>
8573 Available  Commands                        
8574 -------------------------------            
8575 F1  Show Help Text
8576 F3  Exit without selecting anything
8577 F4  Select the highlighted character set
8578 F5  Move highlight to previous character set
8579 F6  Move highlight to next character set
8580 F7  Previous page of character sets
8581 F8  Next page of character sets
8582 F11 Print
8583 F12 WhereIs
8584 </PRE>
8585 <!--chtml else-->
8586 <PRE>
8587 Navigation                     General Alpine Commands
8588 -------------------------      -----------------------
8589  P  Prev Character Set          ?  Display this help text
8590  N  Next Character Set          E  Exit without selecting anything
8591  -  Previous page               %  Print
8592 Spc (space bar) Next page
8593  W  WhereIs
8595 Select Command
8596 ------------------------------------------------
8597  S  Select the highlighted character set
8598 </PRE>
8599 <!--chtml endif-->
8601 <H2>Description of the Select A Character Set Screen</H2>
8603 This screen just gives you an easy way to select a character set from the
8604 set of character sets Alpine knows about.
8605 The list presented will vary slightly depending on what option you are
8606 selecting the character set for.
8608 <P><UL>
8609 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8610 </UL>
8612 &lt;End of help on this topic&gt;
8613 </BODY>
8614 </HTML>
8615 ===== h_select_multcharsets_screen =====
8616 <HTML>
8617 <HEAD>
8618 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8619 </HEAD>
8620 <BODY>
8621 <H1>SELECT CHARACTER SETS SCREEN</H1>
8622 <H2>COMMANDS</H2>
8623 <!--chtml if pinemode="function_key"-->
8624 <PRE>
8625 Available  Commands
8626 -------------------------------            
8627 F1  Show Help Text
8628 F3  Exit without selecting anything
8629 F4  Select the highlighted charset (or chosen charsets in ListMode)
8630 F5  Move highlight to previous charset
8631 F6  Move highlight to next charset
8632 F7  Previous page of charsets
8633 F8  Next page of charsets
8634 F9  Toggle choices when using ListMode
8635 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8636 F11 Print
8637 F12 WhereIs
8638 </PRE>
8639 <!--chtml else-->
8640 <PRE>
8641 Navigation                     General Alpine Commands
8642 -------------------------      -----------------------
8643  P  Prev Charset                ?  Display this help text
8644  N  Next Charset                E  Exit without selecting anything
8645  -  Previous page               %  Print
8646 Spc (space bar) Next page
8647  W  WhereIs
8649 Select Command
8650 ------------------------------------------------
8651  S  Select the highlighted charset (or chosen charsets in ListMode)
8652  L  Turn on ListMode (makes it easy to choose multiple charsets)
8653  1  Turn off ListMode
8654  X  Toggle choices when using ListMode
8655 </PRE>
8656 <!--chtml endif-->
8658 <H2>Description of the Select Character Set Screen</H2>
8660 This screen just gives you an easy way to select a character set or a list of
8661 character sets.
8662 The list of character sets presented is the list of all character sets known to
8663 Alpine.
8664 You may select other character sets by typing them in directly.
8666 <P><UL>
8667 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8668 </UL>
8670 &lt;End of help on this topic&gt;
8671 </BODY>
8672 </HTML>
8673 ===== h_select_multkeyword_screen =====
8674 <HTML>
8675 <HEAD>
8676 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8677 </HEAD>
8678 <BODY>
8679 <H1>SELECT KEYWORDS SCREEN</H1>
8680 <H2>COMMANDS</H2>
8681 <!--chtml if pinemode="function_key"-->
8682 <PRE>
8683 Available  Commands
8684 -------------------------------            
8685 F1  Show Help Text
8686 F3  Exit without selecting anything
8687 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8688 F5  Move highlight to previous keyword
8689 F6  Move highlight to next keyword
8690 F7  Previous page of keywords
8691 F8  Next page of keywords
8692 F9  Toggle choices when using ListMode
8693 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8694 F11 Print
8695 F12 WhereIs
8696 </PRE>
8697 <!--chtml else-->
8698 <PRE>
8699 Navigation                     General Alpine Commands
8700 -------------------------      -----------------------
8701  P  Prev Keyword                ?  Display this help text
8702  N  Next Keyword                E  Exit without selecting anything
8703  -  Previous page               %  Print
8704 Spc (space bar) Next page
8705  W  WhereIs
8707 Select Command
8708 ------------------------------------------------
8709  S  Select the highlighted keyword (or chosen keywords in ListMode)
8710  L  Turn on ListMode (makes it easy to choose multiple keywords)
8711  1  Turn off ListMode
8712  X  Toggle choices when using ListMode
8713 </PRE>
8714 <!--chtml endif-->
8716 <H2>Description of the Select Keyword Screen</H2>
8718 This screen just gives you an easy way to select a keyword or a list of
8719 keywords.
8720 The list of keywords presented is the list of all keywords defined in your 
8721 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8722 If you have given a keyword a nickname, that nickname is displayed
8723 instead of the actual keyword.
8725 <P><UL>
8726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8727 </UL>
8729 &lt;End of help on this topic&gt;
8730 </BODY>
8731 </HTML>
8732 ===== h_select_incoming_to_monitor =====
8733 <HTML>
8734 <HEAD>
8735 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8736 </HEAD>
8737 <BODY>
8738 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8739 <H2>COMMANDS</H2>
8740 <!--chtml if pinemode="function_key"-->
8741 <PRE>
8742 Available  Commands
8743 -------------------------------            
8744 F1  Show Help Text
8745 F3  Exit without selecting anything
8746 F4  Select the marked folders
8747 F5  Move highlight to previous folder
8748 F6  Move highlight to next folder
8749 F7  Previous page of folders
8750 F8  Next page of folders
8751 F9  Toggle choices on or off
8752 F11 Print
8753 F12 WhereIs
8754 </PRE>
8755 <!--chtml else-->
8756 <PRE>
8757 Navigation                     General Alpine Commands
8758 -------------------------      -----------------------
8759  P  Prev Folder                 ?  Display this help text
8760  N  Next Folder                ^C  exit without changing anything
8761  -  Previous page               %  Print
8762 Spc (space bar) Next page
8763  W  WhereIs
8765 Select Command
8766 ------------------------------------------------
8767  S  Select the marked folders
8768  X  Toggle choices on or off
8769 </PRE>
8770 <!--chtml endif-->
8772 <H2>Description of the Select Folders to Check Screen</H2>
8774 This screen is only useful if the feature
8775 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
8776 is set.
8777 By default, when you set that feature all of your incoming folders
8778 will be checked periodically for Unseen messages.
8779 By using this screen, you may restrict the set of monitored folders to
8780 a subset of all of the incoming folders.
8782 Mark the folders you want to monitor for Unseen messages with
8783 an &quot;X&quot;.
8784 When you've finished marking all your selections use the Select
8785 command to register your choices.
8786 To return to the default of checking all incoming folders
8787 delete all folders or unmark all folders.
8789 <P><UL>
8790 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8791 </UL>
8793 &lt;End of help on this topic&gt;
8794 </BODY>
8795 </HTML>
8796 ===== h_role_select =====
8797 <HTML>
8798 <HEAD>
8799 <TITLE>ROLES SCREEN</TITLE>
8800 </HEAD>
8801 <BODY>
8802 <H1>ROLES SCREEN</H1>
8803 <H2>ROLES COMMANDS</H2>
8804 <!--chtml if pinemode="function_key"-->
8805 <PRE>
8806 Available  Commands                        
8807 -------------------------------            
8808 F1  Show Help Text
8809 F3  Exit without a selection
8810 F4  Select a role to use in composition
8811 F5  Move to previous role
8812 F6  Move to next role
8813 F7  Previous page of roles
8814 F8  Next page of roles
8815 F11 Change Default Role
8816 F12 Whereis (search role nicknames)
8817 </PRE>
8818 <!--chtml else-->
8819 <PRE>
8820 Navigation                     General Alpine Commands
8821 -------------------------      -----------------------
8822  P  Prev Role                     ?  Display this help text
8823  N  Next Role                     E  Exit without a selection
8824  -  Previous page
8825 Spc (space bar) Next page
8826  W  WhereIs (search for word in role nicknames)
8828 Select Role Commands
8829 ------------------------------------------------
8830  [Return]  Select highlighted role
8831  D         Change Default Role
8832 </PRE>
8833 <!--chtml endif-->
8835 <H2>Description of the Roles Screen</H2>
8837 With this screen you select a role to be used in the composition of a
8838 message.
8839 Use the Previous and Next commands to highlight the role you wish to
8840 use.
8841 When you type carriage return you will be placed in the composer using the highlighted role.
8843 You don't have any non-default <A HREF="h_rules_roles">roles</A>
8844 available unless you set them up.
8845 You may do so by using the Setup/Rules command on the MAIN MENU.
8847 By using the D command, you may set a default role that will persist until
8848 you change it or until you exit Alpine.
8849 The D command toggles through three states: set the default role, unset the
8850 default role, and leave the default role as it is.
8851 <P><UL>
8852 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8853 </UL>
8855 &lt;End of help on this topic&gt;
8856 </BODY>
8857 </HTML>
8858 ===== h_role_abook_select =====
8859 <HTML>
8860 <HEAD>
8861 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
8862 </HEAD>
8863 <BODY>
8864 <H1>SELECT ADDRESS BOOK 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 screen without selecting anything
8872 F4  Select highlighted address book
8873 F5  Move to previous address book
8874 F6  Move to next address book
8875 F7  Previous page of address books
8876 F8  Next page of address books
8877 F12 Whereis
8878 </PRE>
8879 <!--chtml else-->
8880 <PRE>
8881 Navigation                     General Alpine Commands
8882 -------------------------      -----------------------
8883  P  Previous addrbook          ?  Display this help text
8884  N  Next addrbook
8885  -  Previous page
8886 Spc (space bar) Next page
8887  W  WhereIs
8889 Select Role Commands
8890 ------------------------------------------------
8891  S  Select highlighted address book
8892  E  Exit screen without selecting anything
8893 </PRE>
8894 <!--chtml endif-->
8896 <H2>Description of the Select Address Book Screen</H2>
8898 This screen helps you select one of your address books.
8899 Use the Previous and Next commands to highlight the address book you wish to
8900 select.
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_rule_patterns =============
8909 <HTML>
8910 <HEAD>
8911 <TITLE>PATTERNS</TITLE>
8912 </HEAD>
8913 <BODY>
8914 <H1>PATTERNS</H1>
8915 Patterns are used with Roles, Filtering, Index Coloring,
8916 Scoring, Other Rules, and Search Rules.
8917 Patterns are compared with a message to see if there is a match.
8918 For Filtering, the messages being checked are all the messages in the
8919 folder, one at a time.
8920 For Index Line Coloring, each message that is visible on the screen is
8921 checked for matches with the Index Coloring Patterns.
8922 Roles are used with the Reply, Forward, and Compose commands.
8923 For Reply, the message used to compare the Pattern with is the message
8924 being replied to;
8925 for Forward, the message used to compare the Pattern with is the message
8926 being forwarded;
8927 and for Compose, there is no message, so the parts of the Pattern that depend
8928 on a message (everything other than Current Folder Type and the
8929 Beginning of Month and Year)
8930 are not used.
8931 Only the Current Folder Type matters for Compose (plus the Beginning of
8932 Month or Year, which you wouldn't usually use for a Role).
8933 For Scoring, the message being scored is compared with all of the Score
8934 Patterns, and the Score Values from the ones that match are added together to 
8935 get the message's score.
8936 For Other Rules, there is no message. Only the Current Folder Type is checked
8937 for Other Rules.
8939 Each Pattern has several possible parts, all of which are optional.
8940 In order for there to be a match, <EM>ALL</EM> of the
8941 <EM>defined</EM> parts of the Pattern must match the message.
8942 If a part is not defined it is considered a match, but note that a filtering
8943 Pattern must have at least one defined part or it will be ignored.
8944 For example, if the To pattern is not defined it will be
8945 displayed as
8947 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
8949 That is considered a match because it is not defined.
8950 This means that the Pattern with nothing defined is a match if the
8951 Current Folder Type matches, but there is an exception that was mentioned
8952 in the previous paragraph.
8953 Because filtering is a potentially destructive action, filtering Patterns
8954 with nothing other than Current Folder Type defined are ignored.
8955 If you really want a filtering Pattern to match all messages (subject to
8956 Current Folder Type) the best way to do it is to define a Score interval
8957 that includes all possible scores.
8958 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
8959 This can be used even if you haven't defined any rules to Set Scores.
8961 There are six predefined header patterns called the To, From, Sender, Cc, News,
8962 and Subject patterns.
8963 Besides those six predefined header patterns, you may add
8964 additional header patterns with header fieldnames of your choosing.
8965 You add an extra header pattern by placing the cursor on one of the
8966 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
8967 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
8968 and the Partic pattern is a header pattern that stands for
8969 Participant (From OR To OR Cc).
8970 (Defining the Recip pattern does not have the same effect as defining both
8971 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
8972 Similar to the header patterns are the AllText pattern and the BodyText pattern.
8973 Instead of comparing this pattern's text against only the contents of
8974 a particular header field, the text for the AllText pattern is compared
8975 with text anywhere in the message's header or body, and the text for the
8976 BodyText pattern is compared with text anywhere in the message's body.
8978 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
8979 &quot;!&quot; &quot;toggle NOT&quot; command.
8980 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8981 &quot;!&quot; at the beginning of the pattern line.
8982 When the &quot;!&quot; is present, it reverses the meaning of the match.
8983 That is, if the pattern matches then it is considered to NOT be a match, and
8984 if it does not match it is considered to be a match.
8986 Don't make the mistake of putting the &quot;!&quot; in the data field for
8987 a pattern.
8988 For example, if you type the characters &quot;!urgent&quot; into the Subject
8989 pattern, the pattern will look like:
8991 <PRE>
8992  Subject pattern = !urgent
8993 </PRE>
8995 This means you want to match the 7 character sequence &quot;!urgent&quot;.
8996 In order to match messages that do not have &quot;urgent&quot; in
8997 their Subject field, first type the characters &quot;urgent&quot; followed
8998 by carriage return for the value of the Subject pattern, then negate it
8999 by typing the &quot;!&quot; command.
9000 It should look like
9002 <PRE>
9003  ! Subject pattern = urgent
9004 </PRE>
9006 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9007 be a complete email address, part of an address, or a random set of
9008 characters to match against.
9009 It may also be a list of such patterns, which means you
9010 are looking for a match against the first pattern in the list <EM>OR</EM>
9011 the second pattern <EM>OR</EM> the third and so on.
9012 For example, a Subject pattern equal to
9014 <PRE>
9015  Subject pattern = urgent
9016                    emergency
9017                    alert
9018 </PRE>
9020 would match all messages with a subject that contained at least one
9021 of those words.
9022 It would also match subjects containing the words &quot;alerts&quot; or
9023 &quot;Urgently&quot;.
9025 The same example with &quot;NOT&quot; turned on would be
9027 <PRE>
9028  ! Subject pattern = urgent
9029                      emergency
9030                      alert
9031 </PRE>
9033 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9034 those words.
9035 You can use the &quot;Add Value&quot; command to add new words to the list,
9036 or you can enter them as a comma-separated list.
9038 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9039 present for a match.
9040 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9041 pattern2 must be present,
9042 and that is exactly what using a list does.)
9044 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9045 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9046 when checking for matches for Scoring.
9047 There are five similar settings that relate to the status of the message.
9048 These settings rely on the message being New or not, Deleted or not,
9049 Answered or not, Important or not, and Recent or not.
9050 There are also some other miscellaneous settings.
9051 The first is the Age of the message in days.
9052 Another is the Size of the message, in bytes.
9053 The third is a setting that detects whether or not the Subject of a
9054 message contains raw 8-bit characters (unencoded characters with the most
9055 significant bit set).
9056 There is a setting that detects whether or not this is the first time
9057 Alpine has been run this month (doesn't depend on individual messages),
9058 and another that detects whether or not this is the first time Alpine has
9059 been run this year.
9060 Other parts of the Pattern detect whether or not the From address of a
9061 message appears in your address book, whether or not certain keywords
9062 are set for a message, and whether or not certain character sets are
9063 used in a message.
9065 <H2>Parts of a Pattern</H2>
9067 <H3>Header patterns</H3>
9069 A header pattern is simply text that is searched for in the corresponding
9070 header field.
9071 For example, if a Pattern has a From header pattern with the value
9072 &quot;@company.com&quot;, then only messages that have a From header
9073 that contains the text &quot;@company.com&quot; will be possible
9074 matches.
9075 Matches don't have to be exact.
9076 For example, if the relevant field of a message contains the text
9077 &quot;mailbox@domain&quot; somewhere
9078 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9079 &quot;mailbox@domain&quot; are all matches.
9081 All parts of the Pattern must match so, for example,
9082 if a message matches a defined
9083 From pattern, it still must be checked against the other parts of the
9084 Pattern that have been defined.
9085 The To header pattern is a slightly special case.
9086 If the message being checked has a Resent-To header
9087 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9088 there are used in place of the addresses in the To header.
9089 This is only true for the To header.
9090 Resent-cc and Resent-From headers are never used unless you add them
9091 with the eXtraHdrs command.
9093 The meaning of a header pattern may be negated with the
9094 &quot;!&quot; &quot;toggle NOT&quot; command.
9095 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9096 &quot;!&quot; at the beginning of the pattern line.
9097 It would look something like
9099 <PRE>
9100  ! From pattern = susan@example.com
9101 </PRE>
9103 When the &quot;!&quot; is present, it reverses the meaning of the match.
9105 If you want to check for the presence of a header field but don't care
9106 about its value, then
9107 the empty pattern that you get by entering a pair of
9108 double quotes (&quot;&quot;) should match any message that
9109 has the corresponding header field.
9111 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9113 AllText patterns are just like header patterns except that the text is
9114 searched for anywhere in the message's headers or body, not just in the
9115 contents of a particular header field.
9118 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9120 BodyText patterns are just like header patterns except that the text is
9121 searched for anywhere in the message's body, not just in the
9122 contents of a particular header field.
9125 If there is more than one header pattern or AllText pattern or BodyText pattern
9126 for which you want to take the
9127 same action there is a shorthand notation that may be used.
9128 Any of these patterns may be a list of patterns instead of
9129 just a single pattern.
9130 If any one of the patterns in the list matches the message
9131 then it is considered a match.
9132 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9133 you to use the same role when replying to messages, you might have
9134 a To pattern that looks like
9136 <PRE>
9137  To pattern = company1.com
9138               company2.com
9139 </PRE>
9141 This means that if the mail you are replying to was addressed to
9142 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9143 then this Pattern is a match and the same actions will be taken.
9145 The meaning of an AllText or BodyText pattern may be negated with the
9146 &quot;!&quot; &quot;toggle NOT&quot; command.
9147 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9148 &quot;!&quot; at the beginning of the pattern line.
9149 When the &quot;!&quot; is present, it reverses the meaning of the match.
9151 A technicality: Since comma is the character used to separate multiple values
9152 in any of the fields that may have multiple values (such as header patterns,
9153 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9154 you must escape comma with a
9155 backslash (&#92;) if you want to include a literal comma in one of those fields.
9156 In other words, if you type a backslash followed by a comma it will
9157 be interpreted as a comma by Alpine, instead of as a separator between
9158 pattern values.
9159 All other backslashes (those not followed by a comma) are literal
9160 backslashes and should not be escaped.
9161 It's unlikely you'll ever need to enter a literal comma or backslash in
9162 any of the patterns.
9164 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9166 The &quot;Current Folder Type&quot; may be set to one of four different
9167 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9168 &quot;Specific&quot;.
9169 If the value is set to &quot;News&quot;, then the
9170 Pattern will only match if the currently open folder is a newsgroup.
9171 The value &quot;Email&quot; only matches if the current folder is not news and
9172 the value &quot;Any&quot; causes any folder to match.
9173 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9174 then you must fill in a value for &quot;Folder&quot;, which is on the line
9175 below the &quot;Specific&quot; line.
9176 In this case you will only get a match if the currently open folder is
9177 the specific folder you list.
9178 You may give a list of folders instead of just a single
9179 folder name, in which case the Pattern will match if the open folder is
9180 any one of the folders in the list.
9181 The name of each folder in the list may be either &quot;INBOX&quot;,
9182 the technical specification
9183 of the folder (like what appears in your configuration file) or, if the
9184 folder is one of your incoming folders, it may be the nickname you've given
9185 the folder.
9186 Here are some samples of specific folder names:
9188 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9190 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9192 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9194 The easiest way to fill in the &quot;Folder&quot; field is to use
9195 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9196 highlighted, or to use the &quot;Take&quot; command with the configuration
9197 feature
9198 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9199 turned on.
9201 When reading a newsgroup, there may be a performance penalty
9202 incurred when collecting the information necessary to check whether
9203 or not a Pattern matches a message.
9204 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9205 If you have Patterns with a Current Folder Type of either
9206 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9207 Index Line Coloring or Scoring, you may experience
9208 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9210 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9212 The &quot;Age Interval&quot; may be set to an interval of message
9213 ages that should be considered a match.
9214 Like the other parts of the Pattern, if it is unset it will be ignored.
9215 The Age Interval looks like
9217 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9219 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9220 than or equal to zero.
9221 The special value &quot;INF&quot; may be used for
9222 the max value. It represents infinity.
9224 Actually, this option may be defined as a list of intervals instead
9225 of just a single interval.
9226 The list is separated by commas.
9227 It can look like
9229 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9231 When there is an Age Interval defined, it is a match if the age, in days, of
9232 the message is contained in any of the intervals.
9233 The intervals include both endpoints.
9235 Even though this option is called Age, it isn't actually
9236 the <EM>age</EM> of the message.
9237 Instead, it is how many days ago the message arrived in one of your folders.
9238 If the current time is a little past midnight, then a message that arrived
9239 just before midnight arrived yesterday, even though the message is only
9240 a few minutes old.
9241 By default, the date being used is not the date in the Date
9242 header of the message.
9243 It is the date that the message arrived in one of your folders.
9244 When you Save a message from one folder to another that arrival date
9245 is preserved.
9246 If you would like to use the date in the Date header that is possible.
9247 Turn on the option
9248 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9249 near the bottom of the rule definition.
9250 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9252 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9254 The &quot;Size Interval&quot; may be set to an interval of message
9255 sizes that should be considered a match.
9256 Like the other parts of the Pattern, if it is unset it will be ignored.
9257 The Size Interval looks like
9259 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9261 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9262 than or equal to zero.
9263 The special value &quot;INF&quot; may be used for
9264 the max value. It represents infinity.
9266 Actually, this option may be defined as a list of intervals instead
9267 of just a single interval.
9268 The list is separated by commas.
9269 It can look like
9271 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9273 When there is a Size Interval defined, it is a match if the size, in bytes, of
9274 the message is contained in any of the intervals.
9275 The intervals include both endpoints.
9277 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9279 The &quot;Score Interval&quot; may be set to an interval of message
9280 scores that should be considered a match.
9281 Like the other parts of the Pattern, if it is unset it will be ignored.
9282 The Score Interval looks like
9284 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9286 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9287 negative integers, with min_score less than or equal to max_score.
9288 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9289 the min and max values to represent negative and positive infinity.
9291 Actually, a list of intervals may be used if you wish.
9292 A list would look like
9294 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9296 When there is a Score Interval defined, it is a match if the score for
9297 the message is contained in any of the intervals in the list.
9298 The intervals include the endpoints.
9299 The score for a message is calculated by looking at every Score rule defined and
9300 adding up the Score Values for the ones that match the message.
9301 When deciding whether or not a Pattern matches a message for purposes of
9302 calculating the score, the Score Interval is ignored.
9304 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9306 There are five separate message status settings.
9307 By default, all five are set to the value &quot;Don't care&quot;, which
9308 will match any message.
9309 The value &quot;Yes&quot; means that the particular status must be true
9310 for a match, and the value &quot;No&quot; means that the particular
9311 status must not be true for a match.
9312 For example, one of the five Message Status settings is whether a message
9313 is marked Important or not.
9314 A &quot;Yes&quot; means that the message must be Important to be
9315 considered a match and &quot;No&quot; means that the message must not be
9316 Important to be considered a match.
9317 The same is true of the other four message status settings that depend
9318 on whether or not the message is New; whether the message has 
9319 been Answered or not; whether the message has been Deleted or not, and
9320 whether the message is Recent or not. 
9322 The nomenclature for New and Recent is a bit confusing:
9324 New means that the message is Unseen.
9325 It could have been in your mailbox for a long time but if you haven't looked
9326 at it, it is still considered New.
9327 That matches the default Alpine index display that shows an N for such a
9328 message.
9330 Recent means that the message was added to this folder since the last time
9331 you opened the folder.
9332 Alpine also shows an N by default for these types of messages.
9333 If you were to run two copies of Alpine that opened a folder one right after
9334 the other, a message would only show up as Recent in (at most) the first
9335 Alpine session.
9337 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9339 Keywords are similar to Message Status, but they are chosen by the user.
9340 Provided the mail server allows for it, you may add a set of possible keywords
9341 to a folder and then you may set those keywords or not for each message
9342 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9343 The syntax of this part of the Pattern is similar to the header patterns.
9344 It is a list of keywords.
9345 The Keyword part of the Pattern is a match if the message has any of
9346 the keywords in the list set.
9347 Like other parts of the Pattern, if this is unset it will be ignored.
9349 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9351 A message may use one or more character sets.
9352 This part of the Pattern matches messages that make use of one or more of
9353 the character sets specified in the pattern.
9354 It will be considered a match if a message uses any of the character
9355 sets in the list you give here.
9358 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9359 GB2312) you may also use some shorthand names that Alpine provides.
9360 These names are more understandable shorthand names for sets of 
9361 character set names.
9362 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9363 Selecting one of these shorthand names is equivalent to selecting all of
9364 the character sets that make up the set.
9365 You can see all of these shorthand names and the lists of character sets
9366 they stand for by typing the &quot;T&quot; command with the Character
9367 Set pattern highlighted.
9368 The syntax of this part of the Pattern is similar to the header patterns
9369 and the Message Keywords pattern.
9370 It is a list of character sets (or shorthand names).
9371 The Character Set part of the Pattern is a match if the message uses any
9372 of the character sets in the list.
9373 Like other parts of the Pattern, if this is unset it will be ignored.
9375 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9377 It seems that lots of unwanted email contains unencoded 8-bit characters
9378 in the Subject.
9379 Normally, characters with the 8th bit set are not allowed in the Subject
9380 header unless they are MIME-encoded.
9381 This option gives you a way to match messages that have Subjects that
9382 contain unencoded 8-bit characters.
9383 By default, the value of this option is &quot;Don't care&quot;, which
9384 will match any message.
9385 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9386 the Subject of the message in order for there to be a match,
9387 and the value &quot;No&quot; is the opposite.
9388 Setting this option will affect performance in large folders because the
9389 subject of each message in the folder has to be checked.
9391 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9393 This option gives you a way to take some action once per month.
9394 By default, the value of this option is &quot;Don't care&quot;, which
9395 will always match.
9396 The value &quot;Yes&quot; means that this must be the first time Alpine has
9397 been run this month in order to count as a match,
9398 and the value &quot;No&quot; is the opposite.
9400 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9402 This option gives you a way to take some action once per year.
9403 By default, the value of this option is &quot;Don't care&quot;, which
9404 will always match.
9405 The value &quot;Yes&quot; means that this must be the first time Alpine has
9406 been run this year in order to count as a match,
9407 and the value &quot;No&quot; is the opposite.
9409 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9411 This option gives you a way to match messages that have an address
9412 that is in one of your address books.
9413 Only the simple entries in your address books are searched.
9414 Address book distribution lists are ignored!
9415 By default, the value of this option is &quot;Don't care&quot;, which
9416 will match any message.
9417 The value &quot;Yes, in any address book&quot; means the address
9418 from the message must be in at least one of your
9419 address books in order to be a match.
9420 The value &quot;No, not in any address book&quot;
9421 means none of the addresses may
9422 be in any of your address books in order to be a match.
9423 The values &quot;Yes, in specific address books&quot; and
9424 &quot;No, not in any of specific address books&quot; are similar but instead
9425 of depending on all address books you are allowed to give a list of address
9426 books to look in.
9427 The addresses from the message that are checked for are determined by the
9428 setting you have for &quot;Types of addresses to check for in address book&quot;.
9429 If you set this to &quot;From&quot; the From address from the message will
9430 be looked up in the address book.
9431 If you set it to only &quot;To&quot; then the To addresses will be used.
9432 If any of the To addresses are in the address book then it is considered
9433 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9434 You could set it to both From and To, in which case all of the From and To
9435 addresses are used.
9436 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9437 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9438 exists or the From address if there is no Reply-To address.
9439 Same for the Sender address.
9440 Setting this option may affect performance in large folders because the
9441 From and Reply-To of each message in the folder have to be checked.
9443 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9445 This is a command that is run with its standard input set to the message
9446 being checked and its standard output discarded.
9447 The full directory path should be specified.
9448 The command will be run and then its exit status will be checked against
9449 the Exit Status Interval, which defaults to just the value zero.
9450 If the exit status of the command falls in the interval, it is considered
9451 a match, otherwise it is not a match.
9454 This option may actually be a list of commands.
9455 The first one that exists and is executable is used.
9456 That makes it possible to use the same configuration with Unix Alpine and
9457 PC-Alpine.
9460 If none of the commands in the list exists and is executable then the rule
9461 is <EM>not</EM> a match.
9462 If it is possible that the command may not exist, you should be careful
9463 to structure your rules so that nothing destructive
9464 happens when the command does not exist.
9465 For example, you might have a filter that filters away spam when there is
9466 a match but does nothing when there is not a match.
9467 That would continue to work correctly if the command didn't exist.
9468 However, if you have a filter that filters away spam when there is not
9469 a match and keeps it when there is a match, that would filter everything
9470 if the categorizer command didn't exist.
9472 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9473 setup for the bogofilter filter.
9476 &lt;End of help on this topic&gt;
9477 </BODY>
9478 </HTML>
9479 ===== h_rules_roles =====
9480 <HTML>
9481 <HEAD>
9482 <TITLE>SETUP ROLES SCREEN</TITLE>
9483 </HEAD>
9484 <BODY>
9485 <H1>SETUP ROLES SCREEN</H1>
9486 <H2>SETUP ROLES COMMANDS</H2>
9487 <!--chtml if pinemode="function_key"-->
9488 <PRE>
9489 Available  Commands -- Group 1         Available Commands -- Group 2   
9490 -------------------------------        ------------------------------  
9491 F1  Show Help Text                      F1  Show Help Text             
9492 F2  See commands in next group          F2  See commands in next group
9493 F3  Back to MAIN Alpine menu
9494 F4  Change configuration for role
9495 F5  Move to previous role               F5  Include file in role config
9496 F6  Move to next role                   F6  Exclude file from config
9497 F7  Previous page of roles
9498 F8  Next page of roles
9499 F9  Add new role                        F9  Replicate existing role
9500 F10 Delete existing role
9501 F11 Shuffle the order of roles
9502 F12 Whereis (search role nicknames)
9503 </PRE>
9504 <!--chtml else-->
9505 <PRE>
9506 Navigation                     General Alpine Commands
9507 -------------------------      -----------------------
9508  P  Prev Role                     ?  Display this help text
9509  N  Next Role                     E  Back to MAIN Alpine menu
9510  -  Previous page
9511 Spc (space bar) Next page
9512  W  WhereIs (search for word in role nicknames)
9514 Setup Roles Commands
9515 ------------------------------------------------
9516  A  Add new role                  $  Shuffle the order of roles
9517  D  Delete existing role          C  Change configuration for highlighted role
9518  R  Replicate existing role
9519  I  Include file in role config   X  Exclude file from role config
9520 </PRE>
9521 <!--chtml endif-->
9523 <H2>Description of the Setup Roles Screen</H2>
9525 This screen lets you add, delete, modify, or change the order of the rules
9526 that determine the role you are playing when composing a message.
9528 You may play different roles depending on who you are replying to.
9529 For example, if you are replying to a message addressed to help-desk you
9530 may be acting as a Help Desk Worker.
9531 That role may require that you use a different return address and/or
9532 a different signature.
9534 Roles are optional.
9535 If you set up roles they work like this:  Each role has a set of
9536 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9537 considered for a particular use; a &quot;Pattern&quot;,
9538 which is used to decide which of the eligible roles is used; and a set
9539 of &quot;Actions&quot;, which are taken when that role is used.
9540 When you reply to a message, the message you are replying to is compared
9541 with the Patterns of the roles marked as eligible for use when replying.
9542 The comparisons start with the first eligible role and keep going until there
9543 is a match.
9544 If a match is found, the matching role's Actions are taken.
9546 It is also possible to set a default role and to change that role during
9547 your Alpine session.
9548 When you start Alpine no default role will be set.
9549 You may set or change the current default role by using the &quot;D&quot;
9550 command in the role selection screen.
9551 You'll see that screen while composing a message and being asked to select
9552 a role.
9553 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9554 compose a message.
9555 You may find a default role useful if you normally perform the duties of one
9556 of your roles for a while, then you switch to another role and stay in the
9557 new role for another period of time.
9558 It may be easier than using the Role Command to select the role each time you
9559 compose a message.
9561 <H2>Role Uses</H2>
9563 There are three types of use to be configured;
9564 one for Replying, one for Forwarding, and one for Composing.
9565 These indicate whether or not you want a role to be considered when you
9566 type the Reply, Forward, or Compose commands.
9567 (The Role command is an alternate form of the Compose command, and it is
9568 not affected by these settings.)
9569 Each of these Use types has three possible values.
9570 The value &quot;Never&quot;
9571 means that the role will never be considered as a candidate for use with
9572 the corresponding command.
9573 For example, if you set a role's Reply Use to Never, then when you Reply to
9574 a message, that role won't even be considered.
9575 (That isn't quite true. If the message you are replying to matches some other
9576 role that requires confirmation,
9577 then there will be a ^T command available which allows you to select a role
9578 from all of your roles, not just the reply-eligible roles.)
9581 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9582 both mean that you do want to consider this role when using the corresponding
9583 command.
9584 For either of these settings the role's Pattern will
9585 be checked to see if it matches the message.
9586 For Reply Use, the message used to compare the Pattern with is the message
9587 being replied to.
9588 For Forward Use, the message used to compare the Pattern with is the message
9589 being forwarded.
9590 For Compose Use, there is no message, so the parts of the Pattern that depend
9591 on a message (everything other than Current Folder Type) are ignored.
9592 In all cases, the Current Folder Type is checked if defined.
9593 If there is a match then this role will either be used without confirmation
9594 or will be the default when confirmation is asked for, depending on
9595 which of the two options is selected.
9596 If confirmation is requested, you will have a chance to
9597 choose No Role instead of the offered role, or to
9598 change the role to any one of your other roles (with the ^T command).
9600 <H2>Role Patterns</H2>
9602 In order to determine whether or not a message matches a role the message is
9603 compared with the Role's Pattern.
9604 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9605 Scoring, Other Rules, and Search Rules, so are described in only one place,
9606 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9608 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9609 a role that has all header patterns unset, the AllText pattern unset,
9610 the BodyText pattern unset,
9611 the Score Interval unset, and the Current Folder Type set to
9612 &quot;Any&quot; may be used as a default role.
9613 It should be put last in the list of roles since the matching
9614 starts at the beginning and proceeds until one of the roles is a match.
9615 If no roles at all match, then Alpine will
9616 use its regular methods of defining the role.
9617 If you wanted to, you could define a different &quot;default&quot; role
9618 for Replying, Forwarding, and Composing by setting the
9619 &quot;Use&quot; fields appropriately.
9621 <H2>Role Actions</H2>
9623 Once a role match is found, the role's Actions are taken.
9624 For each role there are several possible actions that may be defined.
9625 They are actions to set the From address, the Reply-To address,
9626 the Fcc, the Signature, the Template file, and Other Headers.
9628 <H3>Set From</H3>
9630 The From address is the address used on the From line of the message
9631 you are sending.
9633 <H3>Set Reply-To</H3>
9635 The Reply-To address is the address used on the Reply-To line of the message
9636 you are sending.
9637 You don't need a Reply-To address unless it is different from the From address.
9639 <H3>Set Other Headers</H3>
9641 If you want to set the value of the From or Reply-To headers, use
9642 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9643 If you want to set the values of other headers, use this field.
9644 This field is similar to the
9645 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9646 Each header you specify here must include the header tag
9647 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9648 and may optionally include a value for that header.
9649 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9650 for a header here will replace any value that already exists.
9651 For example, if you are Replying to a message there will be at least one
9652 address in the To header (the address you are Replying to).
9653 However, if you Reply using a role that sets the To header, that role's
9654 To header value will be used instead.
9656 <H3>Set Fcc</H3>
9658 The Fcc is used as the Fcc for the message you are sending.
9660 <H3>Set Signature or Set LiteralSig</H3>
9662 The Signature is the name of a file to be used as the signature file when
9663 this role is being used.
9664 If the name of the file has a vertical bar following it (|)
9665 then it is assumed that the file is a program that should be run to
9666 produce the signature.
9667 If the LiteralSig is set, then it is used instead of the signature file.
9668 LiteralSig is just a different way to store the signature.
9669 It is stored in the pine configuration file instead of in a separate
9670 signature file.
9671 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9672 either in the role or as the default signature in the Setup/Config screen,
9673 then the signature file is ignored.
9675 <H3>Set Template</H3>
9677 A Template is the name of a file to be included in the message when this
9678 role is being used.
9679 If the name of the file has a vertical bar following it (|)
9680 then it is assumed that the file is a program that should be run to
9681 produce the template.
9684 Both signature files and template files may be stored remotely on an IMAP
9685 server.
9686 In order to do that you just give the file a remote name.
9687 This works just like the regular
9688 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9689 option that is configured from the Setup/Configuration screen.
9690 A remote signature file name might look like:
9692 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9694 Once you have named the remote signature or template file you create its
9695 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9696 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9697 line of the role editor.
9700 Both signature files and template files (or the output of signature programs
9701 and template file programs) may contain special tokens
9702 that are replaced with contents
9703 that depend on the message being replied to or forwarded.
9704 See the help for the individual fields inside the role editor for more
9705 information on tokens.
9707 <H3>Use SMTP Server</H3>
9709 If this field has a value, then it will be used as the SMTP server
9710 to send mail when this role is being used (unless the SMTP server variable
9711 is set in the system-wide fixed configuration file).
9712 It has the same semantics as the
9713 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9714 variable in the Setup/Config screen.
9715 When you postpone the composition this SMTP server list will be saved
9716 with the postponed composition and it cannot be changed later.
9717 Because of that, you may want to make this a list of SMTP servers
9718 with the preferred server at the front of the list and alternate servers
9719 later in the list.
9722 If any of the actions are left unset, then the action depends on what
9723 is present in the &quot;Initialize settings using role&quot; field.
9724 If you've listed the nickname of another one of your roles there, then the
9725 corresponding action from that role will be used here.
9726 If that action is also blank, or if there is no nickname specified,
9727 then Alpine will do whatever it normally does to set these actions.
9728 This depends on other configuration options and features you've set.
9730 <H2>Command Descriptions</H2>
9732 <H3>Add</H3>
9734 The Add command is used to add a new role definition to your set of
9735 roles.
9736 The new role will be added after the highlighted role.
9738 <H3>Delete</H3>
9740 The Delete command deletes the currently highlighted role.
9742 <H3>Change</H3>
9744 The Change command lets you edit the nickname, Uses, Pattern,
9745 and Actions of the currently highlighted role.
9747 <H3>Shuffle</H3>
9749 The Shuffle command allows you to change the order of the roles.
9750 You may move the currently highlighted role up or down in the list.
9751 The order of the roles is important since the roles are tested for a
9752 match starting with the first role and continuing until a match is found.
9753 You should place the roles with more specific Patterns near the beginning
9754 of the list, and those with more general Patterns near the end so that
9755 the more specific matches will happen when appropriate.
9757 <H3>Replicate</H3>
9759 The Replicate command is used to copy an existing role and modify it.
9760 The new role will be added after the highlighted role.
9762 <H3>IncludeFile</H3>
9764 The IncludeFile command allows you to add a roles file to your configuration.
9765 Usually, your roles will be contained in your Alpine configuration file.
9766 If you wish, some or all of your roles may be stored in a separate file.
9767 If a roles file already exists (maybe it was made by somebody else using
9768 Alpine), you may insert it before the currently highlighted role.
9769 You may also insert an empty file or a file that does not yet exist.
9770 Once you have an empty roles file in your configuration, you may use
9771 the Shuffle command to move roles into it.
9772 In fact, that's the only way to get the initial role into the file.
9774 <H3>eXcludeFile</H3>
9776 The eXcludeFile command removes a roles file from your roles configuration.
9777 A limitation of the program is that in order to exclude a roles file
9778 that file must have at least one role
9779 in it, otherwise you won't be able to highlight a line in the file.
9780 So you may have to add a dummy role to the file in order to exclude the file.
9781 <P><UL>
9782 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9783 </UL>
9785 &lt;End of help on this topic&gt;
9786 </BODY>
9787 </HTML>
9788 ===== h_rules_other =====
9789 <HTML>
9790 <HEAD>
9791 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
9792 </HEAD>
9793 <BODY>
9794 <H1>SETUP OTHER RULES SCREEN</H1>
9795 <H2>SETUP OTHER RULES COMMANDS</H2>
9796 <!--chtml if pinemode="function_key"-->
9797 <PRE>
9798 Available  Commands -- Group 1         Available Commands -- Group 2   
9799 -------------------------------        ------------------------------  
9800 F1  Show Help Text                      F1  Show Help Text             
9801 F2  See commands in next group          F2  See commands in next group
9802 F3  Back to MAIN Alpine menu
9803 F4  Change configuration for rule
9804 F5  Move to previous rule               F5  Include file in rule config
9805 F6  Move to next rule                   F6  Exclude file from config
9806 F7  Previous page of rules
9807 F8  Next page of rules
9808 F9  Add new rule                        F9  Replicate existing rule
9809 F10 Delete existing rule
9810 F11 Shuffle the order of rules
9811 F12 Whereis (search rule nicknames)
9812 </PRE>
9813 <!--chtml else-->
9814 <PRE>
9815 Navigation                     General Alpine Commands
9816 -------------------------      -----------------------
9817  P  Prev rule                     ?  Display this help text
9818  N  Next rule                     E  Back to MAIN Alpine menu
9819  -  Previous page
9820 Spc (space bar) Next page
9821  W  WhereIs (search for word in rule nicknames)
9823 Setup Other Rules Commands
9824 ------------------------------------------------
9825  A  Add new rule                  $  Shuffle the order of rules
9826  D  Delete existing rule          C  Change configuration for highlighted rule
9827  R  Replicate existing rule
9828  I  Include file in rule config   X  Exclude file from rule config
9829 </PRE>
9830 <!--chtml endif-->
9832 <H2>Description of the Setup Other Rules Screen</H2>
9834 This is where you may set various actions that do not fit well into the
9835 other Rules categories.
9837 <H2>Patterns</H2>
9839 Other Rules are a little different from the rest of the Rules because
9840 they depend only on the current folder, and not on a particular message.
9841 In order to determine whether or not a rule's actions should be applied
9842 the current folder is compared with the rule's Pattern, which consists
9843 of only the Current Folder Type.
9844 Current Folder Type works the same for Other Rules as it does for Roles,
9845 Filtering, Index Coloring, and Scoring.
9846 Keep in mind that the only part of the Pattern that applies to Other
9847 Rules is the Current Folder Type when looking at the description of
9848 Patterns given
9849 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9851 <H2>The Actions</H2>
9853 <H3>Set Sort Order</H3>
9855 When you enter a new folder, these rules will be checked to see if you
9856 have set a sort order that is different from your default sort order.
9857 The default is set in the Setup/Config screen with
9858 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
9859 If the Sort Order action is set, then the folder will be displayed sorted in
9860 that sort order instead of in the default order.
9862 A possible point of confusion arises when you change the configuration
9863 of the Sort Order for the currently open folder.
9864 The folder will normally be re-sorted when you go back to viewing the
9865 index.
9866 However, if you have manually sorted the folder with the
9867 Sort
9868 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
9869 command, then it will not be re-sorted until the next time it is opened.
9871 <H3>Set Index Format</H3>
9873 When you enter a new folder, these rules will be checked to see if you
9874 have set an Index Format that is different from your default Index Format,
9875 which is set with the
9876 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
9877 If so, the index will be displayed with this format instead of the default.
9879 <H3>Set Startup Rule</H3>
9881 When you enter a new folder, these rules will be checked to see if you
9882 have set a startup rule that is different from the default startup rule.
9883 The default for incoming folders is set in the Setup/Config screen with
9884 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
9885 The default for folders other than INBOX that are not part of your
9886 incoming collection
9887 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
9888 is to start with the last message in the folder.
9889 If the Startup Rule is set to something other than &quot;default&quot;,
9890 then the rule will determine which message will be the current message when
9891 the folder is first opened.
9893 The various startup rule possibilities work the same here as they do in
9894 the incoming collection, so check
9895 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
9896 for more help.
9898 <H2>Command Descriptions</H2>
9900 <H3>Add</H3>
9902 The Add command is used to add a new rule definition to your set of
9903 rules.
9904 The new rule will be added after the highlighted rule.
9906 <H3>Delete</H3>
9908 The Delete command deletes the currently highlighted rule.
9910 <H3>Change</H3>
9912 The Change command lets you edit the nickname, Pattern,
9913 and Action of the currently highlighted rule.
9915 <H3>Shuffle</H3>
9917 The Shuffle command allows you to change the order of the rules.
9918 You may move the currently highlighted rule up or down in the list.
9919 The order of the rules is important since the rules are tested for a
9920 match starting with the first rule and continuing until a match is found.
9921 You should place the rules with more specific Patterns near the beginning
9922 of the list, and those with more general Patterns near the end so that
9923 the more specific matches will happen when appropriate.
9925 <H3>Replicate</H3>
9927 The Replicate command is used to copy an existing rule definition and modify it.
9928 The new rule will be added after the highlighted rule.
9930 <H3>IncludeFile</H3>
9932 The IncludeFile command allows you to add a rules file to your configuration.
9933 Usually, your rules will be contained in your Alpine configuration file.
9934 If you wish, some or all of your rules may be stored in a separate file.
9935 If a rules file already exists (maybe it was made by somebody else using
9936 Alpine), you may insert it before the currently highlighted rule.
9937 You may also insert an empty file or a file that does not yet exist.
9938 Once you have an empty rules file in your configuration, you may use
9939 the Shuffle command to move rules into it.
9940 In fact, that's the only way to get the initial rule into the file.
9942 <H3>eXcludeFile</H3>
9944 The eXcludeFile command removes a rules file from your rules configuration.
9945 A limitation of the program is that in order to exclude a rules file
9946 that file must have at least one rule
9947 in it, otherwise you won't be able to highlight a line in the file.
9948 So you may have to add a dummy rule to the file in order to exclude the file.
9949 <P><UL>
9950 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9951 </UL>
9953 &lt;End of help on this topic&gt;
9954 </BODY>
9955 </HTML>
9956 ===== h_rules_srch =====
9957 <HTML>
9958 <HEAD>
9959 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
9960 </HEAD>
9961 <BODY>
9962 <H1>SETUP SEARCH RULES SCREEN</H1>
9963 <H2>SETUP SEARCH RULES COMMANDS</H2>
9964 <!--chtml if pinemode="function_key"-->
9965 <PRE>
9966 Available  Commands -- Group 1         Available Commands -- Group 2   
9967 -------------------------------        ------------------------------  
9968 F1  Show Help Text                      F1  Show Help Text             
9969 F2  See commands in next group          F2  See commands in next group
9970 F3  Back to MAIN Alpine menu
9971 F4  Change configuration for rule
9972 F5  Move to previous rule               F5  Include file in rule config
9973 F6  Move to next rule                   F6  Exclude file from config
9974 F7  Previous page of rules
9975 F8  Next page of rules
9976 F9  Add new rule                        F9  Replicate existing rule
9977 F10 Delete existing rule
9978 F11 Shuffle the order of rules
9979 F12 Whereis (search rule nicknames)
9980 </PRE>
9981 <!--chtml else-->
9982 <PRE>
9983 Navigation                     General Alpine Commands
9984 -------------------------      -----------------------
9985  P  Prev rule                     ?  Display this help text
9986  N  Next rule                     E  Back to MAIN Alpine menu
9987  -  Previous page
9988 Spc (space bar) Next page
9989  W  WhereIs (search for word in rule nicknames)
9991 Setup Search Rules Commands
9992 ------------------------------------------------
9993  A  Add new rule                  $  Shuffle the order of rules
9994  D  Delete existing rule          C  Change configuration for highlighted rule
9995  R  Replicate existing rule
9996  I  Include file in rule config   X  Exclude file from rule config
9997 </PRE>
9998 <!--chtml endif-->
10000 <H2>Description of the Setup Search Rules Screen</H2>
10002 One of the commands that becomes available when that feature is turned on
10003 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10004 screen to select a set of messages.
10005 One way of selecting messages is to use a Rule.
10006 All of the messages that match (or don't match if you wish)
10007 a Rule's Pattern will be selected.
10009 Any of your Rules may be used for this purpose.
10010 You might already have Rules set up for filtering, index line color, scores, or roles;
10011 and you may use any of those Rules with the Select command.
10012 However, you might find it more convenient to set up a separate set of Rules
10013 just for this purpose without having to worry about what other effects
10014 they may cause.
10015 That is the purpose of these Select Rules.
10018 Each rule has a &quot;Pattern&quot;
10019 that is used to decide which messages are selected when you use it with
10020 the Select command.
10022 <H2>Patterns</H2>
10024 In order to determine whether or not a message should be selected
10025 the message is compared with the rule's Pattern.
10026 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10027 Scoring, Other Rules, and Search Rules, so are described in only one place,
10028 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10030 <H2>Command Descriptions</H2>
10032 <H3>Add</H3>
10034 The Add command is used to add a new rule definition to your set of
10035 rules.
10036 The new rule will be added after the highlighted rule.
10038 <H3>Delete</H3>
10040 The Delete command deletes the currently highlighted rule.
10042 <H3>Change</H3>
10044 The Change command lets you edit the nickname and Pattern
10045 of the currently highlighted rule.
10047 <H3>Shuffle</H3>
10049 The Shuffle command allows you to change the order of the rules.
10050 This affects only the order they are presented in when you use the
10051 ^T subcommand of the Select by Rule command.
10052 You may move the currently highlighted rule up or down in the list.
10054 <H3>Replicate</H3>
10056 The Replicate command is used to copy an existing rule definition and modify it.
10057 The new rule will be added after the highlighted rule.
10059 <H3>IncludeFile</H3>
10061 The IncludeFile command allows you to add a rules file to your configuration.
10062 Usually, your rules will be contained in your Alpine configuration file.
10063 If you wish, some or all of your rules may be stored in a separate file.
10064 If a rules file already exists (maybe it was made by somebody else using
10065 Alpine), you may insert it before the currently highlighted rule.
10066 You may also insert an empty file or a file that does not yet exist.
10067 Once you have an empty rules file in your configuration, you may use
10068 the Shuffle command to move rules into it.
10069 In fact, that's the only way to get the initial rule into the file.
10071 <H3>eXcludeFile</H3>
10073 The eXcludeFile command removes a rules file from your rules configuration.
10074 A limitation of the program is that in order to exclude a rules file
10075 that file must have at least one rule
10076 in it, otherwise you won't be able to highlight a line in the file.
10077 So you may have to add a dummy rule to the file in order to exclude the file.
10078 <P><UL>
10079 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10080 </UL>
10082 &lt;End of help on this topic&gt;
10083 </BODY>
10084 </HTML>
10085 ===== h_rules_incols =====
10086 <HTML>
10087 <HEAD>
10088 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10089 </HEAD>
10090 <BODY>
10091 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10092 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10093 <!--chtml if pinemode="function_key"-->
10094 <PRE>
10095 Available  Commands -- Group 1         Available Commands -- Group 2   
10096 -------------------------------        ------------------------------  
10097 F1  Show Help Text                      F1  Show Help Text             
10098 F2  See commands in next group          F2  See commands in next group
10099 F3  Back to MAIN Alpine menu
10100 F4  Change configuration for rule
10101 F5  Move to previous rule               F5  Include file in rule config
10102 F6  Move to next rule                   F6  Exclude file from config
10103 F7  Previous page of rules
10104 F8  Next page of rules
10105 F9  Add new rule                        F9  Replicate existing rule
10106 F10 Delete existing rule
10107 F11 Shuffle the order of rules
10108 F12 Whereis (search rule nicknames)
10109 </PRE>
10110 <!--chtml else-->
10111 <PRE>
10112 Navigation                     General Alpine Commands
10113 -------------------------      -----------------------
10114  P  Prev rule                     ?  Display this help text
10115  N  Next rule                     E  Back to MAIN Alpine menu
10116  -  Previous page
10117 Spc (space bar) Next page
10118  W  WhereIs (search for word in rule nicknames)
10120 Setup Index Color Commands
10121 ------------------------------------------------
10122  A  Add new rule                  $  Shuffle the order of rules
10123  D  Delete existing rule          C  Change configuration for highlighted rule
10124  R  Replicate existing rule
10125  I  Include file in rule config   X  Exclude file from rule config
10126 </PRE>
10127 <!--chtml endif-->
10129 <H2>Description of the Setup Index Line Colors Screen</H2>
10131 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10132 This action is only available if your terminal is capable of displaying
10133 color and color display has been enabled with the
10134 <A HREF="h_config_color_style">Color Style</A> option within the
10135 Setup Color screen.
10136 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10137 This screen lets you add, delete, modify, or change the order of the rules
10138 that cause the lines in the MESSAGE INDEX to be displayed in different
10139 colors.
10141 Each rule has a &quot;Pattern&quot;,
10142 which is used to decide which of the rules is used; and the color that
10143 is used if the Pattern matches a particular message.
10145 <H2>Index Color Patterns</H2>
10147 In order to determine whether or not a message matches an Index Color Rule
10148 the message is compared with the rule's Pattern.
10149 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10150 Scoring, Other Rules, and Search Rules, so are described in only one place,
10151 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10154 If none of the Index Color rules is a match for a particular index line,
10155 then the color used is set using
10156 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10158 <H2>Index Line Color</H2>
10160 This is the color that index lines are colored when there is a matching
10161 Pattern.
10162 This colors the whole index line, except possibly the status letters,
10163 which may be colored separately using
10164 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10166 <H2>Command Descriptions</H2>
10168 <H3>Add</H3>
10170 The Add command is used to add a new rule definition to your set of
10171 rules.
10172 The new rule will be added after the highlighted rule.
10174 <H3>Delete</H3>
10176 The Delete command deletes the currently highlighted rule.
10178 <H3>Change</H3>
10180 The Change command lets you edit the nickname, Pattern,
10181 and Index Line Color of the currently highlighted rule.
10183 <H3>Shuffle</H3>
10185 The Shuffle command allows you to change the order of the rules.
10186 You may move the currently highlighted rule up or down in the list.
10187 The order of the rules is important since the rules are tested for a
10188 match starting with the first rule and continuing until a match is found.
10189 You should place the rules with more specific Patterns near the beginning
10190 of the list, and those with more general Patterns near the end so that
10191 the more specific matches will happen when appropriate.
10193 <H3>Replicate</H3>
10195 The Replicate command is used to copy an existing rule definition and modify it.
10196 The new rule will be added after the highlighted rule.
10198 <H3>IncludeFile</H3>
10200 The IncludeFile command allows you to add a rules file to your configuration.
10201 Usually, your rules will be contained in your Alpine configuration file.
10202 If you wish, some or all of your rules may be stored in a separate file.
10203 If a rules file already exists (maybe it was made by somebody else using
10204 Alpine), you may insert it before the currently highlighted rule.
10205 You may also insert an empty file or a file that does not yet exist.
10206 Once you have an empty rules file in your configuration, you may use
10207 the Shuffle command to move rules into it.
10208 In fact, that's the only way to get the initial rule into the file.
10210 <H3>eXcludeFile</H3>
10212 The eXcludeFile command removes a rules file from your rules configuration.
10213 A limitation of the program is that in order to exclude a rules file
10214 that file must have at least one rule
10215 in it, otherwise you won't be able to highlight a line in the file.
10216 So you may have to add a dummy rule to the file in order to exclude the file.
10217 <P><UL>
10218 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10219 </UL>
10221 &lt;End of help on this topic&gt;
10222 </BODY>
10223 </HTML>
10224 ===== h_rules_filter =====
10225 <HTML>
10226 <HEAD>
10227 <TITLE>SETUP FILTERING SCREEN</TITLE>
10228 </HEAD>
10229 <BODY>
10230 <H1>SETUP FILTERING SCREEN</H1>
10231 <H2>SETUP FILTERING COMMANDS</H2>
10232 <!--chtml if pinemode="function_key"-->
10233 <PRE>
10234 Available  Commands -- Group 1         Available Commands -- Group 2   
10235 -------------------------------        ------------------------------  
10236 F1  Show Help Text                      F1  Show Help Text             
10237 F2  See commands in next group          F2  See commands in next group
10238 F3  Back to MAIN Alpine menu
10239 F4  Change configuration for filter
10240 F5  Move to previous filter             F5  Include file in filter config
10241 F6  Move to next filter                 F6  Exclude file from config
10242 F7  Previous page of filters
10243 F8  Next page of filters
10244 F9  Add new filter                      F9  Replicate existing filter
10245 F10 Delete existing filter
10246 F11 Shuffle the order of filters
10247 F12 Whereis (search filter nicknames)
10248 </PRE>
10249 <!--chtml else-->
10250 <PRE>
10251 Navigation                     General Alpine Commands
10252 -------------------------      -----------------------
10253  P  Prev Filter                   ?  Display this help text
10254  N  Next Filter                   E  Back to MAIN Alpine menu
10255  -  Previous page
10256 Spc (space bar) Next page
10257  W  WhereIs (search for word in filter nicknames)
10259 Setup Filters Commands
10260 ------------------------------------------------
10261  A  Add new filter                $  Shuffle the order of filters
10262  D  Delete existing filter        C  Change configuration for highlighted filter
10263  R  Replicate existing filter
10264  I  Include file in filter config X  Exclude file from filter config
10265 </PRE>
10266 <!--chtml endif-->
10268 <H2>Description of the Setup Filtering Screen</H2>
10270 This screen lets you add, delete, modify, or change the order of the rules
10271 that determine the filtering Alpine does on folders you view.
10273 The software that actually delivers mail (the stuff that happens
10274 before Alpine is involved) for you is in a better position to do mail filtering
10275 than Alpine itself.
10276 If possible, you may want to look into using that sort of mail filtering to
10277 deliver mail to different folders, delete it, or forward it.
10278 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10280 Filtering is a way to automatically move certain messages from one folder
10281 to another or to delete messages.
10282 It can also be used to set message status (Important, Deleted, New,
10283 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10284 Alpine doesn't have the ability to forward mail to another address or
10285 to deliver vacation messages.
10287 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10288 When a folder is opened, when new mail arrives in an open folder, or
10289 when mail is Expunged from a folder; each
10290 message is compared with the Patterns of your filtering rules.
10291 The comparisons start with the first rule and keep going until there
10292 is a match.
10293 If a match is found, the message may be deleted or moved, depending on
10294 the setting of the Filter Action.
10295 If the message is not deleted, it may have its status altered.
10298 <EM>NOTE:</EM>
10299 When setting up a Pattern used to delete messages,
10300 it is recommended that you test the Pattern first with a &quot;Move&quot;
10301 folder specified in
10302 case unintended matches occur.  Messages that are deleted will be removed 
10303 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10304 next Expunge command or once the folder being filtered has been closed.
10306 <H2>Filter Patterns</H2>
10308 In order to determine whether or not a message matches a filter the message is
10309 compared with the Filter's Pattern.
10310 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10311 Scoring, Other Rules, and Search Rules, so are described in only one place,
10312 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10314 Since filtering is a potentially destructive action, if you have a filtering
10315 Pattern with nothing other than Current Folder Type set, that filtering
10316 rule is ignored.
10318 <H2>Filter Actions</H2>
10320 Once a filter match is found for a particular message, there are some actions
10321 that may be taken.
10322 First, the message may have its status changed.
10323 This is the same message status that you can manipulate manually using the
10324 <a href="h_common_flag">Flag Command</a>.
10325 There are always four elements of message status that you can control.
10326 You can set or clear the Important status, the New status, the Deleted
10327 status, and the Answered status.
10328 Of course, if the filter is going to delete the message,
10329 then there is no point in setting message status.
10330 You may also be able to set user-defined keywords for a message.
10331 Read a little about keywords in the help text for the
10332 <A HREF="h_common_flag">Flag</A> command.
10334 Second, the filter may delete or move the message.
10335 Deleting the message marks it Deleted and removes it from view.
10336 It is effectively gone forever (though it technically is still there until
10337 the next expunge command, which may happen implicitly).
10338 Moving the message moves it from the open folder into the folder
10339 listed on the &quot;Folder List&quot; line of the filter configuration.
10340 If you list more than one folder name (separated by commas) then the message
10341 will be copied to each of those folders.
10342 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10343 message is removed from the current folder.
10344 If you just want to set the messages status without deleting it from
10345 the folder, then set the filter action to
10346 &quot;Just Set Message Status&quot;.
10348 (There is no way to do a Copy instead of a Move, due to the difficulties
10349 involved in keeping track of whether or not a message has
10350 already been copied.)
10352 <H2>Command Descriptions</H2>
10354 <H3>Add</H3>
10356 The Add command is used to add a new filter definition to your set of
10357 filters.
10358 The new filter will be added after the highlighted filter.
10360 <H3>Delete</H3>
10362 The Delete command deletes the currently highlighted filter.
10364 <H3>Change</H3>
10366 The Change command lets you edit the nickname, Pattern,
10367 and Folder of the currently highlighted filter.
10369 <H3>Shuffle</H3>
10371 The Shuffle command allows you to change the order of the filters.
10372 You may move the currently highlighted filter up or down in the list.
10373 The order of the filters is important since the filters are tested for a
10374 match starting with the first filter and continuing until a match is found.
10375 You should place the filters with more specific Patterns near the beginning
10376 of the list, and those with more general Patterns near the end so that
10377 the more specific matches will happen when appropriate.
10379 <H3>Replicate</H3>
10381 The Replicate command is used to copy an existing filter and modify it.
10382 The new filter will be added after the highlighted filter.
10384 <H3>IncludeFile</H3>
10386 The IncludeFile command allows you to add a filters file to your configuration.
10387 Usually, your filters will be contained in your Alpine configuration file.
10388 If you wish, some or all of your filters may be stored in a separate file.
10389 If a filters file already exists (maybe it was made by somebody else using
10390 Alpine), you may insert it before the currently highlighted filter.
10391 You may also insert an empty file or a file that does not yet exist.
10392 Once you have an empty filters file in your configuration, you may use
10393 the Shuffle command to move filters into it.
10394 In fact, that's the only way to get the initial filter into the file.
10396 <H3>eXcludeFile</H3>
10398 The eXcludeFile command removes a filters file from your filters configuration.
10399 A limitation of the program is that in order to exclude a filters file
10400 that file must have at least one filter
10401 in it, otherwise you won't be able to highlight a line in the file.
10402 So you may have to add a dummy filter to the file in order to exclude the file.
10403 <P><UL>
10404 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10405 </UL>
10407 <H3>Performance Considerations</H3>
10408 The number and type of patterns being tested can 
10409 adversely effect performance.  Issues to be aware
10410 of include:
10412 <UL>
10413   <LI> The more filters you have defined the longer it will take to run down
10414 the list.  Deleting unused filters is a good idea.
10415   <LI> Filtering in newsgroups served by an NNTP server will be slow
10416 if your patterns include tests other than &quot;From:&quot;
10417 or &quot;Subject:&quot;.
10418 </UL>
10420 &lt;End of help on this topic&gt;
10421 </BODY>
10422 </HTML>
10423 ===== h_rules_score =====
10424 <HTML>
10425 <HEAD>
10426 <TITLE>SETUP SCORING SCREEN</TITLE>
10427 </HEAD>
10428 <BODY>
10429 <H1>SETUP SCORING SCREEN</H1>
10430 <H2>SETUP SCORING COMMANDS</H2>
10431 <!--chtml if pinemode="function_key"-->
10432 <PRE>
10433 Available  Commands -- Group 1         Available Commands -- Group 2   
10434 -------------------------------        ------------------------------  
10435 F1  Show Help Text                      F1  Show Help Text             
10436 F2  See commands in next group          F2  See commands in next group
10437 F3  Back to MAIN Alpine menu
10438 F4  Change configuration for rule
10439 F5  Move to previous rule               F5  Include file in rule config
10440 F6  Move to next rule                   F6  Exclude file from config
10441 F7  Previous page of rules
10442 F8  Next page of rules
10443 F9  Add new rule                        F9  Replicate existing rule
10444 F10 Delete existing rule
10445 F11 Shuffle the order of rules
10446 F12 Whereis (search rule nicknames)
10447 </PRE>
10448 <!--chtml else-->
10449 <PRE>
10450 Navigation                     General Alpine Commands
10451 -------------------------      -----------------------
10452  P  Prev rule                     ?  Display this help text
10453  N  Next rule                     E  Back to MAIN Alpine menu
10454  -  Previous page
10455 Spc (space bar) Next page
10456  W  WhereIs (search for word in rule nicknames)
10458 Setup Scoring Commands
10459 ------------------------------------------------
10460  A  Add new rule                  $  Shuffle the order of rules
10461  D  Delete existing rule          C  Change configuration for highlighted rule
10462  R  Replicate existing rule
10463  I  Include file in rule config   X  Exclude file from rule config
10464 </PRE>
10465 <!--chtml endif-->
10467 <H2>Description of the Setup Scoring Screen</H2>
10469 Most people will not use scores at all, but if you do use them, here's how
10470 they work in Alpine.
10471 Using this screen, you may define Scoring rules.
10472 The score for a message is calculated by looking at every Score rule defined
10473 and adding up the Score Values for the ones that match the message.
10474 If there are no matches for a message, it has a score of zero.
10475 Message scores may be used a couple of ways in Alpine.
10477 <H3>Sorting by Score</H3>
10479 One of the methods you may use to sort message indexes is to sort by
10480 score.
10481 The scores of all the messages in a folder will be calculated and then
10482 the index will be ordered by placing the messages in order of ascending or
10483 descending score.
10485 <H3>Scores for use in Patterns</H3>
10487 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10488 category labeled &quot;Score Interval&quot;.
10489 When a message is being compared with a Pattern to check for a match, if
10490 the Score Interval is set only messages that have a score somewhere in
10491 the interval are a match.
10493 <H2>Scoring Rule Patterns</H2>
10495 In order to determine whether or not a message matches a scoring rule
10496 the message is compared with the rule's Pattern.
10497 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10498 Scoring, Other Rules, and Search Rules, so are described in only one place,
10499 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10502 Actually, Scoring rule Patterns are slightly different from the other types of
10503 Patterns because Scoring rule Patterns don't contain a Score Interval.
10504 In other words, when calculating the score for a message, which is done
10505 by looking at the Scoring rule Patterns, scores aren't used.
10507 <H2>Score Value</H2>
10509 This is the value that will be added to the score for a message if the
10510 rule's Pattern is a match.
10511 Each individual Score Value is an integer between -100 and 100, and the
10512 values from matching rules are added together to get a message's score.
10513 There is also a way to extract the value from a particular header of each
10514 message. See the help text for Score Value for further information.
10516 <H2>Command Descriptions</H2>
10518 <H3>Add</H3>
10520 The Add command is used to add a new scoring rule definition.
10521 The new rule will be added after the highlighted rule.
10523 <H3>Delete</H3>
10525 The Delete command deletes the currently highlighted scoring rule.
10527 <H3>Change</H3>
10529 The Change command lets you edit the nickname, Pattern,
10530 and Score Value of the currently highlighted scoring rule.
10532 <H3>Shuffle</H3>
10534 The Shuffle command allows you to change the order of the scoring rules.
10535 You may move the currently highlighted rule up or down in the list.
10536 The order of the rules is important since the rules are tested for a
10537 match starting with the first rule and continuing until a match is found.
10538 You should place the rules with more specific Patterns near the beginning
10539 of the list, and those with more general Patterns near the end so that
10540 the more specific matches will happen when appropriate.
10542 <H3>Replicate</H3>
10544 The Replicate command is used to copy an existing rule and modify it.
10545 The new rule will be added after the highlighted rule.
10547 <H3>IncludeFile</H3>
10549 The IncludeFile command allows you to add a rules file to your configuration.
10550 Usually, your rules will be contained in your Alpine configuration file.
10551 If you wish, some or all of your rules may be stored in a separate file.
10552 If a rules file already exists (maybe it was made by somebody else using
10553 Alpine), you may insert it before the currently highlighted rule.
10554 You may also insert an empty file or a file that does not yet exist.
10555 Once you have an empty rules file in your configuration, you may use
10556 the Shuffle command to move rules into it.
10557 In fact, that's the only way to get the initial rule into the file.
10559 <H3>eXcludeFile</H3>
10561 The eXcludeFile command removes a rules file from your rules configuration.
10562 A limitation of the program is that in order to exclude a rules file
10563 that file must have at least one rule
10564 in it, otherwise you won't be able to highlight a line in the file.
10565 So you may have to add a dummy rule to the file in order to exclude the file.
10566 <P><UL>
10567 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10568 </UL>
10570 &lt;End of help on this topic&gt;
10571 </BODY>
10572 </HTML>
10573 ===== h_direct_config =====
10574 <HTML>
10575 <HEAD>
10576 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10577 </HEAD>
10578 <BODY>
10579 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10580 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10581 <!--chtml if pinemode="function_key"-->
10582 <PRE>
10583 Available  Commands                        
10584 -------------------------------            
10585 F1  Show Help Text                         
10586 F3  Back to MAIN Alpine menu                 
10587 F4  Change configuration for directory server  
10588 F5  Move to previous directory server          
10589 F6  Move to next directory server              
10590 F7  Previous page of directory servers         
10591 F8  Next page of directory servers
10592 F9  Add new directory server
10593 F10 Delete existing directory server
10594 F11 Shuffle the order of directory servers
10595 F12 Whereis (search directory server titles)   
10596 </PRE>
10597 <!--chtml else-->
10598 <PRE>
10599 Navigation                     General Alpine Commands
10600 -------------------------      -----------------------
10601  P  Prev Directory Server         ?  Display this help text
10602  N  Next Directory Server         E  Back to MAIN Alpine menu
10603  -  Previous page
10604 Spc (space bar) Next page
10605  W  WhereIs (search for word in directory server titles)
10607 Setup LDAP Directory Server Commands
10608 ------------------------------------------------
10609  A  Add new directory server      $  Shuffle the order of directory servers
10610  D  Delete existing dir server    C  Change configuration for highlighted server
10611 </PRE>
10612 <!--chtml endif-->
10614 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10616 This screen lets you add, delete, modify, or change the order of your
10617 directory servers. You may also set some optional behavior for each server.
10618 The &quot;Add Dir&quot; command brings up a blank form to 
10619 fill in. You will have to supply at least the name of the LDAP server.
10620 You will often have to supply a search base to be used with that server,
10621 as well. Once the form has been brought up on your screen, there is help
10622 available for each of the options you may set.
10624 The &quot;Del Dir&quot; command allows you to remove a directory server
10625 from your configuration.
10627 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10628 The difference is that instead of bringing up a form for a new server
10629 configuration, you are changing the configuration of an existing entry.
10630 For example, you might want to correct a typing error, change a
10631 nickname, or change one of the options set for that server.
10633 The &quot;Shuffle&quot; command is used to change the order of directory
10634 servers.
10635 <P><UL>
10636 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10637 </UL>
10639 &lt;End of help on this topic&gt;
10640 </BODY>
10641 </HTML>
10642 ============= h_address_display ========================
10643 <HTML>
10644 <HEAD>
10645 <TITLE>SEARCH RESULTS INDEX</TITLE>
10646 </HEAD>
10647 <BODY>
10648 <H1>SEARCH RESULTS INDEX</H1>
10649 This screen shows the results, if any, of your Directory Server search.  
10650 Commands (besides those for screen navigation) are:
10651 <DL>
10652 <DT>View
10653 <!--chtml if pinemode="function_key"-->
10654 (F4)
10655 <!--chtml else-->
10657 <!--chtml endif-->
10658 </DT>
10659 <DD>See the full information for the selected entry.
10661 <DT>Compose
10662 <!--chtml if pinemode="function_key"-->
10663 (F9)
10664 <!--chtml else-->
10666 <!--chtml endif--></DT>
10667 <DD>Compose a message with the selected entry as the recipient.
10669 <DT>Role
10670 <!--chtml if pinemode="function_key"-->
10671 (F2)
10672 <!--chtml else-->
10674 <!--chtml endif--></DT>
10675 <DD>Compose a message with the selected entry as the recipient. This differs
10676 from Compose in that you may select a role before beginning your composition.
10678 <DT>Forward
10679 <!--chtml if pinemode="function_key"-->
10680 (F10)
10681 <!--chtml else-->
10683 <!--chtml endif--></DT>
10684 <DD>Send the full information for the selected entry as an 
10685 email message to someone else.
10687 <DT>Save
10688 <!--chtml if pinemode="function_key"-->
10689 (F11)
10690 <!--chtml else-->
10692 <!--chtml endif-->
10693 </DT>
10694 <DD>Save to your address book:
10695 <UL>
10696 <LI>the result of the search (as just found through your query) for the 
10697 selected entry; or 
10698 <LI>the selected entry for repeated Directory Server searching when used 
10699 in the future.
10700 </UL>
10701 or<BR>
10702 Export to a file (external to Alpine):
10703 <UL>
10704 <LI>the full information for the selected entry; or
10705 <LI>the email address from the selected entry; or
10706 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10707 </UL>
10708 <DT>WhereIs
10709 <!--chtml if pinemode="function_key"-->
10710 (F12)
10711 <!--chtml else-->
10713 <!--chtml endif-->
10714 </DT>
10715 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10716 displayed text, not the full records for each entry.)  
10717 </DL>
10718 &lt;End of help on this topic&gt;
10719 </BODY>
10720 </HTML>
10721 ============= h_address_select ========================
10722 <HTML>
10723 <HEAD>
10724 <TITLE>SEARCH RESULTS INDEX</TITLE>
10725 </HEAD>
10726 <BODY>
10727 <H1>SEARCH RESULTS INDEX</H1>
10728 This screen shows the results, if any, of your Directory Server search.  
10729 Commands (besides those for screen navigation) are:
10730 <DL>
10731 <DT>Select
10732 </DT>
10733 <DD>Select this entry for use.
10735 <DT>ExitSelect
10736 <DD>Exit without selecting any of the entries.
10738 <DT>WhereIs
10739 </DT>
10740 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10741 displayed text, not the full records for each entry.)  
10742 </DL>
10743 &lt;End of help on this topic&gt;
10744 </BODY>
10745 </HTML>
10746 ===== h_folder_maint =====
10747 <HTML>
10748 <HEAD>
10749 <TITLE>Help for Folder List</TITLE>
10750 </HEAD>
10751 <BODY>
10752 <H1>FOLDER LIST COMMANDS</H1>
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  MAIN MENU Screen                  F3  Quit Alpine                    
10760 F4  Select folder and view it         F4  MAIN MENU Screen
10761 F5  Move to previous folder
10762 F6  Move to next folder               F6  Specify a folder to go to
10763 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
10764 F8  Show next screen of listing       F8  Compose a message
10765 F9  Add a new folder                  F9  Print folder listing
10766 F10 Delete selected folder
10767 F11 Rename selected folder
10768 F12 Whereis (search folder names)
10770 Available Commands -- Group 3
10771 F1  Show Help Text
10772 F2  See commands in next group
10773 F5  Go to next new message
10774     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
10775 F8  Compose a message using roles
10776 F9  Export folder to a file
10777 F10 Import the file back to a folder
10778 </PRE>
10779 <!--chtml else-->
10780 <PRE>
10781 Navigating the Folder Screen            Operations on the Selected Folder
10782 ----------------------------            ---------------------------------
10783  P   Move to previous folder              V  View Index of selected folder
10784  N   Move to next folder                  D  Delete
10785  -   Show previous page of listing        R  Rename
10786 Spc  (space bar) Show next page           E  Export to file
10787                                           U  Import from file to folder
10789 FOLDER LIST Screen Commands              General Alpine Command
10790 ---------------------------              -----------------------
10791  A  Add a folder                          O  Show all other available commands
10792  G  Specify a folder to go to             ?  Show Help text
10793  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
10794  W  Whereis (search folder names)         Q  Quit Alpine
10795  %  Print folder listing                  C  Compose a message
10796                                           #  Compose a message using roles
10797 </PRE>
10798 <!--chtml endif-->
10800 These commands are only available in the FOLDER LIST screen when the 
10801 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
10802 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
10803 <DT>Select:</DT>
10804 <DD>Select folders by certain criteria:<UL>
10805 <LI>All: of limited use, since there is no Apply command.
10806 <LI>by Property: <UL>
10807         <LI>folder contains messages not yet seen 
10808         <LI>folder contains new messages
10809         <LI>folder contains exactly as many, more, or fewer messages 
10810 than a given number
10811         </UL>
10812 <LI>by Text: <UL>
10813         <LI>contained in name of folder (Name Select)
10814         <LI>contained in messages in folder (Content Select)
10815         </UL>
10816 </UL></DD>
10818 <DT>Select current:</DT>
10819 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
10820 add one or more folders to a set created with the Select command described 
10821 above.)</DD>
10822 <DT>Zoom mode:</DT>
10823 <DD>Toggles display of only selected folders or all folders on and off.</DD>
10824 </DL>
10826 If the feature
10827 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
10828 is set then the TAB key will display the number of recent messages and
10829 the total number of messages in the highlighted folder.
10831 The &quot;Export&quot; command causes the lowest common denominator style
10832 mailbox to be written to a file.
10833 If the file already exists, you are asked if you want to delete it.
10834 If you say No, then the operation is aborted.
10835 Export might be a reasonable way to store a backup or an archival copy of
10836 a folder.
10837 The exported-to file is a local file on the system where you are running Alpine.
10838 The &quot;Import&quot; command is the opposite of the Export command.
10839 It reads a file created by Export and asks where it should save it in your
10840 folders.
10841 This could be a new folder or an existing folder.
10842 If the folder already exists, the messages from the exported file will be
10843 appended to the folder.
10845 <CENTER>Description of the FOLDER LIST Screen</CENTER>
10847 The purpose of the FOLDER LIST screen is to help you browse and manage
10848 the folders and directories (also known as &quot;hierarchy&quot;)
10849 contained within a collection.
10852 Folders and directories are arranged alphabetically across lines of
10853 the screen.  Directories, if present, are denoted by a special
10854 character at the end of the name known as the hierarchy delimiter
10855 (typically, &quot;/&quot;).  By default, folders and directories are
10856 mixed together.  The
10857 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
10858 configuration option can be used to group directories toward the 
10859 beginning or end of the list.
10862 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
10863 commands change the &quot;selected&quot; (i.e., highlighted) folder or
10864 directory, and the View Fldr/Dir commands will &quot;open&quot; the
10865 selected item.  Folder and directory management is provided via the
10866 Rename, Delete and Add commands.
10868 <P><CENTER>About Folders</CENTER>
10869 What are Folders?<P>
10871 Folders are simply files where messages are kept.  Every message has to be
10872 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
10873 folder for sent mail and a folder for saved messages.<P>
10875 You may create as many other folders as you wish.  They must be given
10876 names that can be filenames on the filesystem.  
10879 You can move messages from one folder to another by opening the original
10880 folder and saving messages into the other folder just as you can save
10881 message from your INBOX to any other folder.<P>
10883 Folders are typically just files in the filesystem.  However, the files
10884 that are
10885 folders have some special formatting in them (so that Alpine knows where one
10886 message ends and another begins) and should <EM>not</EM> be edited outside of
10887 Alpine.  If you want copies of your messages in text files that you can edit
10888 or otherwise manipulate, use the Export command to copy them from Alpine into
10889 your regular file area.
10892 FOR MORE INFORMATION: See the section on
10893 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10895 <CENTER>About Directories</CENTER>
10897 A directory is simply a container used to group folders within a
10898 folder list.  You can create as many directories as you like.  And 
10899 directories can even contain directories themselves.
10902 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
10903 to note that not all IMAP servers support directories.  If you find that
10904 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
10905 then it's likely that directories are not supported by the server serving
10906 in that collection.
10909 Similarly, servers that do provide for directories may not do so in
10910 the same way.  On some servers, for example, each folder name you
10911 create is at the same time capable of being a directory.  When this
10912 happens, Alpine will display both the folder name and the name of the
10913 directory (with trailing hierarchy delimiter) in the folder list.
10916 Another issue with IMAP access, though with a much smaller set of servers,
10917 is that not all servers accept the request to list out the available
10918 folders and directories in the same way.  If you find yourself having
10919 trouble viewing folders on your server, you might investigate the
10920 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
10921 feature.
10923 <UL>
10924 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10925 </UL>
10927 &lt;End of help on this topic&gt;
10928 </BODY>
10929 </HTML>
10930 ========= h_valid_folder_names ========
10931 <HTML>
10932 <HEAD>
10933 <TITLE>Explanation of Valid Folder Names</TITLE>
10934 </HEAD>
10935 <BODY>
10936 <H1>Folder Name Syntax Explained</H1>
10938 Once your folder collections are defined, you can usually refer to
10939 folders by their simple (unqualified) name, or pick from a FOLDER LIST
10940 display.  However, understanding the complete syntax for folder names,
10941 both local and remote, is handy when using the Goto command and when
10942 you are adding new folder collections via the Setups/collectionList screen.
10944 An Alpine folder name looks like
10947 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
10950 The square brackets ([]) mean that the part is optional.
10953 If there is no remote-specification, then the folder name is interpreted
10954 locally on the computer running Alpine.
10955 Local folder names depend on the operating system used by the computer 
10956 running Alpine, as well as the configuration of that system.  For example,
10957 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
10958 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
10959 system running Unix.
10962 Alpine users have the option of using folders that are stored on some other
10963 computer.  Alpine accesses remote folders via IMAP (the Internet Message
10964 Access Protocol), or in the case of news, via NNTP (the Network News
10965 Transport Protocol).  To be able to access remote folders in Alpine, the
10966 remote host must be running the appropriate server software (imapd or
10967 nntpd) and you must correctly specify the name of the folder to Alpine,
10968 including the domain name of the remote machine. For example,
10970 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
10972 could be a remote folder specification, and so could
10974 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
10977 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
10979 Note that in the case of remote folders, the directory/file path in the specification is 
10980 determined by the operating system of the remote computer, <B>not</B> by
10981 the operating system of the computer on which you are running Alpine.
10983 As you can tell, the name of the computer is in &#123;} brackets
10984 followed immediately by the name of the folder.  (In each of these cases the
10985 optional namespace is missing.)  If, as in these
10986 examples, there is no remote access protocol specified, then IMAP is
10987 assumed.  Check
10988 <A HREF="h_folder_server_syntax">here</A>
10989 for a more detailed look at what options can be placed between the brackets.
10990 If there are no brackets at all, then the folder name is interpreted locally
10991 on the computer on which you are running Alpine.
10994 To the right of the brackets when a server name is present, or at the
10995 start of the foldername if no server is present, the sharp sign,
10996 &quot;#&quot;, holds special meaning.  It indicates a folder name
10997 outside the area reserved for your personal folders.  In fact, it's
10998 used to indicate both the name of the folder, and a special phrase
10999 telling Alpine how to interpret the name that follows.
11002 So, for example, Alpine can be used to access a newsgroup that might be 
11003 available on your computer using:
11005 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11007 The sharp sign indicates the folder name is outside your personal
11008 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11009 interpret the remainder of the name as a newsgroup.
11012 Similarly, to access a newsgroup on your IMAP server, you might
11013 use something like:
11015 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11018 There are a number of such special phrases (or &quot;namespaces&quot;)
11019 available.  For a more detailed explanation read about
11020 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11023 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11024 names.  The name INBOX refers to your &quot;principal incoming
11025 message folder&quot; and will be mapped to the actual file name used for your
11026 INBOX on any given host.  Therefore, a name like
11027 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11028 store incoming mail for you on that particular host.
11031 &lt;End of help on this topic&gt;
11032 </BODY>
11033 </HTML>
11034 ======= h_folder_name_namespaces =======
11035 <HTML>
11036 <HEAD>
11037 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11038 </HEAD>
11039 <BODY>
11040 <H1>Folder Name Namespaces Explained</H1>
11042 An Alpine folder name looks like
11045 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11048 The local part of a folder name has an optional &quot;Namespace&quot; which
11049 tells Alpine how to interpret the rest of the name.
11051 <P> 
11052 By default the folder name is interpreted as defining a section of your personal
11053 folder area.  This area and how you specify it are defined by the
11054 server, if one is specified, or, typically, the home
11055 directory, if no server is defined.
11058 If a namespace is specified, it begins with the
11059 sharp, &quot;#&quot;, character followed by the name of the namespace
11060 and then the namespace's path-element-delimiter.  Aside from the
11061 path's format, namespaces can also imply access rights, content
11062 policy, audience, location, and, occasionally, access methods.
11065 Each server exports its own set (possibly of size one) of 
11066 namespaces.  Hence, it's likely communication with your server's
11067 administrator will be required for specific configurations.  Some of
11068 the more common namespaces, however, include:
11070 <DL>
11071 <DT>#news.</DT>
11072 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11073 names are hierarchically defined with each level delimited by a period.
11075 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11077 </DD>
11078 <DT>#public/</DT>
11079 <DD>This specifies a folder area that the server may export to the general
11080 public.
11081 </DD>
11082 <DT>#shared/</DT>
11083 <DD>This specifies a folder area that the server may export to groups
11084 of users.
11085 </DD>
11086 <DT>#ftp/</DT>
11087 <DD>This specifies a folder area that is the same as that it may have 
11088 exported via the &quot;File Transfer Protocol&quot;.
11089 </DD>
11090 <DT>#mh/</DT>
11091 <DD>This specifies the personal folder area associated with folders
11092 and directories that were created using the MH message handling system.
11093 </DD>
11094 <DT>#move/</DT>
11095 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11097 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11099 The #move namespace is followed by two folder names separated by a delimiter
11100 character.
11101 The delimiter character may be any character that does not appear in
11102 the MailDropFolder name.
11103 The meaning of #move is that mail will be copied from the MailDropFolder to
11104 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11105 Periodic checks at frequency
11106 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11107 time between checks set by
11108 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11109 are made for new mail arriving in the MailDropFolder.
11110 An example that copies mail from a POP inbox to a local folder follows
11112 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11114 To you it appears that mail is being delivered to the local folder when it
11115 is copied from the MailDropFolder, and you read mail from the local folder.
11117 Note that if the DestinationFolder does not exist then the messages are not
11118 copied from the MailDropFolder.
11119 A #move folder may only be used as an
11120 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11121 an Inbox.
11122 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11123 on the
11124 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11125 option)
11126 the Add command has a subcommand &quot;Use Mail Drop&quot;
11127 which may be helpful for defining the folder in your Alpine configuration.
11128 The same is true when you edit the
11129 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11130 option in Setup/Config.
11131 Each of these configuration methods will also create the DestinationFolder
11132 if it doesn't already exist.
11133 If you are having problems, make sure the DestinationFolder exists.
11134 You may find some more useful information about Mail Drops at
11135 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11136 </DD>
11137 </DL>
11140 In addition, the server may support access to other user's folders,
11141 provided you have suitable permissions.  Common methods use a prefix
11142 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11143 indicate the root of the other user's folder area.
11146 No, nothing's simple.
11149 &lt;End of help on this topic&gt;
11150 </BODY>
11151 </HTML>
11152 ============= h_whatis_vcard ========================
11153 <HTML>
11154 <HEAD>
11155 <TITLE>VCARD EXPLAINED</TITLE>
11156 </HEAD>
11157 <BODY>
11158 <H1>What is the vCard format?</H1>
11159 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11160 information about and among people and organizations electronically.  
11161 More information about vCard can be found (as of May 1998) on the WWW site 
11162 of the Internet Mail Consortium at the URL:
11164 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11166 &lt;End of help on this topic&gt;
11167 </BODY>
11168 </HTML>
11169 ===== h_folder_open =====
11170 <HTML>
11171 <HEAD>
11172 <TITLE>Explanation of Folder Selection</TITLE>
11173 </HEAD>
11174 <BODY>
11175 <BR>
11176 <BR>
11177 This screen is designed to allow you to quickly and easily survey your
11178 folders and select one to open.
11179 <!--chtml if pinemode="function_key"-->
11180 <PRE>
11181 Navigating the List of Folders             General Alpine Commands
11182 ------------------------------             -----------------------
11183  P   Move to previous folder               ?   Show this help text
11184  N   Move to next folder
11185  -   Show previous screen of folders
11186 Spc  (space bar) Show next screen
11187  W   WhereIs (search folder names)
11189 Folder Selection Commands
11190 -------------------------
11191  E   Exit the Folder Select menu (without selecting a folder)
11192  S   Select the currently highlighted folder
11193 </PRE>
11194 <!--chtml else-->
11195 <PRE>
11196 Navigating the List of Folders             General Alpine Commands
11197 ------------------------------             -----------------------
11198 F5   Move to previous folder               F1  Show this help text
11199 F6   Move to next folder
11200 F7   Show previous screen of folders
11201 F8   Show next screen of folders
11202 F12  WhereIs (search folder names)
11204 Folder Selection Commands
11205 -------------------------
11206 F3   Exit the Folder Select menu (without selecting a folder)
11207 F4   Select the currently highlighted folder
11208 </PRE>
11209 <!--chtml endif-->
11211 FOR MORE INFORMATION: See the section on
11212 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11214 &lt;End of help on this topic&gt;
11215 </BODY>
11216 </HTML>
11217 ===== h_folder_subscribe =====
11218 <HTML>
11219 <HEAD>
11220 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11221 </HEAD>
11222 <BODY>
11223 <H1>FOLDER SUBSCRIBE HELP</H1>
11225 This screen is designed to help you subscribe to newsgroups you are
11226 not currently subscribed to.  The screen display is a list of all
11227 available newsgroups (or possibly a partial list if you specified a
11228 partial name when entering the screen).  Groups you have already
11229 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11230 select a single new group to subscribe to by moving the cursor to that
11231 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11232 you may change into ListMode with the &quot;ListMode&quot; command.
11233 The display will change slightly so that each group has a checkbox in
11234 front of it.  Use the cursor and the Set/Unset command to place an
11235 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11238 When you are finished marking groups, the &quot;Subscribe&quot;
11239 command will subscribe you to those groups you have marked.  Note, you
11240 may not unsubscribe to groups with this command.  Instead of the
11241 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11242 UnSbscrbe command.
11245 <!--chtml if pinemode="function_key"-->
11246 <PRE>
11247 Navigating the List of Newsgroups          General Alpine Commands
11248 ---------------------------------          -----------------------
11249 F5   Move to previous group                F1   Show this help text
11250 F6   Move to next group
11251 F7   Show previous screen of groups
11252 F8   Show next screen of groups
11253 F12  WhereIs (search group names)
11254 F9   Use ListMode
11256 Group Selection Commands
11257 -------------------------
11258 F3  Exit the News Subscribe menu (without selecting any groups)
11259 F4  Subscribe to the currently highlighted newsgroup
11260 </PRE>
11261 <!--chtml else-->
11262 <PRE>
11263 Navigating the List of Newsgroups          General Alpine Commands
11264 ---------------------------------          -----------------------
11265  P   Move to previous group                ?   Show this help text
11266  N   Move to next group
11267  -   Show previous screen of groups
11268 Spc  (space bar) Show next screen
11269  W   WhereIs (search group names)
11270  L   Use ListMode
11272 Group Selection Commands
11273 -------------------------
11274  E   Exit the News Subscribe menu (without selecting any groups)
11275  S   Subscribe to the currently highlighted newsgroup
11276 </PRE>
11277 <!--chtml endif-->
11279 When in ListMode, there is an additional command for marking groups to
11280 subscribe to:
11282 <!--chtml if pinemode="function_key"-->
11283 <PRE>
11284 ListMode Commands
11285 -------------------------
11286 F9  Set or unset the highlighted group
11287 </PRE>
11288 <!--chtml else-->
11289 <PRE>
11290 ListMode Commands
11291 -------------------------
11292 X   Set or unset the highlighted group
11293 </PRE>
11294 <!--chtml endif-->
11296 &lt;End of help on this topic&gt;
11297 </BODY>
11298 </HTML>
11299 ===== h_folder_postnews =====
11300 <HTML>
11301 <HEAD>
11302 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11303 </HEAD>
11304 <BODY>
11305 This screen is designed to allow you to quickly and easily survey
11306 the available newsgroups and select one to post news to.
11308 <!--chtml if pinemode="function_key"-->
11309 <PRE>
11310 Navigating the List of Newsgroups          General Alpine Commands
11311 ---------------------------------          -----------------------
11312 F5   Move to previous group                F1  Show this help text
11313 F6   Move to next group
11314 F7   Show previous screen of groups
11315 F8   Show next screen of groups
11316 F12  WhereIs (search group names)
11318 Group Selection Commands
11319 -------------------------
11320 F3   Exit the Selection menu (without selecting a group)
11321 F4   Select the currently highlighted newsgroup
11322 </PRE>
11323 <!--chtml else-->
11324 <PRE>
11325 Navigating the List of Newsgroups          General Alpine Commands
11326 ---------------------------------          -----------------------
11327  P   Move to previous group                ?  Show this help text
11328  N   Move to next group
11329  -   Show previous screen of groups
11330 Spc  (space bar) Show next screen of groups
11331  W   WhereIs (search group names)
11333 Group Selection Commands
11334 -------------------------
11335  E   Exit the Selection menu (without selecting a group)
11336  S   Select the currently highlighted newsgroup
11337 </PRE>
11338 <!--chtml endif-->
11340 &lt;End of help on this topic&gt;
11341 </BODY>
11342 </HTML>
11343 ===== h_folder_save =====
11344 <HTML>
11345 <HEAD>
11346 <TITLE>Folder Select for Save Explained</TITLE>
11347 </HEAD>
11348 <BODY>
11349 This screen is designed to allow you to quickly and easily survey your
11350 folders and select one to use for saving the current message.
11353 <!--chtml if pinemode="function_key"-->
11354 <PRE>
11355 Navigating the List of Folders             General Alpine Commands
11356 ------------------------------             -----------------------
11357 F5   Move to previous folder               F1  Show this help text
11358 F6   Move to next folder
11359 F7   Show previous screen of folders
11360 F8   Show next screen of folders
11361 F12  WhereIs (search folder names)
11363 Folder Selection Commands
11364 -------------------------
11365 F3   Exit the Folder Select menu (without selecting a folder)
11366 F4   Select the currently highlighted folder
11367 F11  AddNew folder (just like Select, but you type in a new folder name)
11368 </PRE>
11369 <!--chtml else-->
11370 <PRE>
11371 Navigating the List of Folders             General Alpine Commands
11372 ------------------------------             -----------------------
11373  P   Move to previous folder               ?  Show this help text
11374  N   Move to next folder
11375  -   Show previous screen of folders
11376 Spc  (space bar) Show next screen of folders
11377  W   WhereIs (search folder names)
11379 Folder Selection Commands
11380 -------------------------
11381  E   Exit the Folder Select menu (without selecting a folder)
11382  S   Select the currently highlighted folder
11383  A   AddNew folder (just like Select, but you type in a new folder name)
11384 </PRE>
11385 <!--chtml endif-->
11387 FOR MORE INFORMATION: See the section on
11388 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11390 &lt;End of help on this topic&gt;
11391 </BODY>
11392 </HTML>
11393 ===== h_folder_fcc =====
11394 <HTML>
11395 <HEAD>
11396 <TITLE>Folder Select for Fcc Explained</TITLE>
11397 </HEAD>
11398 <BODY>
11399 This screen is designed to allow you to quickly and easily survey your
11400 folders and select one to use as the file carbon copy (fcc) for the
11401 current message.
11404 <!--chtml if pinemode="function_key"-->
11405 <PRE>
11406 Navigating the List of Folders             General Alpine Commands
11407 ------------------------------             -----------------------
11408 F5   Move to previous folder               F1  Show this help text
11409 F6   Move to next folder
11410 F7   Show previous screen of folders
11411 F8   Show next screen of folders
11412 F12  WhereIs (search folder names)
11414 Folder Selection Commands
11415 -------------------------
11416 F3   Exit the Folder Select menu (without selecting a folder)
11417 F4   Select the currently highlighted folder
11418 F11  AddNew folder (just like Select, but you type in a new folder name)
11419 </PRE>
11420 <!--chtml else-->
11421 <PRE>
11422 Navigating the List of Folders             General Alpine Commands
11423 ------------------------------             -----------------------
11424  P   Move to previous folder               ?  Show this help text
11425  N   Move to next folder
11426  -   Show previous screen of folders
11427 Spc  (space bar) Show next screen of folders
11428  W   WhereIs (search folder names)
11430 Folder Selection Commands
11431 -------------------------
11432  E   Exit the Folder Select menu (without selecting a folder)
11433  S   Select the currently highlighted folder
11434  A   AddNew folder (just like Select, but you type in a new folder name)
11435 </PRE>
11436 <!--chtml endif-->
11438 FOR MORE INFORMATION: See the section on
11439 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11441 &lt;End of help on this topic&gt;
11442 </BODY>
11443 </HTML>
11444 ===== h_folder_pattern_roles =====
11445 <HTML>
11446 <HEAD>
11447 <TITLE>Folder Select for Current Folder Explained</TITLE>
11448 </HEAD>
11449 <BODY>
11450 This screen is designed to allow you to quickly and easily survey your
11451 folders and select one to use as the specific Current Folder
11452 in a Pattern.
11455 <!--chtml if pinemode="function_key"-->
11456 <PRE>
11457 Navigating the List of Folders             General Alpine Commands
11458 ------------------------------             -----------------------
11459 F5   Move to previous folder               F1  Show this help text
11460 F6   Move to next folder
11461 F7   Show previous screen of folders
11462 F8   Show next screen of folders
11463 F12  WhereIs (search folder names)
11465 Folder Selection Commands
11466 -------------------------
11467 F3   Exit the Folder Select menu (without selecting a folder)
11468 F4   Select the currently highlighted folder
11469 F11  AddNew folder (just like Select, but you type in a new folder name)
11470 </PRE>
11471 <!--chtml else-->
11472 <PRE>
11473 Navigating the List of Folders             General Alpine Commands
11474 ------------------------------             -----------------------
11475  P   Move to previous folder               ?  Show this help text
11476  N   Move to next folder
11477  -   Show previous screen of folders
11478 Spc  (space bar) Show next screen of folders
11479  W   WhereIs (search folder names)
11481 Folder Selection Commands
11482 -------------------------
11483  E   Exit the Folder Select menu (without selecting a folder)
11484  S   Select the currently highlighted folder
11485  A   AddNew folder (just like Select, but you type in a new folder name)
11486 </PRE>
11487 <!--chtml endif-->
11489 FOR MORE INFORMATION: See the section on
11490 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11492 &lt;End of help on this topic&gt;
11493 </BODY>
11494 </HTML>
11495 ===== h_folder_stayopen_folders =====
11496 <HTML>
11497 <HEAD>
11498 <TITLE>Folder Select Explained</TITLE>
11499 </HEAD>
11500 <BODY>
11501 This screen is designed to allow you to quickly and easily survey your
11502 folders and select one to use as a Stay-Open folder.
11505 <!--chtml if pinemode="function_key"-->
11506 <PRE>
11507 Navigating the List of Folders             General Alpine Commands
11508 ------------------------------             -----------------------
11509 F5   Move to previous folder               F1  Show this help text
11510 F6   Move to next folder
11511 F7   Show previous screen of folders
11512 F8   Show next screen of folders
11513 F12  WhereIs (search folder names)
11515 Folder Selection Commands
11516 -------------------------
11517 F3   Exit the Folder Select menu (without selecting a folder)
11518 F4   Select the currently highlighted folder
11519 F11  AddNew folder (just like Select, but you type in a new folder name)
11520 </PRE>
11521 <!--chtml else-->
11522 <PRE>
11523 Navigating the List of Folders             General Alpine Commands
11524 ------------------------------             -----------------------
11525  P   Move to previous folder               ?  Show this help text
11526  N   Move to next folder
11527  -   Show previous screen of folders
11528 Spc  (space bar) Show next screen of folders
11529  W   WhereIs (search folder names)
11531 Folder Selection Commands
11532 -------------------------
11533  E   Exit the Folder Select menu (without selecting a folder)
11534  S   Select the currently highlighted folder
11535  A   AddNew folder (just like Select, but you type in a new folder name)
11536 </PRE>
11537 <!--chtml endif-->
11539 FOR MORE INFORMATION: See the section on
11540 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11542 &lt;End of help on this topic&gt;
11543 </BODY>
11544 </HTML>
11545 ===== h_folder_action_roles =====
11546 <HTML>
11547 <HEAD>
11548 <TITLE>Folder Select Explained</TITLE>
11549 </HEAD>
11550 <BODY>
11551 This screen is designed to allow you to quickly and easily survey your
11552 folders and select one to use as the folder into which messages
11553 matching this filter will be moved.
11556 <!--chtml if pinemode="function_key"-->
11557 <PRE>
11558 Navigating the List of Folders             General Alpine Commands
11559 ------------------------------             -----------------------
11560 F5   Move to previous folder               F1  Show this help text
11561 F6   Move to next folder
11562 F7   Show previous screen of folders
11563 F8   Show next screen of folders
11564 F12  WhereIs (search folder names)
11566 Folder Selection Commands
11567 -------------------------
11568 F3   Exit the Folder Select menu (without selecting a folder)
11569 F4   Select the currently highlighted folder
11570 F11  AddNew folder (just like Select, but you type in a new folder name)
11571 </PRE>
11572 <!--chtml else-->
11573 <PRE>
11574 Navigating the List of Folders             General Alpine Commands
11575 ------------------------------             -----------------------
11576  P   Move to previous folder               ?  Show this help text
11577  N   Move to next folder
11578  -   Show previous screen of folders
11579 Spc  (space bar) Show next screen of folders
11580  W   WhereIs (search folder names)
11582 Folder Selection Commands
11583 -------------------------
11584  E   Exit the Folder Select menu (without selecting a folder)
11585  S   Select the currently highlighted folder
11586  A   AddNew folder (just like Select, but you type in a new folder name)
11587 </PRE>
11588 <!--chtml endif-->
11590 FOR MORE INFORMATION: See the section on
11591 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11593 &lt;End of help on this topic&gt;
11594 </BODY>
11595 </HTML>
11596 ===== h_abook_config =====
11597 <HTML>
11598 <HEAD>
11599 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11600 </HEAD>
11601 <BODY>
11602 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11603 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11604 <!--chtml if pinemode="function_key"-->
11605 <PRE>
11606 Available  Commands                        
11607 -------------------------------            
11608 F1  Show Help Text                         
11609 F3  Back to MAIN Alpine menu                 
11610 F4  Change configuration for address book  
11611 F5  Move to previous address book          
11612 F6  Move to next address book              
11613 F7  Previous page of address books         
11614 F8  Next page of address books             
11615 F9  Add new address book                   
11616 F10 Delete existing address book           
11617 F11 Shuffle the order of address books     
11618 F12 Whereis (search address book titles)   
11619 </PRE>
11620 <!--chtml else-->
11621 <PRE>
11622 Navigation                     General Alpine Commands
11623 -----------------------        -----------------------
11624  P  Prev Address Book           ?  Display this help text
11625  N  Next Address Book           E  Back to MAIN Alpine menu
11626  -  Previous page
11627 Spc (space bar) Next page
11628  W  WhereIs (search for word in address book titles)
11630 Setup Address Books Commands
11631 ------------------------------------------------
11632  A  Add new address book          $  Shuffle the order of address books
11633  D  Delete existing address book  C  Change configuration for address book
11634 </PRE>
11635 <!--chtml endif-->
11637 <H2>Description of the Setup Address Books Screen</H2>
11639 This screen lets you add, delete, modify, or change the order of your
11640 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11641 fill in.  If you are adding a remote address book on an IMAP server
11642 you should fill in the name of the IMAP server.  Otherwise, leave
11643 that field blank.  (Note that remote IMAP address books are an Alpine
11644 concept and are unlikely to interoperate with other mail clients.)
11645 For a remote address book, fill in the name of the remote folder
11646 in the Folder field.  This should be a folder that is used only for
11647 this one purpose, not a general purpose folder you expect to store
11648 messages in.
11649 <P>If you are adding a local address book, fill in the
11650 Folder Name field with a local file name (e.g., .addressbook).
11652 <B>Please note:</B> Remote address books stored on an IMAP server are 
11653 of an entirely different format (namely, a special-purpose 
11654 &quot;mail folder&quot;) than that of the local addressbook familiar 
11655 to Alpine users.  Therefore, 
11656 you cannot use &quot;add a remote address book&quot; to make an existing 
11657 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11658 Alpine running on a different host.  
11661 The &quot;Del Abook&quot; command allows you to remove an address book
11662 from your configuration.  It will also ask you if you wish to remove
11663 the data for that address book, which would erase all traces of the
11664 address book if you answer Yes.
11667 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11668 The difference is that instead of adding a new address book to your
11669 configuration, you are changing the configuration of an existing entry.
11670 For example, you might want to correct a typing error or change a
11671 nickname.  The &quot;Change&quot; command is not a move command.  If you
11672 change the folder name or server name the data will not be moved for you.
11675 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11676 an address book toward another address book in the same group then
11677 the order of those two address books will be swapped.  If you shuffle
11678 the last Personal address book down towards the Global address book
11679 section, it will become a Global address book.  If you shuffle
11680 the first Global address book up it will become a Personal address
11681 book.  The main difference between Personal and Global address
11682 books is that Global address books are forced read-only.
11683 <P><UL>
11684 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11685 </UL>
11687 &lt;End of help on this topic&gt;
11688 </BODY>
11689 </HTML>
11690 ===== h_abook_top =====
11691 <HTML>
11692 <HEAD>
11693 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11694 </HEAD>
11695 <BODY>
11696 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11697 <!--chtml if pinemode="function_key"-->
11698 <PRE>
11699 Available  Commands -- Group 1         Available Commands -- Group 2
11700 -------------------------------        ------------------------------
11701 F1  Show Help Text                      F1  Show Help Text
11702 F2  See commands in next group          F2  See commands in next group
11703 F3  Exit to MAIN MENU                   F3  Quit Alpine
11704 F4  View/Edit selected address book
11705 F5  Move to previous address book       F5  FOLDER LIST screen
11706 F6  Move to next address book           F6  Specify a folder to go to
11707 F7  Previous page                       F7  MESSAGE INDEX screen
11708 F8  Next page                           F9  Print list of address books
11709 F12 Whereis (search for word)
11710 </PRE>
11711 <!--chtml else-->
11712 <PRE>
11713 Navigation                       General Alpine Commands
11714 -----------------------          -----------------------
11715  P  Previous Entry                ?  Display this help text
11716  N  Next Entry                    O  Show all other available commands
11717  -  Previous page                 &lt;  Back to MAIN Alpine menu
11718 Spc (space bar) Next page         Q  Quit Alpine
11719  W  WhereIs (search for word)     L  FOLDER LIST screen
11720                                   G  Specify a folder to go to
11721 Address Book Commands             I  MESSAGE INDEX screen
11722 ------------------------------------------------
11723  &gt;  View/Edit selected address book
11724               or
11725  &gt;  Search on selected directory server
11727  %  Print list of address books and directory servers
11728 </PRE>
11729 <!--chtml endif-->
11731 <H2>Description of the Address Book List Screen</H2>
11733 From this screen you may choose which address book you wish to view
11734 or edit. For more information on address books, view one of your
11735 address books (with
11736 <!--chtml if pinemode="function_key"-->
11738 <!--chtml else-->
11739 &quot;&gt;&quot;
11740 <!--chtml endif-->)
11741 and see the Help Text there.<P>
11743 You may also choose a directory server on which to search for entries.
11744 You do that by highlighting the directory server line and using
11745 <!--chtml if pinemode="function_key"-->
11747 <!--chtml else-->
11748 &quot;&gt;&quot;
11749 <!--chtml endif-->.<P>
11751 If you wish to define new address books or directory servers go to the Main
11752 menu and choose Setup. You may then either choose to setup AddressBooks or
11753 Directory (among other things). It's possible that the Directory option
11754 will not be there if the Alpine you are using does not contain LDAP directory
11755 lookup functionality.
11757 <P><UL>
11758 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11759 </UL><P>
11760 &lt;End of help on this topic&gt;
11761 </BODY>
11762 </HTML>
11763 ===== h_abook_opened =====
11764 <HTML>
11765 <HEAD>
11766 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
11767 </HEAD>
11768 <BODY>
11769 <H1>THE ALPINE ADDRESS BOOK</H1>
11770 <H2>ADDRESS BOOK COMMANDS</H2>
11771 <PRE>
11772 <!--chtml if pinemode="function_key"-->
11773 Available  Commands -- Group 1         Available Commands -- Group 2   
11774 -------------------------------        ------------------------------  
11775 F1  Show Help Text                      F1  Show Help Text             
11776 F2  See commands in next group          F2  See commands in next group
11777 F3  Exit this screen                    F3  Quit Alpine                  
11778 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
11779 F5  Move to previous entry              F5  FOLDER LIST screen         
11780 F6  Move to next entry                  F6  Specify a folder to go to  
11781 F7  Previous page of address book       F7  MESSAGE INDEX screen        
11782 F8  Next page of address book           F8  Compose to entry using roles
11783 F9  Add new entry to address book       F9  Print address book         
11784 F10 Delete selected entry               F10 TakeAddr to another addrbook
11785 F11 Compose to selected entry           F11 Save or Export addrbook selections
11786 F12 Whereis (search address book)       F12 Forward entry by mail       
11788 Available Commands -- Group 3                                           
11789 ------------------------------                                          
11790 F3  Select                              F6  Zoom (or unZoom)            
11791 F5  Select Current                      F7  Apply Command to Selection  
11792 <!--chtml else-->
11793 Address Book Navigation        General Alpine Commands
11794 -----------------------        -----------------------
11795  P  Prev Address                  ?  Display this help text
11796  N  Next Address                  O  Show all other available commands
11797  -  Previous page of address book M  Back to MAIN MENU
11798 Spc (space bar) Next page         Q  Quit Alpine
11799  W  WhereIs (search for word      C  Compose message to selected addr
11800      or name in address book)     #  Compose to addr using roles
11801  &lt;  To List of Address Books if   L  FOLDER LIST screen
11802      more than one, else to MAIN  G  Specify a folder to go to
11803                                   I  MESSAGE INDEX screen
11805 Address Book Commands
11806 ----------------------------------------------------
11807  &gt;  View/Update selected entry    D  Delete selected entries
11808  %  Print address book            S  Save or Export address book selections
11809  F  Forward entries by mail       @  Add new entry to address book
11811  ;  Select command                Z  Toggle Zoom Mode
11812  :  Select highlighted entry      A  Apply command to selected entries
11814 <!--chtml endif-->
11815 </PRE>
11816 Note:  The presence or absence of the final four commands above is
11817 controlled by the option 
11818 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
11821 <H2>Description of the Address Book Screen</H2>
11823 This screen lets you edit and manage entries in your address book.  It
11824 also acts as a short-cut for composing messages to people in the address
11825 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
11826 message starts &quot;pre-addressed&quot; to whatever address book entry is
11827 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
11828 role to use in your composition.
11830 Alpine's address book helps you keep a list of addresses you send email to so
11831 you do not have to remember addresses that are often complex.  Each entry
11832 in the address book has five fields, all of them optional.  The three
11833 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
11835         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
11836         This is what you type in as you are addressing the message in the
11837         composer.  If there is a matching entry in your address book(s),
11838         Alpine will extract the corresponding FullName and Address fields to
11839         generate the actual address for your message.
11841         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
11842 of the
11843         person or organization.  Usually the full names are put in last
11844         name first so they sort nicely in alphabetical order.  Whatever
11845         you put as the name here will appear on the message when it is
11846         finally delivered.  Examples:<PRE>
11847            Garcia Marquez, Gabriel
11848            Henscheid, Eckhard
11849            Alpine-Info mailing list
11850            Library materials renewal requests
11851            Kim An-guk
11852            &quot;George III, King of Great Britain, 1738-1820&quot;
11853 </PRE>
11854 (In the second-to-last example, no comma is used in the name so that 
11855 the family name appears first in the address book and when the entry is 
11856 used in the composer.
11857 In the last example, retaining the commas is intended; 
11858 double-quotation marks surround the name to 
11859 prevent the transposition of its parts when the entry is used in 
11860 the composer.)
11862         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
11863         a valid Internet address that conforms to the Internet message
11864         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
11866 The two fields that aren't usually visible are:<DL>
11868   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
11869         message to this address to be saved in.  If this field is set, and
11870         this address is the first one in the message's To: header, then
11871         Alpine will use this folder name for the FCC in lieu of the normal
11872         FCC folder name.
11874   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
11875         </DL>
11877 Due to screen width limitations, these last two fields do not show up in
11878 the normal ADDRESS BOOK display.  You may select the 
11879 &quot;View/Update&quot; command to
11880 view or modify them.  You may use the configuration variable
11881 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
11882 to add these fields to your ADDRESS BOOK 
11883 display, or to modify the format of the display.
11885 <H2>Sorting the Address book</H2>
11887 By default, address book entries are sorted alphabetically on the full
11888 name with distribution lists sorted to the end.  Sorting can be changed by
11889 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
11890 --assuming you have &quot;write&quot; permission for the address book file.
11892 Unlike the sorting of folders (which only changes presentation), sorting an
11893 address book actually changes the file as it is kept on the computer.  For
11894 this reason you won't be able to sort a shared or system-wide address
11895 book.
11897 <H2>Adding New Entries</H2>
11899 The easiest way to add new entries to your address book is to use the
11900 &quot;TakeAddr&quot; command when viewing a message.
11901 This command allows you to take addresses from the header and body of the
11902 message and put them into your address book, without having to type
11903 them in.
11906 To manually add a new entry from within the address book screen, use the AddNew
11907 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
11908 Use this command both for adding a simple alias and for adding a
11909 distribution list.
11911 <H2>Distribution Lists</H2>
11913 Address book entries can be simple cases of aliases (a single nickname is linked
11914 to a single email address) or distribution lists (a single nickname
11915 pointing at more than one email address).  Each distribution list has a
11916 nickname, a full name and a list of addresses.  The addresses may be
11917 actual addresses or they may be other nicknames in your address book.
11918 They may even refer to other distribution lists.
11919 There's really no difference between a simple alias and a distribution list,
11920 other than the number of addresses.
11921 Therefore, you can turn a simple alias with one address into a distribution
11922 list simply by adding more addresses.
11923 To add entries to an existing list or alias
11924 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
11925 a single address from the list if the cursor is placed on the address;
11926 it will delete the entire distribution list if the cursor is on the
11927 nickname/fullname line.  View/Update may also be used to delete addresses
11928 from a list.
11930 Address field entries in distribution lists may take any one of three
11931 forms: a nickname existing in any of the defined address books, a normal
11932 address of the form &quot;jsmith@art.example.com&quot;, or a complete
11933 fullname/address combination, e.g. &quot;John Smith
11934 &lt;jsmith@art.example.com&gt;&quot;.
11936 Distribution lists in Alpine address books can only be used by the person or
11937 people who have access to that address book.  They are not usually used to
11938 implement discussion groups, but can be used to facilitate small
11939 discussion groups if all the participants have access to the same shared
11940 address book.
11942 <H2>FCC and Comments</H2>
11944 As mentioned above, each entry in the address book also has two other optional
11945 fields, Fcc and Comments.  The command to look at or change either of these
11946 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
11947 Comments field is just for your own use.  The Fcc field overrides the
11948 default Fcc if this address is the first one on the To line.  The WhereIs
11949 command may be used to search for particular strings in the address book,
11950 including fields that are not visible (like Comment and Fcc by default).
11952 <H2>Aggregate Operations</H2>
11954 If the feature
11955 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
11956 is turned on (the default), then the four commands &quot;Select&quot;,
11957 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
11958 are available.  The two selection commands allow you to mark a set of
11959 address book entries as being selected.  If you have more than one address
11960 book, the selections may be in more than one of those address books.
11961 The &quot;Zoom&quot; command will toggle between displaying only the selected
11962 entries and all of the entries.  The &quot;Apply&quot; command allows you to
11963 apply one of the regular address book commands to all of the selected
11964 entries.  Usually the address book commands apply to only the entry
11965 highlighted by the cursor.  The &quot;Apply&quot; command works with the
11966 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
11967 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
11969 <H2>Exporting and Forwarding Address book entries</H2>
11971 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
11972 address book entry is placed in a plain text file in your home directory
11973 <!--chtml if pinemode="running"-->
11974 (which, in the present configuration of your system, is
11975  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
11976 <!--chtml endif-->
11977 or current working directory
11978 <!--chtml if pinemode="running"-->
11979 (which, at least for your current Alpine &quot;session,&quot; 
11980 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
11981 <!--chtml endif-->, depending on the 
11982 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
11983 configuration setting.  If you have some entries selected and use the
11984 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
11985 placed in the text file.
11987 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
11988 address book entry is placed in a special attachment and you are put into
11989 the composer.  You can fill in some comments in the body of the message,
11990 if you'd like, and send it to somebody else who uses Alpine.  The recipient
11991 may use the TakeAddr command on that message to insert the address book
11992 entry you sent in their own address book.  If you have some entries
11993 selected and use the Apply Forward command all of the selected entries
11994 will be forwarded in a single message.  You may
11995 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.
11996 The recipient must be using Alpine in order to receive this correctly.
11997 One way for the recipient to handle this might be to create an empty
11998 address book and then &quot;Take&quot; your forwarded address book entries into
11999 that empty address book.
12001 <H2>Multiple and/or Site-Wide Address books</H2>
12003 You may have more than one personal address book.  In addition, there may
12004 be one or more global address books.  This capability allows you to have
12005 multiple personal address books (some of which may be shared) and it also
12006 allows system administrators to implement site-wide address books that
12007 contain entries for users on multiple machines within the organization.
12008 <P><DL>
12009 <DT>Searching
12010   <DD> If you enter a nickname when composing a message, your
12011   personal address books will be searched through in order, and then the
12012   global address book(s) searched. If more than one address book has an entry
12013   for the nickname, Alpine uses the first one that it finds, so an entry in
12014   your personal address book would override a global address book entry. If
12015   after searching all the address books there is still no match, (Unix) Alpine
12016   then searches the local host password file on the assumption that you have
12017   entered a local user name rather than an address book nickname.
12018   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12019   command, but global address books are always searched after personal
12020   address books.
12022   <P><DT>Tab completion
12023   <DD> If the
12024   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12025   feature is turned on (the default) then the Tab key may be used
12026   in the composer to complete partially typed nicknames in the To
12027   or Cc lines. You type the first few letters of a nickname and then
12028   press the Tab key. It there is only one nickname that matches it will
12029   be filled in by Alpine. If there is more than one the unambiguous part
12030   of the nicknames will be filled in. For example, if your address book or
12031   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12032   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12033   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12034   If you then type a second Tab character you will be presented with a list
12035   of matching nicknames to select from. Alternatively, you could type another
12036   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12037   in the entire &quot;barbecue&quot; entry.
12039   <P><DT>Defining
12040   <DD> You define multiple personal address books in the 
12041   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12042   from the MAIN MENU.  
12043   You may add as many as you like.  Global address books are usually
12044   site-wide address books defined by the System administrator, but
12045   you may define global address books of your own just like you define
12046   personal address books.
12048   <P><DT>Creating and updating
12049   <DD> Personal address books are normally created empty
12050   and populated by explicit additions from within Alpine, e.g. via the
12051   TakeAddr command.  Unlike personal address books, global address books may
12052   not be modified/updated from within Alpine; that is, they are Read-Only.
12053   Thus, global address books are created, populated and updated outside of
12054   Alpine. They might be hand-edited, generated by a program from another
12055   database, or by copying an existing address book.  They might also be
12056   some other user's personal address book, and so be modified normally by
12057   that user but accessed Read-Only by you.  See the Alpine Technical
12058   Notes document (included in the Alpine distribution) for more information on
12059   this.
12061   <P><DT>Accessing
12062   <DD>There are two different types of address books in Alpine.
12063   A local address book is stored in a regular file and the normal file
12064   access permissions apply.  A remote address book is stored on an IMAP
12065   server in a special folder that contains only messages pertaining to
12066   that address book.  The last message in the remote folder contains a
12067   copy of the address book data, and that data is copied to a local cache
12068   file in your home directory.  From there it is accessed just like a local
12069   address book.  The name of the cache file is kept track of in a special
12070   file called the
12071   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12072   the name of which is stored in
12073   your Alpine configuration file the first time you use a remote address book.
12074   Just as local Alpine address books use a format that only Alpine understands,
12075   remote Alpine address books do the same and other mail reading programs
12076   are unlikely to be able to understand them.<P>
12077   While global address books are explicitly intended to be shared, there is
12078   nothing to prevent you from sharing a personal address book with other
12079   Alpine users. This might be useful in the case of a small workgroup.
12080   However, it is recommended that updates to shared personal address books
12081   be done when other Alpine users are not accessing the address book. Alpine
12082   does not do any file-locking to manage concurrent updates to the
12083   addressbook, but it does check to see if the file has been modified before
12084   making any changes.  Consequently, inadvertent concurrent updates will
12085   only cause other Alpine users to have to restart their address book
12086   operation, which will cause Alpine to reopen the updated file.
12088   <P><DT>Converting to Remote
12089   <DD>The easiest way to convert an existing local
12090   address book into a remote address book is to create an empty new remote
12091   personal address book by typing &quot;A&quot; to execute the
12092   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12093   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12094   address book.
12095   After you have added the empty
12096   remote address book, go into the screen for the address book you wish
12097   to copy and &quot;Select&quot; &quot;All&quot;.
12098   This selects every entry in that
12099   address book.  Then type the command &quot;Apply Save&quot;.
12100   You will be asked for the address book to save to.  You may use ^P and ^N
12101   to get to the new empty address book, then hit RETURN and the addresses
12102   will be copied.
12103   At this point you'll probably want to unselect all the entries in the local
12104   address book before proceeding. You do that with
12105   &quot;Select&quot; &quot;unselect All&quot;.
12107 </DL>
12108 <UL>
12109 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12110 </UL>
12111 <P><UL>
12112 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12113 </UL>
12115 &lt;End of help on this topic&gt;
12116 </BODY>
12117 </HTML>
12118 ===== h_abook_select_addr =====
12119 <HTML>
12120 <HEAD>
12121 <TITLE>Addressbook Selection Explained</TITLE>
12122 </HEAD>
12123 <BODY>
12124 <H1>SELECT ADDRESS</H1>
12125 <!--chtml if pinemode="function_key"-->
12126 <PRE>
12127 Navigating the List of Messages               General Alpine Commands
12128 -------------------------------               -----------------------
12129 F5   Move to previous entry                   F1  Show this help text
12130 F6   Move to next entry
12131 F7   Show previous screen of address book
12132 F8   Show next screen of address book
12133 F12  WhereIs (search through address book)
12135 Address Selection Commands
12136 --------------------------
12137 F3   Exit the Address Select screen (without selecting an address)
12138 F4   Select the currently highlighted entry
12139 </PRE>
12140 <!--chtml else-->
12141 <PRE>
12142 Navigating the List of Messages               General Alpine Commands
12143 -------------------------------               -----------------------
12144  P   Move to previous entry                    ?  Show this help text
12145  N   Move to next entry
12146  -   Show previous screen of address book
12147 Spc  (space bar) Show next screen of address book
12148  W   WhereIs (search through address book)
12150 Address Selection Commands
12151 --------------------------
12152  E   Exit the Address Select screen (without selecting an address)
12153  S   Select the currently highlighted entry
12154 </PRE>
12155 <!--chtml endif-->
12158 This screen is designed to let you easily scan your address book(s) in
12159 order to select an entry for the message you are composing.  You cannot
12160 edit your address book in any way at this time, for address book
12161 maintenance, select the address book command when not composing a message.
12164 If you are composing a message and know the nickname of the person/list you
12165 want, you can bypass this screen by simply typing in the nickname on the
12166 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12167 selecting an entry does not cancel your message.
12170 FOR MORE INFORMATION on addressing see
12171 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12172 <A HREF="h_abook_opened">Address Book Screen's</A>
12173 help text.
12175 &lt;End of help on this topic&gt;
12176 </BODY>
12177 </HTML>
12178 ===== h_abook_select_top =====
12179 <HTML>
12180 <HEAD>
12181 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12182 </HEAD>
12183 <BODY>
12184 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12185 <!--chtml if pinemode="function_key"-->
12186 <PRE>
12187 Navigating the List of Address Books       General Alpine Commands
12188 ------------------------------------       -----------------------
12189 F4   View the highlighted address book
12190 F5   Move to previous address book         F1  Show this help text
12191 F6   Move to next address book
12192 F7   Show previous screen of address books
12193 F8   Show next screen of address books
12194 F12  WhereIs (search through address books)
12196 Address Selection Commands
12197 --------------------------
12198 F3   Exit the Address Select screen (without selecting an address)
12199 F4   Select the currently selected entries (if using ListMode)
12200 F9   Change to ListMode
12201 </PRE>
12202 <!--chtml else-->
12203 <PRE>
12204 Navigating the List of Address Books       General Alpine Commands
12205 ------------------------------------       -----------------------
12206  &gt;   View the highlighted address book
12207  P   Move to previous address book         ?  Show this help text
12208  N   Move to next address book
12209  -   Show previous screen of address books
12210 Spc  (space bar) Show next screen of address books
12211  W   WhereIs (search through address books)
12213 Address Selection Commands
12214 --------------------------
12215  E   Exit the Address Select screen (without selecting an address)
12216  S   Select the currently selected entries (if using ListMode)
12217  L   Change to ListMode
12218 </PRE>
12219 <!--chtml endif-->
12222 This screen is designed to let you easily scan your address book(s) in
12223 order to select entries for the message you are composing.  You cannot
12224 edit your address book in any way at this time.  For address book
12225 maintenance, select the address book command when not composing a message.
12228 If you are composing a message and know the nickname of the person/list you
12229 want, you can bypass this screen by simply typing in the nickname on the
12230 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12231 selecting an entry does not cancel your message.
12234 The ListMode command will add a column at the left edge of the screen.
12235 You mark the entries that you wish to select with the &quot;X&quot; command.
12236 This allows you to choose more than one entry at a time.
12239 An alternative method of composing a message to entries in your
12240 address book(s) is to first use the &quot;Select&quot; command from
12241 the address book maintenance screen and then the &quot;Apply&quot;
12242 &quot;ComposeTo&quot; command to start the composer composing to the
12243 selected entries.
12246 FOR MORE INFORMATION on addressing see
12247 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12248 <A HREF="h_abook_opened">Address Book Screen's</A>
12249 help text.
12251 &lt;End of help on this topic&gt;
12252 </BODY>
12253 </HTML>
12254 ===== h_abook_select_listmode =====
12255 <HTML>
12256 <HEAD>
12257 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12258 </HEAD>
12259 <BODY>
12260 <H1>COMPOSER: SELECT ADDRESSES</H1>
12261 <!--chtml if pinemode="function_key"-->
12262 <PRE>
12263 Navigating the List of Messages                 General Alpine Commands
12264 -------------------------------                 -----------------------
12265 F5   Move to previous entry                     F1  Show this help text
12266 F6   Move to next entry
12267 F7   Show previous screen of address book
12268 F8   Show next screen of address book
12269 F12  WhereIs (search through address book)
12271 Address Selection Commands
12272 --------------------------
12273 F3   Exit the Address Select screen (without selecting an address)
12274 F4   Select the currently highlighted entry
12275 F9   Change to ListMode
12276 </PRE>
12277 <!--chtml else-->
12278 <PRE>
12279 Navigating the List of Messages                 General Alpine Commands
12280 -------------------------------                 -----------------------
12281  P   Move to previous entry                     ?  Show this help text
12282  N   Move to next entry
12283  -   Show previous screen of address book
12284 Spc  (space bar) Show next screen of address book
12285  W   WhereIs (search through address book)
12287 Address Selection Commands
12288 --------------------------
12289  E   Exit the Address Select screen (without selecting an address)
12290  S   Select the currently highlighted entry
12291  L   Change to ListMode
12292 </PRE>
12293 <!--chtml endif-->
12296 This screen is designed to let you easily scan your address book(s) in
12297 order to select entries for the message you are composing.  You cannot
12298 edit your address book in any way at this time, for address book
12299 maintenance, select the address book command when not composing a message.
12302 If you are composing a message and know the nickname of the person/list you
12303 want, you can bypass this screen by simply typing in the nickname on the
12304 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12305 selecting an entry does not cancel your message.
12308 The ListMode command will add a column at the left edge of the screen.
12309 You mark the entries that you wish to select with the &quot;X&quot; command.
12310 This allows you to choose more than one entry at a time.
12313 An alternative method of composing a message to entries in your
12314 address book(s) is to first use the &quot;Select&quot; command from
12315 the address book maintenance screen and then the &quot;Apply&quot;
12316 &quot;ComposeTo&quot; command to start the composer composing to the
12317 selected entries.
12320 FOR MORE INFORMATION on addressing see
12321 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12322 <A HREF="h_abook_opened">Address Book Screen's</A>
12323 help text.
12325 &lt;End of help on this topic&gt;
12326 </BODY>
12327 </HTML>
12328 ===== h_abook_select_checks =====
12329 <HTML>
12330 <HEAD>
12331 <TITLE>Address Selection from Composer Explained</TITLE>
12332 </HEAD>
12333 <BODY>
12334 <H1>COMPOSER: SELECT ADDRESSES</H1>
12335 <!--chtml if pinemode="function_key"-->
12336 <PRE>
12337 Navigating the List of Messages                 General Alpine Commands
12338 -------------------------------                 -----------------------
12339 F5   Move to previous entry                     F1  Show this help text
12340 F6   Move to next entry
12341 F7   Show previous screen of address book
12342 F8   Show next screen of address book
12343 F12  WhereIs (search through address book)
12345 Address Selection Commands
12346 --------------------------
12347 F3   Exit the Address Select screen (without selecting an address)
12348 F4   Select the currently highlighted entry
12349 F8   Either Sets or Unsets all entries in this address book
12350 F9   Set or Unset the highlighted entry
12351 </PRE>
12352 <!--chtml else-->
12353 <PRE>
12354 Navigating the List of Messages                 General Alpine Commands
12355 -------------------------------                 -----------------------
12356  P   Move to previous entry                     ?  Show this help text
12357  N   Move to next entry
12358  -   Show previous screen of address book
12359 Spc  (space bar) Show next screen of address book
12360  W   WhereIs (search through address book)
12362 Address Selection Commands
12363 --------------------------
12364  E   Exit the Address Select screen (without selecting an address)
12365  S   Select the currently highlighted entry
12366  X   Set or Unset the highlighted entry
12367  A   Either Sets or Unsets all entries in this address book
12368 </PRE>
12369 <!--chtml endif-->
12372 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12373 command.  Type &quot;S Select&quot; to select all of the entries you
12374 have marked, just as if you had typed them in by hand.
12377 An alternative method of composing a message to entries in your
12378 address book(s) is to first use the &quot;Select&quot; command from
12379 the address book maintenance screen and then the &quot;Apply&quot;
12380 &quot;ComposeTo&quot; command to start the composer composing to the
12381 selected entries.
12384 FOR MORE INFORMATION on addressing see
12385 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12386 <A HREF="h_abook_opened">Address Book Screen's</A>
12387 help text.
12389 &lt;End of help on this topic&gt;
12390 </BODY>
12391 </HTML>
12392 ===== h_abook_select_nicks_take =====
12393 <HTML>
12394 <HEAD>
12395 <TITLE>Take Address Nickname Selection Explained</TITLE>
12396 </HEAD>
12397 <BODY>
12398 <H1>TAKEADDR: SELECT NICKNAME</H1>
12399 <!--chtml if pinemode="function_key"-->
12400 <PRE>
12401 Navigating the List of Messages                 General Alpine Commands
12402 -------------------------------                 -----------------------
12403 F5   Move to previous entry                     F1  Show this help text
12404 F6   Move to next entry
12405 F7   Show previous screen of address book
12406 F8   Show next screen of address book
12407 F12  WhereIs (search through address book)
12409 Message Selection Commands
12410 --------------------------
12411 F3   Exit the Nickname Select screen (without selecting an address)
12412 F4   Select the currently highlighted entry
12413 </PRE>
12414 <!--chtml else-->
12415 <PRE>
12416 Navigating the List of Messages                 General Alpine Commands
12417 -------------------------------                 -----------------------
12418  P   Move to previous entry                     ?  Show this help text
12419  N   Move to next entry
12420  -   Show previous screen of address book
12421 Spc  (space bar) Show next screen of address book
12422  W   WhereIs (search through address book)
12424 Message Selection Commands
12425 --------------------------
12426  E   Exit the Nickname Select screen (without selecting an address)
12427  S   Select the currently highlighted entry
12428 </PRE>
12429 <!--chtml endif-->
12432 This screen is designed to let you modify or add to an existing
12433 address book entry.  You have already selected the name(s) and
12434 address(es) through &quot;Take Address&quot;.  This screen simply lets
12435 you scan your address books and select the nickname to be
12436 changed/augmented.  If you want to add a new entry, then you are in
12437 the wrong place-- Select &quot;Exit&quot; command.
12440 FOR MORE INFORMATION on addressing see
12441 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12442 <A HREF="h_abook_opened">Address Book Screen's</A>
12443 help text.
12445 &lt;End of help on this topic&gt;
12446 </BODY>
12447 </HTML>
12448 ===== h_abook_select_nick =====
12449 <HTML>
12450 <HEAD>
12451 <TITLE>Nickname Selection Explained</TITLE>
12452 </HEAD>
12453 <BODY>
12454 <H1>SELECT NICKNAME</H1>
12455 <!--chtml if pinemode="function_key"-->
12456 <PRE>
12457 Navigating the List of Messages                 General Alpine Commands
12458 -------------------------------                 -----------------------
12459 F5   Move to previous entry                     F1  Show this help text
12460 F6   Move to next entry
12461 F7   Show previous screen of address book
12462 F8   Show next screen of address book
12463 F12  WhereIs (search through address book)
12465 Message Selection Commands
12466 --------------------------
12467 F3   Exit the Nickname Select screen (without selecting an address)
12468 F4   Select the currently highlighted entry
12469 </PRE>
12470 <!--chtml else-->
12471 <PRE>
12472 Navigating the List of Messages                 General Alpine Commands
12473 -------------------------------                 -----------------------
12474  P   Move to previous entry                     ?  Show this help text
12475  N   Move to next entry
12476  -   Show previous screen of address book
12477 Spc  (space bar) Show next screen of address book
12478  W   WhereIs (search through address book)
12480 Message Selection Commands
12481 --------------------------
12482  E   Exit the Nickname Select screen (without selecting an address)
12483  S   Select the currently highlighted entry
12484 </PRE>
12485 <!--chtml endif-->
12488 This screen is designed to let you look at the nicknames in your address
12489 books before choosing a new one.
12492 FOR MORE INFORMATION on addressing see
12493 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12494 <A HREF="h_abook_opened">Address Book Screen's</A>
12495 help text.
12497 &lt;End of help on this topic&gt;
12498 </BODY>
12499 </HTML>
12500 ===== h_takeaddr_screen =====
12501 <HTML>
12502 <HEAD>
12503 <TITLE>Take Address Screen Explained</TITLE>
12504 </HEAD>
12505 <BODY>
12506 <H1>TAKE ADDRESS COMMANDS</H1>
12507 <!--chtml if pinemode="function_key"-->
12508 <PRE>
12509 Navigating the List of Addresses       Address Selection Commands        
12510 --------------------------------       --------------------------        
12511  F5  Move to previous entry            F3  Exit without taking address
12512  F6  Move to next entry                F4  Take current address(es)
12513  F7  Show previous page of address list
12514  F8  Show next page of address list
12515  F2  WhereIs (search list)
12516                                --------------
12517 Mode Toggle            F9  Set/Unset current address
12518 -----------            F10 Set all
12519  F12 Toggle between List and single mode       F11 Unset all
12520 </PRE>
12521 <!--chtml else-->
12522 <PRE>
12523 Navigating the List of Addresses       Address Selection Commands
12524 --------------------------------       --------------------------
12525  P  Move to previous entry              &lt;  Exit without taking address
12526  N  Move to next entry                  T  Take address
12527  -  Show previous page of address list
12528 Spc (space bar) Show next page of address list
12529  W  WhereIs (search list)              List Mode
12530                                        ---------
12531 Single Mode                             X  Set/Unset current address
12532 -----------                             A  Set all addresses
12533  L  Switch to list mode                 U  Unset all addresses
12534                                         S  Switch to single mode
12535 </PRE>
12536 <!--chtml endif-->
12538 <H2>Description of the Take Address Screen</H2>
12540 This screen is designed to let you select one or more address/name
12541 combinations from the current message and put them into your address book.
12542 The cursor is initially placed on the line with the message author.
12543 Other lines include the names of people and/or mailing lists who also
12544 received the message.  Other people &quot;involved&quot; in the
12545 message (e.g. the person named as Reply-To:) are also listed here.
12548 The simple case is adding a new, single entry into your address book. To
12549 do this, simply highlight the correct line and press 
12550 <!--chtml if pinemode="function_key"-->
12552 <!--chtml else-->
12553 &quot;T&quot;.
12554 <!--chtml endif-->
12555 To create a new list or add to an existing list, switch the screen display
12556 into List Mode by pressing
12557 <!--chtml if pinemode="function_key"-->
12558 F12.
12559 <!--chtml else-->
12560 &quot;L&quot;.
12561 <!--chtml endif-->
12562 In List Mode, you select the
12563 group of addresses you wish to manipulate by marking them with an
12564 &quot;X&quot;.
12565 The Set/Unset
12566 <!--chtml if pinemode="function_key"-->
12567 (F9)
12568 <!--chtml else-->
12569 (&quot;X&quot;)
12570 <!--chtml endif-->
12571 command will turn the &quot;X&quot; on for the
12572 highlighted address if it was off or turn it off if it was previously on.
12573 The SetAll command will select all of the addresses, and the UnSetAll
12574 command will turn off all the selections.  Once you've gotten the
12575 selection the way you want it, you may create a new list by pressing
12576 <!--chtml if pinemode="function_key"-->
12578 <!--chtml else-->
12579 &quot;T&quot;.
12580 <!--chtml endif-->
12583 In both the simple and list cases, after choosing to take the address,
12584 you will be asked for the nickname of the entry.  Typing in a new name
12585 creates the new entry/list.  Entering an existing nickname will replace
12586 the entry (simple case) or add to the list (list case).  Alternatively,
12587 you can press Ctrl-T at the nickname prompt and select an existing
12588 nickname from your address book.
12591 You will normally start in Single Mode, unless you used the Apply command
12592 to startup the TakeAddr screen, in which case you will start in List Mode.
12593 You may switch between the two modes at any time.  If you've already
12594 selected several addresses in List Mode, those will be remembered when you
12595 switch to Single Mode and then back to List Mode.  The set of addresses
12596 that are pre-selected when you start in List Mode are the From addresses
12597 of all of the messages you are operating on.  You may, of course, easily
12598 erase those selections with the UnSetAll command.
12601 If you have more than one writable address book, you will be prompted for
12602 the name of the address book you wish to add the new entry to before
12603 anything else. You can use ^N and ^P to choose among the defined address
12604 books, or type in the address book name.
12607 FOR MORE INFORMATION on addressing see
12608 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12609 <A HREF="h_abook_opened">Address Book Screen's</A>
12610 help text.
12612 &lt;End of help on this topic&gt;
12613 </BODY>
12614 </HTML>
12615 ===== h_takeexport_screen =====
12616 <HTML>
12617 <HEAD>
12618 <TITLE>Take Export Screen Explained</TITLE>
12619 </HEAD>
12620 <BODY>
12621 <H1>TAKE EXPORT COMMANDS</H1>
12622 <!--chtml if pinemode="function_key"-->
12623 <PRE>
12624 Navigating the List of Addresses       Address Selection Commands        
12625 --------------------------------       --------------------------        
12626  F5  Move to previous entry            F3  Exit without taking address
12627  F6  Move to next entry                F4  Take current address(es)
12628  F7  Show previous page of address list
12629  F8  Show next page of address list
12630  F2  WhereIs (search list)
12631                                --------------
12632 Mode Toggle            F9  Set/Unset current address
12633 -----------            F10 Set all
12634  F12 Toggle between List and single mode       F11 Unset all
12635 </PRE>
12636 <!--chtml else-->
12637 <PRE>
12638 Navigating the List of Addresses       Address Selection Commands
12639 --------------------------------       --------------------------
12640  P  Move to previous entry              &lt;  Exit without taking address
12641  N  Move to next entry                  T  Take address
12642  -  Show previous page of address list
12643 Spc (space bar) Show next page of address list
12644  W  WhereIs (search list)              List Mode
12645                                        ---------
12646 Single Mode                             X  Set/Unset current address
12647 -----------                             A  Set all addresses
12648  L  Switch to list mode                 U  Unset all addresses
12649                                         S  Switch to single mode
12650 </PRE>
12651 <!--chtml endif-->
12653 <H2>Description of the Take Export Screen</H2>
12655 This screen is designed to let you select one or more addresses
12656 from the current message and put them into a file.
12657 Only the user@domain_name part of each address is put into the file.
12660 To put a single entry into a file simply highlight the correct line and press 
12661 <!--chtml if pinemode="function_key"-->
12663 <!--chtml else-->
12664 &quot;T&quot;.
12665 <!--chtml endif-->
12666 To put more than one entry into a file
12667 switch the screen display
12668 into List Mode by pressing
12669 <!--chtml if pinemode="function_key"-->
12670 F12.
12671 <!--chtml else-->
12672 &quot;L&quot;.
12673 <!--chtml endif-->
12674 In List Mode, you select the
12675 group of addresses you wish to manipulate by marking them with an
12676 &quot;X&quot;.
12677 The Set/Unset
12678 <!--chtml if pinemode="function_key"-->
12679 (F9)
12680 <!--chtml else-->
12681 (&quot;X&quot;)
12682 <!--chtml endif-->
12683 command will turn the &quot;X&quot; on for the
12684 highlighted address if it was off or turn it off if it was previously on.
12685 The SetAll command will select all of the addresses, and the UnSetAll
12686 command will turn off all the selections.  Once you've gotten the
12687 selection the way you want it, you may put the addresses in a file by typing
12688 <!--chtml if pinemode="function_key"-->
12690 <!--chtml else-->
12691 &quot;T&quot;.
12692 <!--chtml endif-->
12695 You will be asked for the name of a file to put the addresses in.
12696 If the file already exists, you will be asked whether you want to Overwrite
12697 (replace) the contents of the file or Append to the contents of the file.
12700 &lt;End of help on this topic&gt;
12701 </BODY>
12702 </HTML>
12703 ============= h_abook_view ========================
12704 <HTML>
12705 <HEAD>
12706 <TITLE>Address Book View Explained</TITLE>
12707 </HEAD>
12708 <BODY>
12709 This function allows you to view the contents of an address book entry. You
12710 can only view one entry at a time.
12712 <DL>
12713 <DT>Help
12714 <!--chtml if pinemode="function_key"-->
12715 (F1)
12716 <!--chtml else-->
12718 <!--chtml endif-->
12719 </DT>
12720 <DD>
12721 Display this help text.
12723 <DT>Abook
12724 <!--chtml if pinemode="function_key"-->
12725 (F3)
12726 <!--chtml else-->
12727 (&lt;)
12728 <!--chtml endif-->
12729 </DT>
12730 <DD>
12731 Go back to index of address book entries.
12733 <DT>Update
12734 <!--chtml if pinemode="function_key"-->
12735 (F4)
12736 <!--chtml else-->
12738 <!--chtml endif-->
12739 </DT>
12740 <DD>
12741 Update (modify) this entry.
12743 <DT>ComposeTo
12744 <!--chtml if pinemode="function_key"-->
12745 (F5)
12746 <!--chtml else-->
12748 <!--chtml endif-->
12749 </DT>
12750 <DD>Compose a message to the address(es) in this entry.
12752 <DT>Role
12753 <!--chtml if pinemode="function_key"-->
12754 (F6)
12755 <!--chtml else-->
12757 <!--chtml endif-->
12758 </DT>
12759 <DD>Compose a message to the address(es) in this entry using roles.
12761 <DT>Prev Page
12762 <!--chtml if pinemode="function_key"-->
12763 (F7)
12764 <!--chtml else-->
12766 <!--chtml endif-->
12767 </DT>
12768 <DD>
12769 Show the previous page of the current entry.
12771 <DT>Next Page
12772 <!--chtml if pinemode="function_key"-->
12773 (F8)
12774 <!--chtml else-->
12775 (Space)
12776 <!--chtml endif-->
12777 </DT>
12778 <DD>
12779 Show the next page of the current entry.
12781 <DT>Print
12782 <!--chtml if pinemode="function_key"-->
12783 (F9)
12784 <!--chtml else-->
12786 <!--chtml endif-->
12787 </DT>
12788 <DD>Print the current entry.  You can select the
12789 printer or the print command via the &quot;Setup&quot; command
12790 on the MAIN MENU.
12792 <DT>WhereIs
12793 <!--chtml if pinemode="function_key"-->
12794 (F10)
12795 <!--chtml else-->
12797 <!--chtml endif-->
12798 </DT>
12799 <DD>Search the entry for a string of letters.  If it is
12800 found, move to it.  The string can be one word or a phrase.
12801 If there are multiple occurrences, the cursor moves to the
12802 first occurrence beyond the current cursor position.
12804 <DT>Fwd Email
12805 <!--chtml if pinemode="function_key"-->
12806 (F11)
12807 <!--chtml else-->
12809 <!--chtml endif-->
12810 </DT>
12811 <DD>Begin composition of a new mail message with the displayed
12812 text already inserted in the message body.
12814 </DL>
12816 &lt;End of help on this topic&gt;
12817 </BODY>
12818 </HTML>
12819 ============= h_ldap_view ========================
12820 <HTML>
12821 <HEAD>
12822 <TITLE>LDAP Response View Explained</TITLE>
12823 </HEAD>
12824 <BODY>
12825 This function allows you to view the contents of a directory entry. You
12826 can only view one entry at a time.
12828 <DL>
12829 <DT>Help
12830 <!--chtml if pinemode="function_key"-->
12831 (F1)
12832 <!--chtml else-->
12834 <!--chtml endif-->
12835 </DT>
12836 <DD>
12837 Display this help text.
12839 <DT>Results Index
12840 <!--chtml if pinemode="function_key"-->
12841 (F3)
12842 <!--chtml else-->
12843 (&lt;)
12844 <!--chtml endif-->
12845 </DT>
12846 <DD>Go back to index of search results.
12848 <DT>ComposeTo
12849 <!--chtml if pinemode="function_key"-->
12850 (F5)
12851 <!--chtml else-->
12853 <!--chtml endif-->
12854 </DT>
12855 <DD>Compose a message to the address(es) in this entry.
12857 <DT>Role
12858 <!--chtml if pinemode="function_key"-->
12859 (F6)
12860 <!--chtml else-->
12862 <!--chtml endif-->
12863 </DT>
12864 <DD>Compose a message to the address(es) in this entry using roles.
12866 <DT>Prev Page
12867 <!--chtml if pinemode="function_key"-->
12868 (F7)
12869 <!--chtml else-->
12871 <!--chtml endif-->
12872 </DT>
12873 <DD>
12874 Show the previous page of the current entry.
12876 <DT>Next Page
12877 <!--chtml if pinemode="function_key"-->
12878 (F8)
12879 <!--chtml else-->
12880 (Space)
12881 <!--chtml endif-->
12882 </DT>
12883 <DD>
12884 Show the next page of the current entry.
12886 <DT>Print
12887 <!--chtml if pinemode="function_key"-->
12888 (F9)
12889 <!--chtml else-->
12891 <!--chtml endif-->
12892 </DT>
12893 <DD>Print the current entry on paper.  You can select the
12894 printer or the print command via the &quot;Setup&quot; command
12895 on the MAIN MENU.
12897 <DT>WhereIs
12898 <!--chtml if pinemode="function_key"-->
12899 (F10)
12900 <!--chtml else-->
12902 <!--chtml endif-->
12903 </DT>
12904 <DD>Search the entry for a string of letters.  If it is
12905 found, move to it.  The string can be one word or a phrase.
12906 If there are multiple occurrences, the cursor moves to the
12907 first occurrence beyond the current cursor position.
12909 <DT>Fwd Email
12910 <!--chtml if pinemode="function_key"-->
12911 (F11)
12912 <!--chtml else-->
12914 <!--chtml endif-->
12915 </DT>
12916 <DD>Begin composition of a new mail message with the displayed
12917 text already inserted in the message body.
12919 <DT>Save
12920 <!--chtml if pinemode="function_key"-->
12921 (F12)
12922 <!--chtml else-->
12924 <!--chtml endif-->
12925 </DT>
12926 <DD>Save the displayed entry to one of your address books or export
12927 it to a file.
12928 </DL>
12930 &lt;End of help on this topic&gt;
12931 </BODY>
12932 </HTML>
12933 ===== h_attachment_screen =====
12934 <HTML>
12935 <HEAD>
12936 <TITLE>Attachment Index Screen Explained</TITLE>
12937 </HEAD>
12938 <BODY>
12939 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
12940 message's attachments, and allows various operations on them.  The
12941 first attachment is usually the message text, but does not include the
12942 header portion of the message.
12944 Available commands include:
12946 <DL>
12948 <DT>Help</DT>
12949 <DD>Show this help text.
12951 <DT>Msg #<I>num</I></DT>
12952 <DD>Leave this screen without displaying or saving any attachments.
12954 <DT>View</DT>
12955 <DD>View the currently selected attachment.
12957 <DT>Prev Attach</DT>
12958 <DD>Move to previous attachment.
12960 <DT>Next Attach</DT>
12961 <DD>Move to next attachment.
12963 <DT>Prev Page</DT>
12964 <DD>Previous page of the listed attachments.
12966 <DT>Next Page</DT>
12967 <DD>Next page of the listed attachments.
12969 <DT>Delete</DT>
12970 <DD>Mark the currently selected attachment for Deletion.
12971 This does not modify the current message by deleting the attachment from
12972 it, but instead the delete flag <EM>only</EM> has an effect when saving
12973 the message to a folder.
12974 Attachments marked for deletion are not copied to the destination folder
12975 along with the rest of the message when it is saved.
12976 It is ok for the destination folder to be the same as the current folder.
12977 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
12979 <DT>Undelete</DT>
12980 <DD>Turn off the Delete flag for the selected attachment.
12982 <DT>Save</DT>
12983 <DD>Save the selected attachment to a file.  If the attachment is of
12984 type &quot;RFC822/Message&quot;, then the attachment will be saved to
12985 the specified mail folder.
12987 <DT>Export</DT>
12988 <DD>If the attachment is of
12989 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12990 copy the message to a file in the same way this command works on 
12991 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12993 <DT>Pipe</DT>
12994 <DD>Pipe the attachment contents into a UNIX command (if enabled).
12995 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
12997 <DT>WhereIs</DT>
12998 <DD>Find a matching string in the attachment list.
13000 <DT>AboutAttch</DT>
13001 <DD>Examine various aspects of the selected attachment.
13003 <DT>Print</DT>
13004 <DD>Print the selected attachment.
13006 <DT>Forward</DT>
13007 <DD>Forward the selected attachment as an attachment.
13008 </DL>
13012 All attachments can be saved or piped into a UNIX command, but some may
13013 not be readily displayed by either Alpine or an external tool.  In such
13014 cases, the reason why the message cannot be displayed is displayed on
13015 Alpine's message line.
13017 &lt;End of help on this topic&gt;
13018 </BODY>
13019 </HTML>
13020 ============= h_mail_text_att_view ========================
13021 <HTML>
13022 <HEAD>
13023 <TITLE>Attachment View Screen Explained</TITLE>
13024 </HEAD>
13025 <BODY>
13026 This function allows you to view the contents of a text attachment. You
13027 can only view one attachment at a time.
13029 Available commands include:
13031 <DL>
13033 <DT>Help</DT>
13034 <DD>Display this help text
13036 <DT>AttchIndex</DT>
13037 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13039 <DT>Prev Page</DT>
13040 <DD>Show the previous page of the current attachment.
13042 <DT>Next Page</DT>
13043 <DD>Show the next page of the current attachment by pressing the space bar.
13045 <DT>Delete</DT>
13046 <DD>Mark the viewed attachment for Deletion.  The delete
13047 flag <EM>only</EM> has affect when saving the message to a folder.
13048 Attachments marked for deletion are exluded from the messsage when
13049 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13050 this Alpine session.
13052 <DT>Undelete</DT>
13053 <DD>Turn off the Delete flag for the selected attachment.
13055 <DT>Save</DT>
13056 <DD>Copy the current attachment to a file.  If you just enter
13057 a filename, the attachment will be saved with that name in
13058 your home directory 
13059 <!--chtml if pinemode="running"-->
13060 (which, in the present configuration of your system, is
13061  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13062 <!--chtml endif-->
13063 or current working directory
13064 <!--chtml if pinemode="running"-->
13065 (which, at least for your current Alpine &quot;session,&quot; 
13066 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13067 <!--chtml endif-->, depending on the
13068 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13069 configuration setting.  You may enter the full
13070 path and filename to save it in another directory instead.
13072 <DT>Export</DT>
13073 <DD>If the attachment is of
13074 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13075 copy the message to a file in the same way this command works on 
13076 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13077 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13078 defined, they may affect the contents of the exported file.)
13080 <DT>Pipe</DT>
13081 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13083 <DT>WhereIs</DT>
13084 <DD>Search the attachment for a string of letters.  If it is
13085 found, move to it.  The string can be one word or a phrase.
13086 If there are multiple occurrences, the cursor moves to the
13087 first occurrence beyond the current cursor position.
13089 <DT>Print</DT>
13090 <DD>Print the current attachment on paper.  You can select the
13091 printer or the print command via the &quot;Setup&quot; command
13092 on the MAIN MENU.
13094 <DT>Forward</DT>
13095 <DD>Forward the selected attachment as an attachment.
13096 </DL>
13098 &lt;End of help on this topic&gt;
13099 </BODY>
13100 </HTML>
13101 ============= h_journal ==============
13102 <HTML>
13103 <HEAD>
13104 <TITLE>Recent Message Journal Explained</TITLE>
13105 </HEAD>
13106 <BODY>
13108 The following commands are available on this screen:
13110 <DL>
13111 <DT>Help</DT>
13112 <DD>Show this help text
13114 <DT>Exit</DT>
13115 <DD>Exit Viewer, and go back to mail processing
13117 <DT>Prev Page</DT>
13118 <DD>Show the previous page text
13120 <DT>Next Page</DT>
13121 <DD>Show the next page of text by pressing the space bar
13123 <DT>Print</DT>
13124 <DD>Print the displayed text on paper.  You can select the
13125 printer or the print command via the &quot;Setup&quot; command
13126 on the MAIN MENU.
13128 <DT>Fwd Email</DT>
13129 <DD>Begin composition of a new mail message with the displayed
13130 text already inserted in the message body.
13132 <DT>Save</DT>
13133 <DD>Copy the displayed text to a file.  If you just enter
13134 a filename, the text will be saved with that name in
13135 your 
13136 home directory 
13137 <!--chtml if pinemode="running"-->
13138 (which, in the present configuration of your system, is
13139  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13140 <!--chtml endif-->
13141 or current working directory
13142 <!--chtml if pinemode="running"-->
13143 (which, at least for your current Alpine &quot;session,&quot; 
13144 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13145 <!--chtml endif-->, depending on the
13146 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13147 configuration setting.   You may enter the full
13148 path and filename to save it in another directory instead.
13150 <DT>WhereIs</DT>
13151 <DD>Search the text for a string of letters.  If it is
13152 found, move to it.  The string can be one word or a phrase.
13153 If there are multiple occurrences, the cursor moves to the
13154 first occurrence beyond the current cursor position.
13155 </DL>
13157 &lt;End of help on this topic&gt;
13158 </BODY>
13159 </HTML>
13160 ============= h_debugjournal ==============
13161 <HTML>
13162 <HEAD>
13163 <TITLE>Debug Journal Explained</TITLE>
13164 </HEAD>
13165 <BODY>
13167 The following commands are available on this screen:
13169 <DL>
13170 <DT>Help</DT>
13171 <DD>Show this help text
13173 <DT>Exit</DT>
13174 <DD>Exit Viewer, and go back to mail processing
13176 <DT>Timestamps</DT>
13177 <DD>Turn on or off timestamps.
13179 <DT>DebugView</DT>
13180 <DD>Set the level of debugging you want to see. The level may be any number
13181 in the range 0-9. Higher numbers show more debugging detail. Note that the
13182 debugging information has already been captured. This setting just causes the
13183 debugging information that you see to be filtered. If you set this to
13184 the number &quot;5&quot; then you will be shown all of the debugging information
13185 at levels 5 and below.
13186 It's actually a bit more complicated than that. A fixed amount of memory
13187 is used to store the debug information.
13188 Since the amount of memory used is limited the debugging information
13189 has to be trimmed back when it gets too large.
13191 <DT>Prev Page</DT>
13192 <DD>Show the previous page text
13194 <DT>Next Page</DT>
13195 <DD>Show the next page of text by pressing the space bar
13197 <DT>Print</DT>
13198 <DD>Print the displayed text on paper.  You can select the
13199 printer or the print command via the &quot;Setup&quot; command
13200 on the MAIN MENU.
13202 <DT>Fwd Email</DT>
13203 <DD>Begin composition of a new mail message with the displayed
13204 text already inserted in the message body.
13206 <DT>Save</DT>
13207 <DD>Copy the displayed text to a file.  If you just enter
13208 a filename, the text will be saved with that name in
13209 your 
13210 home directory 
13211 <!--chtml if pinemode="running"-->
13212 (which, in the present configuration of your system, is
13213  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13214 <!--chtml endif-->
13215 or current working directory
13216 <!--chtml if pinemode="running"-->
13217 (which, at least for your current Alpine &quot;session,&quot; 
13218 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13219 <!--chtml endif-->, depending on the
13220 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13221 configuration setting.   You may enter the full
13222 path and filename to save it in another directory instead.
13224 <DT>WhereIs</DT>
13225 <DD>Search the text for a string of letters.  If it is
13226 found, move to it.  The string can be one word or a phrase.
13227 If there are multiple occurrences, the cursor moves to the
13228 first occurrence beyond the current cursor position.
13229 </DL>
13231 &lt;End of help on this topic&gt;
13232 </BODY>
13233 </HTML>
13234 ============= h_simple_text_view ==============
13235 <HTML>
13236 <HEAD>
13237 <TITLE>Simple Text View Screen Explained</TITLE>
13238 </HEAD>
13239 <BODY>
13241 The following commands are available on this screen:
13243 <DL>
13244 <DT>Help</DT>
13245 <DD>Show this help text
13247 <DT>Exit</DT>
13248 <DD>Exit Viewer, and go back to mail processing
13250 <DT>Prev Page</DT>
13251 <DD>Show the previous page text
13253 <DT>Next Page</DT>
13254 <DD>Show the next page of text by pressing the space bar
13256 <DT>Print</DT>
13257 <DD>Print the displayed text on paper.  You can select the
13258 printer or the print command via the &quot;Setup&quot; command
13259 on the MAIN MENU.
13261 <DT>Fwd Email</DT>
13262 <DD>Begin composition of a new mail message with the displayed
13263 text already inserted in the message body.
13265 <DT>Save</DT>
13266 <DD>Copy the displayed text to a file.  If you just enter
13267 a filename, the attachment will be saved with that name in
13268 your 
13269 home directory 
13270 <!--chtml if pinemode="running"-->
13271 (which, in the present configuration of your system, is
13272  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13273 <!--chtml endif-->
13274 or current working directory
13275 <!--chtml if pinemode="running"-->
13276 (which, at least for your current Alpine &quot;session,&quot; 
13277 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13278 <!--chtml endif-->, depending on the
13279 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13280 configuration setting.   You may enter the full
13281 path and filename to save it in another directory instead.
13283 <DT>WhereIs</DT>
13284 <DD>Search the attachment for a string of letters.  If it is
13285 found, move to it.  The string can be one word or a phrase.
13286 If there are multiple occurrences, the cursor moves to the
13287 first occurrence beyond the current cursor position.
13288 </DL>
13290 &lt;End of help on this topic&gt;
13291 </BODY>
13292 </HTML>
13293 ======= h_pine_for_windows ========
13294 <HTML>
13295 <HEAD>
13296 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13297 </HEAD>
13298 <BODY>
13299 <H1>Getting Help In PC-Alpine</H1>
13302 PC-Alpine offers general and specific help text. From the <A
13303 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13304 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13305 specific help for that screen is available from the toolbar Help menu or
13306 with the 
13307 <!--chtml if pinemode="function_key"-->
13308 &quot;F1&quot; key.
13309 <!--chtml else-->
13310 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13311 typing &quot;?&quot; would be mistaken as entering text.
13312 <!--chtml endif-->
13315 Although this version of Alpine is for Microsoft Windows, it is not
13316 considered a full &quot;Graphical User Interface&quot; application. 
13317 Yet, many of the controls that Windows users are accustomed to seeing, 
13318 such as scrollbars and toolbars, are available.
13321 PC-Alpine offers considerable mouse support.  You can view what is
13322 &quot;click-able&quot; by dragging your mouse over any screen; when the
13323 arrow cursor changes into a hand, you found something. Mouse-click
13324 possibilities include navigating between screens and folders and
13325 double-clicking on hyperlinks to open your Web browser.
13326 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13327 screen.  Examples of right-click options include &quot;copy&quot; after
13328 selecting text to copy and &quot;View in New Window&quot; when you click
13329 on a particular message in the Message Index. The menu choices available
13330 to you will vary based upon what screen is open, where on the screen your
13331 cursor is located, and even what action you have already taken.
13334 &lt;End of help on this topic&gt;
13335 </BODY>
13336 </HTML>
13337 ===== h_composer =====
13338 <HTML>
13339 <HEAD>
13340 <TITLE>COMPOSER COMMANDS</TITLE>
13341 </HEAD>
13342 <BODY>
13343 <H1>COMPOSER COMMANDS</H1>
13345 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>
13346 &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>
13347 &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>
13348 &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>
13349 &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>
13350 &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>
13351 &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>
13352 &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>
13353 &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>
13354 &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>
13355 ---------------------------------------|&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>
13356 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>
13357 &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>
13358 &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>
13359 &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>
13362 NOTE:
13363 <OL>
13364  <LI>For help on a particular command, highlight the bold text associated
13365 with it above and hit Return.
13366  <LI> The availability of certain commands
13367 is determined by Alpine configuration files and system capabilities.
13368 At some sites, certain commands may not be available due to security or
13369 support concerns.
13370  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13371 Ctrl-&#92;, ESC.
13372  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13373 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13374 </OL>
13377 HINT: To move rapidly to the bottom of a message you are composing,
13378 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13379 with the Mark and Cut commands to eliminate large amounts of unwanted
13380 text in a Reply.
13382 <H2>Description of Composer</H2>
13384 Alpine has a built-in editing program that allows you to compose messages
13385 without having to leave Alpine.  The editor is designed to be very simple to
13386 use so that you can get started writing email right away.
13389 Messages are usually just text, about 80 columns wide.  Using upper and
13390 lower case is encouraged.  On some systems the size limit of the message
13391 is about 100,000 characters, which is about 2,000 lines.  You can include
13392 punctuation and special characters found on most keyboards, but you can't
13393 include characters with diacritical marks and certain special symbols.
13396 Text automatically wraps as you type past the end of a line so you do not
13397 have to hit return.  Using the
13398 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13399 you can also reformat text explicitly, perhaps after you have
13400 deleted some text.
13403 You can include other text files with the 
13404 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13405 which will prompt you for the name of the file to insert at the
13406 current cursor postion.
13409 <UL>
13410 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13411 </UL>
13413 &lt;End of help on this topic&gt;
13414 </BODY>
13415 </HTML>
13416 ====== h_composer_browse =====
13417 <HTML>
13418 <HEAD>
13419 <TITLE>BROWSER</TITLE>
13420 </HEAD>
13421 <BODY>
13422 <H1>BROWSER</H1>
13423 This screen lets you browse your files and directories.  To go to another 
13424 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13425 choose &quot;Select&quot; (the default choice on the menu); 
13426 or choose &quot;Goto&quot; and enter the name of the directory.
13427 <!--chtml if pinemode="os_windows"-->
13428 <!--chtml else--> 
13429 In Unix Alpine, you may use 
13430 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13431 to another's home directory.  
13432 <!--chtml endif--><P>
13433 To select a file, move the cursor to it and 
13434 choose &quot;Select&quot; (the default choice on the menu).  
13436 <UL>
13437 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13438 inclusion in the 
13439 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13440 the 
13441 &quot;----- Message Text -----&quot; line
13442 while composing, then &quot;To Files&quot;):  Since the file 
13443 selected will become part of the message text, it must be in a format 
13444 suitable for that (Alpine does not check!), such as a plain text file.
13445 Files of other formats (for example, graphics, databases, software 
13446 programs) should be 
13447 <B>attached</B> to the message instead --
13448 by moving the cursor in the COMPOSE MESSAGE screen into the 
13449 message header area and pressing 
13450 <!--chtml if pinemode="function_key"-->
13452 <!--chtml else-->
13453 Ctrl-J.
13454 <!--chtml endif--> 
13456 <P><LI>
13457 Note <B>if</B> you are currently using the BROWSER for saving a message 
13458 attachment, or exporting a message, to a file: You can use the Add command to 
13459 provide the name for a new file to save/export to, and then select that name 
13460 to use it for the save/export operation.  Back at the prompt 
13461 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13462 either Overwrite or Append (it doesn't make a difference, since the file is 
13463 so far empty).  Note: If you cancel the 
13464 operation at that point, the file created with the Add command will remain 
13465 0 bytes in size.
13467 </UL>
13468 <P><UL>
13469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13470 </UL>
13472 &lt;End of help on this topic&gt;
13473 </BODY>
13474 </HTML>
13475 ====== h_composer_ins =====
13476 <HTML>
13477 <HEAD>
13478 <TITLE>INSERT TEXT FILE</TITLE>
13479 </HEAD>
13480 <BODY>
13481 <H1>INSERT TEXT FILE</H1>
13483 Use this function to insert a text file. The file name
13484 given can be an absolute file path name for your system
13485 <!--chtml if pinemode="os_windows"-->
13486 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13487 with a relative pathname, or simply a file name without
13488 drive or directory specification.  
13489 <!--chtml else-->
13490 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13491 a file in your home directory, or a file path relative to your 
13492 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13493 your home directory or &quot;~user&quot; to refer to another
13494 account's home directory.
13495 <!--chtml endif-->
13497 No wild card characters may be used.  
13498 The file must reside on the system running Alpine.
13500 If the 
13501 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13502 feature is set, names are relative to your current working directory 
13503 <!--chtml if pinemode="running"-->
13504 (which, at least for your current Alpine &quot;session,&quot; 
13505 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13506 <!--chtml endif-->
13507 rather than your home directory
13508 <!--chtml if pinemode="running"-->
13509 (which, in the present configuration of your system, is
13510  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13511 <!--chtml endif-->
13513 <P><UL>
13514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13515 </UL>
13517 &lt;End of help on this topic&gt;
13518 </BODY>
13519 </HTML>
13520 ====== h_composer_ins_m =====
13521 <HTML>
13522 <HEAD>
13523 <TITLE>INSERT MESSAGE</TITLE>
13524 </HEAD>
13525 <BODY>
13526 <H1>INSERT MESSAGE</H1>
13528 Type in the number of a message in the currently open folder to insert it
13529 into your message.
13530 <P><UL>
13531 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13532 </UL>
13534 &lt;End of help on this topic&gt;
13535 </BODY>
13536 </HTML>
13537 ====== h_composer_search =====
13538 <HTML>
13539 <HEAD>
13540 <TITLE>Explanation of Composer Whereis Command </TITLE>
13541 </HEAD>
13542 <BODY>
13543 <H1>Help For Whereis Command</H1>
13545 Whereis is used to search the message for a word or part of a word.
13546 When searching in the composer, only the message part of your mail is
13547 searched, and the cursor is put on the first occurrence appearing
13548 after the location of the cursor.  The search will wrap to the
13549 beginning of the message when it no longer finds matches in the
13550 remainder of the message.
13552 To search for the same string a second time, press 
13553 <!--chtml if pinemode="function_key"-->
13554 &quot;F6&quot;
13555 <!--chtml else-->
13556 &quot;^W&quot;
13557 <!--chtml endif-->
13558 to begin search and then just press RETURN to accept the previous
13559 search string shown in square brackets rather than entering a new
13560 search string.<P>
13562 The &quot;Search&quot; prompt has several sub-command available:
13564 <DL>
13565 <DT>Get Help</DT>
13566 <DD> Takes you to this help page.
13568 <DT>Cancel</DT>
13569 <DD> Cancels the prompt.  No search takes place.
13571 <DT>First Line</DT>
13572 <DD> Takes you back to the composer with the cursor on the first character
13573 of the first line of text.
13575 <DT>Last Line</DT>
13576 <DD> Takes you back to the composer with the cursor on the last character
13577 of the last line of text.
13579 <DT>Replace (Optional)</DT>
13580 <DD> This sub-command is enabled by the 
13581 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13582 feature (which is on by default); see its help screen for details on how replacing works.
13584 </DL>
13586 &lt;End of help on this topic&gt;
13587 </BODY>
13588 </HTML>
13589 ====== h_sigedit_search =====
13590 <HTML>
13591 <HEAD>
13592 <TITLE>Explanation of Whereis Command </TITLE>
13593 </HEAD>
13594 <BODY>
13595 <H1>Help For Whereis Command</H1>
13597 Whereis is used to search for a word or part of a word.
13598 When searching the cursor is put on the first occurrence appearing
13599 after the location of the cursor.  The search will wrap to the
13600 beginning of the signature when it no longer finds matches in the
13601 remainder of the signature.
13603 To search for the same string a second time, press 
13604 <!--chtml if pinemode="function_key"-->
13605 &quot;F6&quot;
13606 <!--chtml else-->
13607 &quot;^W&quot;
13608 <!--chtml endif-->
13609 to begin search and then just press RETURN to accept the previous
13610 search string shown in square brackets rather than entering a new
13611 search string.<P>
13613 The &quot;Search&quot; prompt has several sub-command available:
13615 <DL>
13616 <DT>Get Help</DT>
13617 <DD> Takes you to this help page.
13619 <DT>Cancel</DT>
13620 <DD> Cancels the prompt.  No search takes place.
13622 <DT>First Line</DT>
13623 <DD> Takes you back to the composer with the cursor on the first character
13624 of the first line of text.
13626 <DT>Last Line</DT>
13627 <DD> Takes you back to the composer with the cursor on the last character
13628 of the last line of text.
13630 <DT>Replace (Optional)</DT>
13631 <DD> This sub-command is enabled by the 
13632 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13633 feature (which is on by default); see its help screen for details on how replacing works.
13635 </DL>
13637 &lt;End of help on this topic&gt;
13638 </BODY>
13639 </HTML>
13640 ======= h_composer_to ====
13641 <HTML>
13642 <HEAD>
13643 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13644 </HEAD>
13645 <BODY>
13646 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13648 <H2>The &quot;To:&quot; field</H2>
13649 The address you enter here must be a valid email address that is reachable
13650 from your site. 
13652 <H2>Email Address Format</H2>
13653 You may enter a full name and email address, 
13654 <!--chtml if pinemode="os_windows"-->
13655 <!--chtml else-->
13656 a local (meaning, on the same 
13657 host as the one you are running Alpine on) username that Alpine will
13658 complete for you, 
13659 <!--chtml endif-->
13660 the nickname of someone in a 
13661 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13662 mail alias defined by your system administrator.  When you move the cursor
13663 out of this field, the nicknames will be expanded to the addresses in your
13664 address book, and the local usernames will be expanded to include the 
13665 persons' actual names.  You may enter as many addresses as you wish, but they 
13666 must be separated by commas.  You can move around this and other header fields
13667 with the arrow keys and use many of the usual composer editing keys.
13669 <UL>
13670 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13671 </UL>
13674 <H2>MESSAGE HEADER COMMANDS</H2>
13675 <!--chtml if pinemode="function_key"-->
13676 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13677 ^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>
13678 ^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>
13679 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13680 ^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>
13681 ^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>
13682 ^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>
13683 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>
13684 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>
13685 ^@&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>
13686 ----------------------------------------|<BR>
13687 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13688 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>
13689 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>
13690 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>
13691 <!--chtml else-->
13692 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13693 ^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>
13694 ^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>
13695 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13696 ^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>
13697 ^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>
13698 ^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>
13699 ^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>
13700 ^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>
13701 ^@&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>
13702 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13703 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>
13704 ^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>
13705 ^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>
13706 ^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>
13707 <!--chtml endif-->
13710 NOTE:
13711 <OL>
13712  <LI>For help on a particular command, highlight the bold text associated
13713 with it above and hit Return.
13714  <LI> The availability of certain commands 
13715 is determined by Alpine configuration files and system capabilities.
13716 At some sites, certain commands may not be available due to security or
13717 support concerns.
13718 </OL>
13721 <UL>   
13722 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13723 </UL><P>
13724 &lt;End of help on this topic&gt;
13725 </BODY>
13726 </HTML>
13727 ======= h_composer_cc ====
13728 <HTML>
13729 <HEAD>
13730 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13731 </HEAD>
13732 <BODY>
13733 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13734 The Cc: field is just like the To: field, except it is used for addressees
13735 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13736 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13737 them to see the message.  The only difference the recipients see is that their 
13738 name is in the Cc: field, rather than the To: field.
13740 For help with Cc: field editing
13741 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13743 <UL>
13744 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13745 </UL>
13747 <UL>   
13748 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13749 </UL><P>
13750 &lt;End of help on this topic&gt;
13751 </BODY>
13752 </HTML>
13753 ======= h_composer_bcc ====
13754 <HTML>
13755 <HEAD>
13756 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
13757 </HEAD>
13758 <BODY>
13759 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
13760 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
13761 a copy of the message to one or more people whose addresses you do not
13762 wish disclosed, either to reduce clutter or for confidentiality.
13764 The format of the Bcc: field is just the same as the To: and Cc: fields in
13765 the way the addresses are entered.  The recipients listed here will
13766 receive a copy of the message, but --assuming your site's mail transport
13767 software is properly configured-- their addresses will not show up in the
13768 headers of the message, as delivered to all of the recipients.  The To:
13769 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
13771 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
13772 will automatically generate and place in the To: field a pseudo-address of 
13773   &quot;undisclosed-recipients: ;&quot;
13774 or whatever string has been specified in the 
13775 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13776 variable.
13778 The reason for this is to avoid embarrassment caused by some Internet
13779 mail transfer software that interprets a &quot;missing&quot; To: header as 
13780 an error and replaces it with an Apparently-to: header that may contain
13781 the addresses you entered on the Bcc: line.  In addition, it may be
13782 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
13784 You can manipulate what text ends up on the (originally) empty To:
13785 field.  Just remember to put a colon and semicolon at the end of the
13786 field, which is a special notation denoting that it is not a real address.
13788 For information on message header editing
13789 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13791 <UL>
13792 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13793 </UL>
13795 <UL>   
13796 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13797 </UL><P>
13798 &lt;End of help on this topic&gt;
13799 </BODY>
13800 </HTML>
13801 ======= h_composer_lcc ====
13802 <HTML>
13803 <HEAD>
13804 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
13805 </HEAD>
13806 <BODY>
13807 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
13808 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
13809 you wish to send a message to a list of people but avoid having all
13810 of their addresses visible, in order to reduce clutter when the
13811 message is received.
13813 It is similar to the 
13814 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
13815 in that individual
13816 addressees are hidden, but Lcc is designed to work specifically with
13817 distribution lists you have created in your 
13818 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
13819 the nickname of the list on the Lcc line will result in the full name of
13820 your Alpine Address Book list being placed on the To: line of the message,
13821 using a special notation that distinguishes it from a real address. You
13822 must leave the To: line blank for your list name to appear there.
13824 For example, if you have this list entered in your Address Book:<PRE>
13826         largo         Key Largo List       DISTRIBUTION LIST:
13827                                            bogie@mgm.com
13828                                            lauren@mgm.com
13829                                            walter@mgm.com</PRE>
13832 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
13833 the result is:<PRE>
13835         To      : Key Largo List: ;
13836         Cc      :
13837         Bcc     :
13838         Fcc     : sent-mail
13839         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
13840                   lauren@mgm.com,
13841                   walter@mgm.com
13842         Subject :</PRE>
13844 Each recipient listed on the Lcc: line receives a copy of the message
13845 without their address being visible (as though they were listed on the
13846 Bcc: line). The colon-semicolon notation used to put the full-name of the
13847 list on the To: line is a special address format that doesn't specify any
13848 actual addressees, but does give some information to the recipients of the
13849 message.
13851 Note: if after entering an LCC, you delete the list name that is placed
13852 on the To: line, then recipients will see <PRE>
13853        To: undisclosed-recipients: ;</PRE>
13855 (or whatever string is defined in the 
13856 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13857 variable) just as in the BCC case. 
13859 For help with Lcc: field editing
13860 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13862 <UL>
13863 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13864 </UL>
13866 <UL>   
13867 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13868 </UL><P>
13869 &lt;End of help on this topic&gt;
13870 </BODY>
13871 </HTML>
13872 ======= h_composer_from =======
13873 <HTML>
13874 <HEAD>
13875 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
13876 </HEAD>
13877 <BODY>
13878 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
13880 This header carries your return address.  It is the address toward which
13881 replies (and often, future unrelated correspondence) will be directed,
13882 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
13883 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
13884 sure this address is correct.
13886 For help with message header editing
13887 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13889 <UL>
13890 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13891 </UL>
13893 <UL>   
13894 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13895 </UL><P>
13896 &lt;End of help on this topic&gt;
13897 </BODY>
13898 </HTML>
13899 ======= h_composer_reply_to =======
13900 <HTML>
13901 <HEAD>
13902 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
13903 </HEAD>
13904 <BODY>
13905 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
13907 Most people should not need this header. The Reply-To: header is used in
13908 cases where you would like replies to your messages to be directed to an
13909 address other than your normal &quot;From:&quot; address.  This is atypical, 
13910 but can happen when you use multiple machines and do not have the same account
13911 name on each one, or when you wish to direct certain replies to accounts
13912 or folders designated for specific classes of correspondence.
13914 For help with message header editing
13915 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13917 <UL>
13918 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13919 </UL>
13922 <UL>   
13923 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13924 </UL><P>
13925 &lt;End of help on this topic&gt;
13926 </BODY>
13927 </HTML>
13928 ======= h_composer_custom_addr ====
13929 <HTML>
13930 <HEAD>
13931 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13932 </HEAD>
13933 <BODY>
13934 <H1>CUSTOMIZED HEADER FIELD</H1>
13935 This is a customized header, i.e. not one that is part of Alpine's normal
13936 set of Compose headers.
13938 For help with message header editing
13939 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13941 <UL>
13942 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13943 </UL>
13945 <UL>   
13946 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13947 </UL><P>
13948 &lt;End of help on this topic&gt;
13949 </BODY>
13950 </HTML>
13951 ======= h_composer_custom_free ====
13952 <HTML>
13953 <HEAD>
13954 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13955 </HEAD>
13956 <BODY>
13957 <H1>CUSTOMIZED HEADER FIELD</H1>
13958 This is a customized header, i.e. not one that is part of Alpine's normal
13959 set of Compose headers.
13961 This field consists of arbitrary text.
13963 For help with message header editing
13964 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13966 <UL>   
13967 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13968 </UL><P>
13969 &lt;End of help on this topic&gt;
13970 </BODY>
13971 </HTML>
13972 ====== h_composer_news =====
13973 <HTML>
13974 <HEAD>
13975 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
13976 </HEAD>
13977 <BODY>
13978 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
13979 Use the newsgroups line to specify any and all USENET newsgroups to which
13980 your message should be posted.  When composing a message from scratch, this
13981 line may be hidden.  If so, just press the rich headers command
13982 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
13983 to make it visible.
13985 <EM>Be aware</EM> that when you post to a newsgroup thousands of
13986 people will be reading your message.  Also, you or your system manager
13987 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
13988 in order for you to be able to post.
13990 For help with message header editing
13991 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13992 <P><UL>
13993 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13994 </UL>
13996 &lt;End of help on this topic&gt;
13997 </BODY>
13998 </HTML>
13999 ======= h_composer_fcc ====
14000 <HTML>
14001 <HEADER>
14002 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14003 </HEADER>
14004 <BODY>
14005 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14006 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14007 each outgoing message.  The default value can be configured with the
14008 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14009 the file carbon copy on any message you send by editing the FCC header.<p>
14011 You may type ^T to get a list of all your folders and select one to use as
14012 the FCC for this message.<P>
14014 For help with message header editing
14015 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14017 <UL>   
14018 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14019 </UL><P>
14020 &lt;End of help on this topic&gt;
14021 </BODY>
14022 </HTML>
14023 ======= h_composer_subject ====
14024 <HTML>
14025 <HEADER>
14026 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14027 </HEADER>
14028 <BODY>
14029 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14031 The subject header provides a place to enter a few words that summarize
14032 the topic of the message you are sending.  You may leave this line blank,
14033 but it is considered a courtesy to use a meaningful subject.<p>
14035 For help with message header editing
14036 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14038 <UL>   
14039 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14040 </UL><P>
14041 &lt;End of help on this topic&gt;
14042 </BODY>
14043 </HTML>
14044 ======= h_composer_attachment ====
14045 <HTML>
14046 <HEAD>
14047 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14048 </HEAD>
14049 <BODY>
14050 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14052 The &quot;Attchmnt:&quot; field is where you specify what file or
14053 files you'd like attached to
14054 the message you are composing.  Those files must reside on the machine
14055 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14056 account on a Unix machine, you'll have to transfer it before attaching it.
14057 Contact local computer support people for assistance with transferring.
14060 The file name
14061 given can be an absolute file path name for your system
14062 <!--chtml if pinemode="os_windows"-->
14063 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14064 with a relative pathname, or simply a file name without
14065 drive or directory specification.  
14066 <!--chtml else-->
14067 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14068 a file in your home directory, or a file path relative to your 
14069 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14070 your home directory or &quot;~user&quot; to refer to another
14071 account's home directory.
14072 <!--chtml endif--><P>
14073 No wild card characters may be used.
14074 <P>If the 
14075 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14076 feature is set, names are relative to your current working directory 
14077 <!--chtml if pinemode="running"-->
14078 (which, at least for your current Alpine &quot;session,&quot; 
14079 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14080 <!--chtml endif-->
14081 rather than your home directory
14082 <!--chtml if pinemode="running"-->
14083 (which, in the present configuration of your system, is
14084  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14085 <!--chtml endif-->
14088 Alpine uses MIME encoding for attachments, so binaries and files of any
14089 length can safely be delivered to any MIME-capable mail reading program.
14090 If you send an attachment to someone who does not have a MIME-capable mail
14091 reading program yet, then the main message text will be readable, but
14092 attachments (even attachments that are just plain text) are not.
14095 Typing the filename on the Attchmnt: line achieves the same
14096 result as using the 
14097 <!--chtml if pinemode="function_key"-->
14099 <!--chtml else-->
14100 Ctrl-J
14101 <!--chtml endif--> command.
14104 If you Forward a message with attachments, you may delete them from your
14105 Forwarded message by editing the Attchmnt header line.
14108 For help with message header editing
14109 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14111 <UL>   
14112 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14113 </UL><P>
14114 &lt;End of help on this topic&gt;
14115 </BODY>
14116 </HTML>
14117 ======= h_composer_ctrl_j ====
14118 <HTML>
14119 <HEAD>
14120 <TITLE>COMPOSER ATTACH</TITLE>
14121 </HEAD>
14122 <BODY>
14123 After the
14124 <!--chtml if pinemode="function_key"-->
14126 <!--chtml else-->
14127 Ctrl-J
14128 <!--chtml endif--> command:
14129 At the &quot;File to attach:&quot; prompt, enter the name of the 
14130 existing file to attach to your message.  
14131 When the feature
14132 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14133 is set
14134 you need only enter the beginning of the filename (enough of it to uniquely 
14135 identify the file) and press TAB to complete it.
14137 Or, press ^T to use the BROWSER screen for 
14138 selecting the file.  <P>
14139 For more information on attaching files, see the help screen for the 
14140 composer's 
14141 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14142 but can be revealed using the 
14143 <!--chtml if pinemode="function_key"-->
14145 <!--chtml else-->
14146 Ctrl-R
14147 <!--chtml endif--> 
14148 command with the cursor positioned above the
14149 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14151 &lt;End of help on this topic&gt;
14152 </BODY>
14153 </HTML>
14154 ======= h_edit_nav_cmds =========
14155 <HTML>
14156 <HEAD>
14157 <TITLE>Composer Editing Commands Explained</TITLE>
14158 </HEAD>
14159 <BODY>
14160 <H1>EDITING and NAVIGATION COMMANDS</H1>
14161 <!--chtml if pinemode="function_key"-->
14162 <PRE>
14163 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14164 ^B (Left Arrow)    Back character       | ^D       Delete current character
14165 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14166 ^P (Up Arrow)      Previous line        |
14167 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14168 ^A                 Beginning of line    |            delete current line
14169 ^E                 End of line          | F10      Undelete line(s)
14170 F7                 Previous page        |
14171 F8                 Next page            |-------------------------------------
14172 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14173 ----------------------------------------|
14174 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14175 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14176 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14177 </PRE>
14178 <!--chtml else-->
14179 <PRE>
14180 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14181 ^B (Left Arrow)    Back character       | ^D       Delete current character
14182 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14183 ^P (Up Arrow)      Previous line        |
14184 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14185 ^A                 Beginning of line    |            delete current line
14186 ^E                 End of line          | ^U       Undelete line(s)
14187 ^Y                 Previous page        |
14188 ^V                 Next page            |-------------------------------------
14189 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14190 ----------------------------------------|
14191 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14192 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14193 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14194 </PRE>
14195 <!--chtml endif-->
14196 &lt;End of help on this topic&gt;
14197 </BODY>
14198 </HTML>
14199 ===== h_composer_sigedit =====
14200 <HTML>
14201 <HEAD>
14202 <TITLE>Signature Editor Commands Explained</TITLE>
14203 </HEAD>
14204 <BODY>
14205 <H1>SIGNATURE EDITOR COMMANDS</H1>
14206 <!--chtml if pinemode="function_key"-->
14207 <PRE>
14208 CURSOR MOTION KEYS                     |EDITING KEYS
14209   ^B (Left Arrow)   Back character     | ^D       Delete current character
14210   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14211   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14212   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14213   ^A                Beginning of line  |           delete current line
14214   ^E                End of line        | F10       Paste text, undelete lines
14215   F7                Previous page      |           cut with ^K, or unjustify
14216   F8                Next page          |-------------------------------------
14217   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14218 ---------------------------------------| F6       Whereis (search for string)
14219 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14220  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14221                  |  ^Z    Suspend      | ^L       Redraw Screen
14222  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14223 </PRE>
14224 <!--chtml else-->
14225 <PRE>
14226 CURSOR MOTION KEYS                     |EDITING KEYS
14227   ^B (Left Arrow)   Back character     | ^D       Delete current character
14228   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14229   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14230   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14231   ^A                Beginning of line  |           delete current line
14232   ^E                End of line        | ^U        Paste text, undelete lines
14233   ^Y                Previous page      |           cut with ^K, or unjustify
14234   ^V                Next page          |-------------------------------------
14235   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14236 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14237 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14238  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14239                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14240  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14241 </PRE>
14242 <!--chtml endif-->
14244 NOTE: The presence or absence of the following commands is determined
14245 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14246 some of these commands may be administratively disabled by your system
14247 manager; if they don't work, please check with your local help desk
14248 before reporting a bug.
14250 <UL>
14251  <LI>Suspend (suspends Alpine and gives a system prompt)
14252  <LI>Alternate editor (allows you to compose with your own editor)
14253 </UL>
14256 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14257 Ctrl-&#92;, ESC
14260 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14261 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14263 &lt;End of help on this topic&gt;
14264 </BODY>
14265 </HTML>
14266 ===== h_composer_commentedit =====
14267 <HTML>
14268 <HEAD>
14269 <TITLE>Comment Editor Commands Explained</TITLE>
14270 </HEAD>
14271 <BODY>
14272 <H1>COMMENT EDITOR COMMANDS</H1>
14273 <!--chtml if pinemode="function_key"-->
14274 <PRE>
14275 CURSOR MOTION KEYS                     |EDITING KEYS
14276   ^B (Left Arrow)   Back character     | ^D       Delete current character
14277   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14278   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14279   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14280   ^A                Beginning of line  |           delete current line
14281   ^E                End of line        | F10       Paste text, undelete lines
14282   F7                Previous page      |           cut with ^K, or unjustify
14283   F8                Next page          |-------------------------------------
14284   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14285 ---------------------------------------| F6       Whereis (search for string)
14286 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14287  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14288                  |  ^Z    Suspend      | ^L       Redraw Screen
14289  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14290 </PRE>
14291 <!--chtml else-->
14292 <PRE>
14293 CURSOR MOTION KEYS                     |EDITING KEYS
14294   ^B (Left Arrow)   Back character     | ^D       Delete current character
14295   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14296   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14297   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14298   ^A                Beginning of line  |           delete current line
14299   ^E                End of line        | ^U        Paste text, undelete lines
14300   ^Y                Previous page      |           cut with ^K, or unjustify
14301   ^V                Next page          |-------------------------------------
14302   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14303 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14304 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14305  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14306                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14307  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14308 </PRE>
14309 <!--chtml endif-->
14311 NOTE: The presence or absence of the following commands is determined
14312 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14313 some of these commands may be administratively disabled by your system
14314 manager; if they don't work, please check with your local help desk
14315 before reporting a bug.
14317 <UL>
14318  <LI>Suspend (suspends Alpine and gives a system prompt)
14319  <LI>Alternate editor (allows you to compose with your own editor)
14320 </UL>
14323 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14324 Ctrl-&#92;, ESC
14327 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14328 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14330 &lt;End of help on this topic&gt;
14331 </BODY>
14332 </HTML>
14333 ======= h_composer_abook_nick =======
14334 <HTML>
14335 <HEAD>
14336 <TITLE>Addressbook Nickname Explained</TITLE>
14337 </HEAD>
14338 <BODY>
14339 This is a short nickname for this address book entry.  If it is used in
14340 place of an address from the composer, the composer will fill in the
14341 address(es) for the entry that matches the nickname. 
14344 Look <A HREF="h_edit_nav_cmds">here</A>
14345 to see the available Editing and Navigation commands.
14347 &lt;End of help on this topic&gt;
14348 </BODY>
14349 </HTML>
14350 ======= h_composer_abook_full =======
14351 <HTML>
14352 <HEAD>
14353 <TITLE>Addressbook Fullname Explained</TITLE>
14354 </HEAD>
14355 <BODY>
14356 This is the full name field for this entry.  If this is going to be a
14357 distribution list (more than one address), it should be a descriptive
14358 phrase describing the list.  It will be included in the mail header if you
14359 put the list in the To: or CC: field, or in the To: line if you put the
14360 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14361 leave any of the other fields blank, too). If this address book entry is
14362 going to be a simple entry with just one address, then this field is the
14363 person's name. When you send mail to this entry, this is the field to the
14364 left of the brackets. That is, it is the most readable part of the 
14365 address. For example, in the sample address:
14366 <PRE>
14367        John Doe &lt;jdoe@some.domain&gt;
14368 </PRE>
14369 "John Doe" is the full name field. If you are sorting your address book
14370 with one of the options that uses full names, then it might be useful to
14371 enter the full name as "Last, First", for example:
14372 <PRE>
14373        Doe, John
14374 </PRE>
14375 so that it will be sorted using Doe instead of John. This will be changed
14376 back into John Doe when you use it.
14378 Look <A HREF="h_edit_nav_cmds">here</A>
14379 to see the available Editing and Navigation commands.
14381 &lt;End of help on this topic&gt;
14382 </BODY>
14383 </HTML>
14384 ======= h_composer_abook_fcc =======
14385 <HTML>
14386 <HEAD>
14387 <TITLE>Addressbook Fcc Explained</TITLE>
14388 </HEAD>
14389 <BODY>
14390 If this entry is the first one in the To: line of an outgoing message,
14391 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14392 you would normally get (which depends on which
14393 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14394 you've chosen). 
14396 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14397 that you don't want any Fcc associated with this entry.
14399 Look <A HREF="h_edit_nav_cmds">here</A>
14400 to see the available Editing and Navigation commands.
14402 &lt;End of help on this topic&gt;
14403 </BODY>
14404 </HTML>
14405 ====== h_config_combined_abook_display =====
14406 <HTML>
14407 <HEAD>
14408 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14409 </HEAD>
14410 <BODY>
14411 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14413 This feature affects the address book display screens.
14414 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14415 will cause the remaining address books and directory servers to disappear
14416 from the screen, leaving only the entries of the expanded address book.
14417 If this feature is set, then the other address books will remain on the screen,
14418 so that all of the address books can be present at once.
14421 The way that commands work won't be changed.
14422 For example, the Select All command will select all of the entries in the
14423 current address book, not all of the entries in all of the address books.
14424 The WhereIs command will change a little.
14425 It will search through all of the text on the screen plus all of the entries
14426 from expanded address books.
14429 When this feature is set, the setting of the feature
14430 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14431 has an effect.
14433 &lt;End of help on this topic&gt;
14434 </BODY>
14435 </HTML>
14436 ====== h_config_titlebar_color_style =====
14437 <HTML>
14438 <HEAD>
14439 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14440 </HEAD>
14441 <BODY>
14442 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14444 This option affects the colors used to display the titlebar (the top
14445 line on the screen) when viewing a message.
14448 The available options include:
14451 <DL>
14452 <DT>default</DT>
14453 <DD>The color of the titlebar will be the color you set for the
14454 <A HREF="h_config_title_color">Title Color</A>.
14455 The Title Color may be set by using the
14456 <A HREF="h_color_setup">Setup Kolor</A> screen.
14457 </DD>
14459 <DT>indexline</DT>
14460 <DD>The color of the titlebar will be the same as the color of the
14461 index line corresponding to the message being viewed.
14462 The rules that determine what color the index line will be may be set
14463 up by going to the Setup/Rules/Indexcolor screen.
14464 If the index line for a message is not colored explicitly by the
14465 Indexcolor rules, then the titlebar will be colored the same as for
14466 the &quot;default&quot; option above (which is not the same color that
14467 the index line itself will have).
14468 </DD>
14470 <DT>reverse-indexline</DT>
14471 <DD>This is similar to the &quot;indexline&quot; option except the
14472 foreground and background colors from the corresponding index line will
14473 be reversed.
14474 For example, if the index line color is red letters on a white background,
14475 then the titlebar will be white letters on a red background.
14476 If the index line for a message is not colored explicitly by the
14477 Indexcolor rules, then the titlebar will be colored the same as for
14478 the &quot;default&quot; option above (which is not the same color that
14479 the index line itself will have).
14480 </DD>
14481 </DL>
14485 <UL>   
14486 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14487 </UL><P>
14488 &lt;End of help on this topic&gt;
14489 </BODY>
14490 </HTML>
14491 ====== h_config_index_color_style =====
14492 <HTML>
14493 <HEAD>
14494 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14495 </HEAD>
14496 <BODY>
14497 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14499 This option affects the colors used to display the current line in the
14500 MESSAGE INDEX screen.
14501 If you do not have Index Color Rules defined, then this option will
14502 have no effect in the index.
14503 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14505 If the option
14506 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14507 is turned on and the
14508 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14509 is set to something other than the default, then
14510 this option also affects the color used to display the current folder
14511 in the Incoming FOLDER LIST screen.
14514 The available options include:
14517 <DL>
14518 <DT>flip-colors</DT>
14519 <DD>This is the default.
14520 If an index line is colored because it matches one of your
14521 Index Color Rules, then its colors will be reversed when it is the currently
14522 highlighted line.
14523 For example, if the line is normally red text on a blue background, then
14524 when it is the current line it will be drawn as blue text on a red background.
14526 The rest of the option values all revert to this flip-colors behavior if
14527 there is no Reverse Color defined.
14528 </DD>
14530 <DT>reverse</DT>
14531 <DD>With this option the Reverse color is always used to highlight the
14532 current line.
14533 </DD>
14535 <DT>reverse-fg</DT>
14536 <DD>The foreground part of the Reverse Color is used to highlight
14537 the current line.
14538 If this would cause the text to be unreadable (because the foreground and
14539 background colors are the same) or if it would cause no change in the
14540 color of the index line, then the colors are flipped instead.
14542 Some people think this works particularly well if you use different
14543 background colors to emphasize &quot;interesting&quot; lines,
14544 but always with the same Normal foreground color,
14545 and you use a different foreground color for the Reverse Color.
14546 </DD>
14548 <DT>reverse-fg-no-ambiguity</DT>
14549 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14550 the resulting color will be exactly the same as the regular Reverse
14551 Color.
14552 That can lead to some possible confusion because an
14553 &quot;interesting&quot;
14554 line that is the current line will be displayed exactly the same as a
14555 non-interesting line that is current.
14556 You can't tell whether the line is just a regular current line or if it is
14557 an &quot;interesting&quot; current line by looking at the color.
14558 Setting the option to this value removes that ambiguity.
14559 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14560 interesting current line would look just like a non-interesting current line.
14561 In that case, the interesting line's colors are simply flipped (like in the
14562 default behavior).
14564 As an alternative way to preserve the line's interestingness in this case,
14565 you may find that using both a different foreground and a different
14566 background color for the interesting line will help.
14567 </DD>
14569 <DT>reverse-bg</DT>
14570 <DD>The background part of the Reverse Color is used to highlight
14571 the current line.
14572 If this would cause the text to be unreadable (because the foreground and
14573 background colors are the same) or if it would cause no change in the
14574 color of the index line, then the colors are flipped instead.
14576 Some people think this works particularly well if you use different
14577 foreground colors to emphasize &quot;interesting&quot; lines,
14578 but always with the same Normal background color,
14579 and you use a different background color for the Reverse Color.
14580 </DD>
14582 <DT>reverse-bg-no-ambiguity</DT>
14583 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14584 rule may also result in a color that is exactly the same as the regular
14585 Reverse Color.
14586 Setting the option to this value removes that ambiguity.
14587 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14588 current line has the same color as the Reverse Color.
14589 In that case, the interesting line's colors are simply flipped (like in the
14590 default behavior).
14591 </DD>
14592 </DL>
14596 <UL>   
14597 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14598 </UL><P>
14599 &lt;End of help on this topic&gt;
14600 </BODY>
14601 </HTML>
14602 ====== h_config_expanded_addrbooks =====
14603 <HTML>
14604 <HEAD>
14605 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14606 </HEAD>
14607 <BODY>
14608 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14610 If multiple address books (either personal or global) are defined, and you
14611 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14612 screen, then set this feature. This feature will have no effect unless the
14613 feature
14614 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14615 is also set.
14617 &lt;End of help on this topic&gt;
14618 </BODY>
14619 </HTML>
14620 ====== h_config_combined_folder_display =====
14621 <HTML>
14622 <HEAD>
14623 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14624 </HEAD>
14625 <BODY>
14626 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14628 This feature affects the folder list display screens.
14629 Normally, each folder list is viewed within its collection only.  This
14630 command allows folder lists to be viewed within a single screen that
14631 combines the contents of all collections.
14634 The way that commands work won't be changed.
14635 For example, the Select All command will select all of the folders in the
14636 current collection, not all of the entries in all of the collections.
14637 The WhereIs command will change a little.
14638 It will search through all of the folders in the current collection as well
14639 as all the folder in any other expanded collection.
14642 When this feature is set, the setting of the feature
14643 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14644 has an effect.
14646 &lt;End of help on this topic&gt;
14647 </BODY>
14648 </HTML>
14649 ====== h_config_combined_subdir_display =====
14650 <HTML>
14651 <HEAD>
14652 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14653 </HEAD>
14654 <BODY>
14655 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14657 This feature affects the Folder List screen when
14659 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14660 feature is enabled.  Normally, selecting a directory from the Folder
14661 List takes you into a new screen displaying only the contents of
14662 that directory.
14665 Enabling this feature will cause the contents of the selected
14666 directory to be
14667 displayed within the boundaries of the &quot;Collection&quot; it
14668 is a part of.  All previously displayed collections will remain
14669 in the screen.
14672 The way that commands work won't be changed.
14673 For example, the Select All command will select all of the folders in the
14674 directory, as opposed to all of the entries in all of the collections.
14675 The WhereIs command will change a little.
14676 It will search through all of the folders in the current collection as well
14677 as all the folder in any other expanded collection.
14680 &lt;End of help on this topic&gt;
14681 </BODY>
14682 </HTML>
14683 ====== h_config_separate_fold_dir_view =====
14684 <HTML>
14685 <HEAD>
14686 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14687 </HEAD>
14688 <BODY>
14689 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14691 This feature affects folder collections wherein a folder
14692 and directory can have the same name.  By default, Alpine displays them
14693 only once, denoting that it is both a folder and directory by appending
14694 the folder name with the hierarchy character enclosed
14695 in square brackets.
14699 Enabling this feature will cause Alpine to display such names
14700 separately marking the name representing a directory with a trailing
14701 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14704 The feature also alters the command set slightly.  By default, the
14705 right-arrow descends into the directory, while hitting the Return key will
14706 cause the folder by that name to be opened.
14709 With this feature set, the Return key will open the highlighted folder, or
14710 enter the highlighted directory.
14713 &lt;End of help on this topic&gt;
14714 </BODY>
14715 </HTML>
14716 ====== h_config_expanded_folders =====
14717 <HTML>
14718 <HEAD>
14719 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14720 </HEAD>
14721 <BODY>
14722 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14724 If multiple folder collections are defined, and you
14725 wish to have them all expanded implicitly upon entering the FOLDER LIST
14726 screen, then set this feature. This feature will have no effect unless the
14727 feature
14728 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14729 is also set.
14731 &lt;End of help on this topic&gt;
14732 </BODY>
14733 </HTML>
14734 ======= h_config_ldap_server =======
14735 <HTML>
14736 <HEAD>
14737 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14738 </HEAD>
14739 <BODY>
14740 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14741 This is the name of the host where an LDAP server is running.
14742 For redundancy, this may be a space-delimited set of server names, in which
14743 case the first server that answers is used.
14744 Each of the server names may be optionally followed by
14745 a colon and a port number.
14746 If this form is used then the port number configured below in the
14747 <EM>port</EM> field is not used.
14749 To find out whether your organization has its own LDAP server, 
14750 contact its computing support staff.
14751 <P><UL>
14752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14753 </UL>
14755 &lt;End of help on this topic&gt;
14756 </BODY>
14757 </HTML>
14758 ======= h_config_ldap_base =======
14759 <HTML>
14760 <HEAD>
14761 <TITLE>LDAP OPTION: Search-Base</TITLE>
14762 </HEAD>
14763 <BODY>
14764 <H1>LDAP OPTION: Search-Base</H1>
14766 This is the search base to be used on this server.  It functions as a filter 
14767 by restricting your searches in the LDAP server database
14768 to the specified contents of the specified fields.  Without it, searches 
14769 submitted to this directory server may fail.  It might be something
14770 like:
14772 <PRE>
14773       O = &lt;Your Organization Name&gt;, C = US
14774 </PRE>
14775 or it might be blank.  
14776 (Some LDAP servers actually ignore anything specified here.)
14778 If in doubt what parameters you should specify here, 
14779 contact the maintainers of the LDAP server.
14780 <P><UL>
14781 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14782 </UL>
14784 &lt;End of help on this topic&gt;
14785 </BODY>
14786 </HTML>
14787 ======= h_config_ldap_port =======
14788 <HTML>
14789 <HEAD>
14790 <TITLE>LDAP OPTION: Port</TITLE>
14791 </HEAD>
14792 <BODY>
14793 <H1>LDAP OPTION: Port</H1>
14795 This is the TCP port number to be used with this LDAP server. If you leave
14796 this blank port 389 will be used.
14798 &lt;End of help on this topic&gt;
14799 </BODY>
14800 </HTML>
14801 ======= h_config_ldap_nick =======
14802 <HTML>
14803 <HEAD>
14804 <TITLE>LDAP OPTION: Nickname</TITLE>
14805 </HEAD>
14806 <BODY>
14807 <H1>LDAP OPTION: Nickname</H1>
14809 This is a nickname to be used in displays. If you don't supply a
14810 nickname the server name
14811 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
14812 will be used instead.  This option is strictly for your convenience.
14814 &lt;End of help on this topic&gt;
14815 </BODY>
14816 </HTML>
14817 ======= h_config_ldap_binddn =======
14818 <HTML>
14819 <HEAD>
14820 <TITLE>LDAP OPTION: Bind-DN</TITLE>
14821 </HEAD>
14822 <BODY>
14823 <H1>LDAP OPTION: Bind-DN</H1>
14825 You may need to authenticate to the LDAP server before you are able to use it.
14826 This is the Distinguished Name to bind to when authenticating to this server.
14827 Try leaving this blank until you know you need it.
14829 Alpine only knows about LDAP Simple authentication.
14830 It does not attempt LDAP SASL authentication.
14831 The DN and password will be sent in the clear unless TLS encryption is
14832 being used on this connection.
14833 Because of this, you may want to set the LDAP feature
14834 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
14835 or the feature
14836 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14837 if you are going to be providing a password.
14838 <P><UL>
14839 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14840 </UL>
14842 &lt;End of help on this topic&gt;
14843 </BODY>
14844 </HTML>
14845 ======= h_config_ldap_opts_impl =======
14846 <HTML>
14847 <HEAD>
14848 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
14849 </HEAD>
14850 <BODY>
14851 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
14853 Set this to have lookups done to this server implicitly from the composer.
14854 If an address doesn't look like a fully-qualified address, it will be looked
14855 up in your address books, and if it doesn't match a nickname there, then it
14856 will be looked up on the LDAP servers that have this feature set.
14857 The lookups will also be done when using the address completion feature
14858 (TAB command) in the composer if any of the serves have this feature set.
14859 Also see the LDAP feature
14860 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
14861 and the Setup/Config feature
14862 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14864 &lt;End of help on this topic&gt;
14865 </BODY>
14866 </HTML>
14867 ======= h_config_ldap_opts_tls =======
14868 <HTML>
14869 <HEAD>
14870 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
14871 </HEAD>
14872 <BODY>
14873 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
14875 When connecting to this server Alpine will attempt to use TLS encryption
14876 on the connection.
14877 Also see the closely related feature
14878 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14880 &lt;End of help on this topic&gt;
14881 </BODY>
14882 </HTML>
14883 ======= h_config_ldap_opts_tlsmust =======
14884 <HTML>
14885 <HEAD>
14886 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
14887 </HEAD>
14888 <BODY>
14889 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
14891 When connecting to this server Alpine will attempt to use TLS encryption
14892 on the connection.
14893 If the StartTLS operation fails then the connection will not be used.
14895 &lt;End of help on this topic&gt;
14896 </BODY>
14897 </HTML>
14898 ====== h_config_ldap_opts_rhs =====
14899 <HTML>
14900 <HEAD>
14901 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
14902 </HEAD>
14903 <BODY>
14904 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
14906 Normally implicit LDAP lookups from the composer are done only for the
14907 strings you type in from the composer screen. In other words, you type in
14908 something in the To or CC field and press return, then the string is looked up.
14909 First that string is looked up in your address books. If a match is found
14910 there, then the results of that match are looked up again. If you place
14911 a string in your address book that you want to have looked up on the LDAP
14912 directory server, you need to turn on this feature. If you set this feature
14913 for a server, you almost always will also want to set the
14914 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
14915 feature. An example might serve to best illustrate this feature.
14917 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
14918 entry with an
14919 address of pres@whitehouse.gov, then you might put an entry in your address
14920 book that looks like:
14922 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
14923 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
14925 Now, when you type &quot;bill&quot; into an
14926 address field in the composer Alpine will
14927 find the &quot;bill&quot; entry in your address book.
14928 It will replace &quot;bill&quot; with
14929 &quot;William Clinton&quot;.
14930 It will then search for an entry with that nickname
14931 in your address book and not find one. If this feature
14932 is set, Alpine will then attempt to lookup
14933 &quot;William Clinton&quot; on the LDAP server and find the entry with address
14934 pres@whitehouse.gov.
14936 A better way to accomplish the same thing is probably to use the feature
14937 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
14939 &lt;End of help on this topic&gt;
14940 </BODY>
14941 </HTML>
14942 ====== h_config_ldap_opts_ref =====
14943 <HTML>
14944 <HEAD>
14945 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
14946 </HEAD>
14947 <BODY>
14948 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
14950 Normally when you save the results of an LDAP directory lookup to your
14951 address book the results of the lookup are saved. If this feature is set
14952 and the entry being saved was found on this directory server, then the
14953 search criteria is saved instead of the results of the search. When this
14954 address book entry is used in the future, instead of copying the results
14955 from the address book the directory lookup will be done again. This could
14956 be useful if the copied result might become stale because the data on
14957 the directory server changes (for example, the entry's email address changes).
14958 You probably don't want to set this feature if the server is at all slow or
14959 unreliable.
14961 The way this actually works is that instead of saving the email address
14962 in your address book, Alpine saves enough information to look up the same
14963 directory entry again. In particular, it saves the server name and the
14964 distinguished name of the entry. It's possible that the server administrators
14965 might change the format of distinguished names on the server, or that the
14966 entry might be removed from the server. If Alpine notices this, you will be warned
14967 and a backup copy of the email address will be used. You may want to create
14968 a new entry in this case, since you will get the annoying warning every
14969 time you use the old entry. You may do that by Saving the entry to a new
14970 nickname in the same address book. You will be asked whether or not you
14971 want to use the backup email address.
14973 A related feature in the Setup/Config screen is
14974 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14976 &lt;End of help on this topic&gt;
14977 </BODY>
14978 </HTML>
14979 ======= h_config_ldap_opts_nosub =======
14980 <HTML>
14981 <HEAD>
14982 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
14983 </HEAD>
14984 <BODY>
14985 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
14987 Spaces in your input are normally handled specially.
14988 Each space character is replaced
14991 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
14993 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
14994 The reason this is done is so the input string
14996 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
14998 (which is converted to &quot;Greg* Donald&quot;) will match
14999 the names &quot;Greg Donald&quot;,
15000 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15001 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15002 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15003 then it would also match the name &quot;Greg Donaldson&quot;.
15005 Turning on this feature will disable this substitution.
15007 &lt;End of help on this topic&gt;
15008 </BODY>
15009 </HTML>
15010 ====== h_config_ldap_searchtypes =======
15011 <HTML>
15012 <HEAD>
15013 <TITLE>LDAP OPTION: Search-Type</TITLE>
15014 </HEAD>
15015 <BODY>
15016 <H1>LDAP OPTION: Search-Type</H1>
15018 This affects the way that LDAP searches are done.
15019 In particular, this tells the server where to look for the string to be matched.
15020 If set to &quot;name&quot; then the string that is being searched for will
15021 be compared with the string in the
15022 &quot;Name&quot; field on the server
15023 (technically, it is the &quot;commonname&quot; field on the server).
15024 &quot;Surname&quot; means we're looking for a
15025 match in the &quot;Surname&quot; field on the
15026 server (actually the &quot;sn&quot; field).
15027 &quot;Givenname&quot; really is &quot;givenname&quot;
15028 and &quot;email&quot; is the electronic mail address (this is actually the field
15029 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15030 The other three types are combinations of
15031 the types listed so far. &quot;Name-or-email&quot;
15032 means the string should appear
15033 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15034 Likewise, &quot;surname-or-givenname&quot;
15035 means &quot;surname&quot; OR &quot;givenname&quot;
15036 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15038 This search TYPE is combined with the
15039 search <A HREF="h_config_ldap_searchrules">RULE</A>
15040 to form the actual search query.
15042 The usual default value for this
15043 option is &quot;sur-or-given-or-name-or-email&quot;.
15044 This type of search may be slow on some servers.
15045 Try &quot;name-or-email&quot;, which is often
15046 faster, or just &quot;name&quot; if the performance seems to be a problem.
15048 Some servers have been configured with different attribute names for
15049 these four fields.
15050 In other words, instead of using the attribute name &quot;mail&quot;
15051 for the email address field, the server might be configured to use something
15052 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15053 Alpine can be configured to use these different attribute names by using
15054 the four configuration options:
15055 <P><UL>
15056 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15057 </UL>
15058 <P><UL>
15059 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15060 </UL>
15061 <P><UL>
15062 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15063 </UL>
15064 <P><UL>
15065 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15066 </UL>
15068 &lt;End of help on this topic&gt;
15069 </BODY>
15070 </HTML>
15071 ====== h_config_ldap_searchrules =======
15072 <HTML>
15073 <HEAD>
15074 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15075 </HEAD>
15076 <BODY>
15077 <H1>LDAP OPTION: Search-Rule</H1>
15079 This affects the way that LDAP searches are done.
15080 If set to &quot;equals&quot; then
15081 only exact matches count.
15082 &quot;Contains&quot; means that the string you type in
15083 is a substring of what you are matching against.
15084 &quot;Begins-with&quot; and &quot;ends-with&quot;
15085 mean that the string starts or ends with the string you type in.
15087 Spaces in your input are normally handled specially, but you can turn that
15088 special handling off with the
15089 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15090 feature.
15092 The usual default value for this option is &quot;begins-with&quot;.
15094 &lt;End of help on this topic&gt;
15095 </BODY>
15096 </HTML>
15097 ======= h_config_ldap_email_attr =======
15098 <HTML>
15099 <HEAD>
15100 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15101 </HEAD>
15102 <BODY>
15103 <H1>LDAP OPTION: EmailAttribute</H1>
15105 This is the name of the attribute that is searched for when looking for
15106 an email address. The default value for this option is &quot;mail&quot; or
15107 &quot;electronicmail&quot;.
15108 If the server you are using uses a different attribute name for the email
15109 address, put that attribute name here.
15111 This will affect the search filter used if your Search-Type is one that
15112 contains a search for &quot;email&quot;.
15113 It will also cause the attribute value matching this attribute name to be used
15114 as the email address when you look up an entry from the composer.
15116 &lt;End of help on this topic&gt;
15117 </BODY>
15118 </HTML>
15119 ======= h_config_ldap_sn_attr =======
15120 <HTML>
15121 <HEAD>
15122 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15123 </HEAD>
15124 <BODY>
15125 <H1>LDAP OPTION: SurnameAttribute</H1>
15127 This is the name of the attribute that is searched for when looking for
15128 the surname of the entry. The default value for this option is &quot;sn&quot;.
15129 If the server you are using uses a different attribute name for the surname,
15130 put that attribute name here.
15131 This will affect the search filter used if your Search-Type is one that
15132 contains a search for &quot;surname&quot;.
15134 &lt;End of help on this topic&gt;
15135 </BODY>
15136 </HTML>
15137 ======= h_config_ldap_gn_attr =======
15138 <HTML>
15139 <HEAD>
15140 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15141 </HEAD>
15142 <BODY>
15143 <H1>LDAP OPTION: GivennameAttribute</H1>
15145 This is the name of the attribute that is searched for when looking for
15146 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15147 If the server you are using uses a different attribute name for the given name,
15148 put that attribute name here.
15149 This will affect the search filter used if your Search-Type is one that
15150 contains a search for &quot;givenname&quot;.
15152 &lt;End of help on this topic&gt;
15153 </BODY>
15154 </HTML>
15155 ======= h_config_ldap_cn_attr =======
15156 <HTML>
15157 <HEAD>
15158 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15159 </HEAD>
15160 <BODY>
15161 <H1>LDAP OPTION: NameAttribute</H1>
15163 This is the name of the attribute that is searched for when looking for
15164 the name of the entry. The default value for this option is &quot;cn&quot;, which
15165 stands for common name.
15166 If the server you are using uses a different attribute name for the name,
15167 put that attribute name here.
15168 This will affect the search filter used if your Search-Type is one that
15169 contains a search for &quot;name&quot;.
15171 &lt;End of help on this topic&gt;
15172 </BODY>
15173 </HTML>
15174 ======= h_config_ldap_time =======
15175 <HTML>
15176 <HEAD>
15177 <TITLE>LDAP OPTION: Timelimit</TITLE>
15178 </HEAD>
15179 <BODY>
15180 <H1>LDAP OPTION: Timelimit</H1>
15182 This places a limit on the number of seconds the LDAP search will continue.
15183 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15184 may place limits of their own on searches.
15186 &lt;End of help on this topic&gt;
15187 </BODY>
15188 </HTML>
15189 ======= h_config_ldap_size =======
15190 <HTML>
15191 <HEAD>
15192 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15193 </HEAD>
15194 <BODY>
15195 <H1>LDAP OPTION: Sizelimit</H1>
15197 This places a limit on the number of entries returned by the LDAP server.
15198 A value of 0 means no limit. The default is 0. Note that some servers
15199 may place limits of their own on searches.
15201 &lt;End of help on this topic&gt;
15202 </BODY>
15203 </HTML>
15204 ======= h_config_ldap_cust =======
15205 <HTML>
15206 <HEAD>
15207 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15208 </HEAD>
15209 <BODY>
15210 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15212 This one is for advanced users only! If you define this, then the
15213 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15214 However, the feature
15215 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15216 is still in effect.
15217 That is, the space substitution will take place even in a custom filter unless
15218 you disable it.
15220 If your LDAP service stops working and you suspect it might be because
15221 of your custom filter, just delete this filter and try using the
15222 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15223 Another option that sometimes causes trouble is the
15224 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15226 This variable may be set to the string representation of an LDAP search
15227 filter (see RFC1960). In the places where you want the address string to be
15228 substituted in, put a '%s' in this filter string. Here are some examples:
15230 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15231 is equivalent to the &quot;Custom-Search-Filter&quot;
15232 <PRE>
15233      (cn=%s*)
15234 </PRE>
15235 When you try to match against the string &quot;string&quot; the program replaces
15236 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15237 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15239 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15240 of &quot;contains&quot; is equivalent to
15241 <PRE>
15242      (|(cn=*%s*)(mail=*%s*))
15243 </PRE>
15245 If your server uses a different attribute <EM>name</EM> than
15246 Alpine uses by default,
15247 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15248 then you may be able to use one or more of the four attribute configuration
15249 options instead of defining a custom filter:
15250 <P><UL>
15251 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15252 </UL>
15253 <P><UL>
15254 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15255 </UL>
15256 <P><UL>
15257 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15258 </UL>
15259 <P><UL>
15260 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15261 </UL>
15263 &lt;End of help on this topic&gt;
15264 </BODY>
15265 </HTML>
15266 ======= h_composer_abook_comment =======
15267 <HTML>
15268 <HEAD>
15269 <TITLE>Addressbook Comment Explained</TITLE>
15270 </HEAD>
15271 <BODY>
15272 This is a comment to help you remember what this entry is. The WhereIs
15273 command searches comments so that it is easier to find an entry with a comment
15274 you know about attached to it. This field is not used in the outgoing message.
15276 Look <A HREF="h_edit_nav_cmds">here</A>
15277 to see the available Editing and Navigation commands.
15279 &lt;End of help on this topic&gt;
15280 </BODY>
15281 </HTML>
15282 ======= h_composer_abook_addrs =======
15283 <HTML>
15284 <HEAD>
15285 <TITLE>Addressbook Lists</TITLE>
15286 </HEAD>
15287 <BODY>
15288 <H1>Addressbook Lists</H1>
15290 This is a list of addresses to send to when sending to this address book
15291 entry.  Each member of the list may be an address or another nickname from
15292 any of your address books.  If it is an address, it is OK to include the
15293 full name field as well as the electronic address portion of that address.
15294 For example, the following are all legitimate entries in this field:
15296 <DL><DT>&nbsp;</DT>
15297 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15298 <DD>jdoe@some.domain
15299 <DD>John Doe &lt;jdoe@some.domain&gt;
15300 </DL>
15302 The addresses should be listed separated by commas, just like you would
15303 enter them from the composer.
15307 The only difference between a distribution list and a simple entry with a
15308 single address, is that a distribution list has more than one address   
15309 listed in the Addresses: field, whereas a simple personal entry has just  
15310 one address.
15314 For individual address book entries, if there is a full name in the
15315 Fullname: field (filling in the Fullname: field is not required), it is
15316 used.  If the full name is specified in the Address: field and not in the
15317 Fullname: field, then the full name from the Address: field is used.
15321 If you type the nickname of a distribution list from one of your address 
15322 books in the Lcc: field, then the full name of that list is used in the  
15323 To: field.  If you put a list in the To: or Cc: fields, that list will be
15324 expanded into all of its addresses.  If the list has a full name, then
15325 that will appear at the beginning of the addresses.
15327 <DL><DT>&nbsp;</DT>
15328 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15329 &lt;sal@here.there&gt;
15330 </DL>
15332 If the first address in the distribution list also has a full name, then
15333 the list full name and that full name are combined into something like the
15334 following:
15336 <DL><DT>&nbsp;</DT>
15337 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15338 </DL>
15341 If you specify a list via Lcc, the full name is used in the To: line.  If
15342 you specify a list in the To: or Cc: fields, then it uses the same method
15343 as for individual entries for filling in the full name.
15347 For help with editing and navigation commands, check the Help for the
15348 Nickname: field.
15351 &lt;End of help on this topic&gt;
15352 </BODY>
15353 </HTML>
15354 ======= h_config_role_nick =======
15355 <HTML>
15356 <HEAD>
15357 <TITLE>Nickname Explained</TITLE>
15358 </HEAD>
15359 <BODY>
15360 <H1>Nickname Explained</H1>
15362 This is a nickname to help you.
15363 You should have a different nickname for each role you define.
15364 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15365 pick a role to edit.
15366 It will also be used when you send a message to let you know you are
15367 sending with a different role than you use by default, and
15368 it will be useful for choosing a role when composing with the Role command
15369 or when composing with one of the Role Uses set to With Confirmation.
15370 This field is not used in the outgoing message.
15372 Look <A HREF="h_edit_nav_cmds">here</A>
15373 to see the available Editing and Navigation commands.
15375 &lt;End of help on this topic&gt;
15376 </BODY>
15377 </HTML>
15378 ======= h_config_role_comment =======
15379 <HTML>
15380 <HEAD>
15381 <TITLE>Comment Explained</TITLE>
15382 </HEAD>
15383 <BODY>
15384 <H1>Comment Explained</H1>
15386 This is a comment to help you.
15387 This comment does not play any functional role, it is simply an optional
15388 comment to help you remember what the rule is for.
15390 Look <A HREF="h_edit_nav_cmds">here</A>
15391 to see the available Editing and Navigation commands.
15393 &lt;End of help on this topic&gt;
15394 </BODY>
15395 </HTML>
15396 ======= h_config_other_nick =======
15397 <HTML>
15398 <HEAD>
15399 <TITLE>Nickname Explained</TITLE>
15400 </HEAD>
15401 <BODY>
15402 <H1>Nickname Explained</H1>
15404 This is a nickname to help you.
15405 You should have a different nickname for each rule you define.
15406 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15407 pick a rule to edit.
15409 Look <A HREF="h_edit_nav_cmds">here</A>
15410 to see the available Editing and Navigation commands.
15412 &lt;End of help on this topic&gt;
15413 </BODY>
15414 </HTML>
15415 ======= h_config_score_nick =======
15416 <HTML>
15417 <HEAD>
15418 <TITLE>Nickname Explained</TITLE>
15419 </HEAD>
15420 <BODY>
15421 <H1>Nickname Explained</H1>
15423 This is a nickname to help you.
15424 You should have a different nickname for each scoring rule you define.
15425 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15426 pick a rule to edit.
15428 Look <A HREF="h_edit_nav_cmds">here</A>
15429 to see the available Editing and Navigation commands.
15431 &lt;End of help on this topic&gt;
15432 </BODY>
15433 </HTML>
15434 ======= h_config_incol_nick =======
15435 <HTML>
15436 <HEAD>
15437 <TITLE>Nickname Explained</TITLE>
15438 </HEAD>
15439 <BODY>
15440 <H1>Nickname Explained</H1>
15442 This is a nickname to help you.
15443 You should have a different nickname for each color rule you define.
15444 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15445 pick a rule to edit.
15447 Look <A HREF="h_edit_nav_cmds">here</A>
15448 to see the available Editing and Navigation commands.
15450 &lt;End of help on this topic&gt;
15451 </BODY>
15452 </HTML>
15453 ======= h_config_filt_nick =======
15454 <HTML>
15455 <HEAD>
15456 <TITLE>Nickname Explained</TITLE>
15457 </HEAD>
15458 <BODY>
15459 <H1>Nickname Explained</H1>
15461 This is a nickname to help you.
15462 You should have a different nickname for each filtering rule you define.
15463 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15464 pick a rule to edit.
15466 Look <A HREF="h_edit_nav_cmds">here</A>
15467 to see the available Editing and Navigation commands.
15469 &lt;End of help on this topic&gt;
15470 </BODY>
15471 </HTML>
15472 ======= h_config_score_topat =======
15473 <HTML>
15474 <HEAD>
15475 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15476 </HEAD>
15477 <BODY>
15478 <H1>&quot;To:&quot; Pattern Explained</H1>
15480 Any text you enter as the &quot;To pattern&quot;
15481 will be compared to the recipients from the To: line of
15482 the message being scored.
15483 When the text you entered matches
15484 all or part of the To: line of a message, then the Score Value
15485 you have specified will be added to the score for the message.
15486 (Any other non-blank parts of the Pattern must match, too.)
15489 You may enter a complete email address, part of an address, or a
15490 list of addresses or partial addresses.
15491 For example:
15494 <PRE>
15495  To pattern = friend@public.com
15497  To pattern = rated.net
15499  To pattern = xxx@adults.com
15500               admin@msn.com
15501               fool@motleyfool.com
15502 </PRE>
15505 Each of those are valid To patterns.
15508 Messages match those patterns if any of the
15509 addresses in the To: line of the message contains the pattern.
15510 If the pattern is a list of patterns
15511 (like the last example above) then it is a match if any of the patterns in
15512 the list match any of the addresses in the To: line.
15513 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15514 present for a match.
15515 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15516 address2 must be present.
15517 That is exactly what using a list does.)
15520 Some messages may be &quot;bounced&quot; to you, and will
15521 have a &quot;Resent-To:&quot; header line.
15522 If the message contains a Resent-To: line
15523 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15524 Alpine will look for
15525 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15526 the original To: line.
15529 When entering a pattern, you may choose an address from your address book
15530 with the &quot;T&quot; command.
15533 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15534 &quot;!&quot; &quot;toggle NOT&quot; command.
15535 This changes the meaning of the To pattern so that it has the opposite meaning.
15536 It will be considered a match if there are no matches between the
15537 addresses in the To: line and the list of To patterns.
15539 Don't make the mistake of putting the &quot;!&quot; in the data field for
15540 the pattern.
15541 For example, if you type the characters &quot;!frizzle&quot; into the To
15542 pattern, the pattern will look like:
15544 <PRE>
15545  To pattern = !frizzle
15546 </PRE>
15548 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15549 In order to match messages that do not have &quot;frizzle&quot; in
15550 their To field, first type the characters &quot;frizzle&quot; followed
15551 by carriage return for the value of the To pattern, then negate it
15552 by typing the &quot;!&quot; command.
15553 It should end up looking like
15555 <PRE>
15556  ! To pattern = frizzle
15557 </PRE>
15559 You are not limited to using the six standard header patterns that are
15560 normally shown (To, From, Sender, Cc, News, and Subject).
15561 You may add any other header to a Pattern by
15562 using the &quot;eXtraHdr&quot; command to specify a different
15563 message header line; and then the Add or Change command to fill in
15564 a pattern for the new header line, just like you would for a standard header.
15566 A technicality: Since comma is the character used to separate multiple
15567 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15568 you want to include a literal comma in the field.
15569 In other words, if you type a backslash followed by a comma it will
15570 be interpreted as a comma by Alpine, instead of as a separator between
15571 pattern values.
15572 All other backslashes are literal backslashes and should not be escaped.
15574 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15575 for more information on Patterns.
15577 Look <A HREF="h_edit_nav_cmds">here</A>
15578 to see the available Editing and Navigation commands.
15580 &lt;End of help on this topic&gt;
15581 </BODY>
15582 </HTML>
15583 ======= h_config_incol_topat =======
15584 <HTML>
15585 <HEAD>
15586 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15587 </HEAD>
15588 <BODY>
15589 <H1>&quot;To:&quot; Pattern Explained</H1>
15591 Any text you enter as the &quot;To pattern&quot;
15592 will be compared to the recipients from the To: lines of
15593 the messages in the index.
15594 When the text you entered matches
15595 all or part of the To: line of a message, then the Index Line Color you have
15596 specified will be used for that line in the index.
15597 (Any other non-blank parts of the Pattern must match, too.)
15600 You may enter a complete email address, part of an address, or a
15601 list of addresses or partial addresses.
15602 For example:
15605 <PRE>
15606  To pattern = friend@public.com
15607  To pattern = rated.net
15608  To pattern = xxx@adults.com
15609               admin@msn.com
15610               fool@motleyfool.com
15611 </PRE>
15614 Each of those are valid To patterns.
15617 Messages match those patterns if any of the
15618 addresses in the To: line of the message contains the pattern.
15619 If the pattern is a list of patterns
15620 (like the last example above) then it is a match if any of the patterns in
15621 the list match any of the addresses in the To: line.
15622 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15623 present for a match.
15624 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15625 address2 must be present.
15626 That is exactly what using a list does.)
15629 Some messages may be &quot;bounced&quot; to you, and will
15630 have a &quot;Resent-To:&quot; header line.
15631 If the message contains a Resent-To: line
15632 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15633 Alpine will look for
15634 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15635 the original To: line.
15638 When entering a pattern, you may choose an address from your address book
15639 with the &quot;T&quot; command.
15642 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15643 &quot;!&quot; &quot;toggle NOT&quot; command.
15644 This changes the meaning of the To pattern so that it has the opposite meaning.
15645 It will be considered a match if there are no matches between the
15646 addresses in the To: line and the list of To patterns.
15648 Don't make the mistake of putting the &quot;!&quot; in the data field for
15649 the pattern.
15650 For example, if you type the characters &quot;!frizzle&quot; into the To
15651 pattern, the pattern will look like:
15653 <PRE>
15654  To pattern = !frizzle
15655 </PRE>
15657 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15658 In order to match messages that do not have &quot;frizzle&quot; in
15659 their To field, first type the characters &quot;frizzle&quot; followed
15660 by carriage return for the value of the To pattern, then negate it
15661 by typing the &quot;!&quot; command.
15662 It should end up looking like
15664 <PRE>
15665  ! To pattern = frizzle
15666 </PRE>
15669 You are not limited to using the six standard header patterns that are
15670 normally shown (To, From, Sender, Cc, News, and Subject).
15671 You may add any other header to a Pattern by
15672 using the &quot;eXtraHdr&quot; command to specify a different
15673 message header line; and then the Add or Change command to fill in
15674 a pattern for the new header line, just like you would for a standard header.
15676 A technicality: Since comma is the character used to separate multiple
15677 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15678 you want to include a literal comma in the field.
15679 In other words, if you type a backslash followed by a comma it will
15680 be interpreted as a comma by Alpine, instead of as a separator between
15681 pattern values.
15682 All other backslashes are literal backslashes and should not be escaped.
15684 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15685 for more information on Patterns.
15687 Look <A HREF="h_edit_nav_cmds">here</A>
15688 to see the available Editing and Navigation commands.
15690 &lt;End of help on this topic&gt;
15691 </BODY>
15692 </HTML>
15693 ======= h_config_other_topat =======
15694 <HTML>
15695 <HEAD>
15696 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15697 </HEAD>
15698 <BODY>
15699 <H1>&quot;To:&quot; Pattern Explained</H1>
15701 For some of the OTHER RULES actions, there is no message that is being
15702 compared against.
15703 If that is the case, then only the Current Folder Type is checked.
15704 In particular, this To pattern is ignored.
15705 Actions that fall into this category include both
15706 Sort Order and Index Format.
15708 A technicality: Since comma is the character used to separate multiple
15709 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15710 you want to include a literal comma in the field.
15711 In other words, if you type a backslash followed by a comma it will
15712 be interpreted as a comma by Alpine, instead of as a separator between
15713 pattern values.
15714 All other backslashes are literal backslashes and should not be escaped.
15716 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15717 for more information on Patterns.
15719 Look <A HREF="h_edit_nav_cmds">here</A>
15720 to see the available Editing and Navigation commands.
15722 &lt;End of help on this topic&gt;
15723 </BODY>
15724 </HTML>
15725 ======= h_config_filt_topat =======
15726 <HTML>
15727 <HEAD>
15728 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15729 </HEAD>
15730 <BODY>
15731 <H1>&quot;To:&quot; Pattern Explained</H1>
15733 Any text you enter as the &quot;To pattern&quot;
15734 will be compared to the recipients from the To: line of
15735 messages when Alpine opens folders.
15736 When the text you entered matches
15737 all or part of the To: line of a message, then the Filter Action you have
15738 specified will be carried out.
15739 (Any other non-blank parts of the Pattern must match, too.)
15742 You may enter a complete email address, part of an address, or a
15743 list of addresses or partial addresses.
15744 For example:
15747 <PRE>
15748  To pattern = friend@public.com
15749  To pattern = rated.net
15750  To pattern = xxx@adults.com
15751               admin@msn.com
15752               fool@motleyfool.com
15753 </PRE>
15756 Each of those are valid To patterns.
15759 Messages match those patterns if any of the
15760 addresses in the To: line of the message contains the pattern.
15761 If the pattern is a list of patterns
15762 (like the last example above) then it is a match if any of the patterns in
15763 the list match any of the addresses in the To: line.
15764 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15765 present for a match.
15766 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15767 address2 must be present.
15768 That is exactly what using a list does.)
15771 Some messages may be &quot;bounced&quot; to you, and will
15772 have a &quot;Resent-To:&quot; header line.
15773 If the message contains a Resent-To: line
15774 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15775 Alpine will look for
15776 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15777 the original To: line.
15780 When entering a pattern, you may choose an address from your address book
15781 with the &quot;T&quot; command.
15784 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15785 &quot;!&quot; &quot;toggle NOT&quot; command.
15786 This changes the meaning of the To pattern so that it has the opposite meaning.
15787 It will be considered a match if there are no matches between the
15788 addresses in the To: line and the list of To patterns.
15790 Don't make the mistake of putting the &quot;!&quot; in the data field for
15791 the pattern.
15792 For example, if you type the characters &quot;!frizzle&quot; into the To
15793 pattern, the pattern will look like:
15795 <PRE>
15796  To pattern = !frizzle
15797 </PRE>
15799 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15800 In order to match messages that do not have &quot;frizzle&quot; in
15801 their To field, first type the characters &quot;frizzle&quot; followed
15802 by carriage return for the value of the To pattern, then negate it
15803 by typing the &quot;!&quot; command.
15804 It should end up looking like
15806 <PRE>
15807  ! To pattern = frizzle
15808 </PRE>
15811 You are not limited to using the six standard header patterns that are
15812 normally shown (To, From, Sender, Cc, News, and Subject).
15813 You may add any other header to a Pattern by
15814 using the &quot;eXtraHdr&quot; command to specify a different
15815 message header line; and then the Add or Change command to fill in
15816 a pattern for the new header line, just like you would for a standard header.
15818 A technicality: Since comma is the character used to separate multiple
15819 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15820 you want to include a literal comma in the field.
15821 In other words, if you type a backslash followed by a comma it will
15822 be interpreted as a comma by Alpine, instead of as a separator between
15823 pattern values.
15824 All other backslashes are literal backslashes and should not be escaped.
15826 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15827 for more information on Patterns.
15829 Look <A HREF="h_edit_nav_cmds">here</A>
15830 to see the available Editing and Navigation commands.
15832 &lt;End of help on this topic&gt;
15833 </BODY>
15834 </HTML>
15835 ======= h_config_role_topat =======
15836 <HTML>
15837 <HEAD>
15838 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15839 </HEAD>
15840 <BODY>
15841 <H1>&quot;To:&quot; Pattern Explained</H1>
15843 Any text you enter as the &quot;To pattern&quot;
15844 will be compared to the recipients from the To: line of
15845 the message being replied to or forwarded.
15846 (Any other non-blank parts of the Pattern must match, too.)
15847 In the case of the Compose command, this pattern and the other header
15848 patterns are ignored.
15851 You may enter a complete email address, part of an address, or a
15852 list of addresses or partial addresses.
15853 For example:
15856 <PRE>
15857  To pattern = friend@public.com
15858  To pattern = rated.net
15859  To pattern = xxx@adults.com
15860               admin@msn.com
15861               fool@motleyfool.com
15862 </PRE>
15865 Each of those are valid To patterns.
15868 Messages match those patterns if any of the
15869 addresses in the To: line of the message contains the pattern.
15870 If the pattern is a list of patterns
15871 (like the last example above) then it is a match if any of the patterns in
15872 the list match any of the addresses in the To: line.
15873 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15874 present for a match.
15875 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15876 address2 must be present.
15877 That is exactly what using a list does.)
15880 Some messages may be &quot;bounced&quot; to you, and will
15881 have a &quot;Resent-To:&quot; header line.
15882 If the message contains a Resent-To: line
15883 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15884 Alpine will look for
15885 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15886 the original To: line.
15889 When entering a pattern, you may choose an address from your address book
15890 with the &quot;T&quot; command.
15893 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15894 &quot;!&quot; &quot;toggle NOT&quot; command.
15895 This changes the meaning of the To pattern so that it has the opposite meaning.
15896 It will be considered a match if there are no matches between the
15897 addresses in the To: line and the list of To patterns.
15899 Don't make the mistake of putting the &quot;!&quot; in the data field for
15900 the pattern.
15901 For example, if you type the characters &quot;!frizzle&quot; into the To
15902 pattern, the pattern will look like:
15904 <PRE>
15905  To pattern = !frizzle
15906 </PRE>
15908 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15909 In order to match messages that do not have &quot;frizzle&quot; in
15910 their To field, first type the characters &quot;frizzle&quot; followed
15911 by carriage return for the value of the To pattern, then negate it
15912 by typing the &quot;!&quot; command.
15913 It should end up looking like
15915 <PRE>
15916  ! To pattern = frizzle
15917 </PRE>
15920 You are not limited to using the six standard header patterns that are
15921 normally shown (To, From, Sender, Cc, News, and Subject).
15922 You may add any other header to a Pattern by
15923 using the &quot;eXtraHdr&quot; command to specify a different
15924 message header line; and then the Add or Change command to fill in
15925 a pattern for the new header line, just like you would for a standard header.
15927 A technicality: Since comma is the character used to separate multiple
15928 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15929 you want to include a literal comma in the field.
15930 In other words, if you type a backslash followed by a comma it will
15931 be interpreted as a comma by Alpine, instead of as a separator between
15932 pattern values.
15933 All other backslashes are literal backslashes and should not be escaped.
15935 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15936 for more information on Patterns.
15938 Look <A HREF="h_edit_nav_cmds">here</A>
15939 to see the available Editing and Navigation commands.
15941 &lt;End of help on this topic&gt;
15942 </BODY>
15943 </HTML>
15944 ======= h_config_role_frompat =======
15945 <HTML>
15946 <HEAD>
15947 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
15948 </HEAD>
15949 <BODY>
15950 <H1>&quot;From:&quot; Pattern Explained</H1>
15952 This is just like the &quot;To pattern&quot; except that it is compared with
15953 the address in the From: line of the message
15954 instead of the addresses from the To: line.
15955 See the help for the To pattern for more information on header patterns.
15957 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15958 for more information on Patterns.
15960 Look <A HREF="h_edit_nav_cmds">here</A>
15961 to see the available Editing and Navigation commands.
15963 &lt;End of help on this topic&gt;
15964 </BODY>
15965 </HTML>
15966 ======= h_config_role_senderpat =======
15967 <HTML>
15968 <HEAD>
15969 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
15970 </HEAD>
15971 <BODY>
15972 <H1>&quot;Sender:&quot; Pattern Explained</H1>
15974 This is just like the &quot;To pattern&quot; except that it is compared with
15975 the address from the Sender: line of the message
15976 instead of the addresses from the To: line.
15977 See the help for the To pattern for more information on header patterns.
15979 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15980 for more information on Patterns.
15982 Look <A HREF="h_edit_nav_cmds">here</A>
15983 to see the available Editing and Navigation commands.
15985 &lt;End of help on this topic&gt;
15986 </BODY>
15987 </HTML>
15988 ======= h_config_role_ccpat =======
15989 <HTML>
15990 <HEAD>
15991 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
15992 </HEAD>
15993 <BODY>
15994 <H1>&quot;Cc:&quot; Pattern Explained</H1>
15996 This is just like the &quot;To pattern&quot; except that it is compared with
15997 the addresses from the Cc: line of the message
15998 instead of the addresses from the To: line.
15999 See the help for the To pattern for more information on header patterns.
16001 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16002 for more information on Patterns.
16004 Look <A HREF="h_edit_nav_cmds">here</A>
16005 to see the available Editing and Navigation commands.
16007 &lt;End of help on this topic&gt;
16008 </BODY>
16009 </HTML>
16010 ======= h_config_role_recippat =======
16011 <HTML>
16012 <HEAD>
16013 <TITLE>Recipient Pattern Explained</TITLE>
16014 </HEAD>
16015 <BODY>
16016 <H1>Recipient Pattern Explained</H1>
16018 This is just like the &quot;To pattern&quot; except that it is compared with
16019 the addresses from both the To: line and the Cc: line of the
16020 message instead of just the addresses from the To: line.
16021 In other words, it is considered a match if the pattern matches
16022 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16023 in the Cc: line.
16024 (Notice that defining the Recipient pattern does not have the same
16025 effect as defining both the To and Cc patterns.
16026 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16027 It is equivalent to having two different rules;
16028 one with a To pattern and the other with the same Cc pattern.)
16030 A technicality: Since comma is the character used to separate multiple
16031 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16032 you want to include a literal comma in the field.
16033 In other words, if you type a backslash followed by a comma it will
16034 be interpreted as a comma by Alpine, instead of as a separator between
16035 pattern values.
16036 All other backslashes are literal backslashes and should not be escaped.
16038 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16039 for more information on Patterns.
16041 Look <A HREF="h_edit_nav_cmds">here</A>
16042 to see the available Editing and Navigation commands.
16044 &lt;End of help on this topic&gt;
16045 </BODY>
16046 </HTML>
16047 ======= h_config_role_particpat =======
16048 <HTML>
16049 <HEAD>
16050 <TITLE>Participant Pattern Explained</TITLE>
16051 </HEAD>
16052 <BODY>
16053 <H1>Participant Pattern Explained</H1>
16055 This is just like the &quot;To pattern&quot; except that it is compared with
16056 the addresses from the From: line, the To: line, and the Cc: line of the
16057 message instead of just the addresses from the To: line.
16058 In other words, it is considered a match if the pattern matches
16059 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16060 in the To: line, <EM>OR</EM> an address in the Cc: line.
16061 (Notice that defining the Participant pattern does not have the same
16062 effect as defining all of the From, To, and Cc patterns.
16063 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16064 From <EM>AND</EM> To <EM>AND</EM> Cc.
16065 It is equivalent to having three different rules;
16066 one with a From pattern, another with the same To pattern, and a third with
16067 the same Cc pattern.)
16069 A technicality: Since comma is the character used to separate multiple
16070 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16071 you want to include a literal comma in the field.
16072 In other words, if you type a backslash followed by a comma it will
16073 be interpreted as a comma by Alpine, instead of as a separator between
16074 pattern values.
16075 All other backslashes are literal backslashes and should not be escaped.
16077 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16078 for more information on Patterns.
16080 Look <A HREF="h_edit_nav_cmds">here</A>
16081 to see the available Editing and Navigation commands.
16083 &lt;End of help on this topic&gt;
16084 </BODY>
16085 </HTML>
16086 ======= h_config_role_newspat =======
16087 <HTML>
16088 <HEAD>
16089 <TITLE>News Pattern Explained</TITLE>
16090 </HEAD>
16091 <BODY>
16092 <H1>News Pattern Explained</H1>
16094 If this pattern is non-blank, then for this rule to be considered a
16095 match, at least one of the newsgroups from
16096 the Newsgroups line of the message must match this pattern.
16097 If this pattern is a list of patterns, then at least one of the
16098 newsgroups must match at least one of the patterns.
16099 (Any other non-blank parts of the Pattern must match, too.)
16101 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16102 &quot;!&quot; &quot;toggle NOT&quot; command.
16103 This changes the meaning of the News pattern so that it has the opposite meaning.
16104 It will be considered a match if there are no matches between the
16105 addresses in the Newsgroups: line and the list of News patterns.
16107 Don't make the mistake of putting the &quot;!&quot; in the data field for
16108 the pattern.
16109 For example, if you type the characters &quot;!frizzle&quot; into the News
16110 pattern, the pattern will look like:
16112 <PRE>
16113  News pattern = !frizzle
16114 </PRE>
16116 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16117 In order to match messages that do not have &quot;frizzle&quot; in
16118 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16119 by carriage return for the value of the News pattern, then negate it
16120 by typing the &quot;!&quot; command.
16121 It should end up looking like
16123 <PRE>
16124  ! News pattern = frizzle
16125 </PRE>
16127 A technicality: Since comma is the character used to separate multiple
16128 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16129 you want to include a literal comma in the field.
16130 In other words, if you type a backslash followed by a comma it will
16131 be interpreted as a comma by Alpine, instead of as a separator between
16132 pattern values.
16133 All other backslashes are literal backslashes and should not be escaped.
16136 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16137 for more information on Patterns.
16139 Look <A HREF="h_edit_nav_cmds">here</A>
16140 to see the available Editing and Navigation commands.
16142 &lt;End of help on this topic&gt;
16143 </BODY>
16144 </HTML>
16145 ======= h_config_role_subjpat =======
16146 <HTML>
16147 <HEAD>
16148 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16149 </HEAD>
16150 <BODY>
16151 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16153 This is similar to the other parts of the Pattern.
16154 It is compared with
16155 the contents from the Subject of the message.
16157 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16158 for more information on Patterns.
16160 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16161 &quot;!&quot; &quot;toggle NOT&quot; command.
16162 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16163 It will be considered a match if there are no matches between the
16164 text in the Subject: line and the list of Subject patterns.
16167 If you wish to have a header pattern that is not one of the six standard
16168 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16170 A technicality: Since comma is the character used to separate multiple
16171 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16172 you want to include a literal comma in the field.
16173 In other words, if you type a backslash followed by a comma it will
16174 be interpreted as a comma by Alpine, instead of as a separator between
16175 pattern values.
16176 All other backslashes are literal backslashes and should not be escaped.
16178 Look <A HREF="h_edit_nav_cmds">here</A>
16179 to see the available Editing and Navigation commands.
16181 &lt;End of help on this topic&gt;
16182 </BODY>
16183 </HTML>
16184 ======= h_config_role_alltextpat =======
16185 <HTML>
16186 <HEAD>
16187 <TITLE>AllText Pattern Explained</TITLE>
16188 </HEAD>
16189 <BODY>
16190 <H1>AllText Pattern Explained</H1>
16192 This is similar to the header patterns.
16193 Instead of comparing with text in a particular header field it 
16194 is compared with all of the text in the message header and body.
16196 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16197 &quot;!&quot; &quot;toggle NOT&quot; command.
16198 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16199 It will be considered a match if there are no matches between the
16200 text of the message and the list of AllText patterns.
16202 Don't make the mistake of putting the &quot;!&quot; in the data field for
16203 the pattern.
16204 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16205 pattern, the pattern will look like:
16207 <PRE>
16208  AllText pattern = !frizzle
16209 </PRE>
16211 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16212 In order to match messages that do not have &quot;frizzle&quot; in
16213 the text of the message, first type the characters &quot;frizzle&quot; followed
16214 by carriage return for the value of the AllText pattern, then negate it
16215 by typing the &quot;!&quot; command.
16216 It should end up looking like
16218 <PRE>
16219  ! AllText pattern = frizzle
16220 </PRE>
16222 It is possible that you may notice degraded performance when using
16223 AllText Patterns.
16225 A technicality: Since comma is the character used to separate multiple
16226 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16227 you want to include a literal comma in the field.
16228 In other words, if you type a backslash followed by a comma it will
16229 be interpreted as a comma by Alpine, instead of as a separator between
16230 pattern values.
16231 All other backslashes are literal backslashes and should not be escaped.
16233 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16234 for more information on Patterns.
16236 Look <A HREF="h_edit_nav_cmds">here</A>
16237 to see the available Editing and Navigation commands.
16239 &lt;End of help on this topic&gt;
16240 </BODY>
16241 </HTML>
16242 ======= h_config_role_bodytextpat =======
16243 <HTML>
16244 <HEAD>
16245 <TITLE>BodyText Pattern Explained</TITLE>
16246 </HEAD>
16247 <BODY>
16248 <H1>BodyText Pattern Explained</H1>
16250 This is similar to the header patterns.
16251 Instead of comparing with text in a particular header field it 
16252 is compared with all of the text in the message body.
16254 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16255 &quot;!&quot; &quot;toggle NOT&quot; command.
16256 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16257 It will be considered a match if there are no matches between the
16258 text of the body of the message and the list of BodyText patterns.
16260 Don't make the mistake of putting the &quot;!&quot; in the data field for
16261 the pattern.
16262 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16263 pattern, the pattern will look like:
16265 <PRE>
16266  BdyText pattern = !frizzle
16267 </PRE>
16269 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16270 In order to match messages that do not have &quot;frizzle&quot; in
16271 their BodyText, first type the characters &quot;frizzle&quot; followed
16272 by carriage return for the value of the BodyText pattern, then negate it
16273 by typing the &quot;!&quot; command.
16274 It should end up looking like
16276 <PRE>
16277  ! BodyText pattern = frizzle
16278 </PRE>
16280 It is possible that you may notice degraded performance when using
16281 BodyText Patterns.
16283 A technicality: Since comma is the character used to separate multiple
16284 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16285 you want to include a literal comma in the field.
16286 In other words, if you type a backslash followed by a comma it will
16287 be interpreted as a comma by Alpine, instead of as a separator between
16288 pattern values.
16289 All other backslashes are literal backslashes and should not be escaped.
16291 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16292 for more information on Patterns.
16294 Look <A HREF="h_edit_nav_cmds">here</A>
16295 to see the available Editing and Navigation commands.
16297 &lt;End of help on this topic&gt;
16298 </BODY>
16299 </HTML>
16300 ======= h_config_role_charsetpat =======
16301 <HTML>
16302 <HEAD>
16303 <TITLE>Character Set Pattern Explained</TITLE>
16304 </HEAD>
16305 <BODY>
16306 <H1>Character Set Pattern Explained</H1>
16308 A message may use one or more character sets.
16309 This part of the Pattern matches messages that make use of
16310 certain specified character sets.
16311 It will be considered a match if a message uses any of the character
16312 sets in the list you give here.
16315 When filling in a value for this field, you may use
16316 the &quot;T&quot; command, which presents you with a large list of
16317 possible character sets to choose from.
16318 You may also just type in the name of a character set, and it need not
16319 be one that Alpine knows about.
16322 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16323 GB2312) you may also use some shorthand names that Alpine provides.
16324 These names are more understandable shorthand names for sets of 
16325 character set names.
16326 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16327 Selecting one of these shorthand names is equivalent to selecting all of
16328 the character sets that make up the set.
16329 You can see all of these shorthand names and the lists of character sets
16330 they stand for by typing the &quot;T&quot; command.
16333 For the purposes of this Pattern,
16334 Alpine will search through a message for all of the text parts and
16335 collect the character sets declared for each part.
16336 It will also look in the Subject line for a character set used there.
16337 Alpine does not actually look at the text of the message or the text
16338 of the Subject to determine if a declared character set is actually
16339 used, it looks only at the declarations themselves in the MIME part headers
16340 and in the Subject.
16343 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16344 &quot;!&quot; &quot;toggle NOT&quot; command.
16345 This changes the meaning of the Character Set pattern so that
16346 it has the opposite meaning.
16347 It will be considered a match if none of the character sets in the
16348 list are used in a message.
16350 Don't make the mistake of putting the &quot;!&quot; in the data field for
16351 the pattern.
16352 For example, if you type the characters &quot;!GB2312&quot; into the
16353 Character Set pattern, the pattern will look like:
16355 <PRE>
16356  Charset pattern = !GB2312
16357 </PRE>
16359 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16360 In order to match messages that do not have the
16361 character set &quot;GB2312&quot;
16362 set, first type the characters &quot;GB2312&quot; followed
16363 by carriage return for the value of the Character Set pattern, then negate it
16364 by typing the &quot;!&quot; command.
16365 It should end up looking like
16367 <PRE>
16368  ! Charset pattern = GB2312
16369 </PRE>
16371 A technicality: Since comma is the character used to separate multiple
16372 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16373 you want to include a literal comma in the field.
16374 In other words, if you type a backslash followed by a comma it will
16375 be interpreted as a comma by Alpine, instead of as a separator between
16376 pattern values.
16377 All other backslashes are literal backslashes and should not be escaped.
16379 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16380 for more information on Patterns.
16382 Look <A HREF="h_edit_nav_cmds">here</A>
16383 to see the available Editing and Navigation commands.
16385 &lt;End of help on this topic&gt;
16386 </BODY>
16387 </HTML>
16388 ======= h_config_role_keywordpat =======
16389 <HTML>
16390 <HEAD>
16391 <TITLE>Keyword Pattern Explained</TITLE>
16392 </HEAD>
16393 <BODY>
16394 <H1>Keyword Pattern Explained</H1>
16396 A folder may have user-defined keywords.
16397 These are similar to the Important flag, which the user may set using the
16398 Flag command.
16399 The difference is that the Important flag is always present for each folder.
16400 User-defined keywords are picked by the user.
16401 You may add new keywords by defining them in the
16402 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16403 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16404 the Flag command may be used to set or clear the keyword on individual messages.
16405 If you have given a keyword a nickname when configuring it,
16406 that nickname may be used instead of the actual keyword.
16409 When filling in a value for this field, it may be easiest to use
16410 the &quot;T&quot; command, which presents you with a list of the keywords
16411 you have defined to choose from.
16414 This part of the Pattern matches messages with certain keywords set.
16415 It will be considered a match if a message has any of the keywords in the
16416 list set.
16417 A keyword that you have not defined using the
16418 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16419 will not be a match.
16422 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16423 &quot;!&quot; &quot;toggle NOT&quot; command.
16424 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16425 It will be considered a match if none of the keywords in the list are set
16426 for a message.
16427 A keyword that you have not defined using the
16428 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16429 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16431 Don't make the mistake of putting the &quot;!&quot; in the data field for
16432 the pattern.
16433 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16434 pattern, the pattern will look like:
16436 <PRE>
16437  Keyword pattern = !frizzle
16438 </PRE>
16440 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16441 In order to match messages that do not have the keyword &quot;frizzle&quot;
16442 set, first type the characters &quot;frizzle&quot; followed
16443 by carriage return for the value of the Keyword pattern, then negate it
16444 by typing the &quot;!&quot; command.
16445 It should end up looking like
16447 <PRE>
16448  ! Keyword pattern = frizzle
16449 </PRE>
16451 A technicality: Since comma is the character used to separate multiple
16452 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16453 you want to include a literal comma in the field.
16454 In other words, if you type a backslash followed by a comma it will
16455 be interpreted as a comma by Alpine, instead of as a separator between
16456 pattern values.
16457 All other backslashes are literal backslashes and should not be escaped.
16459 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16460 for more information on Patterns.
16462 Look <A HREF="h_edit_nav_cmds">here</A>
16463 to see the available Editing and Navigation commands.
16465 &lt;End of help on this topic&gt;
16466 </BODY>
16467 </HTML>
16468 ======= h_config_role_arbpat =======
16469 <HTML>
16470 <HEAD>
16471 <TITLE>Extra Header Patterns Explained</TITLE>
16472 </HEAD>
16473 <BODY>
16474 <H1>Extra Header Patterns Explained</H1>
16476 The header patterns that come after the Participant pattern but before the 
16477 AllText pattern are extra header patterns that you have added to a rule's
16478 Pattern. These are just like the other header patterns except that
16479 the contents of the particular header listed on the left hand side will
16480 be used for comparisons.
16482 The &quot;eXtraHdr&quot; command may be used to add more of these
16483 header patterns to the rule you are editing.
16485 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16486 extra header pattern from the rule you are editing.
16488 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16489 &quot;!&quot; &quot;toggle NOT&quot; command.
16490 This changes the meaning of the pattern so that it has the opposite meaning.
16491 It will be considered a match if there are no matches between the
16492 text in the header line and the list of patterns.
16494 Don't make the mistake of putting the &quot;!&quot; in the data field for
16495 the pattern.
16496 For example, if you type the characters &quot;!frizzle&quot; into the
16497 pattern, the pattern will look like:
16499 <PRE>
16500  Xyz pattern = !frizzle
16501 </PRE>
16503 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16504 In order to match messages that do not have &quot;frizzle&quot; in
16505 their Xyz field, first type the characters &quot;frizzle&quot; followed
16506 by carriage return for the value of the pattern, then negate it
16507 by typing the &quot;!&quot; command.
16508 It should end up looking like
16510 <PRE>
16511  ! Xyz pattern = frizzle
16512 </PRE>
16515 A technicality: Since comma is the character used to separate multiple
16516 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16517 you want to include a literal comma in the field.
16518 In other words, if you type a backslash followed by a comma it will
16519 be interpreted as a comma by Alpine, instead of as a separator between
16520 pattern values.
16521 All other backslashes are literal backslashes and should not be escaped.
16523 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16524 for more information on Patterns.
16526 Look <A HREF="h_edit_nav_cmds">here</A>
16527 to see the available Editing and Navigation commands.
16529 &lt;End of help on this topic&gt;
16530 </BODY>
16531 </HTML>
16532 ======= h_config_role_cat_cmd =======
16533 <HTML>
16534 <HEAD>
16535 <TITLE>Categorizer Command Explained</TITLE>
16536 </HEAD>
16537 <BODY>
16538 <H1>Categorizer Command Explained</H1>
16540 This is a command that is run with its standard input set to the message
16541 being checked and its standard output discarded.
16542 The full directory path should be specified.
16543 The command will be run and then its exit status will be checked against
16544 the Exit Status Interval, which defaults to just the value zero.
16545 If the exit status of the command falls in the interval, it is considered
16546 a match, otherwise it is not a match.
16549 This option may actually be a list of commands.
16550 The first one that exists and is executable is used.
16551 That makes it possible to use the same configuration with Unix Alpine and
16552 PC-Alpine.
16555 If none of the commands in the list exists and is executable then the rule
16556 is <EM>not</EM> a match.
16557 If it is possible that the command may not exist, you should be careful
16558 to structure your rules so that nothing destructive
16559 happens when the command does not exist.
16560 For example, you might have a filter that filters away spam when there is
16561 a match but does nothing when there is not a match.
16562 That would cause no harm if the command didn't exist.
16563 However, if you have a filter that filters away spam when there is not
16564 a match and keeps it when there is a match, that would filter everything
16565 if the categorizer command didn't exist.
16567 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16568 setup for the bogofilter filter.
16571 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16572 for more information on Patterns.
16574 Look <A HREF="h_edit_nav_cmds">here</A>
16575 to see the available Editing and Navigation commands.
16577 &lt;End of help on this topic&gt;
16578 </BODY>
16579 </HTML>
16580 ======= h_config_role_cat_cmd_example =======
16581 <HTML>
16582 <HEAD>
16583 <TITLE>Categorizer Command Example</TITLE>
16584 </HEAD>
16585 <BODY>
16586 <H1>Categorizer Command Example</H1>
16588 Bogofilter
16589 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16590 is a mail filter that attempts to classify mail as spam or
16591 non-spam using statistical analysis of the message content.
16592 When run with no arguments and a message as standard input, it exits with
16593 exit status 0 if it thinks a message is spam and 1 if it thinks
16594 it is not spam.
16595 To use bogofilter as your Categorizer Command you would simply set Command to
16596 the pathname of the bogofilter program.
16597 For example,
16599 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16601 Exit status of zero is what you are interested in, so you'd set the
16602 Exit Status Interval to
16604 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16607 In order to prevent downloading an entire huge message to check for spam, you
16608 might want to set the Character Limit to a few thousand characters (the
16609 assumption being that the spam will reveal itself in those characters)
16611 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16614 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16615 be to move the message to a spam folder.
16616 It would usually be wise to also check the &quot;Message is Recent&quot;
16617 part of the rule so that messages are only checked when they first arrive,
16618 and to restrict the Current Folder Type to just your INBOX.
16619 The reason for checking only Recent messages is to save the time it takes
16620 to run bogofilter on each message.
16621 As an experiment, you might start out by using this in an Indexcolor Rule
16622 instead of a Filter Rule.
16623 In that case, you probably wouldn't check the Recent checkbox.
16625 The use described above assumes that you are somehow maintaining bogofilter's
16626 database of words associated with spam and non-spam messages.
16627 One way to start your database would be to select a bunch of spam messages
16628 in Alpine (you might Save spam messages to a special folder or use Alpine's
16629 Select command to select several) and then Apply
16630 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16631 a pipe command to the spam messages.
16632 For example, you could have a shell script or an alias
16633 called <EM>this_is_spam</EM>, which would simply be the command
16635 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16638 It is probably best to use the pipe command's Raw Text, With Delimiter,
16639 and Free Output options,
16640 which are at the bottom of the screen when you type the pipe command.
16641 That's because bogofilter expects the raw message as input, and uses
16642 the Delimiters to tell when a new message starts.
16643 You would not need to use a separate pipe for each message, because
16644 bogofilter can handle multiple messages at once.
16646 Similarly, you would select a group of non-spam messages
16647 and run them through a <EM>this_is_nonspam</EM> script
16648 that was something like
16650 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16653 For the more adventurous, the next step might be to automate the upkeep of
16654 the bogofilter database.
16655 It might make more sense to have bogofilter be part of the delivery process,
16656 but it is also possible to do it entirely from within Alpine.
16657 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16658 the &quot;-u&quot; argument will cause bogofilter to update the database.
16660 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16662 You'd want a couple more aliases or shell scripts called something like
16663 <EM>change_to_spam</EM>
16665 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16668 <EM>change_to_nonspam</EM>
16670 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16672 When you run across a message in your INBOX that should have been
16673 classified as spam you would pipe it to the change_to_spam script, and
16674 when you run across a message in your spam folder that should have been
16675 left in your INBOX you would pipe it through change_to_nonspam.
16678 There is a technical problem with this approach.
16679 Alpine may check your filters more than once.
16680 In particular, every time you start Alpine the filters will be checked for
16681 each message.
16682 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16683 then Alpine will recheck for matches in messages that have changed state
16684 at the time you close the folder and before expunging.
16685 This is usually ok.
16686 However, in this case it is a problem because the command
16688 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16690 has the side effect of updating the database.
16691 So you run the risk of updating the database multiple times for a single
16692 message instead of updating it just once per message.
16693 There are some ways to work around this problem.
16694 What you need is a way to mark the message after you have run the filter.
16695 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16696 Besides having the filter move the message to a spam folder, also have it
16697 set the Bogo keyword.
16698 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16699 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16700 This rule can only set the Bogo keyword for the messages that it matches.
16701 You will also need to add a second rule right after this one that
16702 matches all the messages that don't have the Bogo keyword set
16703 (put the keyword in the Keyword pattern and toggle
16704 the Not with the ! command)
16705 and takes the action of setting it.
16706 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16707 (and so it won't re-run the bogofilter command) if the keyword is already
16708 set.
16710 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16711 on all messages that don't have the Bogo keyword set.
16712 This will have the side effect of inserting that message in the bogofilter
16713 database, match or not.
16714 If this rule matches (it is spam), the Bogo keyword will be set and
16715 the message will be moved to a spam folder.
16716 If it does not match, the
16717 following rule will mark the message by turning on the keyword.
16718 This second rule should be a non-terminating
16719 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
16720 rule so that it doesn't stop the filtering process before the rest of
16721 your rules are consulted.
16724 In summary, the first rule is something like
16725 <PRE>
16726   Nickname          = bogofilter -u rule
16727   Current Folder Type =
16728                (*) Specific
16729                    Folder = INBOX
16731   ! Keyword pattern = Bogo
16733   External Categorizer Commands =
16734        Command              = /usr/local/bin/bogofilter -u
16735        Exit Status Interval = (0,0)
16736        Character Limit      = <No Value Set: using "-1">  (optionally set this)
16738   Filter Action =
16739        (*) Move
16740            Folder = spam
16741   
16742   Set These Keywords   = Bogo
16743 </PRE>
16745 and the following rule is
16746 <PRE>
16747   Nickname          = Set Bogo Keyword
16748   Current Folder Type =
16749                (*) Specific
16750                    Folder = INBOX
16752   ! Keyword pattern = Bogo
16754   Filter Action =
16755        (*) Just Set Message Status
16757   Set These Keywords   = Bogo
16759   Features =
16760       [X]  dont-stop-even-if-rule-matches
16761 </PRE>
16763 If it is possible for you to insert bogofilter in the delivery process instead
16764 of having it called from Alpine you could prevent having to wait
16765 for the bogofilter processing while you read your mail.
16766 You would have bogofilter add a header to the message at the time of delivery
16767 that identified it as spam or nonspam.
16768 With this method, you could avoid using a Categorizer Command while running Alpine,
16769 and just match on the header instead.
16770 You might still want to use the scripts mentioned above to initialize the
16771 database or to re-classify wrongly classified messages.
16774 Finally, it isn't for the faint-hearted,
16775 but it is also possible to run bogofilter from PC-Alpine.
16776 You can install Cygwin from
16777 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
16778 then compile bogofilter in the cygwin environment, and run it from
16779 within PC-Alpine.
16780 You would end up with a Categorizer command that looked something like
16782 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
16784 Note that the &quot;.exe&quot; extension is explicit,
16785 and that the bogofilter.exe executable should be in the same directory
16786 as cygwin1.dll.
16789 &lt;End of help on this topic&gt;
16790 </BODY>
16791 </HTML>
16792 ======= h_config_role_cat_status =======
16793 <HTML>
16794 <HEAD>
16795 <TITLE>Exit Status Interval Explained</TITLE>
16796 </HEAD>
16797 <BODY>
16798 <H1>Exit Status Interval Explained</H1>
16800 The categorizer command is run and the result is the exit status of
16801 that command.
16802 If that exit status falls in the Exit Status Interval
16803 then it is considered a match, otherwise it is not a match.
16804 Of course for the entire rule to match, it must also be checked against
16805 the other defined parts of the Pattern.
16807 The Exit Status Interval defaults to the single value 0 (zero).
16808 If you define it, it should be set to something like:
16810 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
16812 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
16813 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
16814 positive and negative integers.
16816 Actually, a list of intervals may be used if you wish.
16817 A list would look like
16819 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
16821 When there is an Exit Status Interval defined, it is a match if the exit status
16822 of the categorizer command is contained in any of the intervals.
16823 The intervals include both endpoints.
16825 The default interval is
16827 <CENTER><SAMP>(0,0)</SAMP></CENTER>
16829 and it matches only if the command exits with exit status equal to zero.
16832 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16833 for more information on Patterns.
16835 Look <A HREF="h_edit_nav_cmds">here</A>
16836 to see the available Editing and Navigation commands.
16838 &lt;End of help on this topic&gt;
16839 </BODY>
16840 </HTML>
16841 ======= h_config_role_cat_limit =======
16842 <HTML>
16843 <HEAD>
16844 <TITLE>Character Limit Explained</TITLE>
16845 </HEAD>
16846 <BODY>
16847 <H1>Character Limit Explained</H1>
16849 Setting this option makes it possible to limit how much of the message
16850 is made available to the categorizer command as input.
16851 The default value (-1) means that the entire message is fed to the
16852 command.
16853 A value of 0 (zero) means that only the headers of the message are
16854 made available.
16855 A positive integer means that the headers plus that many characters from
16856 the body of the message are passed to the categorizer.
16859 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16860 for more information on Patterns.
16862 Look <A HREF="h_edit_nav_cmds">here</A>
16863 to see the available Editing and Navigation commands.
16865 &lt;End of help on this topic&gt;
16866 </BODY>
16867 </HTML>
16868 ======= h_config_role_age =======
16869 <HTML>
16870 <HEAD>
16871 <TITLE>Age Interval Explained</TITLE>
16872 </HEAD>
16873 <BODY>
16874 <H1>Age Interval Explained</H1>
16876 The Age Interval, if defined, is part of the Pattern.
16877 If you use this, it should be set to something like:
16879 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
16881 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
16882 The special value &quot;INF&quot; may be used for the max value.
16883 It represents infinity.
16885 In rare cases it may be useful to use the more general form of the value,
16886 which is a comma-separated list of intervals.
16887 It would look something like:
16889 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
16891 When there is an Age Interval defined, it is a match if the age, in days, of
16892 the message is contained in the interval.
16893 The interval includes both endpoints.
16894 If the option is set to a list of intervals then it is a match if the
16895 age of the message is contained in any of the intervals.
16897 Even though this option is called Age, it isn't actually
16898 the <EM>age</EM> of the message.
16899 Instead, it is how many days ago the message arrived in one of your folders.
16900 If the current time is a little past midnight, then a message that arrived
16901 just before midnight arrived yesterday, even though the message is only
16902 a few minutes old.
16903 By default, the date being used is not the date in the Date
16904 header of the message.
16905 It is the date that the message arrived in one of your folders.
16906 When you Save a message from one folder to another that arrival date
16907 is preserved.
16908 If you would like to use the date in the Date header that is possible.
16909 Turn on the option
16910 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
16911 near the bottom of the rule definition.
16913 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
16914 The age interval
16916 <CENTER><SAMP>(2,2)</SAMP></CENTER>
16918 matches all messages that arrived on the day before yesterday.
16919 The interval
16921 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
16923 matches all messages that arrived at least 180 days before today.
16924 The interval
16926 <CENTER><SAMP>(0,1)</SAMP></CENTER>
16928 matches all messages that arrived today or yesterday.
16931 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16932 for more information on Patterns.
16934 Look <A HREF="h_edit_nav_cmds">here</A>
16935 to see the available Editing and Navigation commands.
16937 &lt;End of help on this topic&gt;
16938 </BODY>
16939 </HTML>
16940 ======= h_config_role_size =======
16941 <HTML>
16942 <HEAD>
16943 <TITLE>Size Interval Explained</TITLE>
16944 </HEAD>
16945 <BODY>
16946 <H1>Size Interval Explained</H1>
16948 The Size Interval, if defined, is part of the Pattern.
16949 If you use this, it should be set to something like:
16951 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
16953 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
16954 The special value &quot;INF&quot; may be used for the max value.
16955 It represents infinity.
16957 In rare cases it may be useful to use the more general form of the value,
16958 which is a comma-separated list of intervals.
16959 It would look something like:
16961 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
16963 When there is a Size Interval defined, it is a match if the size of
16964 the message is contained in the interval.
16965 The interval includes both endpoints.
16966 If the option is set to a list of intervals then it is a match if the
16967 size of the message is contained in any of the intervals.
16969 The size interval
16971 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
16973 matches all messages with sizes greater than or equal to 10000, and less
16974 than or equal to 50000.
16975 The interval
16977 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
16979 matches all messages with sizes greater than or equal to 100000.
16982 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16983 for more information on Patterns.
16985 Look <A HREF="h_edit_nav_cmds">here</A>
16986 to see the available Editing and Navigation commands.
16988 &lt;End of help on this topic&gt;
16989 </BODY>
16990 </HTML>
16991 ======= h_config_role_scorei =======
16992 <HTML>
16993 <HEAD>
16994 <TITLE>Score Interval Explained</TITLE>
16995 </HEAD>
16996 <BODY>
16997 <H1>Score Interval Explained</H1>
16999 The Score Interval, if defined, is part of the Pattern.
17000 If you use this, it should be set to something like:
17002 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17004 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17005 -32000 and 32000.
17006 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17007 the min and max values.
17008 These represent negative and positive infinity.
17010 Actually, the value may be a list of intervals rather than just a
17011 single interval if that is useful.
17012 The elements of the list are separated by commas like:
17014 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17016 When there is a Score Interval defined, it is a match if the score for
17017 the message is contained in any of the intervals.
17018 The intervals include both endpoints.
17019 The score for a message is calculated by looking at every scoring rule
17020 defined and adding up the Score Values for the rules that match the message.
17021 Scoring rules are created using the
17022 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17025 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17026 for more information on Patterns.
17028 Look <A HREF="h_edit_nav_cmds">here</A>
17029 to see the available Editing and Navigation commands.
17031 &lt;End of help on this topic&gt;
17032 </BODY>
17033 </HTML>
17034 ======= h_config_role_fldr_type =======
17035 <HTML>
17036 <HEAD>
17037 <TITLE>Current Folder Type Explained</TITLE>
17038 </HEAD>
17039 <BODY>
17040 <H1>Current Folder Type Explained</H1>
17042 The Current Folder Type is part of the role's Pattern.
17043 It refers to the type of the currently open folder, which is the folder
17044 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17045 In order for a role to be considered a match, the current folder must
17046 be of the type you set here.
17047 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17048 all what you might think.
17050 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17051 example, then
17052 that role will only be a match if the current folder is a newsgroup and
17053 the rest of the Pattern matches.
17054 The value &quot;Specific&quot; may be used when you want to limit the match
17055 to a specific folder (not just a specific type of folder), or to a list of
17056 specific folders.
17058 In order to match a specific folder you Select the &quot;Specific&quot;
17059 button <EM>AND</EM> fill in
17060 the name (or list of names) of
17061 the folder in the &quot;Folder List&quot; field.
17062 If the current folder is any of the folders in the list, that is considered
17063 a match.
17064 The name of each folder in the list may be either &quot;INBOX&quot;,
17065 the technical specification
17066 of the folder (like what appears in your configuration file) or, if the
17067 folder is one of your incoming folders, it may be the nickname you've given
17068 the folder.
17069 Here are a couple samples of specific folder names:
17071 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17073 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17075 The easiest way to fill in the &quot;Folder List&quot; field is to use
17076 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17077 highlighted, or to use the &quot;Take&quot; command with the configuration
17078 feature
17079 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17080 turned on.
17081 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17082 Current Folder Type is set to &quot;Specific&quot;, and any value that
17083 &quot;Folder List&quot; has is ignored unless the type
17084 is set to &quot;Specific&quot;.
17086 When reading a newsgroup, there may be a performance penalty
17087 incurred when collecting the information necessary to check a Pattern.
17088 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17090 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17091 for more information on Patterns.
17093 Look <A HREF="h_edit_nav_cmds">here</A>
17094 to see the available Editing and Navigation commands.
17096 &lt;End of help on this topic&gt;
17097 </BODY>
17098 </HTML>
17099 ======= h_config_filt_rule_type =======
17100 <HTML>
17101 <HEAD>
17102 <TITLE>Filter Action Explained</TITLE>
17103 </HEAD>
17104 <BODY>
17105 <H1>Filter Action Explained</H1>
17107 The Filter Action specifies the action to be taken when the Pattern is a
17108 match.
17109 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17110 &quot;Just Set Message Status&quot;.
17112 If it is set to &quot;Delete&quot;, then the message that matches the
17113 Pattern will be deleted from the open folder.
17115 If it is set to &quot;Move&quot;, then the name of the folder to which
17116 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17117 next line of the screen.
17118 A list of folders separated by commas may be given, in which case the
17119 message will be copied to all of the folders in the list before it is
17120 deleted.
17122 If it is set to neither of those two values (it is set to the value
17123 labeled &quot;Just Set Message Status&quot;) then the message status
17124 setting will happen
17125 but the message will not be deleted or moved.
17127 If you are Moving a message you may also set Message Status if you wish.
17129 The easiest way to fill in the &quot;Folder List&quot; field is to use
17130 the T command that is available when the &quot;Folder List&quot; line is
17131 highlighted.
17132 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17133 Filter Action is set to &quot;Move&quot;, and any value that
17134 &quot;Folder List&quot; has is ignored unless the type
17135 is set to &quot;Move&quot;.
17137 There are a few tokens that may be used in the names in the Folder List.
17138 They are all related to the date on which the filtering is taking place.
17139 The tokens are words surrounded by underscores.
17140 For example, if you want your filter to move messages to a folder named
17141 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17142 you could specify the folder as
17143 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17144 which would result in a file named something like
17145 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17147 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17148 which would result in a file named something like
17149 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17150 The available tokens are listed
17151 <A HREF="h_index_tokens">here</A>.
17153 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17154 for more information on Patterns.
17156 Look <A HREF="h_edit_nav_cmds">here</A>
17157 to see the available Editing and Navigation commands.
17159 &lt;End of help on this topic&gt;
17160 </BODY>
17161 </HTML>
17162 ======= h_config_score_fldr_type =======
17163 <HTML>
17164 <HEAD>
17165 <TITLE>Current Folder Type Explained</TITLE>
17166 </HEAD>
17167 <BODY>
17168 <H1>Current Folder Type Explained</H1>
17170 The Current Folder Type is part of the scoring rule's Pattern.
17171 It refers to the type of the folder that
17172 the message being scored is in.
17173 In order for a rule to be considered a match, the current folder must
17174 be of the type you set here.
17175 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17176 all what you might think.
17178 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17179 example, then
17180 that Pattern will only match if the current folder is a newsgroup and
17181 the rest of the Pattern matches.
17182 The value &quot;Specific&quot; may be used when you want to limit the match
17183 to a specific folder (not just a specific type of folder), or to a list of
17184 specific folders.
17186 In order to match a specific folder you Select the &quot;Specific&quot;
17187 button <EM>AND</EM> fill in
17188 the name (or list of names) of
17189 the folder in the &quot;Folder List&quot; field.
17190 If the current folder is any of the folders in the list, that is considered
17191 a match.
17192 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17193 of the folder (like what appears in your configuration file) or, if the
17194 folder is one of your incoming folders, it may be the nickname you've given
17195 the folder.
17196 Here are a couple samples of specific folder names:
17198 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17200 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17202 The easiest way to fill in the &quot;Folder List&quot; field is to use
17203 the T command that is available when the &quot;Folder List&quot; line is
17204 highlighted.
17205 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17206 Current Folder Type is set to &quot;Specific&quot;, and any value that
17207 &quot;Folder List&quot; has is ignored unless the type
17208 is set to &quot;Specific&quot;.
17210 When reading a newsgroup, there may be a performance penalty
17211 incurred when collecting the information necessary to check a Pattern.
17212 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17213 For example, if you have Index Line Coloring rules that have Score Intervals
17214 defined then the scores for all the visible messages will need to be calculated.
17215 If some of your Scoring rules have 
17216 a Current Folder Type of
17217 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17218 screen to draw more slowly when in a newsgroup.
17220 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17221 for more information on Patterns.
17223 Look <A HREF="h_edit_nav_cmds">here</A>
17224 to see the available Editing and Navigation commands.
17226 &lt;End of help on this topic&gt;
17227 </BODY>
17228 </HTML>
17229 ======= h_config_other_fldr_type =======
17230 <HTML>
17231 <HEAD>
17232 <TITLE>Current Folder Type Explained</TITLE>
17233 </HEAD>
17234 <BODY>
17235 <H1>Current Folder Type Explained</H1>
17237 The Current Folder Type is part of the rule's Pattern.
17238 It refers to the type of the folder being viewed.
17239 In order for a rule to be considered a match, the current folder must
17240 be of the type you set here.
17241 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17242 all what you might think.
17244 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17245 example, then
17246 that Pattern will only match if the current folder is a newsgroup.
17247 The value &quot;Specific&quot; may be used when you want to limit the match
17248 to a specific folder (not just a specific type of folder), or to a list of
17249 specific folders.
17251 In order to match a specific folder you Select the &quot;Specific&quot;
17252 button <EM>AND</EM> fill in
17253 the name (or list of names) of
17254 the folder in the &quot;Folder List&quot; field.
17255 If the current folder is any of the folders in the list, that is considered
17256 a match.
17257 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17258 of the folder (like what appears in your configuration file) or, if the
17259 folder is one of your incoming folders, it may be the nickname you've given
17260 the folder.
17261 Here are a couple samples of specific folder names:
17263 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17265 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17267 The easiest way to fill in the &quot;Folder List&quot; field is to use
17268 the T command that is available when the &quot;Folder List&quot; line is
17269 highlighted.
17270 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17271 Current Folder Type is set to &quot;Specific&quot;, and any value that
17272 &quot;Folder List&quot; has is ignored unless the type
17273 is set to &quot;Specific&quot;.
17275 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17276 for more information on Patterns.
17278 Look <A HREF="h_edit_nav_cmds">here</A>
17279 to see the available Editing and Navigation commands.
17281 &lt;End of help on this topic&gt;
17282 </BODY>
17283 </HTML>
17284 ======= h_config_incol_fldr_type =======
17285 <HTML>
17286 <HEAD>
17287 <TITLE>Current Folder Type Explained</TITLE>
17288 </HEAD>
17289 <BODY>
17290 <H1>Current Folder Type Explained</H1>
17292 The Current Folder Type is part of the Line Coloring rule's Pattern.
17293 It refers to the type of the folder for which the MESSAGE INDEX is
17294 being viewed.
17295 In order for a rule to be considered a match, the current folder must
17296 be of the type you set here.
17297 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17298 all what you might think.
17300 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17301 example, then
17302 that Pattern will only match if the current folder is a newsgroup and
17303 the rest of the Pattern matches.
17304 The value &quot;Specific&quot; may be used when you want to limit the match
17305 to a specific folder (not just a specific type of folder), or to a list of
17306 specific folders.
17308 In order to match a specific folder you Select the &quot;Specific&quot;
17309 button <EM>AND</EM> fill in
17310 the name (or list of names) of
17311 the folder in the &quot;Folder List&quot; field.
17312 If the current folder is any of the folders in the list, that is considered
17313 a match.
17314 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17315 of the folder (like what appears in your configuration file) or, if the
17316 folder is one of your incoming folders, it may be the nickname you've given
17317 the folder.
17318 Here are a couple samples of specific folder names:
17320 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17322 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17324 The easiest way to fill in the &quot;Folder List&quot; field is to use
17325 the T command that is available when the &quot;Folder List&quot; line is
17326 highlighted.
17327 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17328 Current Folder Type is set to &quot;Specific&quot;, and any value that
17329 &quot;Folder List&quot; has is ignored unless the type
17330 is set to &quot;Specific&quot;.
17332 When reading a newsgroup, there may be a performance penalty
17333 incurred when collecting the information necessary to check a Pattern.
17334 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17335 For example, a rule with a non-Normal Index Line Color
17336 and a Current Folder Type of
17337 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17338 screen to draw more slowly when in a newsgroup.
17340 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17341 for more information on Patterns.
17343 Look <A HREF="h_edit_nav_cmds">here</A>
17344 to see the available Editing and Navigation commands.
17346 &lt;End of help on this topic&gt;
17347 </BODY>
17348 </HTML>
17349 ======= h_config_filt_fldr_type =======
17350 <HTML>
17351 <HEAD>
17352 <TITLE>Current Folder Type Explained</TITLE>
17353 </HEAD>
17354 <BODY>
17355 <H1>Current Folder Type Explained</H1>
17357 The Current Folder Type is part of the Filtering rule's Pattern.
17358 It refers to the type of the folder for which the filtering is being done.
17359 In order for a rule to be considered a match, the current folder must
17360 be of the type you set here.
17361 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17362 all what you might think.
17364 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17365 example, then
17366 that Pattern will only match if the current folder is a newsgroup and
17367 the rest of the Pattern matches.
17368 The value &quot;Specific&quot; may be used when you want to limit the match
17369 to a specific folder (not just a specific type of folder), or to a list of
17370 specific folders.
17372 In order to match a specific folder you Select the &quot;Specific&quot;
17373 button <EM>AND</EM> fill in
17374 the name (or list of names) of
17375 the folder in the &quot;Folder List&quot; field.
17376 If the current folder is any of the folders in the list, that is considered
17377 a match.
17378 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17379 of the folder (like what appears in your configuration file) or, if the
17380 folder is one of your incoming folders, it may be the nickname you've given
17381 the folder.
17382 Here are a couple samples of specific folder names:
17384 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17386 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17388 The easiest way to fill in the &quot;Folder List&quot; field is to use
17389 the T command that is available when the &quot;Folder List&quot; line is
17390 highlighted.
17391 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17392 Current Folder Type is set to &quot;Specific&quot;, and any value that
17393 &quot;Folder List&quot; has is ignored unless the type
17394 is set to &quot;Specific&quot;.
17396 When reading a newsgroup, there may be a performance penalty
17397 incurred when collecting the information necessary to check a Pattern.
17398 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17399 For example, a rule with a Current Folder Type of either
17400 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17401 more slowly when opening a newsgroup.
17403 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17404 for more information on Patterns.
17406 Look <A HREF="h_edit_nav_cmds">here</A>
17407 to see the available Editing and Navigation commands.
17409 &lt;End of help on this topic&gt;
17410 </BODY>
17411 </HTML>
17412 ======= h_config_role_stat_imp =======
17413 <HTML>
17414 <HEAD>
17415 <TITLE>Message Important Status Explained</TITLE>
17416 </HEAD>
17417 <BODY>
17418 <H1>Message Important Status Explained</H1>
17420 This part of the Pattern may have one of three possible values.
17421 The default value is &quot;Don't care&quot;, which matches any message.
17422 The other two values are &quot;Yes&quot;, which means the message must be
17423 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17424 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17425 to be a match.
17427 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17428 for more information on Patterns.
17430 Look <A HREF="h_edit_nav_cmds">here</A>
17431 to see the available Editing and Navigation commands.
17433 &lt;End of help on this topic&gt;
17434 </BODY>
17435 </HTML>
17436 ======= h_config_role_stat_new =======
17437 <HTML>
17438 <HEAD>
17439 <TITLE>Message New Status Explained</TITLE>
17440 </HEAD>
17441 <BODY>
17442 <H1>Message New Status Explained</H1>
17444 This part of the Pattern may have one of three possible values.
17445 The default value is &quot;Don't care&quot;, which matches any message.
17446 The other two values are &quot;Yes&quot;, which means the message must be
17447 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17448 means the message must <EM>not</EM> be &quot;New&quot; in order
17449 to be a match.
17450 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17451 same as <EM>Seen</EM>.
17453 The nomenclature for New and Recent is a bit confusing:
17455 New means that the message is Unseen.
17456 It could have been in your mailbox for a long time but if you haven't looked
17457 at it, it is still considered New.
17458 That matches the default Alpine index display that shows an N for such a
17459 message.
17461 Recent means that the message was added to this folder since the last time
17462 you opened the folder.
17463 Alpine also shows an N by default for these types of messages.
17464 If you were to run two copies of Alpine that opened a folder one right after
17465 the other, a message would only show up as Recent in (at most) the first
17466 Alpine session.
17468 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17469 for more information on Patterns.
17471 Look <A HREF="h_edit_nav_cmds">here</A>
17472 to see the available Editing and Navigation commands.
17474 &lt;End of help on this topic&gt;
17475 </BODY>
17476 </HTML>
17477 ======= h_config_role_stat_recent =======
17478 <HTML>
17479 <HEAD>
17480 <TITLE>Message Recent Status Explained</TITLE>
17481 </HEAD>
17482 <BODY>
17483 <H1>Message Recent Status Explained</H1>
17485 This part of the Pattern may have one of three possible values.
17486 The default value is &quot;Don't care&quot;, which matches any message.
17487 The other two values are &quot;Yes&quot;, which means the message must be
17488 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17489 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17490 to be a match.
17491 &quot;Recent&quot; means that the message was added to the folder since
17492 the last time the folder was opened.
17493 If more than one mail client has the folder opened, the message will
17494 appear to be &quot;Recent&quot; to only one of the clients.
17496 The nomenclature for New and Recent is a bit confusing:
17498 New means that the message is Unseen.
17499 It could have been in your mailbox for a long time but if you haven't looked
17500 at it, it is still considered New.
17501 That matches the default Alpine index display that shows an N for such a
17502 message.
17504 Recent means that the message was added to this folder since the last time
17505 you opened the folder.
17506 Alpine also shows an N by default for these types of messages.
17507 If you were to run two copies of Alpine that opened a folder one right after
17508 the other, a message would only show up as Recent in (at most) the first
17509 Alpine session.
17511 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17512 for more information on Patterns.
17514 Look <A HREF="h_edit_nav_cmds">here</A>
17515 to see the available Editing and Navigation commands.
17517 &lt;End of help on this topic&gt;
17518 </BODY>
17519 </HTML>
17520 ======= h_config_role_stat_del =======
17521 <HTML>
17522 <HEAD>
17523 <TITLE>Message Deleted Status Explained</TITLE>
17524 </HEAD>
17525 <BODY>
17526 <H1>Message Deleted Status Explained</H1>
17528 This part of the Pattern may have one of three possible values.
17529 The default value is &quot;Don't care&quot;, which matches any message.
17530 The other two values are &quot;Yes&quot;, which means the message must be
17531 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17532 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17533 to be a match.
17535 If you are thinking of using this part of the Pattern as a way to prevent
17536 messages from being filtered more than once in a Filter Pattern,
17537 take a look at the Filter Option
17538 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17539 instead.
17540 It should work better than using this field since it will hide the filtered
17541 messages even if they are already Deleted.
17542 That option is at the bottom of the Filter configuration screen.
17544 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17545 for more information on Patterns.
17547 Look <A HREF="h_edit_nav_cmds">here</A>
17548 to see the available Editing and Navigation commands.
17550 &lt;End of help on this topic&gt;
17551 </BODY>
17552 </HTML>
17553 ======= h_config_role_stat_ans =======
17554 <HTML>
17555 <HEAD>
17556 <TITLE>Message Answered Status Explained</TITLE>
17557 </HEAD>
17558 <BODY>
17559 <H1>Message Answered Status Explained</H1>
17561 This part of the Pattern may have one of three possible values.
17562 The default value is &quot;Don't care&quot;, which matches any message.
17563 The other two values are &quot;Yes&quot;, which means the message must be
17564 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17565 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17566 to be a match.
17568 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17569 for more information on Patterns.
17571 Look <A HREF="h_edit_nav_cmds">here</A>
17572 to see the available Editing and Navigation commands.
17574 &lt;End of help on this topic&gt;
17575 </BODY>
17576 </HTML>
17577 ======= h_config_role_abookfrom =======
17578 <HTML>
17579 <HEAD>
17580 <TITLE>Address in Address Book Explained</TITLE>
17581 </HEAD>
17582 <BODY>
17583 <H1>Address in Address Book Explained</H1>
17585 This option gives you a way to match messages that contain an address
17586 that is in one of your address books.
17587 Only the simple entries in your address books are searched.
17588 Address book distribution lists are ignored!
17590 This part of the Pattern may have one of five possible values.
17591 The default value is &quot;Don't care&quot;, which matches any message.
17592 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17593 from the message must be in at least one of your
17594 address books in order to be a match.
17595 The value &quot;No, not in any address book&quot;
17596 means none of the addresses may
17597 be in any of your address books in order to be a match.
17599 The values &quot;Yes, in specific address books&quot; and
17600 &quot;No, not in any of specific address books&quot; are similar but instead
17601 of depending on all address books you are allowed to give a list of address
17602 books to look in.
17603 Usually this would be a single address book but it may be a
17604 list of address books as well.
17605 For each of these &quot;specific&quot; address book options you Select which
17606 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17607 name (or list of names) of the address book in the
17608 &quot;Abook List&quot; field.
17609 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17610 The easiest way to fill in the Abook List field it to use
17611 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17612 line is highlighted.
17613 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17614 option is set to one of the two &quot;Specific&quot;, values.
17616 The addresses from the message that are checked for are determined by the
17617 setting you have for &quot;Types of addresses to check for in address book&quot;.
17618 If you set this to &quot;From&quot; the From address from the message will
17619 be looked up in the address book.
17620 If you set it to &quot;To&quot; instead then the To addresses will be used.
17621 If any of the To addresses are in the address book then it is considered
17622 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17623 You could set it to both From and To, in which case all of the From and To
17624 addresses are used.
17625 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17626 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17627 exists or the From address if there is no Reply-To address.
17628 Same for the Sender address.
17630 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17631 for more information on Patterns.
17633 Look <A HREF="h_edit_nav_cmds">here</A>
17634 to see the available Editing and Navigation commands.
17636 &lt;End of help on this topic&gt;
17637 </BODY>
17638 </HTML>
17639 ======= h_config_inabook_from =======
17640 <HTML>
17641 <HEAD>
17642 <TITLE>From</TITLE>
17643 </HEAD>
17644 <BODY>
17645 <H1>From</H1>
17647 Setting the From line will cause the address from the From header line
17648 of the message to be checked for in the address book.
17650 &lt;End of help on this topic&gt;
17651 </BODY>
17652 </HTML>
17653 ======= h_config_inabook_replyto =======
17654 <HTML>
17655 <HEAD>
17656 <TITLE>Reply-To</TITLE>
17657 </HEAD>
17658 <BODY>
17659 <H1>Reply-To</H1>
17661 Setting the Reply-To line will cause the address from the Reply-To header line
17662 of the message to be checked for in the address book.
17663 However, if there is no Reply-To header line in the message the From header
17664 line will be used instead.
17665 We understand this is dumb but we don't have an easy way around it.
17667 &lt;End of help on this topic&gt;
17668 </BODY>
17669 </HTML>
17670 ======= h_config_inabook_sender =======
17671 <HTML>
17672 <HEAD>
17673 <TITLE>Sender</TITLE>
17674 </HEAD>
17675 <BODY>
17676 <H1>Sender</H1>
17678 Setting the Sender line will cause the address from the Sender header line
17679 of the message to be checked for in the address book.
17680 However, if there is no Sender header line in the message the From header
17681 line will be used instead.
17682 We understand this is dumb but we don't have an easy way around it.
17684 &lt;End of help on this topic&gt;
17685 </BODY>
17686 </HTML>
17687 ======= h_config_inabook_to =======
17688 <HTML>
17689 <HEAD>
17690 <TITLE>To</TITLE>
17691 </HEAD>
17692 <BODY>
17693 <H1>To</H1>
17695 Setting the To line will cause the address from the To header line
17696 of the message to be checked for in the address book.
17698 &lt;End of help on this topic&gt;
17699 </BODY>
17700 </HTML>
17701 ======= h_config_inabook_cc =======
17702 <HTML>
17703 <HEAD>
17704 <TITLE>CC</TITLE>
17705 </HEAD>
17706 <BODY>
17707 <H1>CC</H1>
17709 Setting the CC line will cause the address from the CC header line
17710 of the message to be checked for in the address book.
17712 &lt;End of help on this topic&gt;
17713 </BODY>
17714 </HTML>
17715 ======= h_config_role_stat_8bitsubj =======
17716 <HTML>
17717 <HEAD>
17718 <TITLE>Raw 8-bit in Subject Explained</TITLE>
17719 </HEAD>
17720 <BODY>
17721 <H1>Raw 8-bit in Subject Explained</H1>
17723 It seems that lots of unwanted email contains unencoded 8-bit characters
17724 in the Subject.
17725 Normally, characters with the 8th bit set are not allowed in the Subject
17726 header unless they are MIME-encoded.
17727 This option gives you a way to match messages that have Subjects that
17728 contain unencoded 8-bit characters.
17730 This part of the Pattern may have one of three possible values.
17731 The default value is &quot;Don't care&quot;, which matches any message.
17732 The other two values are &quot;Yes&quot;, which means the Subject of
17733 the message must contain unencoded 8-bit characters (characters with the
17734 most significant bit set)
17735 in order to be a match; or &quot;No&quot;, which
17736 means the Subject must <EM>not</EM>
17737 contain unencoded 8-bit characters in order to be a match.
17739 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17740 for more information on Patterns.
17742 Look <A HREF="h_edit_nav_cmds">here</A>
17743 to see the available Editing and Navigation commands.
17745 &lt;End of help on this topic&gt;
17746 </BODY>
17747 </HTML>
17748 ======= h_config_role_bom =======
17749 <HTML>
17750 <HEAD>
17751 <TITLE>Beginning of Month</TITLE>
17752 </HEAD>
17753 <BODY>
17754 <H1>Beginning of Month</H1>
17756 This option gives you a limited ability to take different actions depending on whether
17757 this is the first time Alpine has been run this month or not.
17758 Though it would be nice to have such an option available, this is not the
17759 same as whether or not this is the first time a paricular folder has been
17760 opened this month.
17761 If you want some action (probably Filtering) to take place in a folder each
17762 month, then you will need to be sure that the folder is opened during the
17763 first Alpine session of the month in order for this option to be helpful.
17765 This part of the Pattern may have one of three possible values.
17766 The default value is &quot;Don't care&quot;, which matches any message.
17767 The other two values are &quot;Yes&quot;, which means this is the first
17768 time Alpine has been run this month;
17769 or &quot;No&quot;, which
17770 means this is not the first time Alpine has been run this month.
17772 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17773 for more information on Patterns.
17775 Here are some technical details.
17776 The way that Alpine decides if it is the beginning of the month or not is
17777 to compare today's date with the date stored in the
17778 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17779 variable in the config file.
17780 If the month of today's date is later than the month stored in the variable,
17781 then this is considered to be the first time you have run Alpine this month, and
17782 that turns the Beginning of the Month option on.
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_role_boy =======
17791 <HTML>
17792 <HEAD>
17793 <TITLE>Beginning of Year</TITLE>
17794 </HEAD>
17795 <BODY>
17796 <H1>Beginning of Year</H1>
17798 This option gives you a limited ability to take different actions depending on whether
17799 this is the first time Alpine has been run this year or not.
17800 Though it would be nice to have such an option available, this is not the
17801 same as whether or not this is the first time a paricular folder has been
17802 opened this year.
17803 If you want some action (probably Filtering) to take place in a folder each
17804 year, then you will need to be sure that the folder is opened during the
17805 first Alpine session of the year in order for this option to be helpful.
17807 This part of the Pattern may have one of three possible values.
17808 The default value is &quot;Don't care&quot;, which matches any message.
17809 The other two values are &quot;Yes&quot;, which means this is the first
17810 time Alpine has been run this year;
17811 or &quot;No&quot;, which
17812 means this is not the first time Alpine has been run this year.
17814 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17815 for more information on Patterns.
17817 Here are some technical details.
17818 The way that Alpine decides if it is the beginning of the year or not is
17819 to compare today's date with the date stored in the
17820 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17821 variable in the config file.
17822 If the year of today's date is later than the year stored in the variable,
17823 then this is considered to be the first time you have run Alpine this year, and
17824 that turns the Beginning of the Year option on.
17826 Look <A HREF="h_edit_nav_cmds">here</A>
17827 to see the available Editing and Navigation commands.
17829 &lt;End of help on this topic&gt;
17830 </BODY>
17831 </HTML>
17832 ======= h_config_role_inick =======
17833 <HTML>
17834 <HEAD>
17835 <TITLE>Initialize Values From Role Explained</TITLE>
17836 </HEAD>
17837 <BODY>
17838 <H1>Initialize Values From Role Explained</H1>
17840 This is a power user feature.
17841 You will usually want to leave this field empty.
17842 The value of this field is the nickname of another one of your roles.
17843 The Action values from that other role
17844 are used as the initial values of the Action items for this role.
17845 If you put something in any of the action fields for this role, that will
17846 override whatever was in the corresponding field of the initializer role.
17848 You might use this field if the &quot;Action&quot; part of one of your roles
17849 is something you want to use in more than one role.
17850 Instead of filling in those action values again for each role, you
17851 may give the nickname of the role where the values are filled in.
17852 It's just a shortcut way to define Role Actions.
17854 Here's an example to help explain how this works.
17855 Suppose you have a role with nickname &quot;role1&quot; and role1 has
17856 (among other things)
17858 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
17860 set.
17861 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
17862 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
17863 from role1 by default (and any of the other inheritable action values
17864 that are set).
17865 So if role2 had
17867 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
17869 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
17870 However, if role2 had
17872 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
17874 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
17876 If you wish,
17877 you may choose a nickname from your list of roles by using the
17878 &quot;T&quot; command.
17879 If the role you are using to initialize also has a role it initializes from,
17880 then that initialization happens first.
17881 That is, inheritance works as expected with the grandparent and
17882 great-grandparent (and so on) roles having the expected effect.
17884 Look <A HREF="h_edit_nav_cmds">here</A>
17885 to see the available Editing and Navigation commands.
17887 &lt;End of help on this topic&gt;
17888 </BODY>
17889 </HTML>
17890 ======= h_config_role_setfrom =======
17891 <HTML>
17892 <HEAD>
17893 <TITLE>Set From Explained</TITLE>
17894 </HEAD>
17895 <BODY>
17896 <H1>Set From Explained</H1>
17898 This describes part of the action to be taken if the Pattern for this
17899 role is a match.
17900 This field consists of a single address that will be used as the From
17901 address on the message you are sending.
17902 This should be a fully-qualified address like
17904 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17906 or just
17908 <CENTER><SAMP>user@domain</SAMP></CENTER>
17910 If you wish,
17911 you may choose an address from your address book with the
17912 &quot;T&quot; command.
17914 If this is left blank, then your normal From address will be used.
17916 You may also find it useful to add the changed From address to the
17917 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
17918 configuration option.
17920 Look <A HREF="h_edit_nav_cmds">here</A>
17921 to see the available Editing and Navigation commands.
17923 &lt;End of help on this topic&gt;
17924 </BODY>
17925 </HTML>
17926 ======= h_config_role_setreplyto =======
17927 <HTML>
17928 <HEAD>
17929 <TITLE>Set Reply-To Explained</TITLE>
17930 </HEAD>
17931 <BODY>
17932 <H1>Set Reply-To Explained</H1>
17934 This describes part of the action to be taken if the Pattern for this
17935 role is a match.
17936 This field consists of a single address that will be used as the Reply-To
17937 address on the message you are sending.
17938 This may be a fully-qualified address like
17940 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17942 or just
17944 <CENTER><SAMP>user@domain</SAMP></CENTER>
17946 If you wish,
17947 you may choose an address from your address book with the
17948 &quot;T&quot; command.
17950 If this is left blank, then there won't be a Reply-To address unless
17951 you have configured one specially with the
17952 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
17953 configuration option.
17955 Look <A HREF="h_edit_nav_cmds">here</A>
17956 to see the available Editing and Navigation commands.
17958 &lt;End of help on this topic&gt;
17959 </BODY>
17960 </HTML>
17961 ======= h_config_role_setfcc =======
17962 <HTML>
17963 <HEAD>
17964 <TITLE>Set Fcc Explained</TITLE>
17965 </HEAD>
17966 <BODY>
17967 <H1>Set Fcc Explained</H1>
17969 This describes part of the action to be taken if the Pattern for this
17970 role is a match.
17971 This field consists of a single folder name that will be used in
17972 the Fcc field of the message you are sending.
17973 You may put anything here that you would normally type into the Fcc
17974 field from the composer.
17976 In addition, an fcc of &quot;&quot; (two double quotation marks) means
17977 no Fcc.
17979 A blank field here means that Alpine will use its normal rules for deciding
17980 the default value of the Fcc field.
17981 For many roles, perhaps most, it may make more sense for you to use the
17982 other Alpine facilities for setting the Fcc.
17983 In particular, if you want the Fcc to depend on who you are sending the
17984 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
17985 is probably more useful.
17986 In that case, you would want to leave the Fcc field here blank.
17987 However, if you have a role that depends on who the message you are replying
17988 to was From, or what address that message was sent to;
17989 then it might make sense to set the Fcc for that role here.
17991 If you wish,
17992 you may choose a folder from your folder collections by using the
17993 &quot;T&quot; command.
17995 Look <A HREF="h_edit_nav_cmds">here</A>
17996 to see the available Editing and Navigation commands.
17998 &lt;End of help on this topic&gt;
17999 </BODY>
18000 </HTML>
18001 ======= h_config_role_usesmtp =======
18002 <HTML>
18003 <HEAD>
18004 <TITLE>Use SMTP Server Explained</TITLE>
18005 </HEAD>
18006 <BODY>
18007 <H1>Use SMTP Server Explained</H1>
18009 This describes part of the action to be taken if the Pattern for this
18010 role is a match.
18011 If this field has a value, then it will be used as the SMTP server
18012 to send mail when this role is being used (unless the SMTP server variable
18013 is set in the system-wide fixed configuration file).
18014 It has the same semantics as the
18015 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18016 variable in the Setup/Config screen.
18018 If you are using this to post from home when you are at home and from
18019 work when you are at work you need to be careful about postponing messages.
18020 When you postpone a composition that was using a role with this variable
18021 set, the SMTP server list will be saved
18022 with the postponed composition.
18023 It cannot be changed later.
18024 Because of this, you may want to make this a list of SMTP servers
18025 with the preferred server at the front of the list and alternate servers
18026 later in the list.
18027 In your &quot;Home&quot; role you would put the home SMTP server first and
18028 the work SMTP server last.
18029 In your &quot;Work&quot; role you would put the work SMTP server first and
18030 the home SMTP server last.
18031 Then if you start a composition as &quot;Work&quot;, postpone
18032 it, and then later resume it from home the work SMTP server will fail but
18033 the home SMTP server later in the list will succeed.
18035 You may be able to simplify things by making the regular
18036 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18037 variable in the Setup/Config screen a list instead of using roles
18038 to set the SMTP server.
18041 Look <A HREF="h_edit_nav_cmds">here</A>
18042 to see the available Editing and Navigation commands.
18044 &lt;End of help on this topic&gt;
18045 </BODY>
18046 </HTML>
18047 ======= h_config_role_usenntp =======
18048 <HTML>
18049 <HEAD>
18050 <TITLE>Use NNTP Server Explained</TITLE>
18051 </HEAD>
18052 <BODY>
18053 <H1>Use NNTP Server Explained</H1>
18055 This describes part of the action to be taken if the Pattern for this
18056 role is a match.
18057 If this field has a value, then it will be used as the NNTP server
18058 to post to newsgroups when this role is being used (unless the NNTP server
18059 variable
18060 is set in the system-wide fixed configuration file).
18061 It has the same semantics as the
18062 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18063 variable in the Setup/Config screen.
18065 This role setting can facilitate posting to the right nntp server for someone
18066 who reads news from various news sources.  The feature
18067 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18068 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18069 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18070 nntp servers for roles may be more desirable for some people.
18072 If you are using this to post from home when you are at home and from
18073 work when you are at work you need to be careful about postponing messages.
18074 When you postpone a composition that was using a role with this variable
18075 set, the NNTP server list will be saved
18076 with the postponed composition.
18077 It cannot be changed later.
18078 Because of this, you may want to make this a list of NNTP servers
18079 with the preferred server at the front of the list and alternate servers
18080 later in the list.
18081 In your &quot;Home&quot; role you would put the home NNTP server first and
18082 the work NNTP server last.
18083 In your &quot;Work&quot; role you would put the work NNTP server first and
18084 the home NNTP server last.
18085 Then if you start a composition as &quot;Work&quot;, postpone
18086 it, and then later resume it from home the work NNTP server will fail but
18087 the home NNTP server later in the list will succeed.
18089 You may be able to simplify things by making the regular
18090 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18091 variable in the Setup/Config screen a list instead of using roles
18092 to set the NNTP server.
18095 Look <A HREF="h_edit_nav_cmds">here</A>
18096 to see the available Editing and Navigation commands.
18098 &lt;End of help on this topic&gt;
18099 </BODY>
18100 </HTML>
18101 ======= h_config_role_setotherhdr =======
18102 <HTML>
18103 <HEAD>
18104 <TITLE>Set Other Headers Explained</TITLE>
18105 </HEAD>
18106 <BODY>
18107 <H1>Set Other Headers Explained</H1>
18109 This describes part of the action to be taken if the Pattern for this
18110 role is a match.
18111 This field gives you a way to set values for headers besides
18112 &quot;From&quot; and &quot;Reply-To&quot;.
18113 If you want to set either of those, use the specific
18114 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18116 This field is similar to the
18117 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18118 Each header you specify here must include the header tag 
18119 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18120 and may optionally include a value for that header.
18121 In order to see these headers when you compose using this role you 
18122 must use the rich header
18123 <!--chtml if pinemode="function_key"-->(F5)
18124 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18125 Here's an example that shows how you might set the To address.
18127 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18129 Headers set in this way are different from headers set with the
18130 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18131 will replace any value that already exists.
18132 For example, if you are Replying to a message there will already be at
18133 least one address in the To header (the address you are Replying to).
18134 However, if you Reply using a role that sets the To header, that role's
18135 To header value will be used instead.
18137 Limitation: Because commas are used to separate the list of
18138 Other Headers, it is not possible to have the value of a
18139 header contain a comma;
18140 nor is there currently an &quot;escape&quot; mechanism provided
18141 to make this work.
18143 Look <A HREF="h_edit_nav_cmds">here</A>
18144 to see the available Editing and Navigation commands.
18146 &lt;End of help on this topic&gt;
18147 </BODY>
18148 </HTML>
18149 ======= h_config_role_setlitsig =======
18150 <HTML>
18151 <HEAD>
18152 <TITLE>Set Literal Signature Explained</TITLE>
18153 </HEAD>
18154 <BODY>
18155 <H1>Set Literal Signature Explained</H1>
18157 This describes part of the action to be taken if the Pattern for this
18158 role is a match.
18159 This field contains the actual text for your signature, as opposed to
18160 the name of a file containing your signature.
18161 If this is defined it takes precedence over any value set in the
18162 &quot;Set Signature&quot; field.
18164 This is simply a different way to store the signature.
18165 The signature is stored inside your Alpine configuration file instead of in
18166 a separate file.
18167 Tokens work the same way they do with
18168 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18169 help text there for more information.
18172 The two character sequence &#92;n (backslash followed by
18173 the character n) will be used to signify a line-break in your signature.
18174 You don't have to enter the &#92;n, but it will be visible in the
18175 CHANGE THIS ROLE RULE window after you are done editing the signature.
18177 Look <A HREF="h_edit_nav_cmds">here</A>
18178 to see the available Editing and Navigation commands.
18180 &lt;End of help on this topic&gt;
18181 </BODY>
18182 </HTML>
18183 ======= h_config_role_setsig =======
18184 <HTML>
18185 <HEAD>
18186 <TITLE>Set Signature Explained</TITLE>
18187 </HEAD>
18188 <BODY>
18189 <H1>Set Signature Explained</H1>
18191 This describes part of the action to be taken if the Pattern for this
18192 role is a match.
18194 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18195 option from Setup/Config
18196 or the &quot;Set LiteralSig&quot; option for this role are defined,
18197 then this option will be ignored.
18198 You can tell that that is the case because the value of this
18199 option will show up as
18201 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18203 You may either use all Literal Signatures (signatures stored in your
18204 configuration file) throughout Alpine, or all signature files.
18205 You can't mix the two.
18207 This field consists of a filename that will be used as the signature
18208 file when using this role.
18210 If the filename is followed by a vertical bar (|) then instead
18211 of reading the contents of the file the file is assumed to be a
18212 program that will produce the text to be used on its standard output.
18213 The program can't have any arguments and doesn't receive any input from Alpine,
18214 but the rest of the processing works as if the contents came from a file.
18216 Instead of storing the data in a local file, the
18217 signature data may be stored remotely in an IMAP folder.
18218 In order to do this, 
18219 you must use a remote name for the signature.
18220 A remote signature name might look like:
18222 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18225 The syntax used here is the same as the syntax used for a remote
18226 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18227 Note that you may not access an existing signature file remotely,
18228 you have to create a new <EM>folder</EM> that contains the signature data.
18229 If the name you use here for the signature data is a remote name, then when
18230 you edit the file using the &quot;F&quot; command the data will
18231 be saved remotely in the folder.
18232 You aren't required to do anything special to create the folder, it
18233 gets created if you use a remote name.
18236 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18237 the name of the file) you have specified.
18238 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18240 Besides containing regular text, a signature file may also
18241 contain (or a signature program may produce) tokens that are replaced with text
18242 that depends on the message you are replying to or forwarding.
18243 The tokens all look like _word_ (a word surrounded by underscores).
18244 For example, if the token
18246 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18248 is included in the text of the signature file, then when you reply to
18249 or forward a message, the token will be replaced with the actual date
18250 the message you are replying to or forwarding was sent.
18252 If you use a role that has a signature file for a plain composition
18253 (that is, not a reply or forward) then there is no original message, so
18254 any tokens that depend on the message will be replaced with nothing.
18255 So if you want a signature file to be useful for new compositions it
18256 shouldn't include any of the tokens that depend on the message being
18257 replied to or forwarded.
18259 The list of available tokens is
18260 <A HREF="h_index_tokens">here</A>.
18262 Actually, for the adventurous, there is a way to conditionally include text based
18263 on whether or not a token would result in specific replacement text.
18264 For example, you could include some text based on whether or not
18265 the _NEWS_ token would result in any newsgroups if it was used.
18266 It's explained in detail
18267 <A HREF="h_reply_token_conditionals">here</A>.
18269 In the very unlikely event that you want to include a literal token in
18270 a signature file, you must precede it with a backslash character.
18271 For example, to include the literal text _DATE_ you must actually use
18272 &#92;_DATE_.
18273 It is not possible to have a literal backslash followed by an expanded token.
18275 A blank field here means that Alpine will use its normal rules for deciding
18276 which file (if any) to use for the signature file.
18278 An alternate method for storing the signature is available in
18279 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18281 Look <A HREF="h_edit_nav_cmds">here</A>
18282 to see the available Editing and Navigation commands.
18284 &lt;End of help on this topic&gt;
18285 </BODY>
18286 </HTML>
18287 ======= h_config_role_settempl =======
18288 <HTML>
18289 <HEAD>
18290 <TITLE>Set Template Explained</TITLE>
18291 </HEAD>
18292 <BODY>
18293 <H1>Set Template Explained</H1>
18295 This describes part of the action to be taken if the Pattern for this
18296 role is a match.
18297 This field consists of a filename that will be used as the template
18298 file when using this role.
18299 The template file is a file that is included at the top of the message you
18300 are composing.
18302 If the filename is followed by a vertical bar (|) then instead
18303 of reading the contents of the file the file is assumed to be a
18304 program that will produce the text to be used on its standard output.
18305 The program can't have any arguments and doesn't receive any input from Alpine,
18306 but the rest of the processing works as if the contents came from a file.
18308 Instead of storing the data in a local file, the
18309 template may be stored remotely in an IMAP folder.
18310 In order to do this, 
18311 you must use a remote name for the template.
18312 A remote template name might look like:
18314 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18317 The syntax used here is the same as the syntax used for a remote
18318 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18319 Note that you may not access an existing template file remotely,
18320 you have to create a new <EM>folder</EM> that contains the template data.
18321 If the name you use here for the template is a remote name, then when
18322 you edit the file using the &quot;F&quot; command the data will
18323 be saved remotely in the folder.
18324 You aren't required to do anything special to create the folder, it
18325 gets created if you use a remote name.
18327 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18328 the name of the file) you have specified.
18329 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18331 Besides containing regular text, the template file may also
18332 contain (or a template file program may produce) tokens that are replaced with text
18333 that depends on the message you are replying to or forwarding.
18334 The tokens all look like _word_ (a word surrounded by underscores).
18335 For example, if the token
18337 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18339 is included in the text of the template file, then when you reply to
18340 or forward a message, the token will be replaced with the actual date
18341 the message you are replying to or forwarding was sent.
18343 If you use a role that has a template file for a plain composition
18344 (that is, not a reply or forward) then there is no original message, so
18345 any tokens that depend on the message will be replaced with nothing.
18346 So if you want a template file to be useful for new compositions it
18347 shouldn't include any of the tokens that depend on the message being
18348 replied to or forwarded.
18350 The list of available tokens is
18351 <A HREF="h_index_tokens">here</A>.
18353 Actually, for the adventurous, there is a way to conditionally include text based
18354 on whether or not a token would result in specific replacement text.
18355 For example, you could include some text based on whether or not
18356 the _NEWS_ token would result in any newsgroups if it was used.
18357 It's explained in detail
18358 <A HREF="h_reply_token_conditionals">here</A>.
18360 In the very unlikely event that you want to include a literal token in
18361 a template file, you must precede it with a backslash character.
18362 For example, to include the literal text _DATE_ you must actually use
18363 &#92;_DATE_.
18364 It is not possible to have a literal backslash followed by an expanded token.
18366 A blank template field means that Alpine will not use a template file when
18367 this role is being used.
18369 Look <A HREF="h_edit_nav_cmds">here</A>
18370 to see the available Editing and Navigation commands.
18372 &lt;End of help on this topic&gt;
18373 </BODY>
18374 </HTML>
18375 ======= h_config_filt_stat_imp =======
18376 <HTML>
18377 <HEAD>
18378 <TITLE>Set Important Status Explained</TITLE>
18379 </HEAD>
18380 <BODY>
18381 <H1>Set Important Status Explained</H1>
18383 This describes part of the action to be taken if the Pattern for this
18384 filter is a match.
18385 If set to &quot;Don't change it&quot; then this does nothing.
18386 If set to &quot;Set this state&quot; then the Important flag is set
18387 for the matching message.
18388 If set to &quot;Clear this state&quot; then the Important flag is cleared
18389 for the matching message.
18390 The important flag usually causes an asterisk to show up in the MESSAGE
18391 INDEX.
18392 It may also be useful when selecting a set of messages
18393 with the Select command.
18395 Look <A HREF="h_edit_nav_cmds">here</A>
18396 to see the available Editing and Navigation commands.
18398 &lt;End of help on this topic&gt;
18399 </BODY>
18400 </HTML>
18401 ======= h_config_filt_stat_new =======
18402 <HTML>
18403 <HEAD>
18404 <TITLE>Set New Status Explained</TITLE>
18405 </HEAD>
18406 <BODY>
18407 <H1>Set New Status Explained</H1>
18409 This describes part of the action to be taken if the Pattern for this
18410 filter is a match.
18411 If set to &quot;Don't change it&quot; then this does nothing.
18412 If set to &quot;Set this state&quot; then the
18413 matching message is marked New.
18414 If set to &quot;Clear this state&quot; then the
18415 matching message is marked Seen.
18417 Look <A HREF="h_edit_nav_cmds">here</A>
18418 to see the available Editing and Navigation commands.
18420 &lt;End of help on this topic&gt;
18421 </BODY>
18422 </HTML>
18423 ======= h_config_filt_stat_ans =======
18424 <HTML>
18425 <HEAD>
18426 <TITLE>Set Answered Status Explained</TITLE>
18427 </HEAD>
18428 <BODY>
18429 <H1>Set Answered Status Explained</H1>
18431 This describes part of the action to be taken if the Pattern for this
18432 filter is a match.
18433 If set to &quot;Don't change it&quot; then this does nothing.
18434 If set to &quot;Set this state&quot; then the Answered flag is set
18435 for the matching message.
18436 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18437 for the matching message.
18439 Look <A HREF="h_edit_nav_cmds">here</A>
18440 to see the available Editing and Navigation commands.
18442 &lt;End of help on this topic&gt;
18443 </BODY>
18444 </HTML>
18445 ======= h_config_filt_stat_del =======
18446 <HTML>
18447 <HEAD>
18448 <TITLE>Set Deleted Status Explained</TITLE>
18449 </HEAD>
18450 <BODY>
18451 <H1>Set Deleted Status Explained</H1>
18453 This describes part of the action to be taken if the Pattern for this
18454 filter is a match.
18455 If set to &quot;Don't change it&quot; then this does nothing.
18456 If set to &quot;Set this state&quot; then the
18457 matching message is marked Deleted.
18458 If set to &quot;Clear this state&quot; then the
18459 matching message is marked UnDeleted.
18461 You should not use this option unless you are prepared to have matching
18462 messages expunged from the folder permanently.
18463 For example, if you type the Expunge command, this filter is applied
18464 before the expunge, so matching messages will be marked Deleted and then
18465 will be permanently expunged from the folder.
18466 However, since the index isn't redrawn in between the time that the message
18467 is marked Deleted and the time that you are asked to expunge, the only
18468 indication that you are expunging the message comes in the number of messages
18469 being expunged.
18470 The same thing may happen when you close a folder.
18471 It is also possible that an expunge not initiated by you will
18472 delete matching messages.
18474 Look <A HREF="h_edit_nav_cmds">here</A>
18475 to see the available Editing and Navigation commands.
18477 &lt;End of help on this topic&gt;
18478 </BODY>
18479 </HTML>
18480 ======= h_config_role_scoreval =======
18481 <HTML>
18482 <HEAD>
18483 <TITLE>Score Value Explained</TITLE>
18484 </HEAD>
18485 <BODY>
18486 <H1>Score Value Explained</H1>
18488 A message's score is the sum of the Score Values from all of the Scoring rules
18489 with Patterns that match the message.
18490 The value you give here is the Score Value associated with this rule.
18491 A Score Value is an integer between -100 and 100, with the default
18492 value of zero.
18494 Alternatively, if the
18495 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18496 field is defined
18497 (on the line right below the &quot;Score Value&quot; field)
18498 then the &quot;Score Value&quot; is ignored and
18499 the &quot;Score From Header&quot; field is used instead.
18501 Look <A HREF="h_edit_nav_cmds">here</A>
18502 to see the available Editing and Navigation commands.
18504 &lt;End of help on this topic&gt;
18505 </BODY>
18506 </HTML>
18507 ======= h_config_role_scorehdrtok =======
18508 <HTML>
18509 <HEAD>
18510 <TITLE>Score Value From Header Explained</TITLE>
18511 </HEAD>
18512 <BODY>
18513 <H1>Score Value From Header Explained</H1>
18515 This option provides a way to use a number that appears in the headers of your
18516 messages as the message's score, or as a component of that score.
18517 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18518 The idea behind this option is that there may be a score embedded in the
18519 headers of messages that has already been calculated outside of Alpine.
18520 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18521 somewhere in that header there is a score.
18523 The value for this option is the name of the header followed by parentheses
18524 with two arguments inside:
18526 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18528 No space is allowed between the comma and the start of the field_separators.
18529 It would be interpreted as the first separator if it was there.
18530 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18531 starts after that and goes to the second separator, and so on.
18532 It's easier to explain with examples.
18534 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18536 In the above example the header that is used is the &quot;X-Spam&quot; header.
18537 The value of that header (the part after the colon and the space) is split
18538 into fields separated by spaces.
18540 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18542 The second field is selected and converted to an integer. It only makes sense
18543 if Field2 really is an integer.
18545 Here's an example of a SpamAssassin header.
18546 The exact look of the header will vary, but if your incoming mail
18547 contains headers that look like the following
18549 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18551 you might want to use the hits value as a score.
18552 Since the score is an integer value you can't make use of the decimal part of
18553 the number, but
18554 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18555 and &quot;.&quot; as your separators.
18557 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18559 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18560 hits.
18561 The second field is &quot;10&quot; so the score value would be 10.
18563 Another example we've seen has headers that look like
18565 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18567 Because there are two equals before the 7% the value
18569 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18571 should capture the probability as the score.
18573 The Score From Header scoring value actually works just like the
18574 regular Score Value in that the rest of the pattern has to match before
18575 it is used and the scores from all the different scoring rules that
18576 match for a particular message are added together.
18577 When using the Score From Header method it may (or may not) make sense to
18578 use only a single scoring rule with a pattern that matches every message.
18580 Look <A HREF="h_edit_nav_cmds">here</A>
18581 to see the available Editing and Navigation commands.
18583 &lt;End of help on this topic&gt;
18584 </BODY>
18585 </HTML>
18586 ======= h_config_role_replyuse =======
18587 <HTML>
18588 <HEAD>
18589 <TITLE>Reply Use Explained</TITLE>
18590 </HEAD>
18591 <BODY>
18592 <H1>Reply Use Explained</H1>
18594 This option determines how this particular role will be used when Replying
18595 to a message.
18596 There are three possible values for this option.
18597 The value &quot;Never&quot;
18598 means that this role will not be a candidate for use when Replying.
18599 The role's Pattern will not be checked for a match, however the role will
18600 be available to be manually switched to if there is a confirmation prompt.
18603 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18604 mean that you do want to consider this role when Replying.
18605 For either of these settings, the role's Pattern will be compared with
18606 the message being replied to.
18607 If there is a match then this role will either be used without confirmation
18608 or will be the default when confirmation is asked for, depending on
18609 which of the two options is selected.
18610 If confirmation is requested, you will also have a chance to
18611 manually change the role to any one of your other roles.
18614 You won't be prompted for confirmation if none of your role Patterns
18615 match the message being replied to.
18616 This is independent of the value of the current option.
18617 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18618 feature may be used to change this behavior.
18620 &lt;End of help on this topic&gt;
18621 </BODY>
18622 </HTML>
18623 ======= h_config_role_forwarduse =======
18624 <HTML>
18625 <HEAD>
18626 <TITLE>Forward Use Explained</TITLE>
18627 </HEAD>
18628 <BODY>
18629 <H1>Forward Use Explained</H1>
18631 This option determines how this particular role will be used when Forwarding
18632 a message.
18633 There are three possible values for this option.
18634 The value &quot;Never&quot;
18635 means that this role will not be a candidate for use when Forwarding.
18636 The role's Pattern will not be checked for a match, however the role will
18637 be available to be manually switched to if there is a confirmation prompt.
18640 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18641 mean that you do want to consider this role when Forwarding.
18642 For either of these settings, the role's Pattern will be compared with
18643 the message being forwarded.
18644 If there is a match then this role will either be used without confirmation
18645 or will be the default when confirmation is asked for, depending on
18646 which of the two options is selected.
18647 If confirmation is requested, you will also have a chance to
18648 manually change the role to any one of your other roles.
18651 You won't be prompted for confirmation if none of your role Patterns
18652 match the message being forwarded.
18653 This is independent of the value of the current option.
18654 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18655 feature may be used to change this behavior.
18657 &lt;End of help on this topic&gt;
18658 </BODY>
18659 </HTML>
18660 ======= h_config_role_composeuse =======
18661 <HTML>
18662 <HEAD>
18663 <TITLE>Compose Use Explained</TITLE>
18664 </HEAD>
18665 <BODY>
18666 <H1>Compose Use Explained</H1>
18668 This option determines how this particular role will be used when Composing
18669 a new message using the &quot;Compose&quot; command.
18670 This does not affect what happens when using the &quot;Role&quot; command
18671 to compose a new message.
18672 The &quot;Role&quot; command allows you to select a role from all of the
18673 roles you have defined, regardless of what Uses you've assigned to those
18674 roles.
18677 There are three possible values for this option.
18678 The value &quot;Never&quot;
18679 means that this role will not be a candidate for use when Composing.
18680 The role's Current Folder Type will not be checked for a match, however the role
18681 will be available to be manually switched to if there is a confirmation prompt.
18684 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18685 mean that you do want to consider this role when Composing.
18686 For either of these settings,
18687 the role's Current Folder Type will be checked (since there is no message
18688 to compare with, the rest of the Pattern is considered a match).
18689 If there is a match then this role will either be used without confirmation
18690 or will be the default when confirmation is asked for, depending on
18691 which of the two options is selected.
18692 If confirmation is requested, you will also have a chance to
18693 manually change the role to any one of your other roles.
18696 When using the Compose command the role checking is a little different
18697 because there is no message being replied to or forwarded.
18698 Because of this the Current Folder Type is checked but the header pattern
18699 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18700 A role is considered to be a match if it is a candidate for Compose Use and
18701 its Current Folder Type matches the currently open folder.
18702 This could be useful if you want to set a role based on the folder you
18703 are reading, or the type of folder you are reading.
18706 You won't be prompted for confirmation if none of your role Patterns
18707 are a match.
18708 This is independent of the value of the current option.
18709 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18710 feature may be used to change this behavior.
18712 &lt;End of help on this topic&gt;
18713 </BODY>
18714 </HTML>
18715 ======= h_config_filter_folder =======
18716 <HTML>
18717 <HEAD>
18718 <TITLE>Filter Folder Explained</TITLE>
18719 </HEAD>
18720 <BODY>
18721 <H1>Filter Folder Explained</H1>
18723 When the Filter Action is set to &quot;Move&quot;,
18724 the folder or folders specified here will be used to store messages matching
18725 the provided pattern.
18728 If you set the Filter Action to &quot;Move&quot; you must give a folder name
18729 here.
18732 If you wish,
18733 you may choose a folder from your folder collections by using the
18734 &quot;T&quot; command.
18736 Besides regular text, the folder name may also contain
18737 tokens that are replaced with text representing the current date
18738 when you run Alpine.
18739 For example, if the folder name you use is
18741 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
18743 that is replaced with something like
18745 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
18749 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
18751 becomes
18753 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
18755 The token names must be surrounded by underscores in order to be recognized
18756 as tokens.
18757 The tokens that may be used are those that are derived from the current date.
18758 They're listed near the bottom of the list of tokens give
18759 <A HREF="h_index_tokens">here</A>.
18761 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18762 for more information on Patterns.
18764 Look <A HREF="h_edit_nav_cmds">here</A>
18765 to see the available Editing and Navigation commands.
18767 &lt;End of help on this topic&gt;
18768 </BODY>
18769 </HTML>
18770 ======= h_config_filter_kw_set =======
18771 <HTML>
18772 <HEAD>
18773 <TITLE>Set These Keywords Explained</TITLE>
18774 </HEAD>
18775 <BODY>
18776 <H1>Set These Keywords Explained</H1>
18778 This describes part of the action to be taken if the Pattern for this
18779 filter is a match.
18780 Read a little about keywords in the help text for the
18781 <A HREF="h_common_flag">Flag</A> command.
18782 This option is a list of keywords that will be Set when there is a match.
18783 If you wish, you may choose keywords from the list of keywords you have
18784 defined with the &quot;T&quot; command.
18785 You may add new keywords by defining them in the
18786 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18787 If you have given a keyword a nickname when configuring it,
18788 that nickname may be used instead of the actual keyword.
18791 Look <A HREF="h_edit_nav_cmds">here</A>
18792 to see the available Editing and Navigation commands.
18794 &lt;End of help on this topic&gt;
18795 </BODY>
18796 </HTML>
18797 ======= h_config_filter_kw_clr =======
18798 <HTML>
18799 <HEAD>
18800 <TITLE>Clear These Keywords Explained</TITLE>
18801 </HEAD>
18802 <BODY>
18803 <H1>Clear These Keywords Explained</H1>
18805 This describes part of the action to be taken if the Pattern for this
18806 filter is a match.
18807 Read a little about keywords in the help text for the
18808 <A HREF="h_common_flag">Flag</A> command.
18809 This option is a list of keywords that will be Cleared when there is a match.
18810 If you wish, you may choose keywords from the list of keywords you have
18811 defined with the &quot;T&quot; command.
18812 You may add new keywords by defining them in the
18813 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18814 If you have given a keyword a nickname when configuring it,
18815 that nickname may be used instead of the actual keyword.
18818 Look <A HREF="h_edit_nav_cmds">here</A>
18819 to see the available Editing and Navigation commands.
18821 &lt;End of help on this topic&gt;
18822 </BODY>
18823 </HTML>
18824 ======= h_index_tokens =======
18825 <HTML>
18826 <HEAD>
18827 <TITLE>Tokens for Index and Replying</TITLE>
18828 </HEAD>
18829 <BODY>
18831 This set of special tokens may be used in the
18832 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
18833 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
18834 in signature files,
18835 in template files used in
18836 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
18837 that is the target of a Filter Rule.
18838 Some of them aren't available in all situations.
18840 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
18841 option, but they must be surrounded by underscores for the
18842 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
18843 and in the target of Filter Rules.
18847 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
18849 <DL>
18850 <DT>SUBJECT</DT>
18851 <DD>
18852 This token represents the Subject the sender gave the message.
18853 Alternatives for use in the index screen are
18854 SUBJKEY, SUBJKEYINIT, SUBJECTTEXT, SUBJKEYTEXT, and SUBJKEYINITTEXT.
18855 You may color the subject text in the MESSAGE INDEX screen differently by using the
18856 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
18857 <A HREF="h_config_index_opening_color">Index Opening Color</A>
18858 options available from
18859 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18860 </DD>
18862 <DT>FROM</DT>
18863 <DD>
18864 This token represents the personal name (or email address if the name
18865 is unavailable) of the person specified in the message's &quot;From:&quot;
18866 header field.
18867 You may color the from text in the MESSAGE INDEX screen differently by using the
18868 <A HREF="h_config_index_from_color">Index From Color</A>
18869 option available from
18870 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18871 </DD>
18873 <DT>ADDRESS</DT>
18874 <DD>
18875 This is similar to the &quot;FROM&quot; token, only it is always the
18876 email address, never the personal name.
18877 For example, &quot;mailbox@domain&quot;.
18878 </DD>
18880 <DT>MAILBOX</DT>
18881 <DD>
18882 This is the same as the &quot;ADDRESS&quot; except that the 
18883 domain part of the address is left off.
18884 For example, &quot;mailbox&quot;.
18885 </DD>
18887 <DT>SENDER</DT>
18888 <DD>
18889 This token represents the personal name (or email address) of the person
18890 listed in the message's &quot;Sender:&quot; header field.
18891 </DD>
18893 <DT>TO</DT>
18894 <DD>
18895 This token represents the personal names (or email addresses if the names
18896 are unavailable) of the persons specified in the
18897 message's &quot;To:&quot; header field.
18898 </DD>
18900 <DT>NEWSANDTO</DT>
18901 <DD>
18902 This token represents the newsgroups from the
18903 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18904 the personal names (or email addresses if the names
18905 are unavailable) of the persons specified in the
18906 message's &quot;To:&quot; header field.
18907 </DD>
18909 <DT>TOANDNEWS</DT>
18910 <DD>
18911 Same as &quot;NEWSANDTO&quot; except in the opposite order.
18912 </DD>
18914 <DT>NEWS</DT>
18915 <DD>
18916 This token represents the newsgroups from the
18917 message's &quot;Newsgroups:&quot; header field.
18918 </DD>
18920 <DT>CC</DT>
18921 <DD>
18922 This token represents the personal names (or email addresses if the names
18923 are unavailable) of the persons specified in the
18924 message's &quot;Cc:&quot; header field.
18925 </DD>
18927 <DT>RECIPS</DT>
18928 <DD>
18929 This token represents the personal names (or email addresses if the names
18930 are unavailable) of the persons specified in both the
18931 message's &quot;To:&quot; header field and
18932 the message's &quot;Cc:&quot; header field.
18933 </DD>
18935 <DT>NEWSANDRECIPS</DT>
18936 <DD>
18937 This token represents the newsgroups from the
18938 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18939 the personal names (or email addresses if the names
18940 are unavailable) of the persons specified in the
18941 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
18942 </DD>
18944 <DT>RECIPSANDNEWS</DT>
18945 <DD>
18946 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
18947 </DD>
18949 <DT>INIT</DT>
18950 <DD>
18951 This token represents the initials from the personal name
18952 of the person specified in the message's &quot;From:&quot;
18953 header field.
18954 If there is no personal name, it is blank.
18955 </DD>
18957 <DT>DATE</DT>
18958 <DD>
18959 This token represents the date on which the message was sent, according
18960 to the &quot;Date&quot; header field.
18961 It has the format MMM DD. For example, &quot;Oct 23&quot;.
18962 The feature
18963 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
18964 which adjusts for the timezone the message was sent from,
18965 may have an effect on the value of this token as well as the values of
18966 all of the other DATE or TIME tokens.
18967 Some of the DATE and TIME tokens are displayed in a locale-specific
18968 way unless the option
18969 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
18970 </DD>
18972 <DT>SMARTDATE</DT>
18973 <DD>
18974 This token represents the date on which the message was sent, according
18975 to the &quot;Date&quot; header field.
18976 It is &quot;Today&quot; if the message was sent today,
18977 &quot;Yesterday&quot; for yesterday,
18978 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
18979 message is from last year and is more than six months old it includes the year, as well.
18980 See the SMARTDATE alternatives below, as well.
18981 </DD>
18983 <DT>SMARTTIME</DT>
18984 <DD>
18985 This token represents the most relevant elements of the date on which
18986 the message was sent (according to the &quot;Date&quot; header field),
18987 in a compact form. If the message was sent today, only the time is used
18988 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
18989 the past week, the day of the week and the hour are used
18990 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
18991 given as date, month, and year (e.g. &quot;23Aug00&quot;,
18992 &quot;9Apr98&quot;).
18993 </DD>
18995 <DT>SMARTDATETIME</DT>
18996 <DD>
18997 This is a combination of SMARTDATE and SMARTTIME.
18998 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
18999 case it is SMARTTIME.
19000 See the SMARTDATETIME alternatives below, as well.
19001 </DD>
19003 <DT>DATEISO</DT>
19004 <DD>
19005 This token represents the date on which the message was sent, according
19006 to the &quot;Date&quot; header field.
19007 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19008 </DD>
19010 <DT>SHORTDATEISO</DT>
19011 <DD>
19012 This token represents the date on which the message was sent, according
19013 to the &quot;Date&quot; header field.
19014 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19015 </DD>
19017 <DT>SHORTDATE1</DT>
19018 <DD>
19019 This token represents the date on which the message was sent, according
19020 to the &quot;Date&quot; header field.
19021 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19022 </DD>
19024 <DT>SHORTDATE2</DT>
19025 <DD>
19026 This token represents the date on which the message was sent, according
19027 to the &quot;Date&quot; header field.
19028 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19029 </DD>
19031 <DT>SHORTDATE3</DT>
19032 <DD>
19033 This token represents the date on which the message was sent, according
19034 to the &quot;Date&quot; header field.
19035 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19036 </DD>
19038 <DT>SHORTDATE4</DT>
19039 <DD>
19040 This token represents the date on which the message was sent, according
19041 to the &quot;Date&quot; header field.
19042 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19043 </DD>
19045 <DT>LONGDATE</DT>
19046 <DD>
19047 This token represents the date on which the message was sent, according
19048 to the &quot;Date&quot; header field.
19049 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19050 </DD>
19052 <DT>SMARTDATE alternatives</DT>
19053 <DD>
19054 There are several versions of SMARTDATE that are all the same except
19055 for the way they format dates far in the past.
19056 SMARTDATE formats the date using the information from your locale settings
19057 to format the date string. It may end up formatting dates so that they look
19058 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19059 The feature
19060 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19061 may have an affect on the values of these tokens.
19062 If you want more control you may use one of the following.
19063   <DL>
19064   <DT>SMARTDATE</DT> <DD>If the option
19065 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19066 then this will be locale specific. Control this with the
19067 LC_TIME locale setting on a UNIX system. On Windows
19068 the Regional Options control panel may be used to set the Short date
19069 format. At the programming level, the strftime routine is what Alpine
19070 uses to print the date.
19071 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19072 to SMARTDATES1.</DD>
19073   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19074   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19075   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19076   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19077   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19078   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19079   </DL>
19080 </DD>
19082 <DT>SMARTDATETIME alternatives</DT>
19083 <DD>
19084 There are several versions of SMARTDATETIME that are all very similar.
19085 The ones that end in 24 use a 24-hour clock for Today's messages instead
19086 of a 12-hour clock.
19087 The other variation is
19088 for the way they format dates far in the past.
19089 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19090 to format the date string. It may end up formatting dates so that they look
19091 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19092 The feature
19093 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19094 may have an affect on the values of these tokens.
19095 The possible choices are:
19096   <DL>
19097   <DT>SMARTDATETIME</DT> <DD>If the option
19098 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19099 then this will be locale specific. Control this with the
19100 LC_TIME locale setting on a UNIX system. On Windows
19101 the Regional Options control panel may be used to set the Short date
19102 format. At the programming level, the strftime routine is what Alpine
19103 uses to print the date.
19104 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19105 to SMARTDATETIMES1.</DD>
19106   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19107   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19108   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19109   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19110   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19111   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19112   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19113   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19114   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19115   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19116   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19117   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19118   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19119   </DL>
19120 </DD>
19122 <DT>DAYDATE</DT>
19123 <DD>
19124 This token represents the date on which the message was sent, according
19125 to the &quot;Date&quot; header field.
19126 It looks like &quot;Sat, 23 Oct 1998&quot;.
19127 This token is never converted in any locale-specific way.
19128 </DD>
19130 <DT>PREFDATE</DT>
19131 <DD>
19132 This token represents the date on which the message was sent, according
19133 to the &quot;Date&quot; header field.
19134 It is your operating system's idea of the preferred date representation for the current locale.
19135 Internally it uses the %x version of the date from the strftime routine.
19136 </DD>
19138 <DT>PREFTIME</DT>
19139 <DD>
19140 This token represents the time at which the message was sent, according
19141 to the &quot;Date&quot; header field.
19142 It is the preferred time representation for the current locale.
19143 Internally it uses the %X version of the time from the strftime routine.
19144 </DD>
19146 <DT>PREFDATETIME</DT>
19147 <DD>
19148 This token represents the date and time at which the message was sent, according
19149 to the &quot;Date&quot; header field.
19150 It is the preferred date and time representation for the current locale.
19151 Internally it uses the %c version of the time from the strftime routine.
19152 </DD>
19154 <DT>DAY</DT>
19155 <DD>
19156 This token represents the day of the month on which the message was sent,
19157 according to the &quot;Date&quot; header field.
19158 For example, &quot;23&quot; or &quot;9&quot;.
19159 </DD>
19161 <DT>DAY2DIGIT</DT>
19162 <DD>
19163 This token represents the day of the month on which the message was sent,
19164 according to the &quot;Date&quot; header field.
19165 For example, &quot;23&quot; or &quot;09&quot;.
19166 It is always 2 digits.
19167 </DD>
19169 <DT>DAYORDINAL</DT>
19170 <DD>
19171 This token represents the ordinal number that is the day of
19172 the month on which the message was sent,
19173 according to the &quot;Date&quot; header field.
19174 For example, &quot;23rd&quot; or &quot;9th&quot;.
19175 </DD>
19177 <DT>DAYOFWEEK</DT>
19178 <DD>
19179 This token represents the day of the week on which the message was sent,
19180 according to the &quot;Date&quot; header field.
19181 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19182 </DD>
19184 <DT>DAYOFWEEKABBREV</DT>
19185 <DD>
19186 This token represents the day of the week on which the message was sent,
19187 according to the &quot;Date&quot; header field.
19188 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19189 </DD>
19191 <DT>MONTHABBREV</DT>
19192 <DD>
19193 This token represents the month the message was sent, according
19194 to the &quot;Date&quot; header field.
19195 For example, &quot;Oct&quot;.
19196 </DD>
19198 <DT>MONTHLONG</DT>
19199 <DD>
19200 This token represents the month in which the message was sent, according
19201 to the &quot;Date&quot; header field.
19202 For example, &quot;October&quot;.
19203 </DD>
19205 <DT>MONTH</DT>
19206 <DD>
19207 This token represents the month in which the message was sent, according
19208 to the &quot;Date&quot; header field.
19209 For example, &quot;10&quot; or &quot;9&quot;.
19210 </DD>
19212 <DT>MONTH2DIGIT</DT>
19213 <DD>
19214 This token represents the month in which the message was sent, according
19215 to the &quot;Date&quot; header field.
19216 For example, &quot;10&quot; or &quot;09&quot;.
19217 It is always 2 digits.
19218 </DD>
19220 <DT>YEAR</DT>
19221 <DD>
19222 This token represents the year the message was sent, according
19223 to the &quot;Date&quot; header field.
19224 For example, &quot;1998&quot; or &quot;2001&quot;.
19225 </DD>
19227 <DT>YEAR2DIGIT</DT>
19228 <DD>
19229 This token represents the year the message was sent, according
19230 to the &quot;Date&quot; header field.
19231 For example, &quot;98&quot; or &quot;01&quot;.
19232 It is always 2 digits.
19233 </DD>
19235 <DT>TIME24</DT>
19236 <DD>
19237 This token represents the time at which the message was sent, according
19238 to the &quot;Date&quot; header field.
19239 There is no adjustment made for different time zones, so you'll get
19240 the time the message was sent according to the time zone the sender
19241 was in.
19242 It has the format HH:MM. For example, &quot;17:28&quot;.
19243 </DD>
19245 <DT>TIME12</DT>
19246 <DD>
19247 This token represents the time at which the message was sent, according
19248 to the &quot;Date&quot; header field.
19249 This time is for a 12 hour clock.
19250 It has the format HH:MMpm.
19251 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19252 </DD>
19254 <DT>TIMEZONE</DT>
19255 <DD>
19256 This token represents the numeric timezone from
19257 the &quot;Date&quot; header field.
19258 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19259 </DD>
19261 </DL>
19264 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19266 <DL>
19267 <DT>MSGNO</DT>
19268 <DD>
19269 This token represents the message's current position in the folder that,
19270 of course, may change as the folder is sorted or new mail arrives.
19271 </DD>
19273 <DT>STATUS</DT>
19274 <DD>
19275 This token represents a three character wide field displaying various
19276 aspects of the message's state.
19277 The first character is either blank,
19278 a '*' for message marked Important, or a '+' indicating a message
19279 addressed directly to you (as opposed to your having received it via a
19280 mailing list, for example).
19281 When the feature
19282 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19283 is set, if the first character would have been
19284 blank then it will instead be a '-' if the message is cc'd to you.
19285 The second character is typically blank,
19286 though the arrow cursor may occupy it if either the 
19287 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19288 or the
19289 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19290 is set (or you actually are on a slow link).
19291 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19292 '<A HREF="h_flag_answered">A</A>' (Answered),
19293 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19294 '<A HREF="h_flag_new">N</A>' (New), or blank.
19296 If you are using a threaded view of the index and this message is at the
19297 top of a collapsed portion of a thread,
19298 then this token refers to all of the messages in the collapsed portion of
19299 the thread instead of just the top message.
19300 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19301 are marked Important, else a '+' if any of the messages are addressed
19302 to you, else a '-' if any of the messages are cc'd to you.
19303 The third character will be a 'D' if <EM>all</EM> of the messages
19304 in the collapsed thread are marked deleted,
19305 an 'A' if <EM>all</EM> of the messages
19306 in the collapsed thread are marked answered,
19307 it will be an 'N' if any of
19308 the messages are undeleted and unseen, and it will be blank otherwise.
19309 </DD>
19311 <DT>FULLSTATUS</DT>
19312 <DD>
19313 This token represents a less abbreviated alternative
19314 to the &quot;STATUS&quot; token.
19315 It is six characters wide.
19316 The first character is '+', '-', or blank, the
19317 second blank, the third either '*' or blank, the fourth
19318 '<A HREF="h_flag_new">N</A>' or blank,
19319 the fifth '<A HREF="h_flag_answered">A</A>'
19320 or blank, and the sixth character is
19321 either '<A HREF="h_flag_deleted">D</A>' or
19322 blank.
19324 If you are using a threaded view of the index and this message is at the
19325 top of a collapsed portion of a thread,
19326 then this token refers to all of the messages in the collapsed portion of
19327 the thread instead of just the top message.
19328 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19329 of the messages in the collapsed thread are addressed to you or cc'd to you.
19330 The third character will be '*' if any of the messages are marked
19331 Important.
19332 The fourth character will be 'N' if all of the messages in the thread
19333 are New, else 'n' if some of the messages in the thread are New, else blank.
19334 The fifth character will be 'A' or 'a' or blank, and the sixth character
19335 will be 'D' or 'd' or blank.
19336 </DD>
19338 <DT>IMAPSTATUS</DT>
19339 <DD>
19340 This token represents an even less abbreviated alternative to the
19341 &quot;STATUS&quot; token.
19342 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19343 an 'N' if the message is new to this folder since the last time
19344 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19345 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19346 new to the folder since it was last opened <EM>but</EM> has not been
19347 viewed, or a blank if the message has been in the folder since it was
19348 last opened and has been viewed.
19350 If you are using a threaded view of the index and this message is at the
19351 top of a collapsed portion of a thread,
19352 then the fourth character will be
19353 'N' if all of the messages in the thread are unseen and recent;
19354 else 'n' if some of the messages in the thread are unseen and recent;
19355 else 'U' if all of the messages in the thread are unseen and not recent;
19356 else 'u' if some of the messages in the thread are unseen and not recent;
19357 else 'R' if all of the messages in the thread are seen and recent;
19358 else 'r' if some of the messages in the thread are seen and recent;
19359 else blank.
19360 </DD>
19362 <DT>SHORTIMAPSTATUS</DT>
19363 <DD>
19364 This is the same as the last four of the six characters of IMAPSTATUS,
19365 so the '+' To Me information will be missing.
19366 </DD>
19368 <DT>SIZE</DT>
19369 <DD>
19370 This token represents the total size, in bytes, of the message.
19371 If a &quot;K&quot; (Kilobyte)
19372 follows the number, the size is approximately 1,000
19373 times that many bytes (rounded to the nearest 1,000).
19374 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19375 1,000,000 times that many bytes.
19376 Commas are not used in this field.
19377 This field is seven characters wide, including the enclosing parentheses.
19378 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19379 The progression of sizes used looks like:
19382 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19384 </DD>
19386 <DT>SIZECOMMA</DT>
19387 <DD>
19388 This token represents the total size, in bytes, of the message.
19389 If a &quot;K&quot; (Kilobyte)
19390 follows the number, the size is approximately 1,000
19391 times that many bytes (rounded to the nearest 1,000).
19392 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19393 1,000,000 times that many bytes.
19394 Commas are used if the number shown is 1,000 or greater.
19395 The SIZECOMMA field is one character wider than the SIZE field.
19396 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19397 The progression of sizes used looks like:
19400 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19402 </DD>
19404 <DT>KSIZE</DT>
19405 <DD>
19406 This token represents the total size of the message, expressed in
19407 kilobytes or megabytes, as most appropriate.
19408 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19409 The progression of sizes used looks like:
19412 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19414 </DD>
19416 <DT>SIZENARROW</DT>
19417 <DD>
19418 This token represents the total size, in bytes, of the message.
19419 If a &quot;K&quot; (Kilobyte)
19420 follows the number, the size is approximately 1,000
19421 times that many bytes.
19422 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19423 1,000,000 times that many bytes.
19424 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19425 1,000,000,000 times that many bytes.
19426 This field uses only five characters of screen width, including the enclosing
19427 parentheses.
19428 The progression of sizes used looks like:
19431 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19433 </DD>
19435 <DT>DESCRIPSIZE</DT>
19436 <DD>
19437 This token is intended to represent a more useful description of the
19438 message than just its size, but it isn't very useful at this point.
19439 The plus sign in this view means there are attachments.
19440 Note that including this token in
19441 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19442 display a little while Alpine collects the necessary information.
19443 </DD>
19445 <DT>SUBJKEY</DT>
19446 <DD>
19447 This token is the same as the SUBJECT token unless keywords are set for
19448 the message.
19449 In that case, a list of keywords enclosed in braces will be prepended to
19450 the subject of the message.
19451 Only those keywords that you have defined in your
19452 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19453 in Setup/Config are considered in the list.
19454 In other words, keywords that have been set by some other means, perhaps
19455 by another email program, won't show up unless included in
19456 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19457 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19458 prepended to the subject in the MESSAGE TEXT screen.
19459 If you have given a keyword a nickname
19460 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19461 instead of the actual keyword.
19462 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19463 option may be used to modify this token slightly.
19464 It is also possible to color keywords in the index using the
19465 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19466 </DD>
19468 <DT>SUBJKEYINIT</DT>
19469 <DD>
19470 This token is the same as the SUBJKEY token except that instead of
19471 prepending a list of keywords to the subject, a list of first initials
19472 of keywords will be prepended instead.
19473 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19474 set (or Work and Now are the Alpine nicknames of keywords that are set)
19475 then the SUBJKEY token would cause a result like
19477 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19479 whereas the SUBJKEYINIT token would give
19481 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19483 Only those keywords that you have defined in your
19484 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19485 in Setup/Config are considered in the list.
19486 In other words, keywords that have been set by some other means, perhaps
19487 by another email program, won't show up unless included in
19488 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19489 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19490 option may be used to modify this token slightly.
19491 It is also possible to color keywords in the index using the
19492 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19493 </DD>
19495 <DT>SUBJECTTEXT</DT>
19496 <DD>
19497 Same as SUBJECT but if there is room in the Subject field for more text,
19498 the opening part of the text of the message is displayed after the subject.
19499 The time needed to fetch the text may cause a performance problem
19500 which can, of course, be avoided by using the SUBJECT version of
19501 the Subject instead.
19502 You may color this opening text differently by using the
19503 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19504 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19505 You may adjust the characters that are displayed between the Subject and the
19506 opening text with the option
19507 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19508 </DD>
19510 <DT>SUBJKEYTEXT</DT>
19511 <DD>
19512 Same as SUBJKEY but with the opening message text.
19513 </DD>
19515 <DT>OPENINGTEXT</DT>
19516 <DD>
19517 This is similar to SUBJECTTEXT.
19518 Instead of combining the Subject and the opening text in a single
19519 field in the index screen this token allows you to allocate a
19520 separate column just for the opening text of the message.
19521 The time needed to fetch this text may cause a performance problem.
19522 You may color this opening text differently by using the
19523 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19524 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19525 </DD>
19527 <DT>OPENINGTEXTNQ</DT>
19528 <DD>
19529 This is very similar to OPENINGTEXT.
19530 The NQ stands for No Quotes.
19531 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19532 For some messages this may be confusing.
19533 For example, a message might have a line preceding some quoted
19534 text that reads something like &quot;On May 8th person A said.&quot;
19535 That no longer makes sense after the quoted text is deleted and it
19536 will appear that person A said whatever the text after the quote
19537 is, even though that is really person B talking.
19538 </DD>
19540 <DT>SUBJKEYINITTEXT</DT>
19541 <DD>
19542 Same as SUBJKEYINIT but with the opening message text.
19543 </DD>
19545 <DT>KEY</DT>
19546 <DD>
19547 This is a space-delimited list of keywords that are set for the message.
19548 Only those keywords that you have defined in your
19549 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19550 in Setup/Config are considered in the list.
19551 In other words, keywords that have been set by some other means, perhaps
19552 by another email program, won't show up unless included in
19553 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19554 If you have given a keyword a nickname
19555 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19556 instead of the actual keyword.
19557 It is also possible to color keywords in the index using the
19558 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19559 This token defaults to an arbitrary width of 5.
19560 You should set it to whatever width suits you using something
19561 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19562 </DD>
19564 <DT>KEYINIT</DT>
19565 <DD>
19566 This is a list of keyword initials that are set for the message.
19567 If you have given a keyword a nickname
19568 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19569 is displayed instead of the initial of the actual keyword.
19570 It is also possible to color keyword initials in the index using the
19571 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19572 This token defaults to an arbitrary width of 2.
19573 You should set it to whatever width suits you using something
19574 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19575 </DD>
19577 <DT>PRIORITY</DT>
19578 <DD>
19579 The X-Priority header is a non-standard header that is used in a
19580 somewhat standard way by many mail programs.
19581 Alpine expects the value of this header to be a digit with a value
19582 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19583 Since this priority is something that the sender sets it is only an indication
19584 of the priority that the sender attaches to the mail and it is therefore almost
19585 totally unreliable for use as a filtering criterion.
19586 This token will display the numeric value of the priority if it is between
19587 1 and 5.
19588 It will be suppressed (blank) if the value is 3, which is normal priority.
19589 This token may be colored with the
19590 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19591 </DD>
19593 <DT>PRIORITYALPHA</DT>
19594 <DD>
19595 This is a more verbose interpretation of the X-Priority field.
19596 Once again nothing is displayed unless the value of the field
19597 is 1, 2, 4, or 5.
19598 The values displayed for those values are:
19600 <TABLE>
19601 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19602 <TR> <TD>2</TD> <TD>High</TD> </TR>
19603 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19604 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19605 </TABLE>
19607 This token may be colored with the
19608 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19609 </DD>
19611 <DT>PRIORITY!</DT>
19612 <DD>
19613 This is a one character, non-numeric version of the X-Priority field.
19614 If the value of the X-Priority header is 1 or 2 an exclamation
19615 point is displayed.
19616 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19617 This token may be colored with the
19618 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19619 </DD>
19621 <DT>ATT</DT>
19622 <DD>
19623 This is a one column wide field that represents the number of attachments
19624 a message has. It will be blank if there are no attachments, a single
19625 digit for one to nine attachments, or an asterisk for more than nine.
19626 Note that including this token in
19627 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19628 display a little while Alpine collects the necessary information.
19629 </DD>
19631 <DT>FROMORTO</DT>
19632 <DD>
19633 This token represents <EM>either</EM> the personal name (or email address) of
19634 the person listed in the message's &quot;From:&quot; header
19635 field, <EM>or</EM>, if that address is yours or one of your
19636 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19637 the first person specified in the
19638 message's &quot;To:&quot; header field
19639 with the prefix &quot;To: &quot; prepended.
19640 If the from address is yours and there is also no &quot;To&quot; address,
19641 Alpine will use the address on the &quot;Cc&quot; line.
19642 If there is no address there, either, Alpine will look for a newsgroup name
19643 from the &quot;Newsgroups&quot; header field and put
19644 that after the &quot;To: &quot; prefix.
19645 </DD>
19647 <DT>FROMORTONOTNEWS</DT>
19648 <DD>
19649 This is almost the same as <EM>FROMORTO</EM>.
19650 The difference is that newsgroups aren't considered.
19651 When a message is from you, doesn't have a To or Cc, and does have
19652 a Newsgroups header; this token will be your name instead of the name
19653 of the newsgroup (like it would be with FROMORTO).
19654 </DD>
19656 <DT>TEXT</DT>
19657 <DD>
19658 This is a different sort of token.
19659 It allows you to display a label within each index line.
19660 It will be the same fixed text for each line.
19661 It is different from all the other tokens in that there is no space column
19662 displayed after this token.
19663 Instead, it is butted up against the following field.
19664 It also has a different syntax.
19665 The text to display is given following a colon after the
19666 word &quot;TEXT&quot;.
19667 For example,
19669 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19671 would insert the literal text &quot;abc=&quot; (without the quotes)
19672 into the index display line.
19673 You must quote the text if it includes space characters, like
19675 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19677 </DD>
19679 <DT>HEADER</DT>
19680 <DD>
19681 This allows you to display the text from a particular header line in the
19682 message.
19683 The syntax for this token is substantially different from all the others
19684 in order that you might be able to display a portion of the text following
19685 a particular header.
19686 The header name you are interested in is given following a colon
19687 after the word &quot;HEADER&quot;.
19688 For example,
19690 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
19692 would display the text of the X-Spam header, if any.
19693 Like for other index tokens a width field may (and probably should)
19694 follow this.
19696 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
19698 displays the first ten characters of the X-Spam header.
19699 Unlike other index tokens, the syntax for HEADER is more flexible.
19700 An optional second argument comes after a comma inside the parentheses.
19701 It specifies the &quot;field&quot; number.
19702 By default, the field separator is a space character.
19703 No extra space characters are allowed in the argument list.
19705 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
19707 would display the second field, left-justified, in a 10 character
19708 wide field.
19709 The second field would consist of all the text after the first space
19710 up to the next space or the end of the header.
19711 The default field number is zero, which stands for the entire line.
19712 There is also an optional third argument that is a list of field
19713 separators. It defaults to a space character.
19714 The example
19716 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
19718 would cause the field separators to be any of colon, percent,
19719 or space (there is a space character between the percent and the
19720 right parenthesis).
19721 The first field runs from the start of the header value up to the first
19722 colon, percent, or space; the second goes from there to the next; and so on.
19723 In order to use a comma character as a field separator you must escape
19724 it by preceding it with a backslash (&#92;).
19725 The same is true of the backslash character itself.
19726 There is one further optional argument.
19727 It is an R or an L to specify right or left adjustment of the text
19728 within the field.
19729 The default is to left justify, however if you are displaying numbers
19730 you might prefer to right justify.
19732 Here's an example of a SpamAssassin header.
19733 The exact look of the header will vary, but if your incoming mail
19734 contains headers that look like the following
19736 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19738 you might want to display the hits value.
19739 The first field starts with the Y in Yes.
19740 To get what you're interested in you might use &quot;=&quot; and
19741 space as the field separators and display the third field, like
19743 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
19745 or maybe you would break at the dot instead
19747 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
19749 Another example we've seen has headers that look like
19751 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19753 Because there are two equals and a comma before the 7% and a comma
19754 after it, the token
19756 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
19758 should display the probability (for example 7% or 83%) right justified
19759 in a 3-wide field.
19760 </DD>
19762 <DT>ARROW</DT>
19763 <DD>
19764 This gives an alternative way to display the current message in the
19765 MESSAGE INDEX screen.
19766 Usually the current message is indicated by the line being shown in
19767 reverse video.
19768 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
19769 the current line will include an &quot;arrow&quot; that
19770 looks like
19772 <CENTER><SAMP>-&gt;</SAMP></CENTER>
19774 in the ARROW token's field.
19775 For all of the non-current messages, the ARROW field will be filled
19776 with blanks.
19777 If you use the fixed-field width feature the length of the &quot;arrow&quot;
19778 may be adjusted.
19779 The arrow will be drawn as width-1 dashes followed by a greater than sign.
19780 For example, if you use ARROW(3) you will get
19782 <CENTER><SAMP>--&gt;</SAMP></CENTER>
19784 and ARROW(1) will give you just
19786 <CENTER><SAMP>&gt;</SAMP></CENTER>
19788 It is also possible to set the color of the ARROW field.
19789 By default (and for non-current messages) the arrow is colored the same
19790 as the index line it is part of.
19791 You may set it to be another color with the 
19792 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
19793 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19794 </DD>
19796 <DT>SCORE</DT>
19797 <DD>
19798 This gives the
19799 <a href="h_rules_score">score</a>
19800 of each message.
19801 This will be six columns wide to accomodate the widest possible score.
19802 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
19803 to limit the width of the field to the widest score that
19804 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
19805 If you have not defined any score rules the scores will all be zero.
19806 If any of your score rules contain AllText or BodyText patterns
19807 then including SCORE in the <!--#echo var="VAR_index-format"-->
19808 may slow down the display of the MESSAGE INDEX screen.
19809 </DD>
19810 </DL>
19813 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
19815 <DL>
19816 <DT>CURNEWS</DT>
19817 <DD>
19818 This token represents the current newsgroup if there is one.
19819 For example, &quot;comp.mail.pine&quot;.
19820 </DD>
19822 <DT>MSGID</DT>
19823 <DD>
19824 This token represents the message ID of the message.
19825 This token does not work with Filter Rule folder names.
19826 </DD>
19828 <DT>CURDATE</DT>
19829 <DD>
19830 This token represents the current date.
19831 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19832 </DD>
19834 <DT>CURDATEISO</DT>
19835 <DD>
19836 This token represents the current date.
19837 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19838 </DD>
19840 <DT>CURDATEISOS</DT>
19841 <DD>
19842 This token represents the current date.
19843 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19844 </DD>
19846 <DT>CURPREFDATE</DT>
19847 <DD>
19848 This token represents the current date.
19849 It is your operating system's idea of the preferred date representation for the current locale.
19850 Internally it uses the %x version of the date from the strftime routine.
19851 </DD>
19853 <DT>CURPREFTIME</DT>
19854 <DD>
19855 This token represents the current time.
19856 It is the preferred time representation for the current locale.
19857 Internally it uses the %X version of the time from the strftime routine.
19858 </DD>
19860 <DT>CURPREFDATETIME</DT>
19861 <DD>
19862 This token represents the current date and time.
19863 It is the preferred date and time representation for the current locale.
19864 Internally it uses the %c version of the time from the strftime routine.
19865 </DD>
19867 <DT>CURTIME24</DT>
19868 <DD>
19869 This token represents the current time.
19870 It has the format HH:MM. For example, &quot;17:28&quot;.
19871 </DD>
19873 <DT>CURTIME12</DT>
19874 <DD>
19875 This token represents the current time.
19876 This time is for a 12 hour clock.
19877 It has the format HH:MMpm.
19878 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19879 </DD>
19881 <DT>CURDAY</DT>
19882 <DD>
19883 This token represents the current day of the month.
19884 For example, &quot;23&quot; or &quot;9&quot;.
19885 </DD>
19887 <DT>CURDAY2DIGIT</DT>
19888 <DD>
19889 This token represents the current day of the month.
19890 For example, &quot;23&quot; or &quot;09&quot;.
19891 It is always 2 digits.
19892 </DD>
19894 <DT>CURDAYOFWEEK</DT>
19895 <DD>
19896 This token represents the current day of the week.
19897 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19898 </DD>
19900 <DT>CURDAYOFWEEKABBREV</DT>
19901 <DD>
19902 This token represents the current day of the week.
19903 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19904 </DD>
19906 <DT>CURMONTH</DT>
19907 <DD>
19908 This token represents the current month.
19909 For example, &quot;10&quot; or &quot;9&quot;.
19910 </DD>
19912 <DT>CURMONTH2DIGIT</DT>
19913 <DD>
19914 This token represents the current month.
19915 For example, &quot;10&quot; or &quot;09&quot;.
19916 It is always 2 digits.
19917 </DD>
19919 <DT>CURMONTHLONG</DT>
19920 <DD>
19921 This token represents the current month.
19922 For example, &quot;October&quot;.
19923 </DD>
19925 <DT>CURMONTHABBREV</DT>
19926 <DD>
19927 This token represents the current month.
19928 For example, &quot;Oct&quot;.
19929 </DD>
19931 <DT>CURYEAR</DT>
19932 <DD>
19933 This token represents the current year.
19934 For example, &quot;1998&quot; or &quot;2001&quot;.
19935 </DD>
19937 <DT>CURYEAR2DIGIT</DT>
19938 <DD>
19939 This token represents the current year.
19940 For example, &quot;98&quot; or &quot;01&quot;.
19941 It is always 2 digits.
19942 </DD>
19944 <DT>LASTMONTH</DT>
19945 <DD>
19946 This token represents last month.
19947 For example, if this is November (the 11th month),
19948 it is equal to &quot;10&quot; or if this is October (the 10th month),
19949 it is &quot;9&quot;.
19950 It is possible that this and the other tokens beginning with LASTMONTH
19951 below could be useful when used with a Filtering Rule that
19952 has the &quot;Beginning of Month&quot; option set.
19953 </DD>
19955 <DT>LASTMONTH2DIGIT</DT>
19956 <DD>
19957 This token represents last month.
19958 For example, if this is November (the 11th month),
19959 it is equal to &quot;10&quot; or if this is October (the 10th month),
19960 it is &quot;09&quot;.
19961 It is always 2 digits.
19962 </DD>
19964 <DT>LASTMONTHLONG</DT>
19965 <DD>
19966 This token represents last month.
19967 For example, if this is November the value is &quot;October&quot;.
19968 </DD>
19970 <DT>LASTMONTHABBREV</DT>
19971 <DD>
19972 This token represents last month.
19973 For example, if this is November the value is &quot;Oct&quot;.
19974 </DD>
19976 <DT>LASTMONTHYEAR</DT>
19977 <DD>
19978 This token represents what the year was a month ago.
19979 For example, if this is October, 1998, it is &quot;1998&quot;.
19980 If this is January, 1998, it is &quot;1997&quot;.
19981 </DD>
19983 <DT>LASTMONTHYEAR2DIGIT</DT>
19984 <DD>
19985 This token represents what the year was a month ago.
19986 For example, if this is October, 1998, it is &quot;98&quot;.
19987 If this is January, 1998, it is &quot;97&quot;.
19988 </DD>
19990 <DT>LASTYEAR</DT>
19991 <DD>
19992 This token represents last year.
19993 For example, if this is 1998, it equals &quot;1997&quot;.
19994 It is possible that this
19995 could be useful when used with a Filtering Rule that
19996 has the &quot;Beginning of Year&quot; option set.
19997 </DD>
19999 <DT>LASTYEAR2DIGIT</DT>
20000 <DD>
20001 This token represents last year.
20002 For example, if this is 1998, it equals &quot;97&quot;.
20003 It is always 2 digits.
20004 </DD>
20006 <DT>ROLENICK</DT>
20007 <DD>
20008 This token represents the nickname of the
20009 role currently being used.  If no role is being used,
20010 then no text will be printed for this token.
20011 This token does not work with Filter Rule folder names.
20012 </DD>
20013 </DL>
20016 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20017 See the help for the
20018 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20019 to see why you might want to use this.
20020 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20021 must be surrounded by underscores when used.
20023 <DL>
20024 <DT>NEWLINE</DT>
20025 <DD>
20026 This is an end of line marker.
20027 </DD>
20028 </DL>
20031 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20033 <DL>
20034 <DT>CURSORPOS</DT>
20035 <DD>
20036 This token is different from the others.
20037 When it is replaced it is replaced with nothing, but it sets an Alpine
20038 internal variable that tells the composer to start with the cursor
20039 positioned at the position where this token was.
20040 If both the template file and the signature file contain
20041 a &quot;CURSORPOS&quot; token, then the position in the template file
20042 is used.
20043 If there is a template file and neither it nor the signature file contains
20044 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20045 after the end of the contents of the
20046 template file when the composer starts up.
20047 </DD>
20048 </DL>
20051 &lt;End of help on this topic&gt;
20052 </BODY>
20053 </HTML>
20054 ======= h_reply_token_conditionals =======
20055 <HTML>
20056 <HEAD>
20057 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20058 </HEAD>
20059 <BODY>
20060 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20062 Conditional text inclusion may be used with
20063 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20064 in signature files, and in template files used in
20065 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20066 It may <EM>not</EM> be used with the
20067 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20070 There is a limited if-else capability for including text.
20071 The if-else condition is based
20072 on whether or not a given token would result in replacement text you
20073 specify.
20074 The syntax of this conditional inclusion is
20076 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20078 The left parenthesis must follow the underscore immediately, with no
20079 intervening space.
20080 It means the token is expanded and the results of that expansion are
20081 compared against the &quot;match_this&quot; argument.
20082 If there is an exact match, then the &quot;if_matched&quot; text is used
20083 as the replacement text.
20084 Otherwise, the &quot;if_not_matched&quot; text is used.
20085 One of the most useful values for the &quot;match_this&quot; argument is
20086 the empty string, &quot;&quot;.
20087 In that case the expansion is compared against the empty string.
20089 Here's an example to make it clearer.
20090 This text could be included in one of your template files:
20092 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20094 If that is included in a template file that you are using while replying
20095 to a message (because you chose to use the role it was part of),
20096 and that message has a newsgroup header and a newsgroup in that header,
20097 then the text
20099 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20101 will be included in the message you are about to compose.
20102 On the other hand, if the message you are replying to does not have
20103 a newsgroup, then the text
20105 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20107 would be included instead.
20108 This would also work in signature files and in
20109 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20110 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20111 or &quot;if_not_matched&quot; arguments contain
20112 spaces, parentheses, or commas;
20113 they have to be quoted with double quotation marks (like in the example
20114 above).
20115 If you want to include a literal quote (&quot;) in the text you must escape the
20116 quote by preceding it with a backslash (&#92;) character.
20117 If you want to include a literal backslash character you must escape it
20118 by preceding it with another backslash.
20120 The comma followed by &quot;if_not_matched&quot; is optional.
20121 If there is no &quot;if_not_matched&quot;
20122 present then no text is included if the not_matched case is true.
20123 Here's another example:
20125 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20127 Here you can see that tokens may appear in the arguments.
20128 The same is true for tokens with the conditional parentheses.
20129 They may appear in arguments,
20130 though you do have to be careful to get the quoting and escaping of
20131 nested double quotes correct.
20132 If this was in the signature file being used and you were replying to a message
20133 sent to comp.mail.pine the resulting text would be:
20135 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20137 If you were replying to a message that wasn't sent to any newsgroup the
20138 resulting text would be a single blank line.
20139 The reason you'd get a blank line is because the end of the line is
20140 outside of the conditional, so is always included.
20141 If you wanted to get rid of that blank line you could do so by moving
20142 the end of line inside the conditional.
20143 In other words, it's ok to have multi-line
20144 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20145 template file.
20146 The text just continues until the next double quotation, even if it's not
20147 on the same line.
20149 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20151 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20153 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20154 while reading the newsgroup comp.mail.pine the resulting text would be:
20156 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20158 If you were replying to a message while reading an email folder instead
20159 of a newsgroup the resulting leadin text would be
20161 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20163 Here's one more (contrived) example illustrating a matching argument
20164 that is not the empty string.
20166 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20168 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20169 were replying to
20170 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20171 would be
20173 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20175 But if you were replying to a message sent on Oct. 27 (and that wasn't
20176 today) you would get
20178 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20181 &lt;End of help on this topic&gt;
20182 </BODY>
20183 </HTML>
20184 ======= h_composer_cntxt_nick =======
20185 <HTML>
20186 <HEAD>
20187 <TITLE>Collection Nickname Explained</TITLE>
20188 </HEAD>
20189 <BODY>
20190 <H1>Collection Edit Help -- Nickname Field</H1>
20192 This field is provided so you can add a short nickname to use when
20193 referring to this collection within Alpine.  Spaces are allowed, and
20194 you don't need to use double-quotes.  However, the double-quote
20195 character is not allowed.
20197 Look <A HREF="h_edit_nav_cmds">here</A>
20198 to see the available Editing and Navigation commands.
20200 &lt;End of help on this topic&gt;
20201 </BODY>
20202 </HTML>
20203 ======= h_folder_server_syntax =======
20204 <HTML>
20205 <HEAD>
20206 <TITLE>Server Name Syntax</TITLE>
20207 </HEAD>
20208 <BODY>
20209 <H1>Server Name Syntax</H1>
20211 This help describes the syntax that may be used for server names
20212 that may be associated with remote folders or SMTP servers.
20215 A server name is the hostname of the server.
20216 It's a good idea to use the host's fully-qualified network name.
20219 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20222 However, IP addresses are allowed if surrounded
20223 with square-brackets.
20226 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20229 An optional network port number may be supplied by appending
20230 a colon (:) followed by the port number
20231 to the server name.
20232 By default, the IMAP port number, 143, is used.
20235 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20238 Besides server name and optional port number, various other optional
20239 parameters may be supplied that alter Alpine's interaction with the server.
20240 A parameter is supplied by appending a slash (/) character followed by
20241 the parameter's name and,
20242 depending on the particular parameter, the value assigned to that
20243 name, to the server name (and optional port number).
20244 Parameter names are <EM>not</EM> case sensitive.
20245 Currently supported parameters include:
20247 <DL>
20249 <DT>User</DT>
20250 <DD>This parameter requires an associated value, and is intended to
20251 provide the username identifier with which to establish the server
20252 connection.
20253 If your SMTP server offers SMTP AUTH authentication, adding this 
20254 parameter to the
20255 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20256 option will cause Alpine to attempt to authenticate to the server using the
20257 supplied username.
20258 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20259 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20260 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20261 option (or to the server name for any folder collection using NNTP)
20262 will cause Alpine to attempt
20263 to authenticate to the server using the supplied username.
20264 An example might be:
20267 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20270 </DD>
20272 <DT>TLS</DT>
20273 <DD>
20274 Normally, when a new connection is made an attempt is made to 
20275 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20276 If that fails then a non-encrypted connection will be attempted instead.
20277 This is a unary parameter indicating communication with the server must 
20278 take place over a TLS connection. If the attempt to use TLS fails then
20279 this parameter will cause the connection to fail instead of falling
20280 back to an unsecure connection.
20283 <CENTER><SAMP>/tls</SAMP></CENTER>
20286 </DD>
20288 <DT>SSL</DT>
20289 <DD>
20290 This is a unary parameter indicating communication with the server should 
20291 take place over a Secure Socket Layer connection.  The server must support
20292 this method, and be prepared to accept connections on the appropriate
20293 port (993 by default).
20294 Alpine must be linked with an SSL library for this option to be operational.
20297 <CENTER><SAMP>/ssl</SAMP></CENTER>
20300 </DD>
20302 <DT>TLS1</DT>
20303 <DD>
20304 This parameter indicates that the connection to the server will be made
20305 over the SSL port, but using the TLSv1 protocol, instead of the usual
20306 SSLv3 or SSLv2 protocols.
20307 Alpine must be linked with an SSL library for this option to be operational.
20310 <CENTER><SAMP>/tls1</SAMP></CENTER>
20313 </DD>
20315 <DT>DTLS1</DT>
20316 <DD>
20317 This parameter indicates that the connection to the server will be made
20318 over the SSL port, but using the DTLSv1 protocol, instead of the usual
20319 SSLv3 or SSLv2 protocols.
20320 Alpine must be linked with an SSL library for this option to be operational.
20323 <CENTER><SAMP>/dtls1</SAMP></CENTER>
20326 </DD>
20328 <DT>TLS1_1</DT>
20329 <DD>
20330 This parameter indicates that the connection to the server will be made
20331 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
20332 SSLv3 or SSLv2 protocols.
20333 Alpine must be linked with an SSL library for this option to be operational.
20336 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20339 </DD>
20341 <DT>TLS1_2</DT>
20342 <DD>
20343 This parameter indicates that the connection to the server will be made
20344 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
20345 SSLv3 or SSLv2 protocols.
20346 Alpine must be linked with an SSL library for this option to be operational.
20349 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20352 </DD>
20355 <DT>NoValidate-Cert</DT>
20356 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20357 This is needed if the server uses self-signed certificates or if Alpine
20358 cannot validate the certificate for some other known reason.
20360 </DD>
20362 <DT>Anonymous</DT>
20363 <DD>This is a unary parameter (that means it does not have a value)
20364 indicating that the connection be logged in as
20365 &quot;anonymous&quot; rather than a specific user.
20366 Not all servers offer anonymous
20367 access; those which do generally only offer read-only access to certain
20368 &quot;public&quot; folders.
20371 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20374 </DD>
20376 <DT>Secure</DT>
20377 <DD>This is a unary parameter indicating that the connection use the
20378 most secure authentication method mutually supported by Alpine and the
20379 server.
20380 Alpine is capable of authenticating connections to 
20381 the server using several methods.
20382 By default, Alpine will attempt each
20383 method until either a connection is established or the
20384 list of methods is exhausted.
20385 This parameter causes Alpine to instead fail 
20386 the connection if the first (generally most &quot;secure&quot;) method fails.
20389 <CENTER><SAMP>/secure</SAMP></CENTER>
20392 </DD>
20394 <DT>Submit</DT>
20395 <DD>This is a unary parameter for use with the
20396 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20397 It indicates that the connection should be made to the Submit server
20398 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20399 (port 587) instead of the SMTP port (25).
20400 At the time this help was written the submit option was equivalent to
20401 specifying port 587.
20404 <CENTER><SAMP>/submit</SAMP></CENTER>
20408 <CENTER><SAMP>host:587</SAMP></CENTER>
20411 </DD>
20413 <DT>Debug</DT>
20414 <DD>This is a unary parameter indicating that the connection be established
20415 in a verbose mode.  Basically, it causes Alpine to log the communication with
20416 the server in Alpine's debug file.
20417 Normally, the pine -d command-line flag would be used instead.
20419 </DD>
20421 <DT>NoRsh</DT>
20422 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20423 the UNIX remote shell program.
20424 Including &quot;NoRsh&quot; will cause connections to this server to skip
20425 the &quot;rsh&quot; attempt.
20426 This might be useful to avoid long timeouts caused by rsh firewalls, for
20427 example.
20429 </DD>
20431 <DT>Loser</DT>
20432 <DD>This option makes sense only for IMAP servers that do not perform
20433 a SEARCH command correctly. If your filtering rules
20434 fail to filter some messages, that should have been filtered, then this
20435 option will make Alpine download all data necessary to perform that search.
20436 There is a performance penalty when using this option. Downloading the
20437 data to perfom the search will take longer than requesting the IMAP
20438 server to perform the filtering, but the filtering will be done correctly.
20440 </DD>
20443 <DT>Service</DT>
20444 <DD>This parameter requires an associated value.  The default value is
20445 &quot;IMAP&quot; which indicates communication with the server based
20446 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20447 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20449 Other service values include:
20450  <DL>
20451  <DT>NNTP</DT>
20452  <DD>This value indicates communication with the server takes place via
20453 the Network News Transfer Protocol.  Use this to define a collection
20454 of newsgroups on a remote news server.  So
20457 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20459 or just
20461 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20464 is the way to specify NNTP access.
20466  </DD>
20468  <DT>POP3</DT>
20469  <DD>This value indicates communication with the server takes place via the
20470 Post Office Protocol 3 protocol.
20473 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20475 or just
20477 <CENTER><SAMP>/POP3</SAMP></CENTER>
20480 Note that there are several important issues
20481 to consider when selecting this option:
20482 <OL>
20483  <LI> POP3 provides access to only your INBOX.  In other words,
20484 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20485  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20486 model and will leave your mail on the server. Refer to the
20487 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20488  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20489 </OL>
20490 </DD>
20491 </DL>
20492 </DL>
20495 Note that it is possible to include more than one parameter in a server
20496 specification by concatenating the parameters. For example:
20499 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20503 &lt;End of help on this topic&gt;
20504 </BODY>
20505 </HTML>
20506 ======= h_composer_cntxt_server =======
20507 <HTML>
20508 <HEAD>
20509 <TITLE>Collection Server: Explained</TITLE>
20510 </HEAD>
20511 <BODY>
20512 <H1>Collection Edit Help -- Server Field</H1>
20514 This collection's &quot;Server:&quot; definition indicates the
20515 hostname of the server providing access to the folders in this
20516 collection.
20517 The syntax of this server name is the same as for other server names used
20518 in remote folder names in
20519 Alpine and is described
20520 <A HREF="h_folder_server_syntax">here</A>.
20523 &lt;End of help on this topic&gt;
20524 </BODY>
20525 </HTML>
20526 ======= h_composer_cntxt_path =======
20527 <HTML>
20528 <HEAD>
20529 <TITLE>Collection Path: Explained</TITLE>
20530 </HEAD>
20531 <BODY>
20532 <H1>Collection Edit Help -- Path Field</H1>
20534 The collection's &quot;Path:&quot; definition indicates the location
20535 of the folders in this collection.  If the path or any of its components
20536 do not exist, Alpine will prompt you for their creation when exiting the
20537 Add/Change screen.
20539 <P> 
20540 By default the path is interpreted as defining a section of your personal
20541 folder area.  This area and how you specify it are defined by the
20542 server, if one is specified in the collection, or, typically, the home
20543 directory if no server is defined.
20546 To define a collection outside the default &quot;area&quot;, prefix
20547 the path with the &quot;namespace&quot; to use when interpreting the
20548 given path.  If a namespace is specified, the Path begins with the
20549 sharp, &quot;#&quot;, character followed by the name of the namespace
20550 and then the namespace's path-element-delimiter.  Aside from the
20551 path's format, namespaces can also imply access rights, content
20552 policy, audience, location, and, occasionally, access methods.
20555 Each server exports its own set (possibly of size one) of 
20556 namespaces.  Hence, it's likely communication with your server's
20557 administrator will be required for specific configurations.  Some of
20558 the more common namespaces, however, include:
20560 <DL>
20561 <DT>#news.</DT>
20562 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20563 names are hierarchically defined with each level delimited by a period.
20564 </DD>
20565 <DT>#public/</DT>
20566 <DD>This specifies a folder area that the server may export to the general
20567 public.
20568 </DD>
20569 <DT>#shared/</DT>
20570 <DD>This specifies a folder area that the folder may export to groups
20571 of users.
20572 </DD>
20573 <DT>#ftp/</DT>
20574 <DD>This specifies a folder area that is the same as that it may have 
20575 exported via the &quot;File Transfer Protocol&quot;.
20576 </DD>
20577 <DT>#mh/</DT>
20578 <DD>This specifies the personal folder area associated with folders
20579 and directories that were created using the MH message handling system.
20580 </DD>
20581 </DL>
20584 In addition, the server may support access to other user's folders,
20585 provided you have suitable permissions.  Common methods use a prefix
20586 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20587 indicate the root of the other user's folder area.
20590 No, nothing's simple.
20593 &lt;End of help on this topic&gt;
20594 </BODY>
20595 </HTML>
20596 ======= h_composer_cntxt_view =======
20597 <HTML>
20598 <HEAD>
20599 <TITLE>Collection View: Explained</TITLE>
20600 </HEAD>
20601 <BODY>
20602 <H1>Collection Edit Help -- View Field</H1>
20604 The collection's &quot;View:&quot; definition provides a way to limit
20605 the displayed list of folders within a collection.  By default, only
20606 folders that contain the specified characters anywhere in their name
20607 are shown in the collection's folder list.
20610 Additionally, you can use a wildcard character to better control
20611 the list of folders selected for display.  The wildcard specifier is
20612 the star, &quot;*&quot;, character.
20615 So, for example, to define a collection of all folders ending with
20616 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20617 quote characters!).  Or, similarly, to define a collection of folders
20618 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20619 specify a view of &quot;a*z&quot;.
20622 &lt;End of help on this topic&gt;
20623 </BODY>
20624 </HTML>
20625 ======= h_composer_abook_add_server =======
20626 <HTML>
20627 <HEAD>
20628 <TITLE>Addressbook Server Name Field Explained</TITLE>
20629 </HEAD>
20630 <BODY>
20631 This field should be left blank if the address book is stored in a regular
20632 file on this system.  If it is a remote address book stored on an IMAP
20633 server then this is the name of that IMAP server.
20635 Look <A HREF="h_edit_nav_cmds">here</A>
20636 to see the available Editing and Navigation commands.
20638 &lt;End of help on this topic&gt;
20639 </BODY>
20640 </HTML>
20641 ======= h_composer_abook_add_folder =======
20642 <HTML>
20643 <HEAD>
20644 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20645 </HEAD>
20646 <BODY>
20647 For a remote address book (one for which the Server Name is filled in)
20648 this is the name of a folder on the remote server. The address book data
20649 will be stored in this folder. This folder should be used only for
20650 storing this single address book, not for other address books or for
20651 other messages.
20653 For a local address book (one for which the Server Name is not filled in)
20654 this is the name of a file in which the address book will be stored.
20655 The file is in the same directory as the Alpine configuration file if the
20656 configuration file is local.
20657 If the configuration file is remote, then this will be in the home directory
20658 for Unix Alpine and in the directory specified by the
20659 &quot;-aux local_directory&quot; command line argument.
20661 Look <A HREF="h_edit_nav_cmds">here</A>
20662 to see the available Editing and Navigation commands.
20664 &lt;End of help on this topic&gt;
20665 </BODY>
20666 </HTML>
20667 ======= h_composer_abook_add_nick =======
20668 <HTML>
20669 <HEAD>
20670 <TITLE>Addressbook NickName Field Explained</TITLE>
20671 </HEAD>
20672 <BODY>
20673 This is just an optional nickname for this address book. If present, it
20674 is used in some of the displays and error messages in the address book
20675 maintenance screens. It is for your convenience only and serves no
20676 other purpose.
20678 Look <A HREF="h_edit_nav_cmds">here</A>
20679 to see the available Editing and Navigation commands.
20681 &lt;End of help on this topic&gt;
20682 </BODY>
20683 </HTML>
20684 ======= h_composer_qserv_cn =======
20685 <HTML>
20686 <HEAD>
20687 <TITLE>Directory Query Form Explained</TITLE>
20688 </HEAD>
20689 <BODY>
20691 Fill in as many of these fields as you wish to narrow down your
20692 search. All the fields you fill in must match in order for an entry
20693 to be returned. You may use the wildcard character &quot;*&quot; in
20694 any of the fields, it matches any zero or more characters at that
20695 point in the string. There are no implicit wildcards, so the match is
20696 exact unless you include wildcards.
20699 Note that if an attribute isn't present at all, then the match will fail.
20700 For example, if a server doesn't support the Locality attribute, then no
20701 matter what you put in the Locality field (other than leaving it empty)
20702 the search will fail.
20705 This field, the Common Name field, is typically a person's full name.
20708 <H1>EDITING and NAVIGATION COMMANDS</H1>
20709 <!--chtml if pinemode="function_key"-->
20710 <PRE>
20711 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20712 ^B (Left Arrow)    Back character       | ^D       Delete current character
20713 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20714 ^P (Up Arrow)      Previous line        |
20715 ^N (Down Arrow)    Next line            | F9       Cut marked text or
20716 ^A                 Beginning of line    |            delete current line
20717 ^E                 End of line          | F10      Undelete line(s)
20718 F7                 Previous page        |
20719 F8                 Next page            |-------------------------------------
20720 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20721 ----------------------------------------|
20722 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
20723 F2   Cancel      |   F1    Get help     |
20724 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
20725 </PRE>
20726 <!--chtml else-->
20727 <PRE>
20728 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20729 ^B (Left Arrow)    Back character       | ^D       Delete current character
20730 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20731 ^P (Up Arrow)      Previous line        |
20732 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
20733 ^A                 Beginning of line    |            delete current line
20734 ^E                 End of line          | ^U       Undelete line(s)
20735 ^Y                 Previous page        |
20736 ^V                 Next page            |-------------------------------------
20737 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20738 ----------------------------------------|
20739 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
20740 ^C   Cancel      |   ^G    Get help     |
20741 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
20742 </PRE>
20743 <!--chtml endif-->
20744 <P><UL>
20745 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20746 </UL><P>
20747 &lt;End of help on this topic&gt;
20748 </BODY>
20749 </HTML>
20750 ======= h_composer_qserv_sn =======
20752 The Surname is usually the family name of a person.
20754 <End of help on this topic>
20755 ======= h_composer_qserv_gn =======
20757 This is the part of a person's name that isn't the surname or initials.
20759 <End of help on this topic>
20760 ======= h_composer_qserv_mail =======
20762 This is the email address of a person.
20764 <End of help on this topic>
20765 ======= h_composer_qserv_org =======
20767 This is the organization a person belongs to.
20769 <End of help on this topic>
20770 ======= h_composer_qserv_unit =======
20772 This is the organizational unit a person belongs to.
20774 <End of help on this topic>
20775 ======= h_composer_qserv_country =======
20777 This is the country a person belongs to.
20779 <End of help on this topic>
20780 ======= h_composer_qserv_state =======
20782 This is the state a person belongs to.
20784 <End of help on this topic>
20785 ======= h_composer_qserv_locality =======
20787 This is the locality a person belongs to.
20789 <End of help on this topic>
20790 ======= h_composer_qserv_custom =======
20792 This one is for advanced users only! If you put something in this field,
20793 then the rest of the fields are ignored.
20795 This field may be set to the string representation of an LDAP search
20796 filter (see RFC1960). Here are some examples:
20798 To search for an entry with a surname equal to "clinton" you could set
20799 the custom filter to:
20801      (sn=clinton)
20802     
20803 This is equivalent to putting "clinton" in the SurName field.
20804 To search for an entry that has a surname that begins with "clint" and
20805 has a givenname equal to "william" you could use:
20807      (&(sn=clint*)(givenname=william))
20808     
20809 This is equivalent to setting the SurName field to "clint*" and the
20810 GivenName field to "william".
20811 To search for an entry where either the common name OR the email address
20812 contains "abcde" you could use:
20814      (|(cn=*abcde*)(mail=*abcde*))
20816 That isn't equivalent to anything you can do by setting the other fields
20817 because of the OR.
20819 <End of help on this topic>
20820 ======= h_composer_qserv_qq =======
20822 This one is a little different from the rest of the categories.  It causes
20823 a search to be formed from the configured search filter that you filled
20824 in when you added the directory server to your configuration. It can also
20825 be combined with the other fields if you'd like.
20827 <End of help on this topic>
20828 ======= h_address_format =======
20829 <HTML>
20830 <HEAD>
20831 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
20832 </HEAD>
20833 <BODY>
20834 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
20836 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
20837 and then a domain, with no spaces.  
20838 For example, jsmith@art.example.com might be the email address
20839 of a person  
20840 with the username &quot;jsmith&quot; who has an account in the domain
20841 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
20842 right of the &quot;@&quot; sign can vary - a shorter example would be 
20843 isabelle@elsewhere.edu (the shortest possible form: here, only the 
20844 organization's domain is specified after the &quot;@&quot; sign); a longer 
20845 example would be 
20846  jsingh@shakti.edutech.example.com
20847 (here, the name of the host &quot;shakti&quot; in the domain 
20848 edutech.example.com is also specified).  
20849 <P>  
20850 If you do not know the exact email address of someone you want to write 
20851 to, ask them what it is using other means of communication than email; or 
20852 use the tools for 
20853 finding people's addresses that are available on the Internet.
20855 If you are sending to someone on the same system as you are, you can leave
20856 the &quot;@&quot; sign and all the information to its right off of the 
20857 address, and Alpine will fill it in automatically, 
20858 unless the feature 
20859 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
20862 When an email address you send a message to is not reachable -- either because 
20863 it is simply an incorrect address, or because email can temporarily not be 
20864 delivered to it due to a technical problem on the way to or at the recipient's 
20865 end -- you will almost always get an error notification email message back.
20867 If you encounter problems with, or have questions about, email delivery or
20868 email address syntax, contact your local network computing consultants.
20869 <P><UL>
20870 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20871 </UL>
20873 &lt;End of help on this topic&gt;
20874 </BODY>
20875 </HTML>
20876 ======= h_flag_user_flag =======
20877 <HTML>
20878 <HEAD>
20879 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
20880 </HEAD>
20881 <BODY>
20882 <H1>STATUS FLAG: User Defined Keyword</h1>
20884 This is a keyword that is defined for this folder.
20885 It was most likely defined by the owner of the folder.
20886 Alpine will not set or clear this flag on its own.
20888 <P><UL>
20889 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20890 </UL><P>
20891 &lt;End of help on this topic&gt;
20892 </BODY>
20893 </HTML>
20894 ======= h_flag_important =======
20895 <html>
20896 <title>STATUS FLAG: Important</title>
20897 <body>
20898 <h1>STATUS FLAG: Important</h1>
20901 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
20902 MESSAGE&nbsp;INDEX
20903 screen, can only be set by the user, and is intended to be used in
20904 whatever fashion makes sense to you.  You are the only one that can set or
20905 clear it. 
20908 &lt;End of help on this topic&gt;
20909 </BODY>
20910 </HTML>
20911 ======= h_flag_new =======
20912 <html>
20913 <title>STATUS FLAG: New</title>
20914 <body>
20915 <h1>STATUS FLAG: New</h1>
20918 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
20919 MESSAGE&nbsp;INDEX screen,
20920 is automatically set when messages are delivered to your Inbox (or other
20921 folder specified outside of Alpine).  Likewise, it is cleared automatically
20922 the first time you read the message it is associated with.
20925 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
20926 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
20927 you'd like to be reminded of it next time you read mail.  This can be done
20928 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
20932 &lt;End of help on this topic&gt;
20933 </BODY>
20934 </HTML>
20935 ======= h_flag_answered =======
20936 <html>
20937 <title>STATUS FLAG: Answered</title>
20938 <body>
20939 <h1>STATUS FLAG: Answered</h1>
20941 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
20942 MESSAGE&nbsp;INDEX
20943 screen, is automatically set when you reply to a message.  This flag is not
20944 automatically cleared.
20947 &lt;End of help on this topic&gt;
20948 </BODY>
20949 </HTML>
20950 ======= h_flag_forwarded =======
20951 <html>
20952 <title>STATUS FLAG: Forwarded</title>
20953 <body>
20954 <h1>STATUS FLAG: Forwarded</h1>
20956 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
20957 MESSAGE&nbsp;INDEX
20958 screen, is automatically set when you forward a message.  This flag is not
20959 automatically cleared.
20962 &lt;End of help on this topic&gt;
20963 </BODY>
20964 </HTML>
20965 ======= h_flag_deleted =======
20966 <html>
20967 <title>STATUS FLAG: Deleted</title>
20968 <body>
20969 <h1>STATUS FLAG: Deleted</h1>
20971 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
20972 MESSAGE&nbsp;INDEX
20973 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
20974 It is cleared
20975 when you use the &quot;U&nbsp;Undelete&quot; command.
20978 Messages marked with this flag will be permanently removed from
20979 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
20980 command, or
20981 when you indicate acceptance of their removal upon leaving the folder.
20984 Note, there can be other actions implicit in the
20985 &quot;D&nbsp;Delete&quot; command,
20986 such as advancing to the next message, that may be momentarily undesirable.
20987 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
20988 flag <A HREF="h_common_flag">explicitly</A>.
20991 &lt;End of help on this topic&gt;
20992 </BODY>
20993 </HTML>
20994 ====== h_config_incoming_timeo ======
20995 <HTML>
20996 <HEAD>
20997 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
20998 </HEAD>
20999 <BODY>
21000 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21002 This option has no effect unless the feature
21003 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21004 is set, which in turn has no effect unless
21005 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21006 is set.
21008 Sets the time in seconds that Alpine will
21009 attempt to open a network connection used for monitoring for Unseen
21010 messages in Incoming Folders. The default is 5.
21011 If a connection has not completed within this many seconds Alpine will
21012 give up and consider it a failed connection.
21014 <UL>   
21015 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21016 </UL><P>
21017 &lt;End of help on this topic&gt;
21018 </BODY>
21019 </HTML>
21020 ====== h_config_psleep ======
21021 <HTML>
21022 <HEAD>
21023 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
21024 </HEAD>
21025 <BODY>
21026 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
21029 In the good old days a mailcap viewer was used to examine an 
21030 attachment before saving it, and after viewing the attachment control 
21031 would return to the operating system when the viewer was closed. Therefore, 
21032 when the mailcap viewer returned control to the operating system, it 
21033 could be assumed that the user who opened the attachment was done
21034 examining it, and the copy of the attachment that was used, could be removed.
21037 However, today this assumption is not longer valid. Some viewers return 
21038 control to the operating system before they actually read the attachment
21039 to be examined. This causes Alpine to delete the attachment before it 
21040 is read by the viewer, causing the viewer to fail opening the attachment.
21043 In order to work around this problem, Alpine checks, after the viewer has 
21044 returned control to the operating system, if there is any process that is 
21045 using the attachment. This variable controls the number of seconds that 
21046 must elapse between checks. Once it is found that no process is using the 
21047 attachment, this is removed.
21050 The minimum value for this variable is 60 (checks will be made once per 
21051 minute), and the maximum value is 600 (checks will be made once every 10 
21052 minutes). The default value is 60.
21055 <UL>   
21056 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21057 </UL><P>
21058 &lt;End of help on this topic&gt;
21059 </BODY>
21060 </HTML>
21061 ====== h_config_incoming_interv ======
21062 <HTML>
21063 <HEAD>
21064 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21065 </HEAD>
21066 <BODY>
21067 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21069 This option has no effect unless the feature
21070 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21071 is set, which in turn has no effect unless
21072 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21073 is set.
21075 This option specifies, in seconds, how often Alpine will check
21076 for new mail and state changes in Incoming Folders when Incoming Folders
21077 Checking is turned on.
21078 The default is 3 minutes (180).
21079 This value applies only to folders that are local to the system that
21080 Alpine is running on or that are accessed using the IMAP protocol.
21081 The similar option
21082 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21083 applies to all other monitored folders.
21085 <UL>   
21086 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21087 </UL><P>
21088 &lt;End of help on this topic&gt;
21089 </BODY>
21090 </HTML>
21091 ====== h_config_incoming_second_interv ======
21092 <HTML>
21093 <HEAD>
21094 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21095 </HEAD>
21096 <BODY>
21097 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21099 This option has no effect unless the feature
21100 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21101 is set, which in turn has no effect unless
21102 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21103 is set.
21105 This option together with the option
21106 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21107 specifies, in seconds, how often Alpine will check
21108 for new mail and state changes in Incoming Folders when Incoming Folders
21109 Checking is turned on.
21110 The default for this option is 3 minutes (180).
21111 For folders that are local to this system or
21112 that are accessed using the IMAP protocol
21113 the value of the option
21114 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21115 is used.
21116 For all other monitored folders, the value of this option is used.
21118 The reason there are two separate options is because it is usually
21119 less expensive to check local and IMAP folders than it is to check
21120 other types, like POP or NNTP folders.
21121 You may want to set this secondary value to a higher number than
21122 the primary check interval.
21124 <UL>   
21125 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21126 </UL><P>
21127 &lt;End of help on this topic&gt;
21128 </BODY>
21129 </HTML>
21130 ====== h_config_incoming_list ======
21131 <HTML>
21132 <HEAD>
21133 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21134 </HEAD>
21135 <BODY>
21136 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21138 This option has no effect unless the feature
21139 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21140 is set, which in turn has no effect unless
21141 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21142 is set.
21144 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21145 normally monitor all Incoming Folders.
21146 You may use this option to restrict the list of monitored folders to a
21147 subset of all Incoming Folders.
21149 <UL>   
21150 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21151 </UL><P>
21152 &lt;End of help on this topic&gt;
21153 </BODY>
21154 </HTML>
21155 ====== h_config_pers_name ======
21156 <HTML>
21157 <HEAD>
21158 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21159 </HEAD>
21160 <BODY>
21161 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21163 This value is used to determine the full name part of the "From" address
21164 on messages you send.
21165 <!--chtml if pinemode="os_windows"-->
21166  PC-Alpine requires that this be set in order to properly construct the "From" address.
21167 <!--chtml else-->
21168  If unset, Unix Alpine will obtain your full name from
21169  the system password file. PC-Alpine, on the other hand, requires that this be set.
21170 <!--chtml endif-->
21172 If you want to change the value of what gets included in the From header
21173 in messages you send (other than just the Personal Name)
21174 look <A HREF="h_config_change_your_from">here</A> for a description.
21175 <P><UL>
21176 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21177 </UL><P>
21178 &lt;End of help on this topic&gt;
21179 </BODY>
21180 </HTML>
21181 ====== h_config_pruned_folders ======
21182 <html>
21183 <header>
21184 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21185 </header>
21186 <body>
21187 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21189 This variable allows you to define a list of one or more folders that
21190 Alpine will offer to prune for you in the same way it automatically offers
21191 to prune your "sent-mail" folder each month.
21192 Each folder in this list must be a folder in your default folder collection
21193 (the first folder collection if you have more than one), and it is just
21194 the relative name of the folder in the collection, not the fully-qualified name.
21195 It is similar to sent-mail.
21196 Instead of something like
21198 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21200 the correct value to use would be
21202 <CENTER><SAMP>folder</SAMP></CENTER>
21204 There is an assumption here that your first collection is the folders in
21206 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21209 Once a month, for each folder listed, Alpine will offer to move
21210 the contents of the folder to a new folder of the same name but with
21211 the previous month's date appended.  Alpine will then look for any such
21212 date-appended folder names created for a previous month, and offer each
21213 one it finds for deletion.
21216 If you decline the first offer, no mail is moved and no new folder is
21217 created.
21220 The new folders will be created
21221 in your default folder collection.
21224 <UL>   
21225 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21226 </UL><P>
21227 &lt;End of help on this topic&gt;
21228 </body>
21229 </html>
21230 ====== h_config_upload_cmd ======
21231 <HTML>
21232 <HEAD>
21233 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21234 </HEAD>
21235 <BODY>
21236 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21238 This option affects the behavior of the Composer's &quot;Read File&quot; 
21239 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21240 commands.  It specifies
21241 a Unix program name, and any necessary command line arguments, that Alpine can
21242 use to transfer files from your personal computer into messages that you are
21243 composing.<P>
21245 <B>Note:</B> this facility is intended for use with serial line transfer 
21246 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21247 to work with TCP/IP file transfer programs such as ftp.<P>
21249 If a program is specified, the commands listed above are modified to offer a
21250 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21251 specified here must match the transfer program or protocol available on the
21252 personal computer.<P>
21254 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21255 the specified upload program finishes, Alpine expects the uploaded data to be
21256 contained in this file.<P>
21258 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21259 generates a
21260 temporary file name that it will pass to the specified Unix program.  Alpine
21261 will read the resulting uploaded text from this file and then delete it when
21262 the upload command is finished.<P>
21264 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21265 prompt
21266 you for the name of the file that is to contain the uploaded information that
21267 it is to attach.  Alpine will attach this file to the composition, but will
21268 <B>not</B> delete this file after the upload command is finished.<P>
21270 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21271 command
21272 line arguments.  Alpine will replace this symbol with the name of the file
21273 being used to exchange the uploaded information.  This token allows you to
21274 position the file name where it is required in the Unix program's command
21275 line arguments.<P>
21277 If the &quot;_FILE_&quot; token is not present in the specified command, the
21278 temporary file's name is automatically appended to the specified Unix
21279 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21280 <B>last</B> command line argument.
21281 <P><UL>
21282 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21283 </UL><P>
21284 &lt;End of help on this topic&gt;
21285 </BODY>
21286 </HTML>
21287 ====== h_config_upload_prefix ======
21288 <HTML>
21289 <HEAD>
21290 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21291 </HEAD>
21292 <BODY>
21293 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21295 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21296 It defines text to be written to the terminal emulator (via standard output)
21297 immediately prior to starting upload command.  This is useful for
21298 integrated serial line file transfer agents that permit command passing
21299 (e.g., Kermit's APC method).<P>
21301 The special token &quot;_FILE_&quot; may be included in the string specification.
21302 That symbol will be replaced with the (Alpine-created) name of the temporary
21303 file in which Alpine will expect to find the uploaded file.
21304 <P><UL>
21305 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21306 </UL><P>
21307 &lt;End of help on this topic&gt;
21308 </BODY>
21309 </HTML>
21310 ====== h_config_download_cmd ======
21311 <HTML>
21312 <HEAD>
21313 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21314 </HEAD>
21315 <BODY>
21316 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21318 This option affects the behavior of the Export command.  It specifies a Unix
21319 program name, and any necessary command line arguments, that Alpine can use to
21320 transfer the exported message to your personal computer's disk.<P>
21321 Note: this facility is intended for use with serial line transfer 
21322 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21323 to work with TCP/IP file transfer programs such as ftp.<P>
21324 If a program is specified, the Export command is modified to offer a
21325 subcommand (^V) to activate the transfer (in lieu of saving it to
21326  the machine where Alpine is running).  Obviously, the Unix program
21327 specified here must match the transfer program or protocol available on the
21328 personal computer.<P>
21330 When this subcommand is selected and before Alpine invokes the specified Unix
21331 program, Alpine will create a temporary file containing the text of the
21332 exported message.  Alpine uses this file to pass the exported message text to
21333 the specified Unix program.<P>
21335 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21336 line arguments.  Alpine will replace this symbol with the temporary file's name
21337 before executing the Unix program.  This token allows you to position the
21338 file name where it is required in the Unix program's command line arguments.
21340 If the &quot;_FILE_&quot; token is not present in the specified command, the
21341 temporary file's name is automatically appended to the specified Unix
21342 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21343 <B>last</B> command line argument.
21344 <P><UL>
21345 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21346 </UL><P>
21347 &lt;End of help on this topic&gt;
21348 </BODY>
21349 </HTML>
21350 ====== h_config_download_prefix ======
21351 <HTML>
21352 <HEAD>
21353 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21354 </HEAD>
21355 <BODY>
21356 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21358 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21359 It defines text to be written to the terminal emulator (via standard output)
21360 immediately prior to starting the download command.  This is useful for
21361 integrated serial line file transfer agents that permit command passing
21362 (e.g., Kermit's APC method).
21364 The special token &quot;_FILE_&quot; may be included in the string 
21365 specification.
21366 That symbol will be replaced with the (Alpine-created) name of the temporary
21367 file into which Alpine will place the message to be downloaded.
21368 <P><UL>
21369 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21370 </UL><P>
21371 &lt;End of help on this topic&gt;
21372 </BODY>
21373 </HTML>
21374 ====== h_config_mailcap_path ======
21375 <HTML>
21376 <HEAD>
21377 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21378 </HEAD>
21379 <BODY>
21380 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21381 This variable is used to replace Alpine's default mailcap file search path.
21382 It takes one or more file names (full paths must be specified) in which to
21383 look for mail capability data.  The default search path can be found in this
21384 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21385 If there is more than one file name listed, list members should be delimited
21386 by 
21387 <!--chtml if pinemode="os_windows"-->
21388 a semi-colon (;) under Windows; for example:<PRE>
21389         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21390 </PRE>
21391 <!--chtml else-->
21392 a colon (:) under UNIX; for example:<PRE>
21393         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21394 </PRE>
21395 <!--chtml endif-->
21396 <P><UL>
21397 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21398 </UL>
21400 &lt;End of help on this topic&gt;
21401 </BODY>
21402 </HTML>
21403 ====== h_config_mimetype_path ======
21404 <HTML>
21405 <HEAD>
21406 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21407 </HEAD>
21408 <BODY>
21409 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21411 This variable is used to replace Alpine's default mime.types file search path.
21412 It takes one or more file names (full paths must be specified) in which to
21413 look for file-name-extension to MIME type mapping data.  The default search
21414 path can be found in this
21415 <A HREF="h_news_config">Alpine Configuration</A> help.
21419 If there is more than one file name listed, list members should be delimited
21420 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21422 &lt;End of help on this topic&gt;
21423 </BODY></HTML>
21424 ====== h_config_set_att_ansi ======
21425 <HTML><HEAD>
21426 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21427 </HEAD>
21428 <BODY>
21429 <H1>OPTION: Set printer to attached ansi printer</H1>
21431 Type "S" to set your printer to "attached-to-ansi".<BR>
21432 It is OK to include "attached-to-ansi" in your personal list below.
21434 &lt;End of help on this topic&gt;
21435 </BODY></HTML>
21436 ====== h_config_set_att_ansi2 ======
21437 <HTML><HEAD>
21438 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21439 </HEAD>
21440 <BODY>
21441 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21443 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21444 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21445 list below.
21449 This is the same as the "attached-to-ansi" option except that a
21450 formfeed character will not be appended to the end of the print job.
21451 If your printer already ejects the paper by itself at the end of the
21452 job, you may prefer the "no-formfeed" form of this printer so that you
21453 don't get an extra blank page between print jobs.
21456 &lt;End of help on this topic&gt;
21457 </BODY></HTML>
21458 ====== h_config_set_att_wyse ======
21459 <HTML><HEAD>
21460 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21461 </HEAD>
21462 <BODY>
21463 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21465 Type "S" to set your printer to "attached-to-wyse".<BR>
21466 It is OK to include "attached-to-wyse" in your personal list below.
21468 This is very similar to "attached-to-ansi".
21469 The only difference is in the control characters sent to turn the printer
21470 on and off.
21471 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21472 to turn on the printer and ESC LEFT_BRACKET 4 i
21473 to turn it off.
21474 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21475 &lt;End of help on this topic&gt;
21476 </BODY></HTML>
21477 ====== h_config_set_att_wyse2 ======
21478 <HTML><HEAD>
21479 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21480 </HEAD>
21481 <BODY>
21482 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21484 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21485 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21486 list below.
21490 This is the same as the "attached-to-wyse" option except that a
21491 formfeed character will not be appended to the end of the print job.
21492 If your printer already ejects the paper by itself at the end of the
21493 job, you may prefer the "no-formfeed" form of this printer so that you
21494 don't get an extra blank page between print jobs.
21497 &lt;End of help on this topic&gt;
21498 </BODY></HTML>
21499 ====== h_config_set_stand_print ======
21500 <HTML>
21501 <HEAD>
21502 <TITLE>OPTION: Set default printer</TITLE>
21503 </HEAD>
21504 <H1>OPTION: Set default printer</H1>
21505 <BODY>
21506 Move to the printer you want and type "S" to set it to be your
21507 default printer.  This list is not modifiable by you and has been
21508 set up by the system administrators.  If there is more than one printer
21509 listed in the Command List, you will be able to cycle through that
21510 whole list at the time you print, starting with your default.
21511 It is OK to include entries from this Standard list in your personal
21512 list below.
21514 &lt;End of help on this topic&gt;
21515 </BODY>
21516 </HTML>
21517 ====== h_config_set_custom_print ======
21518 <HTML>
21519 <HEAD>
21520 <TITLE>OPTION: Set default printer</TITLE>
21521 </HEAD>
21522 <H1>OPTION: Set default printer</H1>
21523 <BODY>
21524 You may add as many print commands as you want to your personal list.
21525 Specify one of them as your default printer by moving to the printer
21526 you want and typing "S".  If there is more than one printer listed
21527 in the Command List, you will be able to cycle through that list at
21528 the time you print, starting with your default.  It is OK to include
21529 entries from the Standard list above or to include the command
21530 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21531 "attached-to-wyse-no-formfeed" as one of the entries here.
21533 &lt;End of help on this topic&gt;
21534 </BODY>
21535 </HTML>
21536 ====== h_config_user_id =====
21537 <HTML>
21538 <HEAD>
21539 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21540 </HEAD>
21541 <BODY>
21542 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21544 This value is used as part of the "From" address on messages you send.
21545 It is also the default login name for remote IMAP server access.  Set this
21546 to the username part you want to appear on outgoing email.
21548 If you want to change the value of what gets included in the From header
21549 in messages you send (other than just the User ID)
21550 look <A HREF="h_config_change_your_from">here</A> for a description.
21552 <P><UL>   
21553 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21554 </UL><P>
21555 &lt;End of help on this topic&gt;
21556 </BODY>
21557 </HTML>
21558 ====== h_config_user_dom =====
21559 <HTML>
21560 <HEAD>
21561 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21562 </HEAD>
21563 <BODY>
21564 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21566 This value specifies the domain part (right-hand side) of your return
21567 address on outgoing email and is also used as the default domain for email
21568 composed to a local user.
21569 <!--chtml if pinemode="os_windows"-->
21570  This value is required for PC-Alpine. If you are unsure as to what this should be,
21571  contact your local help desk, system administrator, or Internet Service Provider.
21572 <!--chtml else-->
21573  If unset, Unix Alpine will obtain the domain from
21574  the system.  Often this value will be set for your whole site by the
21575  system administrator.<P>
21576 <!--chtml endif-->
21577 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21578 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21580 If you want to change the value of what gets included in the From header
21581 in messages you send (other than just the User Domain)
21582 look <A HREF="h_config_change_your_from">here</A> for a description.
21583 <P><UL>
21584 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21585 </UL><P>
21586 &lt;End of help on this topic&gt;
21587 </BODY>
21588 </HTML>
21589 ====== h_config_smtp_server =====
21590 <HTML>
21591 <HEAD>
21592 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21593 </HEAD>
21594 <BODY>
21595 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21596 This value specifies the name of one or more SMTP 
21597 (Simple Mail Transfer Protocol) servers for sending mail. 
21598 <!--chtml if pinemode="os_windows"-->
21599 You must have an SMTP server for use with PC-Alpine.
21600 SMTP servers are
21601 normally set up by a system administrator for use by all members of a given
21602 campus or department.
21603 Contact your local help desk to ask what SMTP
21604 servers you should use.  
21605 <!--chtml else-->
21606 Unix Alpine users may not need to set an SMTP server.
21607 Alpine will attempt to execute the program (usually sendmail) that is used
21608 to insert mail into the mail system.
21609 If this works for you, you may leave this option blank.
21610 If there is an SMTP server running on the Unix host you may be able to
21611 improve sending performance slightly by setting the SMTP server option
21612 to &quot;localhost&quot; or to the actual name of the Unix host.
21614 If the Unix host doesn't work the way Alpine was expecting you will need to
21615 set the value of this option.
21616 SMTP servers are
21617 normally set up by a system administrator for use by all members of a given
21618 campus or department.
21619 Contact your local help desk to ask what SMTP
21620 servers you should use.  
21621 <!--chtml endif-->
21623 Your SMTP server may offer SMTP AUTH authentication.
21624 It may even require it.
21625 If your SMTP server offers SMTP AUTH authentication you may specify a
21626 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21627 This parameter requires an associated value,
21628 the username identifier with which to establish the server
21629 connection.
21630 An example might be:
21633 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21636 If AUTH authentication is offered by the server, this will cause Alpine to
21637 attempt to use it.
21638 If AUTH authentication is not offered by the server, this will cause Alpine
21639 to fail sending with an error similar to:
21642 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21645 Another type of authentication that is used by some ISPs is called
21646 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21647 which means that you have to authenticate
21648 yourself to the POP or IMAP server by opening a mailbox before you
21649 can send mail.
21650 To do this, you usually only have to open your INBOX.
21653 You may tell Alpine to use the
21654 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21655 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21656 parameter
21657 in this option.
21658 At this time &quot;/submit&quot; is simply equivalent to specifying
21659 port 587, though it may imply more than that at some point in the future.
21660 Some ISPs are blocking port 25 in order to reduce the amount of spam
21661 being sent to their users.
21662 You may find that the submit option allows you to get around such a block.
21665 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21668 To specify any non-standard port number on the SMTP server you may follow
21669 the hostname with a colon followed by the portnumber.
21672 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21675 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21676 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21677 If that fails then a non-encrypted connection will be attempted instead.
21678 You may specify that a TLS connection is required if you wish.
21679 If you append &quot;/tls&quot; to the name then the connection will fail
21680 instead of falling back to a non-secure connection.
21683 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
21687 For more details about server name possibilities see
21688 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21691 <UL>
21692 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21693 </UL>
21695 &lt;End of help on this topic&gt;
21696 </BODY>
21697 </HTML>
21698 ====== h_config_nntp_server =====
21699 <HTML>
21700 <HEAD>
21701 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
21702 <BODY>
21703 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
21705 This value specifies the name of one or more NNTP
21706 (Network News Transfer Protocol)
21707 servers for reading and posting USENET news.
21708 NNTP servers are normally
21709 set up by a system administrator for use by all members of a given campus
21710 or department.
21711 Contact your local help desk to ask what NNTP servers you should use.  
21712 <!--chtml if pinemode="os_windows"--><!--chtml else-->
21713 Often Unix Alpine users will find that this variable has been
21714 set for the whole system (and they don't have to worry about it).  
21715 <!--chtml endif-->
21716 When you define an NNTP server here, Alpine implicitly defines a news
21717 collection for you, assuming that server as the news server and assuming
21718 that you will use the NNTP protocol and a local newsrc configuration file
21719 for reading news.
21720 For more about reading news with Alpine, see
21721 <A HREF="h_reading_news">how to use Alpine to read news</A>.
21723 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
21724 or &quot;AUTHINFO USER&quot; authentication.
21725 It may even require it.
21726 If your NNTP server does offer such authentication you may specify a user name
21727 parameter to cause Alpine to attempt to authenticate.
21728 The same is true for the server name in a folder collection that uses NNTP.
21729 This parameter requires an associated value,
21730 the username identifier with which to establish the server connection.
21731 An example might be:
21734 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
21737 If authentication is offered by the server, this will cause Alpine to
21738 attempt to use it.
21739 If authentication is not offered by the server, this will cause Alpine
21740 to fail with an error similar to:
21743 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
21745 For more details about the server name possibilities see
21746 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21747 <P><UL>
21748 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21749 </UL><P>
21750 &lt;End of help on this topic&gt;
21751 </BODY>
21752 </HTML>
21753 ====== h_config_inbox_path =====
21754 <HTML>
21755 <HEAD>
21756 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
21757 </HEAD>
21758 <BODY>
21759 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
21761 This value overrides the default value of your INBOX name/path/location.
21762 <!--chtml if pinemode="os_windows"-->
21763 PC-Alpine users must specify an inbox path and it must be a folder on an
21764 IMAP server.  
21765 <!--chtml else-->
21766 Unix and VMS Alpine users will often find that this variable
21767 has been pre-configured by your system administrator.  
21768 <!--chtml endif-->
21769 You may be able to specify an alternate INBOX that is either a local folder 
21770 or a folder on an IMAP server.
21772 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
21773 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
21774 mail server.
21776 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21777 details on the syntax of folder definitions.
21779 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
21780 mail is disappearing.
21781 <P><UL>
21782 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21783 </UL><P>
21784 &lt;End of help on this topic&gt;
21785 </BODY>
21786 </HTML>
21787 ====== h_config_change_your_from =====
21788 <HTML>
21789 <HEAD>
21790 <TITLE>How to Change your From Address</TITLE>
21791 </HEAD>
21792 <BODY>
21793 <H1>How to Change your From Address</H1>
21795 If the From address that Alpine includes in mail that you send is not correct,
21796 you may want to configure a different default value for the From address.
21797 You may follow these directions to change the default:
21800 <UL>
21801   <LI> Go to the Main Alpine Menu
21802   <LI> From there type the Setup Command
21803   <LI> From there type the Config Command
21804 </UL>
21807 You've probably already seen this SETUP CONFIGURATION screen.
21808 If not, there are many options you may want to set here.
21809 To set the value of the From header you may use the
21810 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
21811 Find it by scrolling down a few pages or use the WhereIs command to
21812 search for &quot;customized&quot;.
21813 You may want to read the help text associated with the option.
21815 To add a custom From header, type the Add command and enter the
21816 full header line, including the leading &quot;From:&nbsp;&quot;.
21817 For example:
21819 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21821 Now exit the Setup command and try sending mail to yourself to see
21822 what the From line looks like.
21824 When you are in the composer you may edit the custom From line by typing
21825 Ctrl-R while your cursor is in the headers of the message and then moving
21826 to the From line and editing.
21827 If you want to leave the default value the same but add the possibility
21828 of being able to edit the header when you compose, add just the header
21829 name without a value.
21830 For example:
21832 <CENTER><SAMP>From:</SAMP></CENTER>
21834 If you change your From address you may also find it useful to add the
21835 changed From address to the
21836 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
21837 configuration option.
21839 <UL>   
21840 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21841 </UL><P>
21842 &lt;End of help on this topic&gt;
21843 </BODY>
21844 </HTML>
21845 ====== h_config_default_fcc =====
21846 <HTML>
21847 <HEAD>
21848 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
21849 </HEAD>
21850 <BODY>
21851 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
21853 This value specifies where a copy of outgoing mail should be saved.  If
21854 this is not a path name, it will be in the default collection for saves.
21855 Any valid folder specification, local or IMAP, is allowed.  This default
21856 folder carbon copy only applies when the 
21857 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
21858 is set to use the default folder.  
21859 <!--chtml if pinemode="os_windows"-->
21860 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
21861 <!--chtml else-->
21862 Unix Alpine default
21863 is normally &quot;sent-mail&quot; in the default folder collection. 
21864 <!--chtml endif-->
21866 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
21867 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
21868 IMAP server (remember that in order to later access this remote folder through Alpine, it
21869 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21870 for more information). An example:<p>
21871 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
21873 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
21875 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21876 details on the syntax of folder definitions.
21878 <UL>   
21879 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21880 </UL><P>
21881 &lt;End of help on this topic&gt;
21882 </BODY>
21883 </HTML>
21884 ====== h_config_def_save_folder =====
21885 <HTML>
21886 <HEAD>
21887 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
21888 </HEAD>
21889 <BODY>
21890 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
21892 This option determines the default folder name for save-message operations 
21893 (&quot;saves&quot;).
21895 If this is not a path name, it will be in the default collection for saves.
21896 Any valid folder specification, local or IMAP, is allowed.  This default
21897 folder only applies when the
21898 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
21899 doesn't override it.  
21900 <!--chtml if pinemode="os_windows"-->
21901 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
21902 <!--chtml else-->
21903 Unix Alpine default
21904 is normally &quot;saved-messages&quot; in the default folder collection.
21905 <!--chtml endif-->
21906 If you access your email through an IMAP server, especially if you often switch between Unix
21907 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
21908 IMAP server (remember that in order to later access this remote folder through Alpine, it
21909 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21910 for more information). An example:<p>
21911 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
21913 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21914 details on the syntax of folder definitions.
21916 <UL>   
21917 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21918 </UL><P>
21919 &lt;End of help on this topic&gt;
21920 </BODY>
21921 </HTML>
21922 ====== h_config_postponed_folder =====
21923 <HTML>
21924 <HEAD>
21925 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
21926 </HEAD>
21927 <BODY>
21928 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
21930 This value overrides the default name for the folder where postponed
21931 messages are saved.  If this is not a path name, it will be in the default
21932 collection for message Saves.  Any valid folder specification, local or
21933 remote, is allowed. 
21934 PC-Alpine default
21935 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
21936 The Unix Alpine default is normally &quot;postponed-msgs&quot;
21937 in the default collection. 
21939 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
21940 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
21941 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
21942 in all Alpine copies you use. 
21943 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
21944 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
21945 for more information). An
21946 example:<p> 
21947 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
21949 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21950 details on the syntax of folder definitions.
21952 <UL>   
21953 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21954 </UL><P>
21955 &lt;End of help on this topic&gt;
21956 </BODY>
21957 </HTML>
21958 ====== h_config_read_message_folder =====
21959 <HTML>
21960 <HEAD>
21961 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
21962 </HEAD>
21963 <BODY>
21964 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
21966 By virtue of specifying a folder name here, Alpine will be configured to
21967 save all messages that you have read during a session into the designated
21968 &quot;read messages&quot; folder.  This allows you to more easily distinguish
21969 between your really new email (in your INBOX) and those that you have
21970 already read.  Depending on how you define the 
21971 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21972 setting, you may or may not be asked when you quit
21973 Alpine if you want read messages to be moved to this folder.  In either
21974 case, moving the messages means they will be deleted from your INBOX.
21976 If this is not a path name, it will be in the default collection for
21977 saves.  Any valid folder specification, local or remote (via IMAP), is
21978 allowed.  There is no default for the name of the read message folder.
21980 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21981 details on the syntax of folder definitions.
21983 <UL>   
21984 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21985 </UL><P>
21986 &lt;End of help on this topic&gt;
21987 </BODY>
21988 </HTML>
21989 ====== h_config_form_folder =====
21990 <HTML>
21991 <HEAD>
21992 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
21993 </HEAD>
21994 <BODY>
21995 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
21997 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
21998 contain messages that you have composed and that are intended to be
21999 sent in their original form repeatedly.
22002 Setting this variable will alter Alpine's usual behavior when you
22003 execute the Compose command.  Normally, Alpine offers a chance to
22004 continue a postponed or interrupted message should one or the other
22005 exist.  When this variable is set to a folder name that exists, Alpine
22006 will also offer the chance to select a message from the folder to
22007 insert into the composer (much like when continuing a postponed message).
22008 The difference, however, is that Alpine will not automatically delete
22009 the selected message from the Form Letter Folder.
22011 Setting this variable will also affect Alpine's behavior when you
22012 Postpone a message from the composer.  Normally, Alpine simply stashes
22013 the message away in your
22014 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22015 Regardless of the specified folder's existence, Alpine will ask which
22016 folder you intend the message to be stored in.  Choose the
22017 &quot;F&quot; option to store the message in your Form Letter Folder.
22018 This is the most common way to add a message to the folder.
22021 Another method of adding messages to the folder is via the Alpine
22022 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22023 you expect to send in the same form again, you can enter the Form
22024 Letter Folder's name in this field.  Alpine, as usual, will copy the
22025 message as it's sent.  Note, when you later select this message from 
22026 your Form Letter Folder, it will have the same recipients as the original
22027 message.
22030 To delete a message from the Form Letter Folder, you can either select
22031 the folder from a suitable FOLDER LIST screen, or use the Delete
22032 command in the MESSAGE INDEX offered when selecting from the folder as
22033 part of the Compose command.  You can delete a Form Letter Folder just
22034 as any other folder from a suitable FOLDER LIST screen.
22037 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22038 facility can be used
22039 to replace the Form Letter Folder.
22042 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22043 details on the syntax of folder definitions.
22046 <UL>   
22047 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22048 </UL><P>
22049 &lt;End of help on this topic&gt;
22050 </BODY>
22051 </HTML>
22052 ====== h_config_archived_folders =====
22053 <HTML>
22054 <HEAD>
22055 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22056 </HEAD>
22057 <BODY>
22058 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22060 This is like
22061 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22062 only more general.  You may archive
22063 any of the folders in your incoming collection.  This is a list of folder
22064 pairs, with the first separated from the second in the pair by a space.
22065 The first folder in a pair is the folder you want to archive, and the
22066 second folder is the folder that read messages from the first should be
22067 moved to.  Depending on how you define the
22068 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22069 setting, you may or may not be asked when you
22070 leave the first folder if you want read messages to be moved to the
22071 second folder.  In either case, moving the messages means they will be
22072 deleted from the first folder.
22074 The name of the first folder in each pair can be either the technical
22075 specification of the folder (like what appears in your configuration file)
22076 or (much easier) the nickname that you gave the folder when you made it
22077 an incoming folder.
22079 For example:<p>
22080 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22081 <p>or, using nicknames:<p>
22082 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22084 If these are not path names, they will be in the default collection for
22085 saves. Any valid folder specification, local or remote (via IMAP), is
22086 allowed. There is no default.
22088 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22089 details on the syntax of folder definitions.
22091 <UL>   
22092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22093 </UL><P>
22094 &lt;End of help on this topic&gt;
22095 </BODY>
22096 </HTML>
22097 ====== h_config_newsrc_path ======
22098 <HTML>
22099 <HEAD>
22100 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22101 </HEAD>
22102 <BODY>
22103 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22105 This option overrides the default name Alpine uses for your "newsrc" news
22106 status and subscription file.  If set, Alpine will take this value as the
22107 full pathname for the desired newsrc file.<P>
22109 If this option is <B>not</B> set, 
22110 <!--chtml if pinemode="os_windows"-->
22111 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22112 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22113 directory as your pinerc file for NEWSRC.
22114 <!--chtml else-->
22115 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22116 your account's home directory).
22117 <!--chtml endif-->
22118 <P><UL>
22119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22120 </UL>
22122 &lt;End of help on this topic&gt;
22123 </BODY>
22124 </HTML>
22125 ====== h_config_literal_sig =====
22126 <HTML>
22127 <HEAD>
22128 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22129 </HEAD>
22130 <BODY>
22131 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22133 With this option your actual signature, as opposed to
22134 the name of a file containing your signature,
22135 is stored in the Alpine configuration file.
22136 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22139 This is simply a different way to store the signature.
22140 The signature is stored inside your Alpine configuration file instead of in
22141 a separate file.
22142 Tokens work the same way they do with the
22143 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22144 help.
22147 The Setup/Signature command on Alpine's MAIN MENU will edit
22148 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22149 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22150 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22151 instead.
22154 The two character sequence &#92;n (backslash followed by
22155 the character n) will be used to signify a line-break in your signature.
22156 You don't have to enter the &#92;n, but it will be visible in the
22157 SETUP CONFIGURATION window after you are done editing the signature.
22160 <UL>   
22161 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22162 </UL><P>
22163 &lt;End of help on this topic&gt;
22164 </BODY>
22165 </HTML>
22166 ====== h_config_signature_file =====
22167 <HTML>
22168 <HEAD>
22169 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22170 </HEAD>
22171 <BODY>
22172 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22174 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22175 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22176 You can tell that that is the case because the value of the
22177 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22179 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22181 You may either use all Literal Signatures (signatures stored in your
22182 configuration file) throughout Alpine, or all signature files.
22183 You can't mix the two.
22185 This is the name of a file that will be automatically inserted into
22186 outgoing messages.
22187 It typically contains information such as your
22188 name, email address and organizational affiliation.
22189 Alpine adds the
22190 signature into the message as soon as you enter the composer so you
22191 can choose to remove it or edit it on a message by message basis.
22192 Signature file placement in message replies is controlled by the
22193 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22194 setting in the feature list.
22197 The default file name is
22198 <!--chtml if pinemode="os_windows"-->
22199 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22200 PINERC file is a local file.
22201 If your PINERC file is remote, then it will be in the directory specified
22202 by the &quot;-aux local_directory&quot; command line option.
22203 <!--chtml else-->
22204 &quot;.signature&quot;.
22205 <!--chtml endif-->
22208 To create or edit your signature file choose Setup from the MAIN MENU
22209 and then select S for Signature (Main/Setup/Signature).  This puts you
22210 into the Signature Editor where you can enter a <EM>few</EM> lines of
22211 text containing your identity and affiliation.
22214 If the filename is followed by a vertical bar (|) then instead
22215 of reading the contents of the file the file is assumed to be a
22216 program that will produce the text to be used on its standard output.
22217 The program can't have any arguments and doesn't receive any input from Alpine,
22218 but the rest of the processing works as if the contents came from a file.
22221 Instead of storing the data in a local file, the
22222 signature data may be stored remotely in an IMAP folder.
22223 In order to do this, 
22224 you must use a remote name for the file.
22225 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22227 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22230 The syntax used here is the same as the syntax used for remote configuration
22231 files from the command line.
22232 Note that you may not access an existing signature file remotely,
22233 you have to create a new <EM>folder</EM> that contains the signature data.
22234 If the name you use here for the signature file is a remote name, then when
22235 you edit the file from the Setup/Signature command the data will be stored
22236 remotely in the folder.
22237 You aren't required to do anything special to create the folder, it
22238 gets created automatically if you use a remote name.
22241 Besides regular text, the signature file may also contain
22242 (or a signature program may produce) tokens that
22243 are replaced with text that usually depends on the message you are replying
22244 to or forwarding.
22245 For example, if the signature file contains the token
22247 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22249 anywhere in the text, then that token is replaced by the date
22250 the message you are replying to or forwarding was sent.
22251 If it contains
22253 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22255 that is replaced with the current date.
22256 The first is an example of a token that depends on the message you
22257 are replying to (or forwarding) and the second is an example which
22258 doesn't depend on anything other than the current date.
22259 You have to be a little careful with this facility since tokens that
22260 depend on the message you are replying to or forwarding will be replaced
22261 by nothing in the case where you are composing a new message from scratch.
22262 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22263 in this respect.
22264 It allows you to use different signature files in different cases.
22267 The list of tokens available for use in the signature file is
22268 <A HREF="h_index_tokens">here</A>.
22271 Instead of, or along with the use of &quot;roles&quot; to give you
22272 different signature files in different situations, there is also
22273 a way to conditionally include text based
22274 on whether or not a token would result in specific replacement text.
22275 For example, you could include some text based on whether or not
22276 the _NEWS_ token would result in any newsgroups if it was used.
22277 This is explained in detail
22278 <A HREF="h_reply_token_conditionals">here</A>.
22279 This isn't for the faint of heart.
22281 In the very unlikely event that you want to include a literal token
22282 in the signature you must precede it with a backslash character.
22283 For example,
22285 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22287 would produce something like
22289 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22291 It is not possible to have a literal backslash followed by an expanded token.
22293 An alternate method for storing the signature data is available by using the
22294 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22295 This variable will be used by default.
22297 <UL>   
22298 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22299 </UL><P>
22300 &lt;End of help on this topic&gt;
22301 </BODY>
22302 </HTML>
22303 ====== h_config_init_cmd_list =====
22304 <HTML>
22305 <HEAD>
22306 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22307 </HEAD>
22308 <BODY>
22309 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22311 The initial keystroke--or command--list option lets you start Alpine at
22312 any place you like.
22313 Whatever keystrokes you specify here will be executed
22314 by Alpine upon startup as a macro.
22315 The words SPACE, TAB, DOWN, UP, LEFT, and
22316 RIGHT indicate the pressing of those keys.
22317 CR indicates the pressing of the RETURN key.
22318 F1 through F12 represent the function keys, and ^ followed
22319 by a character indicates that key pressed along with the control key (in
22320 other words, ^P means Ctrl-P).
22321 As a shortcut notation, an element of the list may be several characters
22322 surrounded by double-quotes (").
22323 That will be expanded into the individual keystrokes
22324 (excluding the double-quote characters).
22325 For example, the quoted-string
22327 <P><CENTER>"ABC"</CENTER>
22330 is interpreted the same as the three separate list members
22332 <P><CENTER>A and B and C</CENTER>
22335 which is also the same as
22337 <P><CENTER>A,B,C</CENTER>
22340 An example: To view message 1 on startup,
22341 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22343 <P><CENTER>I,J,1,CR,V</CENTER>
22346 An equivalent version of this is
22348 <P><CENTER>"IJ1",CR,V</CENTER>
22351 Restrictions: You cannot pre-type into the composer with the initial
22352 keystroke list, and you cannot mix function key commands with letter
22353 commands.
22355 <P><UL>   
22356 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22357 </UL>
22359 &lt;End of help on this topic&gt;
22360 </BODY>
22361 </HTML>
22362 ====== h_config_comp_hdrs =====
22363 <html>
22364 <header>
22365 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22366 </header>
22367 <body>
22368 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22370 You can control which headers you want visible when composing outgoing
22371 email using this option.
22372 You can specify any of the regular set, any
22373 <A HREF="h_compose_richhdr">Rich Header</A>,
22374 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22375 that you have already defined.
22376 If you use this setting at all, you must specify all the
22377 headers you want to see, you can't just add to the regular header set.
22378 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22380 Note that the "Newsgroups:" header will be abbreviated in the Composer
22381 display, but should be spelled out in full here.<p>
22382 <UL>   
22383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22384 </UL><P>
22385 &lt;End of help on this topic&gt;
22386 </body>
22387 </html>
22388 ====== h_config_custom_hdrs =====
22389 <HTML>
22390 <HEAD>
22391 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22392 </HEAD>
22393 <BODY>
22394 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22396 You may add your own custom headers to outgoing messages.
22397 Each header you specify here must include the header tag 
22398 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22399 and may optionally include a value for that header.
22400 If you want to see these custom headers each time you compose a message,
22401 you must add them to your
22402 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22403 otherwise they become part
22404 of the rich header set that you only see when you press the
22405 <A HREF="h_compose_richhdr">Rich Header</A>
22406 <!--chtml if pinemode="function_key"-->(F5)
22407 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22408 (If you are looking for a way to change which headers are <EM>displayed</EM>
22409 when you view a message, take a look at the
22410 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22411 option instead.)
22412 Here's an example that shows how you might set your From address
22414 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22416 and another showing how you might set a Reply-To address
22418 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22420 You may also set non-standard header values here.
22421 For example, you could add
22423 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22425 or even
22427 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22429 If you include a value after the colon then that header will be included
22430 in your outgoing messages unless you delete it before sending.
22431 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22432 it will not be included in outgoing messages unless you edit a value
22433 in manually.
22434 For example, if
22436 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22438 is in the list, then the Reply-To header will be available for editing
22439 but won't be included unless a value is added while in the composer.
22441 It's actually a little more complicated than that.
22442 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22443 defaults.
22444 If the message you are about to compose already has a value for a header,
22445 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22446 For example, if you are Replying to a message the Subject field
22447 will already be filled in.
22448 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22449 custom subject will <EM>NOT</EM> be used.
22450 The subject derived from the subject of the message you are Replying
22451 to will be used instead.
22453 It is also possible to make header setting even more complicated and more
22454 automatic by using
22455 <A HREF="h_rules_roles">Roles</A>,
22456 but if all you want to do is set a default value for a header, you don't
22457 need to think about Roles.
22459 If you change your From address you may also find it useful to add the
22460 changed From address to the
22461 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22462 configuration option.
22464 Limitation: Because commas are used to separate the list of
22465 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22466 header contain a comma.
22467 Nor is there currently an &quot;escape&quot; mechanism provided
22468 to make this work.
22469 <P><UL>
22470 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22471 </UL>
22473 &lt;End of help on this topic&gt;
22474 </BODY>
22475 </HTML>
22476 ====== h_config_viewer_headers =====
22477 <HTML>
22478 <HEAD>
22479 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22480 </HEAD>
22481 <BODY>
22482 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22484 You may change the default list of headers that are viewed by listing
22485 the headers you want to view here.  If the headers in your
22486 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22487 will be shown.  The order of the headers you list will be honored.  If
22488 the special value &quot;all-except&quot; is included as the first
22489 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22490 message except those in the list will be shown.  The values are all
22491 case insensitive.
22494 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22495 then the original default headers are ignored.  So, if you just wanted
22496 to add the header Organization to the list, you would have to list
22497 Organization plus all of the other headers originally in the default
22498 list.  If you just included Organization and nothing else, then you
22499 would see only the Organization header, nothing else.
22502 The default list of headers includes:
22503 <UL>
22504   <LI>From
22505   <LI>Resent-From
22506   <LI>To
22507   <LI>Resent-To
22508   <LI>Cc
22509   <LI>Resent-cc
22510   <LI>Bcc
22511   <LI>Newsgroups
22512   <LI>Followup-To
22513   <LI>Date
22514   <LI>Resent-Date
22515   <LI>Subject
22516   <LI>Resent-Subject
22517   <LI>Reply-To
22518 </UL>
22521 If you are looking for a way to control which headers are included in
22522 outgoing mail and are visible or not in the composer, take a look at the
22523 options
22524 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22525 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22526 this option.
22528 <UL>   
22529 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22530 </UL><P>
22531 &lt;End of help on this topic&gt;
22532 </BODY>
22533 </HTML>
22534 ====== h_config_viewer_margin_left =====
22535 <HTML>
22536 <HEAD>
22537 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22538 </HEAD>
22539 <BODY>
22540 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22542 This variable controls the left-hand vertical margin's width in
22543 Alpine's Message Viewing screen.
22544 Its value is the number of space characters preceding each displayed line.
22545 For consistency with
22546 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22547 you may specify the column number to start in
22548 (column numbering begins with number 1)
22549 instead of the width of the margin by appending a lower case letter
22550 &quot;c&quot; to the number.
22551 For example, a value of &quot;2c&quot; means to start the text in column two,
22552 which is entirely equivalent to a value of &quot;1&quot;, which means to
22553 leave a margin of 1 space.
22555 The default is a left margin of 0 (zero).
22556 Misconfigurations (for example, negative values or values with starting
22557 left columns greater than the ending right column)
22558 are silently ignored.
22559 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22560 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22561 instead.
22564 &lt;End of help on this topic&gt;
22565 </BODY>
22566 </HTML>
22567 ====== h_config_viewer_margin_right =====
22568 <HTML>
22569 <HEAD>
22570 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22571 </HEAD>
22572 <BODY>
22573 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22575 This variable controls the right-hand vertical margin's width in
22576 Alpine's Message Viewing screen.
22577 Its value is the number of space characters following each displayed line.
22578 You may specify the column number to end the text in
22579 (column numbering begins with number 1)
22580 instead of the width of the margin by appending a lower case letter
22581 &quot;c&quot; to the number.
22582 For example, a value of &quot;76c&quot; means to end the text in column 76.
22583 If the screen is 80 characters wide, this is equivalent to a value
22584 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22585 However, if you use different size screens at different times, then these
22586 two values are not equivalent.
22588 The default right margin is 4.
22589 Misconfigurations (for example, negative values or values with starting
22590 left columns greater than the ending right column)
22591 are silently ignored.
22592 If the number of columns for text between the
22593 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22594 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22595 instead.
22598 &lt;End of help on this topic&gt;
22599 </BODY>
22600 </HTML>
22601 ====== h_config_quote_suppression =====
22602 <HTML>
22603 <HEAD>
22604 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22605 </HEAD>
22606 <BODY>
22607 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22609 This option should be used with care.
22610 It will cause some of the quoted text to be eliminated from the
22611 display when viewing a message in the MESSAGE TEXT screen.
22612 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22613 value &quot;5&quot;,
22614 this will cause quoted text that is longer than five lines to be truncated.
22615 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22616 Quoted text of more than six lines will have the first five lines displayed
22617 followed by a line that looks something like
22619 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22621 As a special case, if exactly one line of quoted text would be hidden, the
22622 entire quote will be shown instead.
22623 So for the above example, quoted text that is exactly six lines long will
22624 will be shown in its entirety.
22625 (In other words, instead of hiding a single line and adding a line
22626 that announces that one line was hidden, the line is just shown.)
22628 If the sender of a message has carefully chosen the quotes that he or she
22629 includes, hiding those quotes may change the meaning of the message.
22630 For that reason, Alpine requires that when you want to set the value of this
22631 variable to something less than four lines, you actually have to set it
22632 to the negative of that number.
22633 So if you want to set this option to &quot;3&quot;, you actually have to
22634 set it to &quot;-3&quot;.
22635 The only purpose of this is to get you to think about whether or not you
22636 really want to do this!
22637 If you want to delete all quoted text you set the value of this option
22638 to the special value &quot;-10&quot;.
22640 The legal values for this option are
22642 <TABLE>   
22643 <TR>
22644   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22645   <TD> Default, don't hide anything </TD>
22646 </TR>
22647 <TR>
22648   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22649   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22650 </TR>
22651 <TR>
22652   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22653   <TD> Suppress if more than that many lines </TD>
22654 </TR>
22655 <TR>
22656   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22657   <TD> Suppress all quoted lines </TD>
22658 </TR>
22659 </TABLE>
22661 If you set this option to a non-default value you may sometimes wish to
22662 view the quoted text that is not shown.
22663 When this is the case, the
22664 <A HREF="h_common_hdrmode">HdrMode Command</A>
22665 may be used to show the hidden text.
22666 Typing the &quot;H&quot; command once will show the hidden text.
22667 Typing a second &quot;H&quot; will also turn on Full Header mode.
22668 The presence or absence of the HdrMode command is determined by the
22669 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22670 Feature-List option in your Alpine configuration, so you will want to
22671 be sure that is turned on if you use quote suppression.
22673 For the purposes of this option, a quote is a line that begins with the
22674 character &quot;&gt;&quot;.
22676 Quotes are only suppressed when displaying a message on the screen.
22677 The entire quote will be left intact when printing or forwarding or something
22678 similar.
22680 &lt;End of help on this topic&gt;
22681 </BODY>
22682 </HTML>
22683 ====== h_config_saved_msg_name_rule =====
22684 <HTML>
22685 <HEAD>
22686 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
22687 </HEAD>
22688 <BODY>
22689 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
22691 This option determines the default folder name when saving
22692 a message.
22695 The default option is &quot;default-folder&quot;, which is the folder
22696 called &quot;saved-messages&quot; in Unix Alpine and
22697 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
22698 the Alpine option called
22699 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
22702 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
22703 get the chosen option's value for the message being saved (or for the
22704 first message being saved if using an aggregrate save).
22705 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
22706 value of who the message came from (i.e. the from address).
22707 Alpine then attempts to save the message to a folder matching that value.
22708 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
22709 &quot;by-sender&quot;.
22710 The opposite is also true.
22711 If &quot;by-recipient&quot; is chosen and the message was posted to a
22712 newsgroup, Alpine will use the newsgroup name.
22713 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
22714 &quot;by-from&quot;.
22717 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
22718 to use the personal name part of the address instead of the mailbox part.
22719 If any of the &quot;by-nick&quot; options are chosen, the
22720 address is looked up in your address book and if found, the
22721 nickname for that entry is used.
22722 Only simple address book entries are checked, not distribution lists.
22723 Similarly, if any of the
22724 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
22725 address book entry is used.
22726 If by-realname, or the by-nick or by-fcc lookups result in no value,
22727 then if the chosen option ends with the &quot;then-from&quot;,
22728 &quot;then-sender&quot;, &quot;then-replyto&quot;,
22729 or &quot;then-recip&quot; suffix, Alpine
22730 reverts to the same behavior as &quot;by-from&quot;,
22731 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
22732 depending on which option was specified.
22733 If the chosen option doesn't end with one of
22734 the &quot;then-&quot; suffixes, then Alpine reverts to the default
22735 folder when no match is found in the address book.
22738 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
22739 to save to the folder that you saved to the last time you saved a
22740 message.  The first time you save a message in an Alpine session, Alpine
22741 attempts to save the message to the default folder.
22744 Here is an example to make some of the options clearer.
22745 If the message is From
22747 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
22749 and this rule is set to &quot;by-from&quot;, then the default folder offered
22750 in the save dialog would be &quot;flint&quot;.
22752 If this rule is set to &quot;by-realname-of-from&quot; then the default would
22753 be &quot;Fred Flintstone&quot;.
22755 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
22756 for the address &quot;flint@bedrock.org&quot; in your address book.
22757 If an entry is found and it has a nickname associated with it, that nickname
22758 will be offered as the default folder.
22759 If not, the default saved message folder will be offered as the default.
22761 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
22762 for the address &quot;flint@bedrock.org&quot; in your address book.
22763 If an entry is found and it has an Fcc associated with it, that Fcc
22764 will be offered as the default folder.
22765 If not, the default saved message folder will be offered as the default.
22767 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
22768 for the address &quot;flint@bedrock.org&quot; in your address book.
22769 If an entry is found and it has a nickname associated with it, that nickname
22770 will be offered as the default folder.
22771 If it is not found (or has no nickname) then the default offered will be
22772 the same as it would be for the &quot;by-from&quot; rule.
22773 That is, it would be &quot;flint&quot;
22775 <UL>   
22776 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22777 </UL><P>
22778 &lt;End of help on this topic&gt;
22779 </BODY>
22780 </HTML>
22781 ====== h_config_fcc_rule =====
22782 <HTML>
22783 <HEAD>
22784 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
22785 </HEAD>
22786 <BODY>
22787 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
22789 This option determines the default name for folder carbon copy. Choose
22790 one:
22792 <DL>
22793 <DT>default-fcc</DT>
22794 <DD>This is the normal default, the value of which is set in the
22795 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
22796 configuration.
22797 </DD>
22799 <DT>last-fcc-used</DT>
22800 <DD> Causes Alpine to use the folder that was last
22801 used in the fcc field
22802 </DD>
22804 <DT>by-nickname</DT>
22805 <DD>Means that Alpine will use the nickname
22806 from your address book that matches the first address in the To line.
22807 If there is no match, it will use the value of the
22808 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
22809 </DD>
22811 <DT>by-recipient</DT>
22812 <DD>Means Alpine will form a folder name
22813 based on the left hand side of the first address in the To line.
22814 </DD>
22816 <DT>by-nick-then-recip</DT>
22817 <DD>Means that it will use the
22818 matching nickname from your address book if there is one, otherwise it
22819 will extract the recipient name from the address and use that (like
22820 by-recipient).
22821 </DD>
22823 <DT>current-folder</DT>
22824 <DD>Causes a copy to be written to
22825 the currently open folder, unless that is the INBOX.  In the case
22826 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
22827 used instead.
22828 </DD>
22829 </DL>
22832 Note: Whatever the fcc specified by the rule here, it will be
22833 over-ridden by any fcc entries you have in your address book.
22836 <UL>   
22837 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22838 </UL><P>
22839 &lt;End of help on this topic&gt;
22840 </BODY>
22841 </HTML>
22842 ====== h_config_sort_key =====
22843 <HTML>
22844 <HEAD>
22845 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
22846 </HEAD>
22847 <BODY>
22848 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
22850 This option determines the order in which messages will be displayed in
22851 the MESSAGE INDEX screen.  Choose from:
22853 <UL>
22854  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22855  <LI> <A HREF="h_index_sort_date">Date</A>
22856  <LI> <A HREF="h_index_sort_subj">Subject</A>
22857  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22858  <LI> <A HREF="h_index_sort_thread">Thread</A>
22859  <LI> <A HREF="h_index_sort_from">From</A>
22860  <LI> <A HREF="h_index_sort_size">Size</A>
22861  <LI> <A HREF="h_index_sort_score">Score</A>
22862  <LI> <A HREF="h_index_sort_to">To</A>
22863  <LI> <A HREF="h_index_sort_cc">Cc</A>
22864 </UL>
22867 Each type of sort may also be reversed.
22868 Normal default is by &quot;Arrival&quot;.
22871 A possible point of confusion arises when you change the configuration
22872 of the <!--#echo var="VAR_sort-key"-->.
22873 The folder will normally be re-sorted when you go back to viewing the
22874 index.
22875 However, if you have manually sorted the folder with the
22876 Sort
22877 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22878 command, then it will not be re-sorted until the next time it is opened.
22881 <UL>   
22882 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22883 </UL><P>
22884 &lt;End of help on this topic&gt;
22885 </BODY>
22886 </HTML>
22887 ====== h_config_other_startup =====
22888 <HTML>
22889 <HEAD>
22890 <TITLE>OPTION: Set Startup Rule</TITLE>
22891 </HEAD>
22892 <BODY>
22893 <H1>OPTION: Set Startup Rule</H1>
22895 This option determines which message will be the <EM>current message</EM> when
22896 the folder is first opened.
22897 It works the same way that the option
22898 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
22899 works, so look there for help.
22900 It may be used for any folder, not just incoming folders.
22903 <UL>   
22904 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22905 </UL><P>
22906 &lt;End of help on this topic&gt;
22907 </BODY>
22908 </HTML>
22909 ====== h_config_perfolder_sort =====
22910 <HTML>
22911 <HEAD>
22912 <TITLE>Set Sort Order</TITLE>
22913 </HEAD>
22914 <BODY>
22915 <H1>Set Sort Order</H1>
22917 This option determines the order in which messages will be displayed in
22918 the MESSAGE INDEX screen when the Current Folder Type set in the
22919 Pattern is a match. Choose from:
22921 <UL>
22922  <LI> <A HREF="h_index_sort_default">Default</A>
22923  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22924  <LI> <A HREF="h_index_sort_date">Date</A>
22925  <LI> <A HREF="h_index_sort_subj">Subject</A>
22926  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22927  <LI> <A HREF="h_index_sort_thread">Thread</A>
22928  <LI> <A HREF="h_index_sort_from">From</A>
22929  <LI> <A HREF="h_index_sort_size">Size</A>
22930  <LI> <A HREF="h_index_sort_score">Score</A>
22931  <LI> <A HREF="h_index_sort_to">To</A>
22932  <LI> <A HREF="h_index_sort_cc">Cc</A>
22933 </UL>
22936 Each type of sort may also be reversed.
22937 Normal default is by &quot;Arrival&quot;.
22940 A possible point of confusion arises when you change the configuration
22941 of the Sort Order for the currently open folder.
22942 The folder will normally be re-sorted when you go back to viewing the
22943 index.
22944 However, if you have manually sorted the folder with the
22945 Sort
22946 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22947 command, then it will not be re-sorted until the next time it is opened.
22950 <UL>   
22951 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22952 </UL><P>
22953 &lt;End of help on this topic&gt;
22954 </BODY>
22955 </HTML>
22956 ====== h_config_fld_sort_rule =====
22957 <HTML>
22958 <HEAD>
22959 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
22960 </HEAD>
22961 <BODY>
22962 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
22964 This option controls the order in which folder list entries will be
22965 presented in the FOLDER LIST screen.  Choose one of the following:
22967 <DL>
22968 <DT>Alphabetical</DT>
22969 <DD>sort by alphabetical name independent of type
22970 </DD>
22972 <DT>Alpha-with-dirs-last</DT>
22973 <DD>sort by alphabetical name grouping directory entries
22974 to the end of the list
22975 </DD>
22977 <DT>Alpha-with-dirs-first</DT>
22978 <DD>sort by alphabetical name grouping directory entries
22979 to the start of the list
22980 </DD>
22981 </DL>
22983 The normal default is &quot;Alphabetical&quot;.
22986 <UL>   
22987 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22988 </UL><P>
22989 &lt;End of help on this topic&gt;
22990 </BODY>
22991 </HTML>
22992 ====== h_config_ab_sort_rule =====
22993 <HTML>
22994 <HEAD>
22995 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
22996 </HEAD>
22997 <BODY>
22998 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23000 This option controls the order in which address book entries will be
23001 presented.  Choose one of the following:
23003 <DL>
23004 <DT>fullname</DT>
23005 <DD>use fullname field, lists mixed in
23006 </DD>
23008 <DT>fullname-with-lists-last</DT>
23009 <DD>use fullname field, but put lists at end
23010 </DD>
23012 <DT>nickname</DT>
23013 <DD>use nickname field, lists mixed in
23014 </DD>
23016 <DT>nickname-with-lists-last</DT>
23017 <DD>use nickname field, but put lists at end
23018 </DD>
23020 <DT>dont-sort</DT>
23021 <DD>don't change order of file
23022 </DD>
23023 </DL>
23026 The normal default is &quot;fullname-with-lists-last&quot;.
23027 If you use an address book from more than one computer and those
23028 computers sort the address book differently then the sort order
23029 will be the order where the last change to the address book was
23030 made.
23031 There are two reasons the sorting might be different on different
23032 systems.
23033 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23034 places.
23035 Second, the collation rules on the two computers may be different.
23036 For example, one system might ignore special characters while the other
23037 doesn't or one may sort upper and lower case letters together while
23038 the other doesn't.
23039 In any case, the order you see is the order on the system where the
23040 last change was made, for example by an address book edit or a
23041 Take Address command.
23044 <UL>   
23045 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23046 </UL><P>
23047 &lt;End of help on this topic&gt;
23048 </BODY>
23049 </HTML>
23050 ====== h_config_post_char_set =====
23051 <HTML>
23052 <HEAD>
23053 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23054 </HEAD>
23055 <BODY>
23056 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23058 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23059 when sending messages.
23063 When sending a message the text typed in the composer is
23064 labeled with the character set specified by this option.
23065 If the composed text is not fully representable in the 
23066 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23067 instead;
23070 Attachments are labeled with your
23071 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23074 Generally, there should be little need to set this option.
23075 If left unset, the
23076 default behavior is to label composed text as specifically as
23077 possible.  That is, if the composed text has no non-ASCII characters,
23078 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23079 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23080 attempt to automatically detect a number of character sets including ISO-8859-15,
23081 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23082 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23083 If the message contains a mix of character sets,
23084 it is labeled as &quot;UTF-8.&quot;
23088 This setting is provided to allow you to force a particular character set that
23089 Alpine does not automatically detect. For example, if a message is representable
23090 in more than one character set then Alpine may choose a different default
23091 than you want.
23092 Lastly, by setting this option explicitly to
23093 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23094 &quot;UTF-8&quot; instead of something more specific.
23097 In the Setup/Config screen you may choose from a list of all the
23098 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23101 The options
23102 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23103 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23104 are closely related.
23105 Setting the feature
23106 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23107 should cause this option to be ignored.
23110 <UL>   
23111 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23112 </UL><P>
23113 &lt;End of help on this topic&gt;
23114 </BODY>
23115 </HTML>
23116 ====== h_config_unk_char_set =====
23117 <HTML>
23118 <HEAD>
23119 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23120 </HEAD>
23121 <BODY>
23122 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23124 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23125 when reading or replying to messages.
23129 A text message should either be made up of all US-ASCII characters
23130 or it should contain a charset label which tells the software which
23131 character set encoding to use to interpret the message.
23132 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23133 This message is outside of the standards so any attempt to read it could fail.
23134 When Alpine attempts to read such a message it will try to interpret the
23135 text in the character set you specify here.
23136 For example, if you have correspondents who send you unlabeled messages that
23137 are usually made up of characters from the WINDOWS-1251 character set, setting
23138 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23139 allow you to read those messages.
23140 Of course, if the unlabeled message is actually in some other character set,
23141 then you may see garbage on your screen.
23143 Instead of just unlabeled text, this option also affects text which is labeled
23144 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23145 or &quot;US-ASCII&quot;.
23148 In the Setup/Config screen you may choose from a list of all the
23149 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23152 <UL>   
23153 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23154 </UL><P>
23155 &lt;End of help on this topic&gt;
23156 </BODY>
23157 </HTML>
23158 ====== h_config_char_set =====
23159 <HTML>
23160 <HEAD>
23161 <TITLE>OPTION: Display Character Set</TITLE>
23162 </HEAD>
23163 <BODY>
23164 <H1>OPTION: Display Character Set</H1>
23166 The Display Character Set configuration option is used when viewing messages.
23168 Alpine uses Unicode characters internally and 
23169 it is a goal for Alpine to handle email in many different languages.
23170 Alpine will properly display only left-to-right character sets
23171 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23172 font is in use, in the sense that
23173 characters are assumed to take up zero, one, or two character cell
23174 widths from left to right on the screen. This is true even in PC-Alpine.
23177 Alpine recognizes some local character sets that are right-to-left
23178 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23179 (Arabic) and properly converts texts in these character sets to/from
23180 Unicode; however, there are known display bugs with these character
23181 sets.
23184 There are three possible configuration character settings and some
23185 environment variable settings that can affect how Alpine
23186 handles international characters.
23187 The first two of these are only available in UNIX Alpine.
23188 The three configuration options are
23189 Display Character Set,
23190 Keyboard Character Set, and
23191 <!--#echo var="VAR_posting-character-set"-->.
23192 The Keyboard Character Set defaults to being the same value
23193 as the Display Character Set, and that is usually correct, because
23194 the keyboard almost always produces characters in the same character set
23195 as the display displays.
23196 The Display Character Set is the character set that Alpine
23197 will attempt to use when sending characters to the display.
23200 By default, the Display Character Set variable is not set and UNIX Alpine
23201 will attempt to get this information from the environment.
23202 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23203 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23204 An explicit configuration setting for Display Character Set will,
23205 of course, override any default setting.
23207 For PC-Alpine the Display Character Set
23208 and the Keyboard Character Set
23209 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23212 It is probably best to use UNIX Alpine in a terminal emulator
23213 capable of displaying UTF-8 characters, since that will allow you to
23214 view just about any received text that is correctly formatted (note,
23215 however, the above comments about known index display bugs with certain
23216 character sets). You'll need to have an emulator that uses a UTF-8 font
23217 and you'll need to set up your environment to use a UTF-8 charmap. For
23218 example, on a Linux system you might include
23220 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23223 or something similar in your UNIX startup files.
23224 You'd also have to select a UTF-8 font in your terminal emulator.
23227 The types of values that the character set variables may be set to are
23228 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23229 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23230 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23231 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23232 In the Setup/Config screen you may choose from a list of all the
23233 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23234 Here is a list of many of the possible character sets:
23237 <TABLE>
23238 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23239 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23240 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23241 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23242 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23243 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23244 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23245 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23246 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23247 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23248 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23249 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23250 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23251 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23252 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23253 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23254 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23255 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23256 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23257 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23258 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23259 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23260 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23261 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23262 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23263 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23264 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23265 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23266 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23267 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23268 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23269 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23270 </TABLE>
23273 When reading incoming email, Alpine understands many different
23274 character sets and is able to convert the incoming mail into Unicode.
23275 The Unicode will be converted to the Display Character Set
23276 for display on your terminal.
23277 Characters typed at the keyboard will be converted from the
23278 Keyboard Character Set to Unicode for Alpine's internal
23279 use.
23280 You may find that you can read some malformed messages that do not
23281 contain a character set label by setting the option
23282 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23285 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23286 The default behavior obtained by leaving this variable unset is usually
23287 what is wanted. In that default case, Alpine will attempt
23288 to label the message with the most specific character set from the
23289 rather arbitrary set
23291 US-ASCII, ISO-8859-15,
23292 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23293 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23296 For example, if the message is made up of only US-ASCII characters, it
23297 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23298 that will be the label. If that doesn't work the same is tried for the
23299 remaining members of the list.
23302 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23303 explicit value instead.
23304 For example, if you usually send messages in Greek, setting this
23305 option to ISO-8859-7 will result in messages being labeled as
23306 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23307 are only Greek characters, or UTF-8 if there are some characters
23308 that aren't representable in ISO-8859-7.
23309 Another possibility is to set this option explicitly to UTF-8.
23310 In that case
23311 Alpine labels only ascii messages as US-ASCII and all other
23312 messages as UTF-8.
23315 The options
23316 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23317 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23318 are closely related to this option.
23319 Setting the feature
23320 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23321 should cause this option to be ignored.
23324 When displaying a message, Alpine compares this setting to the character
23325 set specified in the message.  If not all of the
23326 characters in the message can be displayed using the Display Character Set
23327 then Alpine places an editorial
23328 comment in the displayed text (enclosed in square-brackets) indicating
23329 that some characters may not be displayed correctly.
23330 This comment may be eliminated by turning on the option
23331 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
23334 <UL>   
23335 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23336 </UL><P>
23337 &lt;End of help on this topic&gt;
23338 </BODY>
23339 </HTML>
23340 ====== h_config_key_char_set =====
23341 <HTML>
23342 <HEAD>
23343 <TITLE>OPTION: Keyboard Character Set</TITLE>
23344 </HEAD>
23345 <BODY>
23346 <H1>OPTION: Keyboard Character Set</H1>
23348 UNIX Alpine only.
23350 The Keyboard Character Set identifies the character set of the characters
23351 coming from your keyboard.
23352 It defaults to having the same value as your
23353 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23354 which in turn defaults to a value obtained from your environment.
23355 It is unlikely that you will need to use this option, because the keyboard
23356 almost always produces the same kind of characters as the display displays.
23359 This character set is also used when accessing files in your local
23360 file system.
23361 The names of the files are assumed to be in the same character set as
23362 what the keyboard produces, as well as the contents of the files.
23365 In the Setup/Config screen you may choose from a list of all the
23366 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23369 The options
23370 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23371 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23372 are closely related.
23373 Setting the feature
23374 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23375 should cause this option to be ignored.
23378 <UL>   
23379 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23380 </UL><P>
23381 &lt;End of help on this topic&gt;
23382 </BODY>
23383 </HTML>
23384 ====== h_config_editor =====
23385 <HTML>
23386 <HEAD>
23387 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23388 </HEAD>
23389 <BODY>
23390 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23392 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23393 normally an alternative to Alpine's internal composer (Pico).  You could use
23394 this setting to specify an alternate editor to use occasionally or if you
23395 have a favorite editor and want to use it all the time (see the 
23396 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23397 If you specify multiple editors for this option, ^_ will invoke the first one 
23398 of those specified that exists and is executable.  When specifying a program 
23399 for use here, make sure that the format of the text it saves -- which, when 
23400 you exit it, will become the message body in Alpine -- is appropriate 
23401 for the body of an email message; avoid proprietary formats that may result in 
23402 a message body that the recipient of your message will be unable to decipher.
23404 <!--chtml if pinemode="os_windows"-->
23405 <!--chtml else-->
23406 If you are in doubt about what editors are available on your system, or which 
23407 of them may be appropriate for specification here, ask your local computing 
23408 support staff.  
23409 <!--chtml endif-->
23411 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23412 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23413 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23414 use that.
23416 <P><UL>
23417 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23418 </UL>
23420 &lt;End of help on this topic&gt;
23421 </BODY>
23422 </HTML>
23423 ====== h_config_speller =====
23424 <HTML>
23425 <HEAD>
23426 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23427 </HEAD>
23428 <BODY>
23429 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23431 UNIX Alpine only.
23433 For PC-Alpine, you must install the aspell library code that you
23434 may get from
23435 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23437 This option affects the behavior of the ^T (spell check) command in the
23438 Composer.  It specifies the program invoked by ^T in the Composer.
23439 By default, Alpine uses
23441 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23443 if it knows where to find &quot;aspell&quot;.
23444 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23445 then the command used is
23447 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23449 Otherwise, the ancient &quot;spell&quot; command is used.
23451 If you specify a value for this command (with full pathname) then that is what
23452 will be used instead of any of the defaults.
23453 When invoking this
23454 spell-checking program, Alpine appends a tempfile name (where the message is
23455 passed) to the command line. Alpine expects the speller to correct the
23456 spelling in that file. When you exit from that program Alpine will read the
23457 tempfile back into the composer.
23459 Don't set this speller option to the standard Unix spell command.
23460 That won't work because spell works in a different way.
23463 <UL>   
23464 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23465 </UL><P>
23466 &lt;End of help on this topic&gt;
23467 </BODY>
23468 </HTML>
23469 ====== h_config_aspell_dictionary =====
23470 <HTML>
23471 <HEAD>
23472 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
23473 </HEAD>
23474 <BODY>
23475 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
23477 PC Alpine only.
23479 This option specifies a list of dictionaries you will use with
23480 aspell. A sample entry is &quot;en_US&quot; for american english, or
23481 &quot;en_GB&quot; for brittish english.
23484 <UL>   
23485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23486 </UL><P>
23487 &lt;End of help on this topic&gt;
23488 </BODY>
23489 </HTML>
23490 ====== h_config_display_filters =====
23491 <HTML>
23492 <HEAD>
23493 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23494 </HEAD>
23495 <BODY>
23496 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23498 This option defines a list of text-filtering commands (programs or
23499 scripts) that may be used to filter text portions of received messages
23500 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23501 display screen, exporting to a text file).  
23502 For security reasons, the full path name of the
23503 filter command must be specified.
23506 The command is executed and the message is piped into its standard input. 
23507 The standard output of the command is read back by Alpine.  The
23508 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23510 <P> 
23511 The filter's use is based on the configured &quot;trigger&quot; string.  The
23512 format of a filter definition is:
23514 <P>   
23515 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23518 You can specify as many filters as you wish, separating them with a comma.  
23519 Each filter can have only one trigger and command.  Thus, two trigger 
23520 strings that invoke the same command require separate filter 
23521 specifications. 
23523 <P> 
23524 The &quot;trigger&quot; is simply text that, if found in the message,
23525 will invoke the associated command.  If the trigger contains any space
23526 characters, it must be placed within quotes.  Likewise, should you
23527 wish a filter to be invoked unconditionally, define the trigger as the
23528 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23529 trigger string is found anywhere in the text of the message the filter
23530 is invoked.  Placing the trigger text within the tokens defined below
23531 changes where within the text the trigger must be before considering
23532 it a match.
23534 <P>  
23535 Trigger Modifying Tokens:
23536 <DL>
23537 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23538 <DD>This token tells Alpine to invoke the supplied command
23539 if the text is in a character set matching <VAR>string</VAR>
23540 (e.g., ISO-8859-2 or ISO-2022-JP).
23541 </DD>
23544 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23545 <DD>This token tells Alpine to invoke the supplied command
23546 if the enclosed <VAR>string</VAR> is found to be the first
23547 non-whitespace text.
23548 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23549 the space character.
23550 </DD>
23552 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23553 <DD>This token tells Alpine to invoke the supplied command
23554 if the enclosed <VAR>string</VAR> is found at the beginning
23555 of any line in the text.
23556 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23557 the space character.
23558 </DD>
23559 </DL>
23562 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23563 the command line to be invoked if the trigger string is found.  Below
23564 are tokens that Alpine will recognize and replace with special values
23565 when the command is actually invoked.
23568 Command Modifying Tokens:
23570 <DL>
23571 <DT>_TMPFILE_</DT>
23572 <DD>When the command is executed, this token is 
23573 replaced with the path and name of the temporary 
23574 file containing the text to be filtered.  Alpine 
23575 expects the filter to replace this data with the 
23576 filter's result.
23579 NOTE: Use of this token implies that the text to 
23580 be filtered is not piped into standard input of the 
23581 executed command and its standard output is ignored. 
23582 Alpine restores the tty modes before invoking the
23583 filter in case the filter interacts with the user
23584 via its own standard input and output.  
23585 </DD>
23586                         
23587 <DT>_RESULTFILE_</DT>
23588 <DD>When the command is executed, this token is 
23589 replaced with the path and name of a temporary 
23590 file intended to contain a status message from the 
23591 filter.  Alpine displays this in the message status 
23592 field. 
23593 </DD>
23595 <DT>_DATAFILE_</DT>
23596 <DD>When the command is executed, this token is 
23597 replaced with the path and name of a temporary 
23598 file that Alpine creates once per session and deletes 
23599 upon exit.  The file is intended to be used by the 
23600 filter to store state information between instances 
23601 of the filter.
23602 </DD>
23603    
23604 <DT>_PREPENDKEY_</DT>
23605 <DD>When the command is executed, this token indicates that a random
23606 number will be passed down the input stream before the message text.
23607 This number could be used as a session key.  It is sent in this way to
23608 improve security.  The number is unique to the current Alpine session
23609 and is only generated once per session.
23610 </DD>
23612 <DT>_SILENT_</DT>
23613 <DD>When the filter is executed, this token tells Alpine not to repaint
23614 the screen while the command is being executed. This can be used with 
23615 filters that do not interact with the user, and therefore repainting 
23616 the screen is not necessary. 
23617 </DD>
23618 </DL>
23621 The feature
23622 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23624 Performance caveat/considerations:
23625 <BR>
23626 Testing for the trigger and invoking the filter doesn't come for free.
23627 There is overhead associated with searching for the trigger string, testing
23628 for the filter's existence and actually piping the text through the filter.
23629 The impact can be reduced if the Trigger Modifying Tokens above are 
23630 employed.
23632 &lt;End of help on this topic&gt;
23633 </BODY>
23634 </HTML>
23635 ====== h_config_sending_filter =====
23636 <HTML>
23637 <HEAD>
23638 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23639 </HEAD>
23640 <BODY>
23641 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23642       
23643 This option defines a list of text-filtering commands (programs and
23644 scripts) that may be selectively invoked to process a message just before
23645 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23646 select which filter (or none) to apply to the message before it is sent. 
23647 For security reasons, the full path of the filter program must be
23648 specified.
23651 Command Modifying Tokens:
23653 <DL>
23654 <DT>_RECIPIENTS_</DT>
23655 <DD>When the command is executed, this token is replaced 
23656 with the space delimited list of recipients of the 
23657 message being sent. 
23658 </DD>
23659         
23660 <DT>_TMPFILE_</DT>
23661 <DD>
23662 When the command is executed, this token is 
23663 replaced with the path and name of the temporary 
23664 file containing the text to be filtered.  Alpine 
23665 expects the filter to replace this data with the 
23666 filter's result.
23669 NOTE: Use of this token implies that the text to 
23670 be filtered is not piped into standard input of the 
23671 executed command and its standard output is ignored. 
23672 Alpine restores the tty modes before invoking the
23673 filter in case the filter interacts with the user
23674 via its own standard input and output.  
23675 </DD>
23676                         
23677 <DT>_RESULTFILE_</DT>
23678 <DD>When the command is executed, this token is 
23679 replaced with the path and name of a temporary 
23680 file intended to contain a status message from the 
23681 filter.  Alpine displays this in the message status 
23682 field. 
23683 </DD>
23685 <DT>_DATAFILE_</DT>
23686 <DD>When the command is executed, this token is replaced 
23687 in the command line with the path and name of a 
23688 temporary file that Alpine creates once per session 
23689 and deletes upon exit.  The file is intended to be 
23690 used by the filter to store state information between 
23691 instances of the filter.
23692 </DD>
23693    
23694 <DT>_PREPENDKEY_</DT>
23695 <DD>When the command is executed, this token indicates 
23696 that a random number will be passed down the input 
23697 stream before the message text.  This number could 
23698 be used as a session key.  It is sent in this way 
23699 to improve security.  The number is unique to the 
23700 current Alpine session and is only generated once per 
23701 session. 
23702 </DD>
23704 <DT>_INCLUDEALLHDRS_</DT>
23705 <DD>When the command is executed, this token indicates 
23706 that the headers of the message will be passed down the input stream
23707 before the message text.
23708 </DD>
23710 <DT>_MIMETYPE_</DT>
23711 <DD>When the command is executed, this token is replaced in the
23712 command name with a temporary file name used to accept any new MIME
23713 Content-Type information necessitated by the output of the filter.
23714 Upon the filter's exit, if the file contains new MIME type
23715 information, Alpine verifies its format and replaces the outgoing
23716 message's MIME type information with that contained in the file. This
23717 is basically a cheap way of sending something other than Text/Plain.
23718 </DD>
23719 </DL>
23721 <P>   
23722 NOTE: Only the body text, which is visible in the Composer, is piped
23723 through this filter.  Attachments are not sent to the filter.
23724 <P>   
23725 Sending filters are not used if the feature
23726 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
23728 <UL>   
23729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23730 </UL><P>
23731 &lt;End of help on this topic&gt;
23732 </BODY>
23733 </HTML>
23734 ====== h_config_keywords =====
23735 <HTML>
23736 <HEAD>
23737 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
23738 </HEAD>
23739 <BODY>
23740 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
23742 You may define your own set of keywords and optionally set them on a
23743 message by message basis.
23744 These are similar to the &quot;Important&quot; flag which the user
23745 may set using the Flag command.
23746 The difference is that the Important flag is always present for each folder.
23747 User-defined keywords are chosen by the user.
23748 You may set up the list of possible keywords here, or you may add keywords
23749 from the Flag Details screen that you
23750 can get to after typing the
23751 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
23752 command.
23753 After the keywords have been defined,
23754 then you use the <A HREF="h_common_flag">Flag command</A>
23755 to set or clear the keywords in each message.
23756 The behavior of the flag command may be modified by using the
23757 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
23758 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
23761 Keywords may be used when Selecting messages (Select Keyword).
23762 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
23763 Filter Rules may be used to set keywords automatically.
23764 Keywords may be displayed as part of the Subject of a message by using
23765 the SUBJKEY or SUBJKEYINIT tokens in the
23766 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
23767 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
23768 option may be used to modify the display of keywords using
23769 SUBJKEY and SUBJKEYINIT slightly.
23770 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
23771 screen by using the KEY or KEYINIT tokens.
23772 It is also possible to color keywords in the index using the
23773 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
23774 Keywords are not supported by all mail servers.
23777 You may give keywords nicknames if you wish.
23778 If the keyword definition you type in contains a SPACE character, then the
23779 actual value of the keyword is everything after the last SPACE and the
23780 nickname for that keyword is everything before the last SPACE.
23781 For example, suppose you are trying to interoperate with another email program
23782 that uses a particular keyword with an unpleasant name.
23783 Maybe it uses a keyword called
23785 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
23787 but for you that keyword means that the message is work-related.
23788 You could define a keyword to have the value
23790 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
23792 and then you would use the name &quot;Work&quot; when dealing with
23793 that keyword in Alpine.
23794 If you defined it as
23796 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
23798 the nickname would be everything before the last SPACE, that is the nickname
23799 would be &quot;My Work&quot;.
23801 Some commonly used keywords begin with dollar signs.
23802 This presents a slight complication, because the dollar sign is normally used
23803 to signify
23804 <A HREF="h_news_config">environment variable expansion</A>
23805 in the Alpine configuration.
23806 In order to specify a keyword that begins with a dollar sign you must
23807 precede the dollar sign with a second dollar sign to escape its special
23808 meaning.
23809 For example, if you want to include the keyword
23811 <CENTER><SAMP>$Label1</SAMP></CENTER>
23813 as one of your possible keywords, you must enter the text
23815 <CENTER><SAMP>$$Label1</SAMP></CENTER>
23818 instead.
23820 There are a couple limitations.
23821 First, not all servers support keywords.
23822 Second, some servers (including the IMAP server included with Alpine)
23823 have a per folder limit on the number of keywords that may be defined.
23824 This count commonly includes every keyword you have ever used in the
23825 folder, even if it is no longer being used.
23826 In other words, you can add keywords but you cannot remove them easily.
23827 If you have changed keywords over the life of a folder and find that
23828 you have reached such a limit, one possible solution might be to copy
23829 all of the messages to a newly created folder (using Alpine) and then
23830 delete the original and rename the new folder.
23831 The reason this might work is that only the keywords currently set in
23832 any of the messages will be used in the new folder, hopefully putting you
23833 under the limit.
23836 <UL>   
23837 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23838 </UL><P>
23839 &lt;End of help on this topic&gt;
23840 </BODY>
23841 </HTML>
23842 ====== h_config_alt_addresses =====
23843 <HTML>
23844 <HEAD>
23845 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
23846 </HEAD>
23847 <BODY>
23848 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
23850 This option provides a place for you to list alternate email addresses
23851 you may have.
23852 Each address in the list should be the actual email address part of an
23853 address, without the full name field or the angle brackets.
23854 For example:
23857 <CENTER><SAMP>user@example.com</SAMP></CENTER>
23860 The matching is case-insensitive, so this would match any of
23861 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
23862 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
23865 If set, the option affects the behavior of the Reply
23866 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
23867 a message has been addressed specifically to you.
23870 In the default INDEX display
23871 the personal name (or email address) of
23872 the person listed in the message's &quot;From:&quot; header
23873 field is usually displayed except when that address is yours or one of your
23874 alternate addresses.
23875 In that case you will usually see the name of
23876 the first person specified in the
23877 message's &quot;To:&quot; header field
23878 with the prefix &quot;To: &quot; prepended.
23881 With respect to Reply, the reply-to-all option will exclude addresses
23882 listed here.
23885 The feature
23886 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
23887 is somewhat related to this option.
23890 In addition to a list of actual addresses,
23891 you may use regular expressions (as used with egrep with the ignore case flag)
23892 to describe the addresses you want to match.
23893 Alpine will somewhat arbitrarily interpret your entry as a regular
23894 expression if it contains any of the characters
23895 *, |, +, ?, {, [, ^, $, or &#92;.
23896 Otherwise, it will be treated literally.
23897 The feature
23898 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
23899 may be used to turn off regular expression processing regardless of whether or not
23900 special characters appear in the entry.
23903 A description of how regular expressions work is beyond the
23904 scope of this help text, but some examples follow.
23907 The entry
23910 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
23913 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
23914 address with a domain name of <SAMP>example.com</SAMP> (such as
23915 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
23916 one of your alternate addresses.
23917 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
23918 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
23919 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
23920 Complicating things further, the dollar sign
23921 is special in the Alpine configuration (it signifies environment variable expansion)
23922 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
23923 Quotes around the whole expression will not escape the dollar sign successfully.
23924 So this example should look like
23927 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
23931 The entry
23934 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
23937 would match
23938 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
23939 as <SAMP>fred@example.com</SAMP>.
23942 You could match all addresses that look like
23943 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
23944 entry
23947 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
23950 Notice that you have to escape the plus sign with a backslash because plus
23951 is a special character in regular expressions.
23952 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
23953 the expression
23956 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
23959 would do it, but it would be easier to just add fred@example.com as a
23960 separate entry.
23963 One more example, a match of all first-level subdomains, is given by
23966 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
23970 Because the regular expression matching is based on an old library
23971 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
23972 but they should be close.
23975 <UL>   
23976 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23977 </UL><P>
23978 &lt;End of help on this topic&gt;
23979 </BODY>
23980 </HTML>
23981 ====== h_config_abook_formats =====
23982 <HTML>
23983 <HEAD>
23984 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
23985 </HEAD>
23986 <BODY>
23987 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
23989 This option specifies the format that address books are displayed in.
23990 Normally, address books are displayed with the nicknames in the first
23991 column, the fullnames in the second column, and addresses in the third
23992 column.  The system figures out reasonable defaults for the widths of
23993 the columns.  An address book may be given a different format by
23994 listing special tokens in the order you want them to display.  The
23995 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
23996 So, for example, to get the default behavior you could list
23999 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24002 (You can also use the token DEFAULT to get the default behavior for
24003 an address book format.)
24006 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24007 is a list, so if you have more than one address book you may have a
24008 separate format for each by putting its format at the corresponding
24009 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24013 Listed first are the personal address books, then the global address
24014 books.  So, if you have two personal address books and one global
24015 address book, you may have up to three formats in the
24016 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24017 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24018 are address books, the last element is used repeatedly.
24022 Each of the tokens may also be optionally followed by parentheses with
24023 either a number or a percentage inside the parentheses.  For example,
24024 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24025 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24026 of the available space (the screen width minus the space for
24027 inter-column spaces) to the fullnames column, while plain
24028 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24029 reasonable number of columns.
24032 There are always 2 spaces between every column, so if you use
24033 fixed column widths (like 13) you should remember to take that into
24034 account.
24037 <UL>   
24038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24039 </UL><P>
24040 &lt;End of help on this topic&gt;
24041 </BODY>
24042 </HTML>
24043 ====== h_config_set_index_format =====
24044 <HTML>
24045 <HEAD>
24046 <TITLE>Set Index Format</TITLE>
24047 </HEAD>
24048 <BODY>
24049 <H1>Set Index Format</H1>
24051 This option is used to customize the content of lines in the
24052 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24053 This action works exactly like the regular
24054 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24055 except that you can have a folder-specific value for it if you specify it here.
24056 Consult the help for
24057 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24058 for more information.
24061 <UL>   
24062 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24063 </UL><P>
24064 &lt;End of help on this topic&gt;
24065 </BODY>
24066 </HTML>
24067 ====== h_config_index_format =====
24068 <HTML>
24069 <HEAD>
24070 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24071 </HEAD>
24072 <BODY>
24073 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24075 This option is used to customize the content of lines in the
24076 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24077 to convey some amount of immediately relevant information about each 
24078 message in the current folder.
24081 Alpine provides a pre-defined set of informational fields with
24082 reasonable column widths automatically computed.  You can, however,
24083 replace this default set by listing special tokens in the order you
24084 want them displayed.
24087 The list of available tokens is
24088 <A HREF="h_index_tokens">here</A>.
24091 Spaces are used to separate listed tokens.  Additionally, you can
24092 specify how much of the screen's width the token's associated data
24093 should occupy on the index line by appending to the token a pair of
24094 parentheses enclosing either a number or percentage.  For example,
24095 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24096 column, and &quot;SUBJECT(20%)&quot; means to
24097 allocate 20% of the available space
24098 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24099 attempt to figure out a reasonable amount of space.
24102 There is always one space between every pair of columns, so if you use fixed
24103 column widths (like 13) you should remember to take that into account.
24104 Several of the fields are virtually fixed-width, so it doesn't make
24105 much sense to specify the width for them.  The fields STATUS,
24106 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24107 and DESCRIPSIZE all fall into that category.
24108 You <EM>may</EM> specify widths for those if you wish, but
24109 you're probably better off letting the system pick those widths.  <P>
24112 The default is equivalent to:
24115 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24118 This means that the four fields without percentages will be allocated
24119 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24120 the from and subject fields.  If one of those two fields is specified
24121 as a percentage and the other is left for the system to choose, then
24122 the percentage is taken as an absolute percentage of the screen, not
24123 of the space remaining after allocating the first four columns.  It
24124 doesn't usually make sense to do it that way.  If you leave off all
24125 the widths, then the subject and from fields (if both are present) are
24126 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24127 the default.
24130 What you are most likely to do with this configuration option is to
24131 specify which fields appear at all, which order they appear in, and the
24132 percentage of screen that is used for the from and subject fields if you
24133 don't like the 2 to 1 default.
24136 If you want to retain the default format that Pine 4.64 had, use
24139 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24141 <EM>and</EM> set the feature
24142 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24143 <UL>   
24144 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24145 </UL><P>
24146 &lt;End of help on this topic&gt;
24147 </BODY>
24148 </HTML>
24149 ====== h_config_reply_intro =====
24150 <HTML>
24151 <HEAD>
24152 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24153 </HEAD>
24154 <BODY>
24155 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24157 This option is used to customize the content of the introduction line
24158 that is included when replying to a message and including the original
24159 message in the reply.
24160 The normal default (what you will get if you delete this variable) looks
24161 something like:
24163 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24165 where the day of the week is only included if it is available in the
24166 original message.
24167 You can replace this default with text of your own.
24168 The text may contain tokens that are replaced with text
24169 that depends on the message you are replying to.
24170 For example, the default is equivalent to:
24172 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24175 Since this variable includes regular text mixed with special tokens
24176 the tokens have to be surrounded by underscore characters.
24177 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24178 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24179 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24181 The list of available tokens is
24182 <A HREF="h_index_tokens">here</A>.
24185 By default, the text is all on a single line and is followed by a blank line.
24186 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24187 than 80 characters when replying to a particular message, it is shortened.
24188 However, if you use the token
24190 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24193 anywhere in the value, no end of line or blank line is appended, and no
24194 shortening is done.
24195 The _NEWLINE_ token may be used to get rid of the blank line following
24196 the text, to add more blank lines, or to form a multi-line
24197 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24198 To clarify how _NEWLINE_ works recall that the default value is:
24200 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24203 That is equivalent to
24205 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24208 In the former case, two newlines are added automatically because
24209 no _NEWLINE_ token appears in the value of the option (for backwards
24210 compatibility). In the latter case, the newlines are explicit.
24211 If you want to remove the blank line that follows the
24212 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24213 _NEWLINE_ token like
24215 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24218 Because of the backwards compatibility problem, it is not possible to
24219 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24220 and that will cause the automatic adding of two newlines!
24221 If you want, you may embed newlines in the middle of the text, as well,
24222 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24225 By default, no attempt is made to localize the date.
24226 If you prefer a localized form you may find that one of the tokens
24227 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24228 If you want more control one of the many other date tokens, such as _DATEISO_,
24229 might be better.
24232 For the adventurous, there is a way to conditionally include text based
24233 on whether or not a token would result in specific replacement text.
24234 For example, you could include some text based on whether or not
24235 the _NEWS_ token would result in any newsgroups if it was used.
24236 It's explained in detail
24237 <A HREF="h_reply_token_conditionals">here</A>.
24240 In the very unlikely event that you want to include a literal token
24241 in the introduction line you must precede it with a backslash character.
24242 For example,
24244 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24246 would produce something like
24248 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24250 It is not possible to have a literal backslash followed by an expanded token.
24252 <UL>   
24253 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24254 </UL><P>
24255 &lt;End of help on this topic&gt;
24256 </BODY>
24257 </HTML>
24258 ====== h_config_remote_abook_history =====
24259 <HTML>
24260 <HEAD>
24261 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24262 </HEAD>
24263 <BODY>
24264 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24266 Sets how many extra copies of
24267 remote address book
24268 data will be kept in each remote address book folder.
24269 The default is three.
24270 These extra copies are simply old versions of the data. Each time a change
24271 is made a new copy of the address book data is appended to the folder. Old
24272 copies are trimmed, if possible, when Alpine exits.
24273 An old copy can be put back into use by
24274 deleting and expunging newer versions of the data from the folder.
24275 Don't delete the first message from the folder. It is a special header
24276 message for the remote address book and it must be there.
24277 This is to prevent regular folders from being used as remote address book
24278 folders and having their data destroyed.
24280 This option is also used to determine how many extra copies of remote
24281 Alpine configuration files are kept.
24283 <UL>   
24284 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24285 </UL><P>
24286 &lt;End of help on this topic&gt;
24287 </BODY>
24288 </HTML>
24289 ====== h_config_remote_abook_validity =====
24290 <HTML>
24291 <HEAD>
24292 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24293 </HEAD>
24294 <BODY>
24295 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24297 Sets the minimum number of minutes that a
24298 remote address book will be considered up to date.
24299 Whenever an entry contained in a remote address book is used,
24300 if more than this many minutes have
24301 passed since the last check the remote server will be queried to see if the
24302 address book has changed.
24303 If it has changed, the local copy is updated.
24304 The default value is five minutes.
24305 The special value of -1 means never check.
24306 The special value of zero means only check when the address book is first
24307 opened.
24309 No matter what the value, the validity check is always done when the
24310 address book is about to be changed by the user.
24311 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24312 while in the address book maintenance screen for the remote address book.
24314 <UL>   
24315 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24316 </UL><P>
24317 &lt;End of help on this topic&gt;
24318 </BODY>
24319 </HTML>
24320 ====== h_config_user_input_timeo =====
24321 <HTML>
24322 <HEAD>
24323 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24324 </HEAD>
24325 <BODY>
24326 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24328 If this is set to an integer greater than zero, then this is the number
24329 of <EM>hours</EM> to wait for user input before Alpine times out.
24330 If Alpine is
24331 in the midst of composing a message or is waiting for user response to
24332 a question, then it will not timeout.
24333 However, if Alpine is sitting idle waiting for
24334 the user to tell it what to do next and the user does not give any
24335 input for this many hours, Alpine will exit.
24336 No expunging or moving of read
24337 messages will take place.
24338 It will exit similarly to the way it would exit
24339 if it received a hangup signal.
24340 This may be useful for cleaning up unused Alpine sessions that have been
24341 forgotten by their owners.
24342 The Alpine developers envision system administrators
24343 setting this to a value of several hours (24?) so that it won't surprise
24344 a user who didn't want to be disconnected.
24346 <UL>   
24347 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24348 </UL><P>
24349 &lt;End of help on this topic&gt;
24350 </BODY>
24351 </HTML>
24352 ====== h_config_ssh_open_timeo =====
24353 <HTML>
24354 <HEAD>
24355 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24356 </HEAD>
24357 <BODY>
24358 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24360 Sets the time in seconds that Alpine will
24361 attempt to open a UNIX secure shell connection.
24362 The default is 15, the minimum non-zero value is 5,
24363 and the maximum is unlimited. If this is set to zero ssh connections
24364 will be completely disabled.
24366 <UL>   
24367 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24368 </UL><P>
24369 &lt;End of help on this topic&gt;
24370 </BODY>
24371 </HTML>
24372 ====== h_config_rsh_open_timeo =====
24373 <HTML>
24374 <HEAD>
24375 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24376 </HEAD>
24377 <BODY>
24378 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24380 Sets the time in seconds that Alpine will
24381 attempt to open a UNIX remote shell connection.
24382 The default is 15, the minimum non-zero value is 5,
24383 and the maximum is unlimited. If this is set to zero rsh connections
24384 will be completely disabled.
24385 This might be useful if rsh connections will never work in your environment
24386 but are causing delays due to firewalls or some other reason.
24388 <UL>   
24389 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24390 </UL><P>
24391 &lt;End of help on this topic&gt;
24392 </BODY>
24393 </HTML>
24394 ====== h_config_tcp_open_timeo =====
24395 <HTML>
24396 <HEAD>
24397 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24398 </HEAD>
24399 <BODY>
24400 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24402 Sets the time in seconds that Alpine will
24403 attempt to open a network connection. The default is 30, the minimum is 5,
24404 and the maximum is system defined (typically 75). If a connection has not
24405 completed within this many seconds Alpine will give up and consider it a
24406 failed connection.
24408 <UL>   
24409 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24410 </UL><P>
24411 &lt;End of help on this topic&gt;
24412 </BODY>
24413 </HTML>
24414 ====== h_config_tcp_readwarn_timeo =====
24415 <HTML>
24416 <HEAD>
24417 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
24418 </HEAD>
24419 <BODY>
24420 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24422 Sets the time in seconds that Alpine will
24423 wait for a network read before warning you that things are moving slowly
24424 and possibly giving you the option to break the connection.
24425 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24426 1000 seconds.
24428 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24430 <UL>   
24431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24432 </UL><P>
24433 &lt;End of help on this topic&gt;
24434 </BODY>
24435 </HTML>
24436 ====== h_config_tcp_writewarn_timeo =====
24437 <HTML>
24438 <HEAD>
24439 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24440 </HEAD>
24441 <BODY>
24442 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24444 Sets the time in seconds that Alpine will
24445 wait for a network write before warning you that things are moving slowly
24446 and possibly giving you the option to break the connection.
24447 The default is 0 which means it is unset. If set to a non-zero value, the
24448 minimum is 5 and the maximum is 1000.
24450 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24452 <UL>   
24453 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24454 </UL><P>
24455 &lt;End of help on this topic&gt;
24456 </BODY>
24457 </HTML>
24458 ====== h_config_tcp_query_timeo =====
24459 <HTML>
24460 <HEAD>
24461 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24462 </HEAD>
24463 <BODY>
24464 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24466 When Alpine times out a network read or write it will normally just display
24467 a message saying &quot;Still waiting&quot;.
24468 However, if enough time has elapsed since it started waiting it will offer
24469 to let you break the connection.
24470 That amount of time is set by this option, which defaults to 60 seconds,
24471 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24473 <UL>   
24474 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24475 </UL><P>
24476 &lt;End of help on this topic&gt;
24477 </BODY>
24478 </HTML>
24479 ====== h_config_incoming_folders =====
24480 <HTML>
24481 <HEAD>
24482 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24483 </HEAD>
24484 <BODY>
24485 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24487 This is a list of one or more folders other than <EM>INBOX</EM> that
24488 may receive new messages.
24489 It is related to the
24490 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24491 feature.
24492 This variable is normally manipulated with the Add, Delete, and Rename
24493 commands in the FOLDER LIST for the Incoming Message Folders collection.
24495 <UL>   
24496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24497 </UL><P>
24498 &lt;End of help on this topic&gt;
24499 </BODY>
24500 </HTML>
24501 ====== h_config_folder_spec =====
24502 <HTML>
24503 <HEAD>
24504 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24505 </HEAD>
24506 <BODY>
24507 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24509 This is a list of one or more collections where saved mail is stored. 
24510 The first collection in this list is the default
24511 collection for <EM>Save</EM>s,
24512 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24514 This variable is normally manipulated using the Setup/collectionList screen.
24516 <UL>   
24517 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24518 </UL><P>
24519 &lt;End of help on this topic&gt;
24520 </BODY>
24521 </HTML>
24522 ====== h_config_news_spec =====
24523 <HTML>
24524 <HEAD>
24525 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24526 </HEAD>
24527 <BODY>
24528 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24530 This is a list of collections where news folders are located.
24532 This variable is normally manipulated using the Setup/collectionList screen.
24534 <UL>   
24535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24536 </UL><P>
24537 &lt;End of help on this topic&gt;
24538 </BODY>
24539 </HTML>
24540 ====== h_config_address_book =====
24541 <HTML>
24542 <HEAD>
24543 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24544 </HEAD>
24545 <BODY>
24546 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24548 A list of personal address books.
24549 Each entry in the list is an
24550 optional nickname followed by a pathname or file name relative to the home
24551 directory.
24552 The nickname is separated from the rest of the line with whitespace.
24553 Instead of a local pathname or file name, a remote folder name can be given.
24554 This causes the address book to
24555 be a Remote address book.
24557 Use the Setup/AddressBook screen to modify this variable.
24559 <UL>   
24560 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24561 </UL><P>
24562 &lt;End of help on this topic&gt;
24563 </BODY>
24564 </HTML>
24565 ====== h_config_glob_addrbook =====
24566 <HTML>
24567 <HEAD>
24568 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24569 </HEAD>
24570 <BODY>
24571 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24573 A list of shared address books.  Each entry in the list is an
24574 optional nickname followed by a pathname or file name relative to the home
24575 directory.
24576 A SPACE character separates the nickname from the rest of the line.
24577 Instead of a local pathname or file name, a remote folder name can be given.
24578 This causes the address book to
24579 be a Remote address book.
24580 Global address books are
24581 defined to be ReadOnly.
24583 Use the Setup/AddressBook screen to modify this variable.
24585 <UL>   
24586 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24587 </UL><P>
24588 &lt;End of help on this topic&gt;
24589 </BODY>
24590 </HTML>
24591 ====== h_config_last_vers =====
24592 <HTML>
24593 <HEAD>
24594 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24595 </HEAD>
24596 <BODY>
24597 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24599 This is set automatically by Alpine. 
24600 It is used to keep track of the last version of Alpine that
24601 was run by the user.
24602 Whenever the version number increases, a new version message is printed out.
24603 This may not be set in the system-wide configuration files.
24605 <UL>   
24606 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24607 </UL><P>
24608 &lt;End of help on this topic&gt;
24609 </BODY>
24610 </HTML>
24611 ====== h_config_printer =====
24612 <HTML>
24613 <HEAD>
24614 <TITLE>OPTION: Printer</TITLE>
24615 </HEAD>
24616 <BODY>
24617 <H1>OPTION: Printer</H1>
24619 Your default printer selection.
24621 Use the Setup/Printer screen to modify this variable.
24623 <UL>   
24624 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24625 </UL><P>
24626 &lt;End of help on this topic&gt;
24627 </BODY>
24628 </HTML>
24629 ====== h_config_print_cat =====
24630 <HTML>
24631 <HEAD>
24632 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24633 </HEAD>
24634 <BODY>
24635 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24637 This is an internal Alpine variable.
24638 It will be equal to 1, 2, or 3 depending on whether the default printer is
24639 attached, standard, or a personal print command.
24641 Use the Setup/Printer screen to modify this variable.
24643 <UL>   
24644 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24645 </UL><P>
24646 &lt;End of help on this topic&gt;
24647 </BODY>
24648 </HTML>
24649 ====== h_config_print_command =====
24650 <HTML>
24651 <HEAD>
24652 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24653 </HEAD>
24654 <BODY>
24655 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24657 List of personal print commands.
24659 Use the Setup/Printer screen to modify this variable.
24661 <UL>   
24662 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24663 </UL><P>
24664 &lt;End of help on this topic&gt;
24665 </BODY>
24666 </HTML>
24667 ====== h_config_pat_old =====
24668 <HTML>
24669 <HEAD>
24670 <TITLE>OPTION: Patterns</TITLE>
24671 </HEAD>
24672 <BODY>
24673 <H1>OPTION: Patterns</H1>
24675 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24676 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24677 and Patterns-Other.
24678 Patterns-Scores and Patterns-Filters have been replaced since then by
24679 Patterns-Scores2 and Patterns-Filters2.
24681 Use the Setup/Rules screens to modify these variable.
24683 <UL>   
24684 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24685 </UL><P>
24686 &lt;End of help on this topic&gt;
24687 </BODY>
24688 </HTML>
24689 ====== h_config_pat_roles =====
24690 <HTML>
24691 <HEAD>
24692 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
24693 </HEAD>
24694 <BODY>
24695 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
24697 List of rules used for roles.
24698 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
24699 other options.
24701 Use the Setup/Rules/Roles screen to modify this variable.
24703 <UL>   
24704 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24705 </UL><P>
24706 &lt;End of help on this topic&gt;
24707 </BODY>
24708 </HTML>
24709 ====== h_config_pat_filts =====
24710 <HTML>
24711 <HEAD>
24712 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
24713 </HEAD>
24714 <BODY>
24715 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
24717 List of rules used for filters.
24719 Use the Setup/Rules/Filters screen to modify this variable.
24721 <UL>   
24722 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24723 </UL><P>
24724 &lt;End of help on this topic&gt;
24725 </BODY>
24726 </HTML>
24727 ====== h_config_pat_scores =====
24728 <HTML>
24729 <HEAD>
24730 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
24731 </HEAD>
24732 <BODY>
24733 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
24735 List of rules used for scoring.
24737 Use the Setup/Rules/SetScores screen to modify this variable.
24739 <UL>   
24740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24741 </UL><P>
24742 &lt;End of help on this topic&gt;
24743 </BODY>
24744 </HTML>
24745 ====== h_config_pat_other =====
24746 <HTML>
24747 <HEAD>
24748 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
24749 </HEAD>
24750 <BODY>
24751 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
24753 List of rules used for miscellaneous configuration.
24755 Use the Setup/Rules/Other screen to modify this variable.
24757 <UL>   
24758 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24759 </UL><P>
24760 &lt;End of help on this topic&gt;
24761 </BODY>
24762 </HTML>
24763 ====== h_config_pat_incols =====
24764 <HTML>
24765 <HEAD>
24766 <TITLE>OPTION: patterns-indexcolors</TITLE>
24767 </HEAD>
24768 <BODY>
24769 <H1>OPTION: patterns-indexcolors</H1>
24771 List of rules used for coloring lines in the index.
24773 Use the Setup/Rules/Indexcolor screen to modify this variable.
24775 <UL>   
24776 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24777 </UL><P>
24778 &lt;End of help on this topic&gt;
24779 </BODY>
24780 </HTML>
24781 ====== h_config_pat_srch =====
24782 <HTML>
24783 <HEAD>
24784 <TITLE>OPTION: patterns-search</TITLE>
24785 </HEAD>
24786 <BODY>
24787 <H1>OPTION: patterns-search</H1>
24789 List of rules used only for searching with the Select command in the MESSAGE INDEX.
24791 Use the Setup/Rules/searCh screen to modify this variable.
24793 <UL>   
24794 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24795 </UL><P>
24796 &lt;End of help on this topic&gt;
24797 </BODY>
24798 </HTML>
24799 ====== h_config_font_name =====
24800 <HTML>
24801 <HEAD>
24802 <TITLE>OPTION: Font Name</TITLE>
24803 </HEAD>
24804 <BODY>
24805 <H1>OPTION: Font Name</H1>
24807 PC-Alpine only.
24809 Name of normal font.
24811 Use the pulldown Config menu to modify this variable.
24813 <UL>   
24814 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24815 </UL><P>
24816 &lt;End of help on this topic&gt;
24817 </BODY>
24818 </HTML>
24819 ====== h_config_font_size =====
24820 <HTML>
24821 <HEAD>
24822 <TITLE>OPTION: Font Size</TITLE>
24823 </HEAD>
24824 <BODY>
24825 <H1>OPTION: Font Size</H1>
24827 PC-Alpine only.
24829 Size of normal font.
24831 Use the pulldown Config menu to modify this variable.
24833 <UL>   
24834 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24835 </UL><P>
24836 &lt;End of help on this topic&gt;
24837 </BODY>
24838 </HTML>
24839 ====== h_config_font_style =====
24840 <HTML>
24841 <HEAD>
24842 <TITLE>OPTION: Font Style</TITLE>
24843 </HEAD>
24844 <BODY>
24845 <H1>OPTION: Font Style</H1>
24847 PC-Alpine only.
24849 Style of normal font.
24851 Use the pulldown Config menu to modify this variable.
24853 <UL>   
24854 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24855 </UL><P>
24856 &lt;End of help on this topic&gt;
24857 </BODY>
24858 </HTML>
24859 ====== h_config_font_char_set =====
24860 <HTML>
24861 <HEAD>
24862 <TITLE>OPTION: Font Character Set</TITLE>
24863 </HEAD>
24864 <BODY>
24865 <H1>OPTION: Font Character Set</H1>
24867 PC-Alpine only.
24869 Character set of normal font.
24871 Use the pulldown Config menu to modify this variable.
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_print_font_name =====
24880 <HTML>
24881 <HEAD>
24882 <TITLE>OPTION: Print-Font-Name</TITLE>
24883 </HEAD>
24884 <BODY>
24885 <H1>OPTION: Print-Font-Name</H1>
24887 PC-Alpine only.
24889 Name of printer font.
24891 Use the pulldown Config menu to modify this variable.
24893 <UL>   
24894 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24895 </UL><P>
24896 &lt;End of help on this topic&gt;
24897 </BODY>
24898 </HTML>
24899 ====== h_config_print_font_size =====
24900 <HTML>
24901 <HEAD>
24902 <TITLE>OPTION: Print-Font-Size</TITLE>
24903 </HEAD>
24904 <BODY>
24905 <H1>OPTION: Print-Font-Size</H1>
24907 PC-Alpine only.
24909 Size of printer font.
24911 Use the pulldown Config menu to modify this variable.
24913 <UL>   
24914 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24915 </UL><P>
24916 &lt;End of help on this topic&gt;
24917 </BODY>
24918 </HTML>
24919 ====== h_config_print_font_style =====
24920 <HTML>
24921 <HEAD>
24922 <TITLE>OPTION: Print-Font-Style</TITLE>
24923 </HEAD>
24924 <BODY>
24925 <H1>OPTION: Print-Font-Style</H1>
24927 PC-Alpine only.
24929 Style of printer font.
24931 Use the pulldown Config menu to modify this variable.
24933 <UL>   
24934 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24935 </UL><P>
24936 &lt;End of help on this topic&gt;
24937 </BODY>
24938 </HTML>
24939 ====== h_config_print_font_char_set =====
24940 <HTML>
24941 <HEAD>
24942 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
24943 </HEAD>
24944 <BODY>
24945 <H1>OPTION: Print-Font-Char-Set</H1>
24947 PC-Alpine only.
24949 Character set of printer font.
24951 Use the pulldown Config menu to modify this variable.
24953 <UL>   
24954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24955 </UL><P>
24956 &lt;End of help on this topic&gt;
24957 </BODY>
24958 </HTML>
24959 ====== h_config_window_position =====
24960 <HTML>
24961 <HEAD>
24962 <TITLE>OPTION: Window-Position</TITLE>
24963 </HEAD>
24964 <BODY>
24965 <H1>OPTION: Window-Position</H1>
24967 PC-Alpine only.
24969 Position on the screen of the Alpine window.
24971 Alpine normally maintains this variable itself, and it is set automatically. 
24972 This variable is provided to those who wish to use the same window position 
24973 across different machines from the same configuration.
24974 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
24975 must also be set for this setting to be used.
24977 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
24978 C is the number of columns, R is the number of rows, and X and Y specify the
24979 top left corner of the window.
24981 <UL>   
24982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24983 </UL><P>
24984 &lt;End of help on this topic&gt;
24985 </BODY>
24986 </HTML>
24987 ====== h_config_cursor_style =====
24988 <HTML>
24989 <HEAD>
24990 <TITLE>OPTION: Cursor Style</TITLE>
24991 </HEAD>
24992 <BODY>
24993 <H1>OPTION: Cursor Style</H1>
24995 PC-Alpine only.
24997 Cursor style.
24999 Use the pulldown Config menu to modify this variable.
25001 <UL>   
25002 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25003 </UL><P>
25004 &lt;End of help on this topic&gt;
25005 </BODY>
25006 </HTML>
25007 ====== h_config_ldap_servers =====
25008 <HTML>
25009 <HEAD>
25010 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25011 </HEAD>
25012 <BODY>
25013 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25015 List of LDAP servers and associated data.
25017 Use the Setup/Directory screen to modify this variable.
25019 <UL>   
25020 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25021 </UL><P>
25022 &lt;End of help on this topic&gt;
25023 </BODY>
25024 </HTML>
25025 ====== h_config_sendmail_path =====
25026 <HTML>
25027 <HEAD>
25028 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25029 </HEAD>
25030 <BODY>
25031 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25033 This names the path to an
25034 alternative program, and any necessary arguments, to be used in posting
25035 mail messages. See the Technical notes for more information.
25037 <UL>   
25038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25039 </UL><P>
25040 &lt;End of help on this topic&gt;
25041 </BODY>
25042 </HTML>
25043 ====== h_config_oper_dir =====
25044 <HTML>
25045 <HEAD>
25046 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25047 </HEAD>
25048 <BODY>
25049 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25051 This names the root of the
25052 tree to which you are restricted when reading and writing folders and
25053 files. It is usually used in the system-wide,
25054 <EM>fixed</EM> configuration file.
25056 <UL>   
25057 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25058 </UL><P>
25059 &lt;End of help on this topic&gt;
25060 </BODY>
25061 </HTML>
25062 ====== h_config_rshpath =====
25063 <HTML>
25064 <HEAD>
25065 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25066 </HEAD>
25067 <BODY>
25068 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25070 Sets the name of the command used to open a UNIX remote shell
25071 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25073 <UL>   
25074 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25075 </UL><P>
25076 &lt;End of help on this topic&gt;
25077 </BODY>
25078 </HTML>
25079 ====== h_config_rshcmd =====
25080 <HTML>
25081 <HEAD>
25082 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25083 </HEAD>
25084 <BODY>
25085 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25087 Sets the format of the command used to
25088 open a UNIX remote shell connection. The default is
25089 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25090 provided command. The first is for the command's pathname, the second is
25091 for the host to connnect to, the third is for the user to connect as, and
25092 the fourth is for the connection method (typically <CODE>imap</CODE>).
25094 <UL>   
25095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25096 </UL><P>
25097 &lt;End of help on this topic&gt;
25098 </BODY>
25099 </HTML>
25100 ====== h_config_sshpath =====
25101 <HTML>
25102 <HEAD>
25103 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25104 </HEAD>
25105 <BODY>
25106 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25108 Sets the name of the command used to open a UNIX secure shell
25109 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25111 <UL>   
25112 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25113 </UL><P>
25114 &lt;End of help on this topic&gt;
25115 </BODY>
25116 </HTML>
25117 ====== h_config_sshcmd =====
25118 <HTML>
25119 <HEAD>
25120 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25121 </HEAD>
25122 <BODY>
25123 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25125 Sets the format of the command used to
25126 open a UNIX secure shell connection. The default is
25127 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25128 provided command. The first is for the command's pathname, the second is
25129 for the host to connnect to, the third is for the user to connect as, and
25130 the fourth is for the connection method (typically <CODE>imap</CODE>).
25132 <UL>   
25133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25134 </UL><P>
25135 &lt;End of help on this topic&gt;
25136 </BODY>
25137 </HTML>
25138 ====== h_config_new_ver_quell =====
25139 <HTML>
25140 <HEAD>
25141 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25142 </HEAD>
25143 <BODY>
25144 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25146 When a new version of Alpine is run for the first time it offers a
25147 special explanatory screen to the user upon startup.  This option
25148 helps control when and if that special screen appears for users that
25149 have previously run Alpine.  It takes as its value an Alpine version
25150 number.  Alpine versions less than the specified value will supress this
25151 special screen while versions equal to or greater than that specified
25152 will behave normally.
25154 <UL>   
25155 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25156 </UL><P>
25157 &lt;End of help on this topic&gt;
25158 </BODY>
25159 </HTML>
25160 ====== h_config_disable_drivers =====
25161 <HTML>
25162 <HEAD>
25163 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25164 </HEAD>
25165 <BODY>
25166 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25168 This variable is a list of mail drivers that will be disabled.
25169 The candidates for disabling are listed below.
25170 There may be more in the future if you compile Alpine with
25171 a newer version of the c-client library.
25174 <UL>
25175 <LI> mbox
25176 <LI> mbx
25177 <LI> mh
25178 <LI> mmdf
25179 <LI> mtx
25180 <LI> mx
25181 <LI> news
25182 <LI> phile
25183 <LI> tenex
25184 <LI> unix
25185 </UL>
25188 The <EM>mbox</EM> driver enables the following behavior: if there is a
25189 file called <CODE>mbox</CODE>
25190 in your home directory, and if that file is either empty or in Unix mailbox
25191 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25192 will automatically transfer mail from the system mail spool directory into the
25193 <CODE>mbox</CODE> file and
25194 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25195 this will not happen.
25198 It is not recommended to disable the driver that supports the system default
25199 mailbox format. On most non-SCO systems, that driver is the
25200 <EM>unix</EM> driver.
25201 On most SCO systems, it is the <EM>mmdf</EM> driver.
25202 The system default driver may be
25203 configured to something else on your system; check with your system manager
25204 for additional information.
25207 It is most likely not very useful for you to disable any of the drivers other
25208 than possibly <EM>mbox</EM>.
25209 You could disable some of the others if you know for
25210 certain that you don't need them but the performance gain in doing so
25211 is very modest.
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_disable_auths =====
25220 <HTML>
25221 <HEAD>
25222 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25223 </HEAD>
25224 <BODY>
25225 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25227 This variable is a list of SASL (Simple Authentication and Security
25228 Layer) authenticators that will be disabled.
25229 SASL is a mechanism for
25230 authenticating to IMAP, POP3, SMTP, and other network servers.
25233 Alpine matches its list of supported authenticators with the server to
25234 determine the most secure authenticator that is supported by both.
25235 If no matching authenticators are found, Alpine will revert to plaintext
25236 login (or, in the case of SMTP, will be unable to authenticate at all).
25238 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25241 Normally, you will not disable any authenticators.
25242 There are two exceptions:
25244 <OL>
25245 <LI> You use a broken server that advertises an authenticator,
25246 but does not actually implement it.
25247 <LI> You have a Kerberos-capable version of Alpine and the server is
25248 also Kerberos-capable, but you can not obtain Kerberos
25249 credentials on the server machine, thus you desire to disable
25250 GSSAPI (which in turn disables Alpine's Kerberos support).
25251 </OL>
25253 It is never necessary to disable authenticators, since Alpine will try
25254 other authenticators before giving up.
25255 However, disabling the relevant authenticator avoids annoying error messages.
25257 <UL>   
25258 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25259 </UL><P>
25260 &lt;End of help on this topic&gt;
25261 </BODY>
25262 </HTML>
25263 ====== h_config_abook_metafile =====
25264 <HTML>
25265 <HEAD>
25266 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25267 </HEAD>
25268 <BODY>
25269 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25271 This is usually set by Alpine and is the name of a file
25272 that contains data about
25273 remote address books and remote configuration files.
25275 <UL>   
25276 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25277 </UL><P>
25278 &lt;End of help on this topic&gt;
25279 </BODY>
25280 </HTML>
25281 ====== h_config_composer_wrap_column =====
25282 <HTML>
25283 <HEAD>
25284 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25285 </HEAD>
25286 <BODY>
25287 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25290 This option specifies an aspect of Alpine's Composer.  This gives the
25291 maximum width that auto-wrapped lines will have.  It's also the maximum
25292 width of lines justified using the <A HREF="h_compose_justify">^J
25293 Justify</A> command.  The normal default
25294 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25295 in order to
25296 prevent very long lines from being sent in outgoing mail.  When the mail
25297 is actually sent, trailing spaces will be stripped off of each line.
25300 <UL>   
25301 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25302 </UL><P>
25303 &lt;End of help on this topic&gt;
25304 </BODY>
25305 </HTML>
25306 ====== h_config_deadlets =====
25307 <HTML>
25308 <HEAD>
25309 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25310 </HEAD>
25311 <BODY>
25312 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25315 This option affects Alpine's behavior when you cancel a message being
25316 composed.  Alpine's usual behavior is to write the canceled message to
25317 a file named 
25318 <!--chtml if pinemode="os_windows"-->
25319 &quot;DEADLETR&quot;,
25320 <!--chtml else-->
25321 &quot;dead.letter&quot; in your home directory,
25322 <!--chtml endif-->
25323 overwriting any previous message.
25325 If you set this option to a value higher than one, then that many copies
25326 of dead letter files will be saved.
25327 For example, if you set this option to &quot;3&quot; then you may have
25328 files named
25329 <!--chtml if pinemode="os_windows"-->
25330 &quot;DEADLETR&quot;,
25331 &quot;DEADLETR2&quot;, and
25332 &quot;DEADLETR3&quot;.
25333 <!--chtml else-->
25334 &quot;dead.letter&quot;,
25335 &quot;dead.letter2&quot;, and
25336 &quot;dead.letter3&quot; in your home directory.
25337 <!--chtml endif-->
25338 In this example, the most recently cancelled message will be in
25339 <!--chtml if pinemode="os_windows"-->
25340 &quot;DEADLETR&quot;,
25341 <!--chtml else-->
25342 &quot;dead.letter&quot;,
25343 <!--chtml endif-->
25344 and the third most recently cancelled message will be in
25345 <!--chtml if pinemode="os_windows"-->
25346 &quot;DEADLETR3&quot;.
25347 <!--chtml else-->
25348 &quot;dead.letter3&quot;.
25349 <!--chtml endif-->
25350 The fourth most recently cancelled message will no longer be saved.
25353 If you set this option to zero, then NO record of canceled messages is
25354 maintained.
25356 If the feature
25357 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
25358 is set, that overrides whatever you set for this option.
25359 If this option had existed at the time, then the Quell feature would not
25360 have been added, but it is still there for backwards compatibility.
25361 So, in order for this option to have the desired effect, make sure the
25362 Quell feature is turned off.
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_maxremstream =====
25372 <HTML>
25373 <HEAD>
25374 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
25375 </HEAD>
25376 <BODY>
25377 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
25379 This option affects low-level behavior of Alpine.
25380 The default value for this option is <EM>3</EM>.
25381 If your INBOX is accessed using the IMAP protocol
25382 from an IMAP server, that connection is kept open throughout the
25383 duration of your Alpine session, independent of the value of this option.
25384 The same is true of any 
25385 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25386 you have defined.
25387 This option controls Alpine's behavior when connecting to remote IMAP folders
25388 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
25389 It specifies the maximum number of remote IMAP connections (other than
25390 those mentioned above) that Alpine will use for accessing the rest of your
25391 folders.
25392 If you set this option to zero, you will turn off most remote connection
25393 re-use.
25394 It's difficult to understand exactly what this option does, and it is usually
25395 fine to leave it set to its default value.
25396 It is probably more likely that you will be interested in setting the
25397 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
25398 instead of changing the value of this option.
25399 A slightly longer explanation of what is going on with this option
25400 is given in the next paragraphs.
25403 There are some time costs involved in opening and closing remote IMAP 
25404 folders, the main costs being the time you have to wait for the connection
25405 to the server and the time for the folder to open.
25406 Opening a folder may involve not only the time the server takes to do its
25407 processing but time that Alpine uses to do filtering.
25408 These times can vary widely.
25409 They depend on how loaded the server is, how large
25410 the folder being opened is, and how you set up filtering, among other things.
25411 Once Alpine has opened a connection to a particular folder, it will attempt
25412 to keep that connection open in case you use it again.
25413 In order to do this,
25414 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
25415 this option) IMAP connections you have alloted for this purpose.
25417 For example, suppose the value of this option is set to &quot;2&quot;.
25418 If your INBOX is accessed on a remote server using the IMAP protocol, that
25419 doesn't count as one of the remote connections but it is always kept open.
25420 If you then open another IMAP folder, that would be your first
25421 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25422 If you open a third folder the second will be left open, in case you
25423 return to it.
25424 You won't be able to tell it has been left open.
25425 It will appear to be closed when you leave the folder but the connection
25426 will remain in the background.
25427 Now suppose you go back to the second folder (the first folder after the
25428 INBOX).
25429 A connection to that folder is still open so you won't have to wait
25430 for the startup time to open it.
25431 Meanwhile, the connection to the third folder will be left behind.
25432 Now, if you open a fourth folder, you will bump into the
25433 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25434 than INBOX and you have the option set to &quot;2&quot;.
25435 The connection that is being used for
25436 the third folder will be re-used for this new fourth folder.
25437 If you go back to the third folder after this, it is no longer already
25438 connected when you get there.
25439 You'll still save some time since Alpine will re-use the connection to the
25440 fourth folder and you have already logged in on that connection,
25441 but the folder will have to be re-opened from scratch.
25443 If a folder is large and the startup cost is dominated by the time it takes
25444 to open that folder or to run filters on it, then it will pay to make the
25445 value of this option large enough to keep it open.
25446 On the other hand, if you only revisit a handful of folders or if
25447 the folders are small, then it might
25448 make more sense to keep this number small so that the reconnect
25449 time (the time to start up a new connection and authenticate)
25450 is eliminated instead.
25452 You may also need to consider the impact on the server.
25453 On the surface, a larger number here may cause a larger impact on the
25454 server, since you will have more connections open to the server.
25455 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25456 associated with reopening a folder, but the <EM>server</EM> will be
25457 avoiding those costs as well.
25459 When twenty five minutes pass without any active use of an IMAP connection
25460 being saved for possible re-use, that connection will be shut down,
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_permlocked =====
25470 <HTML>
25471 <HEAD>
25472 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25473 </HEAD>
25474 <BODY>
25475 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25477 This option affects low-level behavior of Alpine.
25478 There is no default value for this option.
25479 It is related to the options
25480 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25481 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25482 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25485 Note: changes made to this list take effect the next time you open a
25486 folder in the list.
25489 This is a list of folders that will be permanently kept open once they
25490 are first opened.
25491 The names in this list may be either the nickname of an Incoming folder
25492 or the full technical specification of a folder.
25493 The folders in this list need not be remote IMAP folders, they could usefully
25494 be local folders, as well.
25495 If a folder in the list is a newsgroup or is not accessed either locally
25496 or via IMAP, then the entry will be ignored.
25497 For example, folders accessed via NNTP or POP3 will not be kept open, since
25498 the way that new mail is found with those protocols involves closing and
25499 reopening the connection.
25501 Once a Stay Open folder has been opened, new-mail checking will continue
25502 to happen on that folder for the rest of the Alpine session.
25503 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25504 need to be added explicitly.
25506 Another difference that you may notice between a Stay Open folder and a
25507 non-Stay Open folder is which message is selected as the current message
25508 when you enter the folder index.
25509 Normally, the starting position for an incoming folder (which most Stay Open
25510 folders will likely be) is controlled by the
25511 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25512 However, if a folder is a Stay Open folder, when you re-enter the folder
25513 after the first time the current message will be the same as it was when
25514 you left the folder.
25515 An exception is made if you use the TAB command to get to the folder.
25516 In that case, the message number will be incremented by one from what it
25517 was when you left the folder.
25519 The above special behavior is thought to be useful.
25520 However, it is special and different from what you might at first expect.
25521 The feature
25522 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25523 may be used to turn off this special treatment.
25525 If the message that was current when you left the folder no longer exists,
25526 then the regular startup rule will be used instead.
25529 <UL>   
25530 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25531 </UL><P>
25532 &lt;End of help on this topic&gt;
25533 </BODY>
25534 </HTML>
25535 ====== h_config_viewer_overlap =====
25536 <html>
25537 <header>
25538 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25539 </header>
25540 <body>
25541 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25543 This option specifies an aspect of Alpine's Message Viewing screen.  When
25544 the space bar is used to page forward in a message, the number of lines
25545 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25546 bottom of the screen.  That is, if this was set to two lines, then the
25547 bottom two lines of the screen would be repeated on the top of the next
25548 screen.  The normal default value is "2".<p>
25549 <UL>   
25550 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25551 </UL><P>
25552 &lt;End of help on this topic&gt;
25553 </body>
25554 </html>
25555 ====== h_config_scroll_margin =====
25556 <HTML>
25557 <HEAD>
25558 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25559 </HEAD>
25560 <BODY>
25561 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25563 This option controls when Alpine's line-by-line scrolling occurs.
25564 Typically, when a selected item is at the top or bottom screen edge
25565 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25566 displayed items are scrolled down or up by a single line.
25569 This option allows you to tell Alpine the number of lines from the top and
25570 bottom screen edge that line-by-line paging should occcur.  For example,
25571 setting this value to one (1) will cause Alpine to scroll the display
25572 vertically when you move to select an item on the display's top or
25573 bottom edge.
25576 By default, this variable is zero, indicating that scrolling happens
25577 when you move up or down to select an item immediately off the display's
25578 top or bottom edge.
25581 <UL>   
25582 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25583 </UL><P>
25584 &lt;End of help on this topic&gt;
25585 </BODY>
25586 </HTML>
25587 ====== h_config_wordseps =====
25588 <HTML>
25589 <HEAD>
25590 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25591 </HEAD>
25592 <BODY>
25593 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25595 This option affects how a &quot;word&quot; is defined in the composer.
25596 The definition of a word is used when using the Forward Word and Backward
25597 Word commands in the composer, as well as when using the spell checker.
25598 Whitespace is always considered a word separator.
25599 Punctuation (like question marks, periods, commas, and so on) is always
25600 a word separator if it comes at the end of a word.
25601 By default, a punctuation character that is in the middle of a word does
25602 not break up that word as long as the character before and the character
25603 after it are both alphanumeric.
25604 If you add a character to this option it will be considered a
25605 word separator even when it occurs in the middle of an alphanumeric word.
25606 For example, if you want to skip through each part of an address instead
25607 of skipping the whole address at once you might want to include &quot;@&quot;
25608 and &quot;.&quot; in this list.
25609 If you want the word-skipper to stop on each part of a UNIX filename you
25610 could add &quot;/&quot; to the list.
25611 The equal sign and dash are other possibilities you might find helpful.
25613 <UL>   
25614 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25615 </UL><P>
25616 &lt;End of help on this topic&gt;
25617 </BODY>
25618 </HTML>
25619 ====== h_config_reply_indent_string =====
25620 <HTML>
25621 <HEAD>
25622 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25623 </HEAD>
25624 <BODY>
25625 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25627 This option specifies an aspect of Alpine's Reply command.
25628 When a message is replied to and the text of the message is included, the
25629 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25630 to each line indicating it is quoted text.
25631 (In case you haven't seen this before, &quot;string&quot; is a technical term
25632 that means chunk of text.)
25635 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25636 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25637 use one of the standard values,
25638 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25641 This option specifies a different value for that string.
25642 If you wish to use a string that begins or ends with a space,
25643 enclose the string in double quotes.
25646 Besides simple text, the prepended string can be based
25647 on the message being replied to.
25648 The following tokens are substituted for the message's corresponding value:
25650 <DL>
25651 <DT>_FROM_</DT>
25652 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25653 If the name is longer than six characters, only the first six characters are
25654 used.
25655 </DD>
25657 <DT>_NICK_</DT>
25658 <DD>This token gets replaced with the nickname of the message sender's
25659 address as found in your addressbook.
25660 If no addressbook entry is found,
25661 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25662 If the nickname is longer than six characters, only the first six characters are
25663 used.
25664 </DD>
25666 <DT>_INIT_</DT>
25667 <DD>This token gets replaced with the initials of the sender of the message.
25668 </DD>
25670 </DL>
25672 NOTE: When the
25673 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25674 feature is enabled, you are given the opportunity to edit the string, whether 
25675 it is the default or one automatically generated using the above tokens.
25677 If you change your <!--#echo var="VAR_reply-indent-string"-->
25678 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25679 quoted text will not be flowed
25680 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
25681 when you reply.
25682 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
25683 set to the default value.
25685 <UL>   
25686 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25687 </UL><P>
25688 &lt;End of help on this topic&gt;
25689 </BODY>
25690 </HTML>
25691 ====== h_config_quote_replace_string =====
25692 <HTML>
25693 <HEAD>
25694 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
25695 </HEAD>
25696 <BODY>
25697 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
25699 This option specifies what string to use as a quote when <b>viewing</b> a
25700 message.  The standard way of quoting messages when replying is the string
25701 &quot;&gt;&nbsp;&quot; (quote space).
25702 With this variable set, viewing a message will
25703 replace occurrences of 
25704 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
25705 This setting works best when
25706 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
25707 or the equivalent setting in your correspondents' mail programs
25708 is set to the default
25709 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
25710 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
25712 By default, this setting will only work on messages that are flowed, which is
25713 the default way of sending messages for many mail clients including
25714 Alpine.  Enable the feature
25715 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
25716 to also have quote-replacement performed on non-flowed messages.
25719 Setting this option will replace  &quot;&gt;&quot; and 
25720 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
25721 spaces. To preserve those spaces enclose the full string in double quotes.
25723 No padding to separate the text of the message from the quote string is
25724 added. This means that if you do not add trailing spaces to the value of
25725 this variable, text will be displayed right next to the quote string,
25726 which may be undesirable. This can be avoided by adding a new string
25727 separated by a space from your selection of quote string replacement. This
25728 last string will be used for padding. For example, setting this variable to 
25729 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
25730 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
25731 a space from the last quote string to make it more readable.
25733 One possible setting for this variable could be
25734 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
25735 would have the effect of indenting each level of quoting four spaces and
25736 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
25737 more discernible by setting colors for quoted text.
25739 Replying to or forwarding the viewed message will preserve the original
25740 formatting of the message, so quote-replacement will not be performed on
25741 messages that are being composed.
25743 <UL>   
25744 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25745 </UL><P>
25746 &lt;End of help on this topic&gt;
25747 </BODY>
25748 </HTML>
25749 ====== h_config_empty_hdr_msg =====
25750 <HTML>
25751 <HEAD>
25752 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
25753 </HEAD>
25754 <BODY>
25755 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
25757 When sending, if both the To and Cc fields are empty and you
25758 are sending the message to a Bcc,
25759 Alpine will put a special address in the To line.  The default value is:
25762 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
25765 The reason for this is to avoid embarrassment caused by some Internet
25766 mail transfer software that interprets a &quot;missing&quot;
25767 <SAMP>To:</SAMP> header as an error and replaces it with an
25768 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
25769 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
25770 Bcc.  You may change the part of this message that comes before the
25771 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
25772 variable to something else.
25775 The normal default is &quot;undisclosed-recipients&quot;.
25778 <UL>   
25779 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25780 </UL><P>
25781 &lt;End of help on this topic&gt;
25782 </BODY>
25783 </HTML>
25784 ====== h_config_status_msg_delay =====
25785 <HTML>
25786 <HEAD>
25787 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
25788 </HEAD>
25789 <BODY>
25790 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
25792 This option has evolved over time, causing the possible values to be
25793 counter-intuitive.
25794 Read carefully before you set this option.
25795 First we explain what the option does, then there is a longer discussion
25796 following that.
25798 If this is set to zero, the default value, it has <EM>no</EM> effect.
25799 Positive and negative values serve two similar, but different purposes.
25801 If it is set to a positive number, it causes the cursor to move to the
25802 status line whenever a status message is printed and pause there for this
25803 many seconds.
25804 It will probably only be useful if the 
25805 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
25806 also turned on.
25807 Setting this option to a positive number can only be used to
25808 <EM>increase</EM> the status message delay.
25809 This may be useful for Braille displays, or other non-traditional displays.
25811 If it is set to a negative number the interpretation is a bit complicated.
25812 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
25813 allow you to read important status messages.
25814 Of course, this may cause you to miss some important messages.
25815 If you see a message flash by but miss what it says you can use the
25816 Journal command from the MAIN MENU to read it.
25817 If you set this option to a negative value, the delay will be
25818 no more than one second less than the absolute value
25819 of the value you set.
25820 So if you set it to -1, the delay will be no more than zero seconds, no
25821 delay at all.
25822 If you set it to -2, the delay will be no more than 1 second.
25823 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
25824 If the delay that Alpine would have used by default is less than this delay,
25825 then the smaller delay set by Alpine will be used.
25826 Setting this option to a negative value can only reduce the amount of
25827 delay, never increase it.
25829 Here is a more detailed explanation.
25830 Status messages are the messages that show up spontaneously in the
25831 status message line, usually the third line from the bottom of the screen.
25832 By default, Alpine assigns each status message it produces a minimum
25833 display time.
25834 Some status messages have a minimum display time of zero.
25835 You can see an example of such a message by paging up in this help text
25836 until you reach the top of the screen.
25837 If you try to page past the top you will see the message
25839 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
25841 in the status line.
25842 If there is another more important use of the status message line this message
25843 might be replaced quickly, or it even might not be shown at all.
25844 However, if there is no reason to get rid of the message, it might stay
25845 there for several seconds while you read the help.
25846 An example where it is replaced immediately happens when you page up in
25847 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
25848 command right after paging up.
25849 The message will disappear immediately without causing a delay (unless you
25850 have set this option to a positive value) to allow you to type input for
25851 the &quot;WhereIs&quot; command.
25852 Since it isn't a very important message, Alpine has set its minimum display
25853 time to zero seconds.
25855 Other messages have minimum display times of three or more seconds.
25856 These are usually error messages that Alpine thinks you ought to see.
25857 For example, it might be a message about a failed Save or a failed folder open.
25858 It is often the case that this minimum display time won't delay you in
25859 any way because the status message line is not needed for another reason.
25860 However, there are times when Alpine has to delay what it is doing in
25861 order to display a status message for the minimum display time.
25862 This happens when a message is being displayed and Alpine wants to ask
25863 for input from the keyboard.
25864 For example, when you Save a message you use the status message line.
25865 You get a prompt there asking for the name of the folder to save to.
25866 If there is a status message being displayed that has not
25867 yet displayed for its minimum
25868 time Alpine will display that status message surrounded with the characters
25869 &gt; and &lt; to show you that it is delaying.
25870 That might happen, for example, if you tried to save to a folder that
25871 caused an error, then followed that immediately with another Save command.
25872 You might find yourself waiting for a status message like
25874 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
25876 to finish displaying for three seconds.
25877 If that is something you find happening to you frequently, you may use
25878 negative values of this option to decrease or eliminate that delay, at
25879 the risk of missing the message.
25881 <UL>   
25882 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25883 </UL><P>
25884 &lt;End of help on this topic&gt;
25885 </BODY>
25886 </HTML>
25887 ====== h_config_active_msg_interval =====
25888 <HTML>
25889 <HEAD>
25890 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
25891 </HEAD>
25892 <BODY>
25893 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
25895 When Alpine is delayed for some reason it usually shows that
25896 something is happening with a small animated display in the status
25897 message line near the bottom of the screen.
25898 This option sets how frequently the characters (for example, a spinning bar)
25899 in the active status message lines are updated.
25900 At most, it can be set to be udpated 20 times per second. 
25903 Setting this value to zero will prevent display of the animations
25904 altogether.
25907 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
25908 can be used to remove the randomness from this animated display.
25911 <UL>   
25912 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25913 </UL><P>
25914 &lt;End of help on this topic&gt;
25915 </BODY>
25916 </HTML>
25917 ====== h_config_mailchecknoncurr =====
25918 <HTML>
25919 <HEADER>
25920 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
25921 </HEADER>
25922 <BODY>
25923 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
25925 This option is closely related to the
25926 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25927 option, as well as the
25928 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
25929 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
25930 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
25931 new-mail checking is disabled and this option will have no effect.
25933 Normally this option is set to zero, which means that the value used will be
25934 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
25935 If you set this option to a value different from zero
25936 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
25937 then that is the check interval that will be used
25938 for folders that are not the currently open folder or the INBOX.
25939 You may not even have any folders that are noncurrent and not the INBOX.
25940 If you do, it is likely that they are due to
25941 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25942 you have configured.
25943 This option also affects the rate of mail checking done on cached
25944 connections to folders you previously had open but are no longer actively
25945 using.
25946 You aren't expected to understand that last sentence, but if you are interested
25947 take a look at
25948 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
25949 and the related options.
25951 <UL>   
25952 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25953 </UL><P>
25954 &lt;End of help on this topic&gt;
25955 </BODY>
25956 </HTML>
25957 ====== h_config_fifopath =====
25958 <HTML>
25959 <HEADER>
25960 <TITLE>OPTION: NewMail FIFO Path</TITLE>
25961 </HEADER>
25962 <BODY>
25963 <H1>OPTION: NewMail FIFO Path</H1>
25965 This option is only available in UNIX Alpine.
25966 However, there is a very similar feature built in to PC-Alpine.
25967 In PC-Alpine's Config menu at the top of the screen
25968 is an option called &quot;New Mail Window&quot;.
25970 You may have Alpine create a FIFO special file (also called a named pipe) where
25971 it will send a one-line message each time a new message is received in
25972 the current folder, the INBOX, or any open
25973 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
25974 To protect against two different Alpines both writing to the same FIFO, Alpine
25975 will only create the FIFO and write to it if it doesn't already exist.
25977 A possible way to use this option would be to have a separate window
25978 on your screen running the command
25980 <CENTER><SAMP>cat filename</SAMP></CENTER>
25982 where &quot;filename&quot; is the name of the file given for this option.
25983 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
25984 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
25985 You may be tempted to use &quot;tail -f filename&quot; to view the new
25986 mail log.
25987 However, the common implementations of the tail command will not do what you
25988 are hoping.
25990 The width of the messages produced for the FIFO may be altered with the
25991 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
25993 On some systems, fifos may only be created in a local filesystem.
25994 In other words, they may not be in NFS filesystems.
25995 This requirement is not universal.
25996 If the system you are using supports it, it should work.
25997 (It is often the case that your home directory is in an NFS filesystem.
25998 If that is the case, you might try using a file in the &quot;/tmp&quot;
25999 filesystem, which is usually a local filesytem.)
26000 Even when it is possible to use an NFS-mounted filesystem as a place to name
26001 the fifo (for example, your home directory), it will still be the case that
26002 the reader (probably the &quot;cat&quot; command) and the
26003 writer (Alpine) of the fifo must be running on the same system.
26005 <UL>   
26006 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26007 </UL><P>
26008 &lt;End of help on this topic&gt;
26009 </BODY>
26010 </HTML>
26011 ====== h_config_newmailwidth =====
26012 <HTML>
26013 <HEADER>
26014 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26015 </HEADER>
26016 <BODY>
26017 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26019 For UNIX Alpine, this option is only useful if you have turned on the
26020 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26021 That option causes new mail messages to be sent to a fifo file.
26022 Those messages will be 80 characters wide by default.
26023 You can change the width of those messages by changing this option.
26024 For example, if you are reading those messages in another window you might
26025 want to set this width to the width of that other window.
26027 If you are using PC-Alpine, it has an option in the Config menu to turn
26028 on the &quot;New Mail Window&quot;.
26029 This present option also controls the width of that window.
26031 <UL>   
26032 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26033 </UL><P>
26034 &lt;End of help on this topic&gt;
26035 </BODY>
26036 </HTML>
26037 ====== h_config_mailcheck =====
26038 <HTML>
26039 <HEADER>
26040 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26041 </HEADER>
26042 <BODY>
26043 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26045 This option specifies, in seconds,
26046 how often Alpine will check for new mail.
26047 If set to zero, new-mail checking is disabled.
26048 (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
26049 current message is the last message of the folder.)
26050 There is a minimum value for this option, normally 15 seconds.
26051 The default value is normally 150 seconds.
26052 The higher you set this option, the easier it is on the server.
26054 There are some situations where automatic new-mail checking does not work.
26055 See the discussion about new-mail checking in
26056 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26058 The new-mail checking will not happen exactly at the frequency that you specify.
26059 For example, Alpine may elect to defer a non-INBOX mail check if you
26060 are busy typing.
26061 Or, it may check more frequently than you have specified if that is
26062 thought to be necessary to keep the server from closing the connection
26063 to the folder due to inactivity.
26064 If Alpine checks for new mail as a side effect of another command, it will reset
26065 the timer, so that new-mail checking may seem to happen irregularly instead of
26066 every X seconds like clockwork.
26068 If you are anxious to know about new mail as soon as possible, set the check
26069 interval low, and you'll know about the new mail by approximately
26070 that amount of time after it arrives.
26071 If you aren't so worried about knowing right away, set this option to a
26072 higher value.
26073 That will save the server some processing time and may save you some of
26074 the time you spend waiting for new-mail checks to happen if you are
26075 dealing with a slow server or slow network connection.
26077 If you suspect that new-mail checking is causing slow downs for you,
26078 you may want to look into the options
26079 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26080 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26081 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26082 which refine when mail checking is done.
26084 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26085 there is a minimum time
26086 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26087 between new-mail checks.
26088 Because of this minimum you may notice that new mail does not
26089 appear promptly when you expect it.
26090 The reason for this is to protect the server from over-zealous opening and
26091 closing of the Mail Drop folder, since that is a costly operation.
26093 <UL>   
26094 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26095 </UL><P>
26096 &lt;End of help on this topic&gt;
26097 </BODY>
26098 </HTML>
26099 ====== h_config_quell_checks_comp =====
26100 <HTML>
26101 <HEAD>
26102 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26103 </HEAD>
26104 <BODY>
26105 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26107 This option is closely related to the
26108 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26109 option, the
26110 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26111 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26113 If this option is set, then the normal new-mail checking that happens
26114 while you are composing will not happen for folders other than your
26115 INBOX (which depends on the setting
26116 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26118 You might want to set this option if you are experiencing delays while
26119 composing that you think might be related to the speed of the new-mail
26120 checks.
26122 Even with this option turned on, an occasional new-mail check may be done
26123 in order to keep the server from killing the connection to the folder.
26124 For example, IMAP servers may remove a connection to a folder if there
26125 has been no activity on the connection for 30 minutes or more.
26126 Instead of letting that happen, Alpine will check for new mail before the
26127 30 minutes is up even though you have turned on this feature to quell
26128 those checks.
26130 Besides new-mail checks, checkpoint operations on the folders
26131 will also be quelled when you set this option.
26132 The purpose of checkpointing is to write the changes to a folder out to
26133 disk periodically in order to avoid losing those changes when system or
26134 software problems occur.
26135 New-mail checking and checkpointing while you are not composing are not
26136 affected by this option.
26139 &lt;End of help on this topic&gt;
26140 </BODY>
26141 </HTML>
26142 ====== h_config_quell_checks_comp_inbox =====
26143 <HTML>
26144 <HEAD>
26145 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26146 </HEAD>
26147 <BODY>
26148 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26150 This option is closely related to the
26151 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26152 option, the
26153 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26154 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26156 If this option is set, then the normal new-mail checking that happens
26157 while you are composing will not happen for your INBOX.
26158 Checking of other folders is controlled in a similar way with the
26159 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26161 You might want to set this option if you are experiencing delays while
26162 composing that you think might be related to the speed of the new-mail
26163 checks.
26165 Even with this option turned on, an occasional new-mail check may be done
26166 in order to keep the server from killing the connection to the folder.
26167 For example, IMAP servers may remove a connection to a folder if there
26168 has been no activity on the connection for 30 minutes or more.
26169 Instead of letting that happen, Alpine will check for new mail before the
26170 30 minutes is up even though you have turned on this feature to quell
26171 those checks.
26173 Besides new-mail checks, checkpoint operations on the INBOX
26174 will also be quelled when you set this option.
26175 The purpose of checkpointing is to write the changes to a folder out to
26176 disk periodically in order to avoid losing those changes when system or
26177 software problems occur.
26178 New-mail checking and checkpointing while you are not composing are not
26179 affected by this option.
26181 &lt;End of help on this topic&gt;
26182 </BODY>
26183 </HTML>
26184 ====== h_config_maildropcheck =====
26185 <HTML>
26186 <HEADER>
26187 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26188 </HEADER>
26189 <BODY>
26190 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26192 New-mail checking for a
26193 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26194 mail checking for a regular folder.
26195 One of the differences is that the connection to the Mail Drop is not
26196 kept open and so the cost of checking
26197 (delay for you and additional load for the server) may be significant.
26198 Because of this additional cost we set a minimum time that
26199 must pass between checks.
26200 This minimum only applies to the automatic checking done by Alpine.
26201 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26202 at the end of a folder index, then the check is done right away.
26204 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26205 new-mail checks.
26206 You may want to set this minimum high in order to avoid experiencing some
26207 of the delays associated with the checks.
26208 Note that the time between checks is still controlled by the regular
26209 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26210 When Alpine is about to do an automatic check for new mail (because
26211 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26212 new-mail check
26213 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26214 the Mail Drop is checked for new mail as well.
26215 Therefore, it is only useful to set this option to a value that is higher
26216 than the <!--#echo var="VAR_mail-check-interval"-->.
26218 If this option is set to zero, automatic Mail Drop new-mail
26219 checking is disabled.
26220 There is a minimum value, normally 60 seconds.
26221 The default value is normally 60 seconds as well.
26222 This applies to the INBOX and to the currently open folder if that is
26223 different from the INBOX.
26226 <UL>   
26227 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26228 </UL><P>
26229 &lt;End of help on this topic&gt;
26230 </BODY>
26231 </HTML>
26232 ====== h_config_nntprange =====
26233 <HTML>
26234 <HEADER>
26235 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26236 </HEADER>
26237 <BODY>
26238 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26240 This option applies only to newsgroups accessed using the NNTP protocol.
26241 It does not, for example,
26242 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26245 When you open a connection to a News server using the NNTP protocol, you
26246 normally have access to all of the articles in each newsgroup.
26247 If a server keeps a large backlog of messages it may speed performance
26248 some to restrict attention to only the newer messages in a group.
26249 This option allows you to set how many article numbers should be checked
26250 when opening a newsgroup.
26251 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26252 of messages you ever want to see.
26253 For example, if you only ever wanted to look at the last 500 messages in each
26254 newsgroup you could set this option to 500.
26255 In actuality, it isn't quite that.
26256 Instead, for performance reasons, it specifies the range of article
26257 numbers to be checked, beginning
26258 with the highest numbered article and going backwards from there.
26259 If there are messages that have been canceled or deleted
26260 their article numbers are still counted as part of the range.
26262 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26263 numbers
26264 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26266 to be considered when reading a newsgroup.
26267 The number of messages that show up in your index will be less than or equal
26268 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26271 The purpose of this option is simply to speed up access when reading news.
26272 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26273 numbers, and can avoid downloading any information about the ignored articles.
26274 There is a cost you pay for this speedup.
26275 That cost is that there is no way for you to see those ignored articles.
26276 The articles that come before the range you specify are invisible to you and
26277 to Alpine, as if they did not exist at all.
26278 There is no way to see those messages using, for example, an unexclude command
26279 or something similar.
26280 The only way to see those articles is to set this option high enough (or
26281 set it to zero) and then to reopen the newsgroup.
26284 If this option is set to 0 (which is also the default),
26285 then the range is unlimited.
26286 This option applies globally to all NNTP servers and to all newsgroups
26287 on those servers.
26288 There is no way to set different values for different newsgroups or servers.
26291 <UL>   
26292 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26293 </UL><P>
26294 &lt;End of help on this topic&gt;
26295 </BODY>
26296 </HTML>
26297 ====== h_config_news_active =====
26298 <html>
26299 <header>
26300 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26301 </header>
26302 <body>
26303 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26305 This option tells Alpine where to look for the "active file" for newsgroups
26306 when accessing news locally, rather than via NNTP.  The default path is
26307 usually "/usr/lib/news/active".<p>
26308 <UL>   
26309 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26310 </UL><P>
26311 &lt;End of help on this topic&gt;
26312 </body>
26313 </html>
26314 ====== h_config_news_spool =====
26315 <html>
26316 <header>
26317 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26318 </header>
26319 <body>
26320 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26322 This option tells Alpine where to look for the "news spool" for newsgroups
26323 when accessing news locally, rather than via NNTP.  The default path is
26324 usually "/var/spool/news".<p>
26325 <UL>   
26326 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26327 </UL><P>
26328 &lt;End of help on this topic&gt;
26329 </body>
26330 </html>
26331 ====== h_config_image_viewer =====
26332 <html>
26333 <header>
26334 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26335 </header>
26336 <body>
26337 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26338 <body>
26339 This option specifies the program Alpine should call to view MIME
26340 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26341 no longer needed, but remains for backward compatibility.  The more
26342 general method for associating external printing and viewing programs with
26343 specific MIME data types is to use the system's (or your personal)
26344 "mailcap" configuration file.<p>
26345 <UL>   
26346 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26347 </UL><P>
26348 &lt;End of help on this topic&gt;
26349 </body>
26350 </html>
26351 ====== h_config_domain_name =====
26352 <HTML>
26353 <HEAD>
26354 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
26355 </HEAD>
26356 <BODY>
26357 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
26359 This option is used only if the 
26360 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
26361 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
26362 strips the hostname from your return (&quot;From&quot;) address and when 
26363 completing unqualified addresses that you enter into the composer.
26365 If you set this, see also the <A HREF="h_config_quell_local_lookup">
26366 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
26369 <!--chtml if pinemode="os_windows"-->
26370 <P>This option is not applicable to PC-Alpine.
26371 <!--chtml else-->
26373 <!--chtml endif-->
26374 <UL>
26375 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26376 </UL>
26378 &lt;End of help on this topic&gt;
26379 </BODY>
26380 </HTML>
26381 ====== h_config_prune_date =====
26382 <HTML>
26383 <HEAD>
26384 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
26385 </HEAD>
26386 <BODY>
26387 <H1>OPTION: Last-Time-Prune Question</H1>
26389 This value records the last time you were asked about deleting old
26390 sent-mail.
26391 It is set automatically by Alpine at the beginning of each month.
26392 In the past, if you wished to suppress the monthly sent-mail
26393 pruning feature, you could set this to a date in the future.
26394 This value is relative to the year 1900, so 
26395 to set this, for example, to October 2005, use 105.10.
26397 You can still do that if you wish, or you can use the
26398 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
26399 a little more convenient to use.
26401 <UL>   
26402 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26403 </UL><P>
26404 &lt;End of help on this topic&gt;
26405 </BODY>
26406 </HTML>
26407 ====== h_config_goto_default =====
26408 <HTML>
26409 <HEAD>
26410 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
26411 </HEAD>
26412 <BODY>
26413 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
26415 This value affects Alpine's behavior when you use the Goto command.
26416 Alpine's usual behavior has two parts.  If your current folder is
26417 &quot;Inbox&quot;, Alpine will offer the last open folder as the
26418 default.  If the current folder is other than &quot;Inbox&quot;,
26419 &quot;Inbox&quot; is offered as the default.
26422 The available options include:
26424 <DL>
26426  <DT>folder-in-first-collection</DT>
26428  <DD> Alpine will offer the most recently visited folder in the default
26429 collection found in the &quot;Collection List&quot; screen as the default.
26430 </DD>
26432  <DT> inbox-or-folder-in-first-collection</DT>
26434  <DD> If the current folder is &quot;Inbox&quot;,
26435 Alpine will offer the most recently visited folder in the
26436 default collection found in the &quot;Collection List&quot; screen.
26437 If the current folder is other than &quot;Inbox&quot;,
26438 &quot;Inbox&quot; is offered as the default.
26439 </DD>
26441  <DT> inbox-or-folder-in-recent-collection</DT>
26443  <DD> This is Alpine's default behavior.
26444 If the current folder is &quot;Inbox&quot;,
26445 Alpine will offer the last open
26446 folder as the default.
26447 If the current folder is other than &quot;Inbox&quot;,
26448 &quot;Inbox&quot; is offered as the default.
26449 </DD>
26451  <DT> first-collection-with-inbox-default</DT>
26453  <DD> Instead of offering the most recently visited folder in the default
26454 collection, the default collection is offered but with &quot;Inbox&quot; as
26455 the default folder.
26456 If you type in a folder name it will be in the default collection.
26457 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26458 </DD>
26460  <DT> most-recent-folder</DT>
26462  <DD> The last accepted value simply causes the most recently opened
26463 folder to be offered as the default regardless of the currently opened
26464 folder.
26465 </DD>
26466 </DL>
26469 NOTE: The default while a newsgroup is open remains the same; the last
26470 open newsgroup.
26473 <UL>   
26474 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26475 </UL><P>
26476 &lt;End of help on this topic&gt;
26477 </BODY>
26478 </HTML>
26479 ====== h_config_thread_lastreply_char =====
26480 <HTML>
26481 <HEAD>
26482 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26483 </HEAD>
26484 <BODY>
26485 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26487 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26488 INDEX display when using a
26489 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26490 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26491 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26492 The value of this option is a single character.
26493 This character is used instead of the vertical line character when there are
26494 no more replies directly to the parent of the current message.
26495 It can be used to &quot;round-off&quot; the bottom of the vertical line
26496 by setting it to a character such as a backslash (&#92;) or
26497 a backquote (&#96;).
26498 The default value of this option is the backslash character (&#92;).
26499 This option may not be set to the Empty Value.
26500 In that case, the default will be used instead.
26503 <UL>   
26504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26505 </UL><P>
26506 &lt;End of help on this topic&gt;
26507 </BODY>
26508 </HTML>
26509 ====== h_config_thread_indicator_char =====
26510 <HTML>
26511 <HEAD>
26512 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26513 </HEAD>
26514 <BODY>
26515 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26517 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26518 INDEX display when using a
26519 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26520 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26521 The value of this option is a single character.
26522 This character is used to indicate that part of a thread (a conversation) is
26523 hidden beneath a message.
26524 The message could be expanded
26525 if desired with the &quot;/&quot; Collapse/Expand command.
26526 By default, the value of this option is the greater than sign (&gt;).
26528 If this option is set to the Empty Value, then the column (and the following
26529 blank column) will be deleted from the display.
26532 This option is closely related to the
26533 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26534 Another similar option that affects the thread display is the
26535 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26538 <UL>   
26539 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26540 </UL><P>
26541 &lt;End of help on this topic&gt;
26542 </BODY>
26543 </HTML>
26544 ====== h_config_thread_exp_char =====
26545 <HTML>
26546 <HEAD>
26547 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26548 </HEAD>
26549 <BODY>
26550 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26552 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26553 INDEX display when using a
26554 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26555 than &quot;none&quot;.
26556 The value of this option is a single character.
26557 This character is used to indicate that part of a thread has been expanded
26558 and could be collapsed if desired with
26559 the &quot;/&quot; Collapse/Expand command.
26560 By default, the value of this option is a dot (.).
26562 If this option is set to the Empty Value, then the column (and the following
26563 blank column) will be deleted from the display.
26566 This option is closely related to the
26567 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26568 Another similar option that affects the thread display is the
26569 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26572 <UL>   
26573 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26574 </UL><P>
26575 &lt;End of help on this topic&gt;
26576 </BODY>
26577 </HTML>
26578 ====== h_config_thread_index_style =====
26579 <HTML>
26580 <HEAD>
26581 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26582 </HEAD>
26583 <BODY>
26584 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26586 When a folder is sorted by Threads or OrderedSubject,
26587 this option will affect the INDEX displays.
26590 The possible values for this option are:
26592 <DL>
26593 <DT>regular-index-with-expanded-threads</DT>
26594 <DD>This is the default display.
26595 If the configuration option
26596 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26597 is set to something other than &quot;none&quot;, then this setting
26598 will cause Alpine to start off with a MESSAGE INDEX with all of
26599 the threads expanded.
26600 That is, each message will have a line in the MESSAGE INDEX display.
26601 The Collapse/Expand command (/) may be used to manually collapse or
26602 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26604 This setting affects the display when the folder is first threaded.
26605 The collapsed state may also be re-initialized by re-sorting the folder manually
26606 using the SortIndex command ($).
26607 After re-sorting the threads will once again all be expanded, even if you
26608 have previously collapsed some of them.
26610 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26611 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26612 in a different order.
26613 </DD>
26615 <DT>regular-index-with-collapsed-threads</DT>
26616 <DD>If the configuration option
26617 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26618 is set to something other than &quot;none&quot;, then this setting
26619 will cause Alpine to start out with all of the threads collapsed instead of
26620 starting out with all of the threads expanded.
26621 The Collapse/Expand command (/) may be used to manually collapse or
26622 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26624 This setting affects the display when the folder is first threaded.
26625 The collapsed state may also be re-initialized by re-sorting the folder manually
26626 using the SortIndex command ($).
26627 After re-sorting the threads will once again all be collapsed, even if you
26628 have previously expanded some of them.
26629 </DD>
26631 <DT>separate-index-screen-always</DT>
26632 <DD>With this setting and the next, you will see an index of threads
26633 instead of an
26634 index of messages, provided you have sorted by Threads or OrderedSubject.
26636 The THREAD INDEX contains a '*' in the first column if any message in the thread
26637 is marked Important.
26638 If not, it contains a '+' if any message in the thread is to you.
26639 The second column is blank. The third column contains a 'D' if all of the
26640 messages in the thread are deleted.
26641 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26643 When you view a particular thread from the THREAD INDEX you will be
26644 in the MESSAGE INDEX display
26645 but the index will only contain messages from the thread you are viewing.
26646 </DD>
26648 <DT>separate-index-screen-except-for-single-messages</DT>
26649 <DD>This is very similar to the option above.
26650 When you are in the THREAD INDEX, one of the available commands
26651 is &quot;ViewThd&quot;.
26652 With the setting &quot;separate-index-screen-always&quot; (the option above)
26653 when you view a particular thread you will be in the
26654 MESSAGE INDEX display and the index will only contain messages from
26655 the thread you are viewing.
26656 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26657 will be an index with only one message in it.
26658 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26659 setting instead, then that index that contains a single message
26660 will be skipped and you will go directly from the THREAD INDEX into the
26661 MESSAGE TEXT screen.
26662 </DD>
26664 </DL>
26667 <UL>   
26668 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26669 </UL><P>
26670 &lt;End of help on this topic&gt;
26671 </BODY>
26672 </HTML>
26673 ====== h_config_thread_disp_style =====
26674 <HTML>
26675 <HEAD>
26676 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26677 </HEAD>
26678 <BODY>
26679 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
26681 When a folder is sorted by Threads or OrderedSubject,
26682 this option will affect the MESSAGE INDEX display.
26683 By default, Alpine will display the MESSAGE INDEX in the
26684 &quot;show-thread-structure&quot; style if a folder is sorted
26685 by Threads or OrderedSubject.
26688 The possible values for this option are:
26690 <DL>
26691 <DT>none</DT>
26692 <DD>Regular index display.
26693 The same index line as would be displayed without threading is used.
26694 The only difference will be in the order of the messages.
26695 </DD>
26697 <DT>show-thread-structure</DT>
26698 <DD>Threaded Subjects will be indented and vertical bars and horizontal
26699 lines will be added to make it easier to see the relationships among
26700 the messages in a thread (a conversation).
26701 </DD>
26703 <DT>mutt-like</DT>
26704 <DD>This is the same as the option above except that the Subject
26705 is suppressed (is blank) if it matches the previous Subject in the thread.
26706 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
26707 Here is an example of what a mutt-like index might look like.
26708 In this example, the first column represents the message number, the
26709 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
26710 is set to &quot;regular-index-with-expanded-threads&quot;, and the
26711 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
26712 is set to a backslash:
26713 <PRE>
26714 &nbsp;&nbsp;&nbsp;1    Some topic
26715 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
26716 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
26717 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
26718 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
26719 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
26720 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
26721 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
26722 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
26723 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
26724 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
26725 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
26726 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
26727 &nbsp;&nbsp;&nbsp;14    Next topic
26728 </PRE>
26729 </DD>
26731 <DT>indent-subject-1</DT>
26732 <DD>Threaded Subjects will be indented one space per level of the conversation.
26733 The bars and lines that show up in the show-thread-structure display will
26734 not be there with this style.
26735 </DD>
26737 <DT>indent-subject-2</DT>
26738 <DD>Same as above but indent two spaces per level instead of one space.
26739 </DD>
26741 <DT>indent-from-1</DT>
26742 <DD>Similar to indent-subject-1, except that instead of indenting the
26743 Subject field one space the From field of a thread will be indented one
26744 space per level of the conversation.
26745 </DD>
26747 <DT>indent-from-2</DT>
26748 <DD>Same as above but indent two spaces per level instead of one space.
26749 </DD>
26751 <DT>show-structure-in-from</DT>
26752 <DD>The structure of the thread is illustrated with indenting, vertical bars,
26753 and horizontal lines just like with the show-thread-structure option, but
26754 the From field is used to show the relationships instead of the Subject field. 
26755 </DD>
26757 </DL>
26760 <UL>   
26761 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26762 </UL><P>
26763 &lt;End of help on this topic&gt;
26764 </BODY>
26765 </HTML>
26766 ====== h_config_pruning_rule =====
26767 <HTML>
26768 <HEAD>
26769 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
26770 </HEAD>
26771 <BODY>
26772 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
26774 By default, Alpine will ask at the beginning of each month whether or not
26775 you want to rename your sent-mail folder to a name like sent-mail-month-year.
26776 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
26777 change the format of the folder to sent-mail-yyyy-mm.)
26778 It will also ask whether you would like to delete old sent-mail folders.
26779 If you have defined
26780 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
26782 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
26783 Alpine will also ask about pruning those folders.
26786 With this option you may provide an automatic answer to these questions.
26787 The default value is to ask you what you'd like to do.
26790 The six possible values for this option are:
26792 <DL>
26793 <DT>ask about rename, ask about deleting</DT>
26794 <DD>This is the default.
26795 Alpine will ask whether you want to rename the folders and whether you
26796 want to delete each of the old folders.
26797 </DD>
26799 <DT>ask about rename, don't delete</DT>
26800 <DD>Alpine will ask whether you want to rename the folders, but won't
26801 ask about or delete old folders.
26802 </DD>
26804 <DT>always rename, ask about deleting</DT>
26805 <DD>This means you want to always answer yes and have Alpine automatically
26806 rename the folder if possible.
26807 You will also be asked about deleting old folders.
26808 </DD>
26810 <DT>always rename, don't delete</DT>
26811 <DD>This means you want to always answer yes and have Alpine automatically
26812 rename the folder if possible.
26813 There will be no deleting of old folders.
26814 </DD>
26816 <DT>don't rename, ask about deleting</DT>
26817 <DD>This means you want to always answer no.
26818 Alpine will not rename the folder.
26819 You will be asked about deleting old folders.
26820 </DD>
26822 <DT>don't rename, don't delete</DT>
26823 <DD>This means you want to always answer no.
26824 Alpine will not rename the folder.
26825 There will be no deleting of old folders, either.
26826 </DD>
26827 </DL>
26830 <UL>   
26831 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26832 </UL><P>
26833 &lt;End of help on this topic&gt;
26834 </BODY>
26835 </HTML>
26836 ====== h_config_reopen_rule =====
26837 <HTML>
26838 <HEAD>
26839 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
26840 </HEAD>
26841 <BODY>
26842 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
26844 Alpine normally checks for new mail in the currently open folder
26845 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
26848 There are some situations where automatic new-mail checking does not work.
26849 For example, if a mail folder is opened using the POP protocol or a newsgroup
26850 is being read using the NNTP protocol, then new-mail checking is disabled.
26853 It may be possible to check for new mail in these cases by reopening the
26854 folder.
26855 Alpine does not do this for you automatically, but you may do the commands
26856 manually to cause this to happen.
26857 You reopen by going back to the folder list screen from the message
26858 index screen with the &quot;&lt;&quot; command,
26859 and then going back into the message index screen with
26860 the &quot;&gt;&quot; command.
26861 (Actually, any method you would normally use to open a folder will work the
26862 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
26863 For example, the GoTo Folder command will work, or you may use L to go to the
26864 Folder List screen and Carriage Return to reopen the folder.)
26867 There are some cases where Alpine knows that reopening the folder should
26868 be useful as a way to discover new mail.
26869 At the time of this writing, connections made using the POP protocol,
26870 news reading using the NNTP protocol, local news reading, and local
26871 ReadOnly folders that are in the traditional UNIX or the MMDF format all
26872 fall into this category.
26873 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
26874 has no way of knowing, so it might also just be an exercise in futility.
26875 All remote, ReadOnly folders other than those listed just above fall into this
26876 category.
26877 The setting of this option together with the type of folder
26878 controls how Alpine will react to the apparent attempt to reopen a folder.
26881 If you don't reopen, then you will just be back in
26882 the message index with no change.
26883 You left the index and came back, but the folder remained &quot;open&quot;
26884 the whole time.
26885 However, if you do reopen the folder, the folder is closed and then reopened.
26886 In this case, the current state of the open folder is lost.
26887 The New status, Important and Answered flags,
26888 selected state, Zoom state, collapsed or expanded state of threads,
26889 current message number,
26890 and any other temporary state is all lost when the reopen happens.
26891 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
26894 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
26895 several places.
26896 That really implies the case where Alpine knows it is a good way to discover
26897 new mail, which is more than just POP and NNTP, but POP and NNTP are
26898 the cases of most interest.
26899 This option probably has more possible values than it deserves. They are:
26901 <DL>
26902 <DT>Always reopen</DT>
26903 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
26904 whenever you type a command that implies a reopen, regardless of the
26905 access method.
26906 In other words, it is assumed you would always answer Yes if asked
26907 about reopening.
26908 </DD>
26910 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
26911 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26912 will ask you whether to reopen other remote folders,
26913 with a default answer of Yes.
26914 </DD>
26916 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
26917 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26918 will ask you whether to reopen other remote folders,
26919 with a default answer of No.
26920 </DD>
26922 <DT>Yes for POP/NNTP, No for other remote</DT>
26923 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
26924 will assume a No answer for all other remote folders.
26925 </DD>
26927 <DT>Always ask [Yes]</DT>
26928 <DD>Alpine will not differentiate based on access method.
26929 It will always ask for all remote folders, with a default answer of Yes.
26930 </DD>
26932 <DT>Always ask [No]</DT>
26933 <DD>Alpine will not differentiate based on access method.
26934 It will always ask for all remote folders, with a default answer of No.
26935 </DD>
26937 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
26938 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
26939 of Yes.
26940 It will never attempt to reopen other remote folders.
26941 </DD>
26943 <DT>Ask about POP/NNTP [No], No for other remote</DT>
26944 <DD>This is the default.
26945 Alpine will ask if the access method is POP or NNTP, with a default answer
26946 of No.
26947 It will never attempt to reopen other remote folders.
26948 </DD>
26950 <DT>Never reopen</DT>
26951 <DD>Alpine will never attempt to reopen already open folders.
26952 </DD>
26953 </DL>
26956 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
26957 any of the other situations where it is likely that reopening is a good way
26958 to discover new mail.
26961 There is an alternative that may be of useful in some situations.
26962 Instead of manually checking for new mail you can set up a
26963 <A HREF="h_maildrop">Mail Drop</A>
26964 and automatically check for new mail.
26967 <UL>   
26968 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26969 </UL><P>
26970 &lt;End of help on this topic&gt;
26971 </BODY>
26972 </HTML>
26973 ====== h_config_inc_startup =====
26974 <HTML>
26975 <HEAD>
26976 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
26977 </HEAD>
26978 <BODY>
26979 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
26981 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
26982 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
26983 It determines which message will be the <EM>current message</EM> when
26984 the folder is first opened.
26985 The default value is &quot;first-unseen&quot;.
26988 The seven possible values for this option are:
26990 <DL>
26991 <DT>first-unseen</DT>
26992 <DD>The current message is set to the first
26993 unseen message that has not been marked deleted, or the last message if
26994 all of the messages have been seen previously.
26995 Messages which have not been seen or which have been seen but re-marked
26996 as New are considered unseen messages.
26997 See the note at the bottom of this help about newsgroups.
26998 </DD>
27000 <DT>first-recent</DT>
27001 <DD>Similar to the default, but rather than starting on the first
27002 unseen message Alpine starts on the first <EM>recent</EM> message.
27003 A message is recent if it arrived since the last time the folder was
27004 open.  This value causes the current message to be set to the first
27005 recent message if there is one, otherwise to the last
27006 message in the folder.
27007 </DD>
27009 <DT>first-important</DT>
27010 <DD>This will result in the current message being set to the first
27011 message marked Important (but not Deleted).
27012 If no messages are marked Important, then it will be the last message.
27013 Messages are marked Important by <EM>you</EM>, not by the sender, using
27015 <A HREF="h_common_flag">Flag command</A>.
27016 Or they may be marked Important by an Alpine
27017 <A HREF="h_mainhelp_filtering">Filter</A>
27018 that you have set up.
27019 </DD>
27021 <DT>first-important-or-unseen</DT>
27022 <DD>This selects the first of the first unseen and the first important
27023 messages.
27024 </DD>
27026 <DT>first-important-or-recent</DT>
27027 <DD>This selects the first of the first recent and the first important
27028 messages.
27029 </DD>
27031 <DT>first</DT>
27032 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
27033 If all messages are deleted you start on the last message.
27034 </DD>
27036 <DT>last</DT>
27037 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27038 If all messages are deleted you start on the last message.
27039 </DD>
27040 </DL>
27043 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27044 &quot;first-recent&quot; are the same and are affected by whether or not the
27045 feature 
27046 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27047 is turned on. 
27048 Also, there is no permanent storage in news for an Important flag.
27049 This means that no messages will be marked Important when a newsgroup is
27050 first opened.
27053 <UL>   
27054 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27055 </UL><P>
27056 &lt;End of help on this topic&gt;
27057 </BODY>
27058 </HTML>
27059 ====== h_config_browser =====
27060 <HTML>
27061 <HEAD>
27062 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27063 </HEAD>
27064 <BODY>
27065 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27066 <!--chtml if pinemode="os_windows"-->
27067 PC-Alpine users do not need to enter anything here, unless:<UL>
27068 <LI> they want to override, for use with Alpine, the application defined
27069 in the Windows operating system for handling URLs; or
27070 <LI> they are (planning on) using the same configuration file with 
27071 Unix Alpine.
27072 </UL>
27074 Note that if using a viewer that has a space in its path, you should
27075 use the DOS name for that directory or file. Example:
27076 <PRE>
27077 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27078 </PRE>
27079 <HR><P>
27080 <!--chtml endif-->
27081 This option affects Alpine's handling of URLs that are found in 
27082 messages you read.  Normally, only URLs Alpine can handle directly
27083 are automatically offered for selection in the &quot;Message
27084 Text&quot; screen.  When one or more applications
27085 capable of deciphering URLs on their command line are added here, Alpine
27086 will choose the first available to display URLs it cannot handle directly.
27087 A viewer's availability is based on its being specified with a <B>full
27088 directory path</B> and the evaluation of any optionally supplied
27089 parameters described below.
27092 Additionally, to support various connection methods and applications, each
27093 entry in this list can optionally begin with one or more of
27094 the following special tokens.  The allowed tokens include:
27097 <DL>
27098 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27099 <DD>
27100 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27101 evaluate a viewer's availability.  The command specified by the test
27102 string is run and if its resulting exit status is non-zero, Alpine will
27103 not consider the associated viewer for use.
27104 </DD>
27106 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27107 <DD>
27108 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27109 URL schemes that are to be used with the associated viewer.  This is
27110 the way to configure Alpine to recognize URLs other than the built-in set.
27112 It can also be used to override Alpine's built-in handlers.
27113 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27114 and Alpine would use (provided it passed all other criteria) the associated
27115 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27117 </DD>
27118 </DL>
27121 By default, Alpine will simply append a space character followed by the
27122 selected URL prior to launching the command in your specified SHELL.  You can
27123 optionally specify where in the command the selected URL should appear
27124 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27125 will be replaced with the selected URL before the command is handed
27126 to the shell.  If such replacement occurs, the default appending of the
27127 selected URL does not take place.
27130 NOTE: If the viewer you specify has any command-line arguments,
27131 including the &quot;_URL_&quot; token, you will need to add a
27132 double-quote character before the command path and after the last
27133 argument (see the &quot;lynx&quot; example below).
27136 So, here are some example entries:
27137 <PRE>
27138 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27139               &quot;/usr/local/bin/lynx _URL_&quot;
27140               C:&#92;BIN&#92;NETSCAPE.BAT
27141 </PRE>
27143 This example shows that for the first viewer in the list to be used
27144 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27145 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27146 If neither condition is met,
27147 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27148 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27149 If the path to &quot;lynx&quot; is invalid,
27150 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27151 Note that the last
27152 entry is a DOS/Windows path.  This is one way to support Alpine running
27153 on more than one architecture with the same configuration file.<P>
27155 <!--chtml if pinemode="os_windows"-->
27156 <!--chtml else-->
27157 Note that depending on the type of browser used and the method of 
27158 its invocation (such as whether it will open in a separate window) from
27159 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27160 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27161 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27162 In other words, launching the browser from Alpine may make Alpine 
27163 &quot;disappear&quot; (although it is still &quot;running&quot;)
27164 until you close the browser again.<P>  
27165 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27166 environment: for advanced users and  systems administrators</A>
27167 </UL>
27168 <!--chtml endif-->
27169 <P>If you are unsure what browsers are available on your system or how to 
27170 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27171 local computing support staff.
27172 <P><UL>
27173 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27174 </UL>
27176 &lt;End of help on this topic&gt;
27177 </BODY>
27178 </HTML>
27179 ====== h_config_browser_xterm =====
27180 <HTML>
27181 <HEAD>
27182 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27183 </HEAD>
27184 <BODY>
27185 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27186 environment: for advanced users and  systems administrators</H1>
27187 If you are using Alpine with an X-terminal (emulator) and want to define an 
27188 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27189 you may want to do so in a manner that causes any <B>already</B> 
27190 invoked viewer application to be used for viewing URLs you select from Alpine 
27191 messages, and a <B>new</B> URL-viewer process to be 
27192 started <B>only</B> if the same application has <B>not already</B> 
27193 been launched -- for one reason, to avoid file-locking contentions among 
27194 multiple invocations of the same URL-viewer application.  
27195 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27196 option does not do this.)  A method of doing that would be:<OL>
27197 <LI> use 
27198 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27199 check (using commands appropriate for your Unix shell
27200 in place of <VAR>test-string</VAR>) for the presence of a 
27201 lockfile created by the URL-viewer application -- which implies that the 
27202 application is already running, though this is not foolproof. 
27203 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27204 application with its appropriate command line option(s) to 
27205 show the URL selected from the Alpine message in an already open window of 
27206 that application, or perhaps in a new window of that application.  
27208 <LI> In the 
27209 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27210 application without those command line options, but this time using the 
27211 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27212 is defined.
27213 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27214 windows environment (for instance, using VT-100 terminal emulation), you 
27215 may wish to specify a non-X windows URL-viewer application such as Lynx
27216 as the last entry.
27217 </OL><BR>
27218 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27219 the command shell, the URL-viewer application(s), and possibly the specific 
27220 version of the latter, you are using.  
27222 Relevant command 
27223 line options for the Netscape browser for showing URLs (selected from Alpine) 
27224 when Netscape is already running are discussed in the document
27225 &quot;Remote Control of UNIX Netscape&quot; 
27226 found at the URL (as of 12 Aug. 1998):
27229 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27231 <P>(If the URL-viewer application is 
27232 <B>not</B> running on the same host as Alpine, but being launched from an 
27233 applications server, you may not be able to use the command line options for 
27234 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27236 <!--chtml if this-method="shown-to-work"-->
27237 An example using the Korn shell and the Netscape browser (first entry wrapped 
27238 because of its length, but should all appear on one line):
27240 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27242 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27243               &quot;/usr/local/bin/lynx '_URL_'&quot;
27245 <!--chtml endif-->
27247 <UL>   
27248 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27249 </UL><P>
27250 &lt;End of help on this topic&gt;
27251 </BODY>
27252 </HTML>
27253 ====== h_config_enable_full_hdr =====
27254 <HTML>
27255 <HEAD>
27256 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27257 </HEAD>
27258 <BODY>
27259 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27261 This feature enables the &quot;H Full Headers&quot; command which toggles between
27262 the display of all headers in the message and the normal edited view of
27263 headers.  The Full Header command also controls which headers are included
27264 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27265 Full Header mode will respect the
27266 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27267 feature setting.)
27269 If Full Header mode is turned on and you Forward a message, you will
27270 be asked if you'd like to forward the message as an attachment, as opposed
27271 to including the text of the message in the body of your new message.
27273 If you have also turned on the
27274 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27275 option then the Full Headers command actually rotates through three states
27276 instead of just two.
27277 The first is the normal view with long quotes suppressed.
27278 The second is the normal view but with the long quotes included.
27279 The last enables the display of all headers in the message.
27280 When using Export, Pipe, Print, Forward, or Reply the quotes are
27281 never suppressed, so the first two states are identical.
27283 Normally, the Header Mode will reset
27284 to the default behavior when moving to a new message.
27285 The mode can be made to persist from message to message by setting the feature
27286 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
27288 <UL>   
27289 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27290 </UL><P>
27291 &lt;End of help on this topic&gt;
27292 </BODY>
27293 </HTML>
27294 ====== h_config_enable_full_hdr_and_text =====
27295 <HTML>
27296 <HEAD>
27297 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27298 </HEAD>
27299 <BODY>
27300 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27302 This feature affects how the &quot;H Full Headers&quot; command displays
27303 message text.  If set, the raw message text will be displayed.  This
27304 especially affects MIME formatted email, where the entire MIME format
27305 will be displayed.  This feature similarly affects how messages are
27306 included for the Export, Pipe, Print, Forward, and Reply functions.
27308 When viewing a raw message that has attachments with this feature set,
27309 you will not be able to view attachments without first leaving full 
27310 headers mode.  This is because MIME parsing is not done on the raw message.
27312 <UL>   
27313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27314 </UL><P>
27315 &lt;End of help on this topic&gt;
27316 </BODY>
27317 </HTML>
27318 ====== h_config_enable_pipe =====
27319 <HTML>
27320 <HEAD>
27321 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27322 </HEAD>
27323 <BODY>
27324 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27326 This feature enables the "| Pipe" command that sends the current message
27327 to the specified command for external processing.
27330 A short description of how the pipe command works is given
27331 <A HREF="h_pipe_command">here</A>.
27334 <UL>   
27335 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27336 </UL><P>
27337 &lt;End of help on this topic&gt;
27338 </BODY>
27339 </HTML>
27340 ====== h_config_quell_full_hdr_reset =====
27341 <HTML>
27342 <HEAD>
27343 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
27344 </HEAD>
27345 <BODY>
27346 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
27348 The <A HREF="h_common_hdrmode">HdrMode Command</A>
27349 normally resets to the default state when switching to a new message.
27350 For example, if you've used the &quot;H&quot; command to turn on Full
27351 Headers for a message you are viewing, and then you type the Next command
27352 to look at the next message, the full headers will no longer be shown.
27353 Setting this feature disables that reset.
27354 Instead, the Header Mode remains the same from message to message.
27357 The presence or absence of the HdrMode command is determined by the
27358 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
27359 Feature-List option.
27361 <UL>   
27362 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27363 </UL><P>
27364 &lt;End of help on this topic&gt;
27365 </BODY>
27366 </HTML>
27367 ====== h_config_enable_tab_complete =====
27368 <HTML>
27369 <HEAD>
27370 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
27371 </HEAD>
27372 <BODY>
27373 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
27375 This feature enables the TAB key when at a prompt for a filename. In this
27376 case, TAB will cause the partial name already entered to be automatically
27377 completed, provided the partial name is unambiguous.
27378 This feature is on by default.
27380 Similarly, this feature also enables TAB completion of address book
27381 nicknames when at a prompt for a nickname,
27382 or when typing in an address field in the composer.
27384 &lt;End of help on this topic&gt;
27385 </BODY>
27386 </HTML>
27387 ====== h_config_quit_wo_confirm =====
27388 <HTML>
27389 <HEAD>
27390 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
27391 </HEAD>
27392 <BODY>
27393 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
27395 This feature controls whether or not Alpine will ask for confirmation when a
27396 Quit command is received.
27398 &lt;End of help on this topic&gt;
27399 </BODY>
27400 </HTML>
27401 ====== h_config_quote_replace_noflow =====
27402 <HTML>
27403 <HEAD>
27404 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
27405 </HEAD>
27406 <BODY>
27407 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
27409 This feature, which is only active when
27410 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
27411 also set,
27412 enables quote-replacement on non-flowed messages.  It is off
27413 by default because a non-flowed message is more dependent on its format,
27414 and thus quote-replacement may cause less-than-pleasing results.
27415 Setting this feature will cause quote-replacement similar to that of flowed
27416 messages, but with the added possibility of long lines being wrapped
27417 into new lines if the Quote-Replacement-String is longer than the string
27418 it is replacing, which is &quot;&gt;&nbsp;&quot;.
27420 &lt;End of help on this topic&gt;
27421 </BODY>
27422 </HTML>
27423 ====== h_config_enable_jump =====
27424 <HTML>
27425 <HEAD>
27426 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27427 </HEAD>
27428 <BODY>
27429 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27431 When this feature is set you may enter a number (followed by RETURN)
27432 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27433 screens.  In other words, it obviates the need for typing the "J" for the
27434 Jump command.
27436 &lt;End of help on this topic&gt;
27437 </BODY>
27438 </HTML>
27439 ====== h_config_enable_alt_ed =====
27440 <HTML>
27441 <HEAD>
27442 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27443 </HEAD>
27444 <BODY>
27445 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27447 If this feature is set (the default), and the 
27448 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27449 <B>is not</B> set, entering
27450 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27451 for the name of the editor you would like to use.
27453 If the environment variable $EDITOR is set, its value will be offered as
27454 a default.
27456 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27457 <B>is</B> set, the ^_ key will activate the specified
27458 editor without prompting, in which case it is not necessary to
27459 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27461 <UL>   
27462 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27463 </UL><P>
27464 &lt;End of help on this topic&gt;
27465 </BODY>
27466 </HTML>
27467 ====== h_config_alt_ed_now =====
27468 <HTML>
27469 <HEAD>
27470 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27471 </HEAD>
27472 <BODY>
27473 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27475 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27476 variable are both set, Alpine will
27477 automatically activate the specified editor when the cursor is moved from
27478 the header of the message being composed into the message text.  For
27479 replies, the alternate editor will be activated immediately.  If this
27480 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27481 automatically ask for the name of an alternate editor when the cursor
27482 is moved out of the header being composed, or if a reply is being done.
27484 <P><UL>
27485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27486 </UL>
27488 &lt;End of help on this topic&gt;
27489 </BODY>
27490 </HTML>
27491 ====== h_config_enable_bounce =====
27492 <HTML>
27493 <HEAD>
27494 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27495 </HEAD>
27496 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27497 <BODY>
27499 Setting this feature enables the "B Bounce" command, which will prompt
27500 for an address and *remail* the message to the new recipient.  This command
27501 is used to re-direct messages that you have received in error, or need to
27502 be redirected for some other reason (e.g. list moderation).  The final
27503 recipient will see a header indicating that you have Resent the msg, but
27504 the message's From: header will show the original author of the message,
27505 and replies to it will go back to that author, and not to you.
27507 &lt;End of help on this topic&gt;
27508 </BODY>
27509 </HTML>
27510 ====== h_config_enable_agg_ops =====
27511 <HTML>
27512 <HEAD>
27513 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27514 </HEAD>
27515 <BODY>
27516 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27518 When this feature is set you may use the commands and subcommands that relate to
27519 performing operations on more than one message at a time.  We call these
27520 &quot;aggregate operations&quot;.  In particular, the 
27521 <!--chtml if pinemode="function_key"-->&quot;F5
27522 <!--chtml else-->&quot;;
27523 <!--chtml endif--> Select&quot;, 
27525 <!--chtml if pinemode="function_key"-->
27526 &quot;F6
27527 <!--chtml else-->
27528 &quot;A 
27529 <!--chtml endif-->
27530 Apply&quot;, and 
27531 <!--chtml if pinemode="function_key"-->
27532 &quot;F4
27533 <!--chtml else-->
27534 &quot;Z 
27535 <!--chtml endif-->
27536 Zoom&quot; commands are enabled by this feature.  Select is used to
27537 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27538 then be used to apply any message command to all of the selected/tagged
27539 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27540 view between just those Selected and all messages in the folder.
27542 This feature also enables the 
27543 <!--chtml if pinemode="function_key"-->
27544 &quot;F7&quot; 
27545 <!--chtml else-->
27546 &quot;^X&quot; 
27547 <!--chtml endif-->
27549 subcommand in the MESSAGE INDEX 
27550 WhereIs command that causes all messages matching the WhereIs argument to 
27551 become selected; and the Select, Select Current, and ZoomMode commands in the
27552 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27554 Some related help topics are
27555 <UL>
27556 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27557 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27558 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27559 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27560 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27561 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27562 </UL>
27564 <UL>   
27565 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27566 </UL><P>
27567 &lt;End of help on this topic&gt;
27568 </BODY>
27569 </HTML>
27571 ====== h_config_enable_flag =====
27572 <HTML>
27573 <HEAD>
27574 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27575 </HEAD>
27576 <BODY>
27577 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27579 Setting this feature enables the
27580 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27581 command that allows you to
27582 manipulate the status flags associated with a message.  By default, Flag
27583 will set the "Important" flag, which results in an asterisk being
27584 displayed in column one of the MESSAGE INDEX for such messages.
27586 &lt;End of help on this topic&gt;
27587 </BODY>
27588 </HTML>
27589 ====== h_config_flag_screen_default =====
27590 <HTML>
27591 <HEAD>
27592 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27593 </HEAD>
27594 <BODY>
27595 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27597 The feature modifies the behavior of the
27598 <a href="h_common_flag">Flag</a>
27599 command (provided it too is
27600 <A HREF="h_config_enable_flag">enabled</A>).
27601 By default, when the "* Flag" command is selected,
27602 Alpine offers a prompt to set one of several flags and also offers the
27603 option of entering the detailed flag manipulation screen via the "^T"
27604 key. Enabling this feature causes Alpine to immediately enter the detailed
27605 flag screen rather than first offer the simple prompt.
27607 <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.
27609 &lt;End of help on this topic&gt;
27610 </BODY>
27611 </HTML>
27612 ====== h_config_flag_screen_kw_shortcut =====
27613 <HTML>
27614 <HEAD>
27615 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27616 </HEAD>
27617 <BODY>
27618 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27620 This feature modifies the behavior of the
27621 <a href="h_common_flag">Flag</a> command
27622 and the <A HREF="h_index_cmd_select">Select</A> command.
27623 This feature is set by default.
27624 When this feature is not set, when the "* Flag" command is selected,
27625 Alpine offers a prompt to set one of several flags and also offers the
27626 option of entering the detailed flag manipulation screen via the "^T"
27627 key.
27628 If you have
27629 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27630 defined, then enabling this feature adds a shortcut way to set or unset
27631 keywords.
27632 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27633 a keyword if you've given it a nickname) and that will set the keyword.
27635 An example is easier to understand than the explanation.
27636 The flag command can always be used to set the system flags.
27637 For example, to set the Answered flag you would type
27639 <CENTER><SAMP>* A</SAMP></CENTER>
27641 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27642 option in the Config screen.
27643 By default, to set a keyword like &quot;Work&quot; you would usually
27644 have to go to the Flag Details screen using
27645 the &quot;^T To Flag Details&quot; command.
27646 Instead, if you have enabled this feature, you may type
27648 <CENTER><SAMP>* W</SAMP></CENTER>
27650 to set the Work flag, or
27652 <CENTER><SAMP>* ! W</SAMP></CENTER>
27654 to unset it.
27655 Just like for the other flag setting commands, the case of the letter does
27656 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
27657 keyword.
27659 Notice that you can only use this trick for one keyword that begins
27660 with &quot;W&quot;.
27661 If you happen to have a &quot;Work&quot; keyword and another keyword that is
27662 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
27663 your list of keywords.
27664 Also, there are five letters that are reserved for system
27665 flags and the NOT command.
27666 If you type &quot;* A&quot; it will always set the Answered flag, not
27667 your &quot;Aardvark&quot; keyword.
27668 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
27669 the Flag Details screen.
27671 Because enabling the
27672 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
27673 option causes Alpine to skip directly to the Flag Details screen when the
27674 Flag command is used, 
27675 setting it will cause this feature to have no effect at all.
27677 Similarly, when Selecting by Keyword, setting this option will allow you
27678 to use Keyword initials instead of full keywords.
27680 &lt;End of help on this topic&gt;
27681 </BODY>
27682 </HTML>
27683 ====== h_config_can_suspend =====
27684 <HTML>
27685 <HEAD>
27686 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
27687 </HEAD>
27688 <BODY>
27689 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
27691 Setting this feature will allow you to type ^Z (Control Z) to 
27692 <!--chtml if pinemode="os_windows"-->
27693 minimize Alpine into its icon, bringing into focus whatever
27694 application is running behind the PC-Alpine window.
27695 <!--chtml else-->
27696 temporarily suspend Alpine.
27699 This does not exit Alpine, but puts it in the background to watch
27700 for new mail and such.  Normally, you type a command, such
27701 as &quot;fg&quot; at your system prompt to return to your Alpine session.
27704 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
27705 adjusts whether Alpine is placed into the background of the shell its 
27706 running in or starts a news shell.
27707 <!--chtml endif-->
27710 <UL>   
27711 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27712 </UL><P>
27713 &lt;End of help on this topic&gt;
27714 </BODY>
27715 </HTML>
27716 ====== h_config_take_lastfirst ======
27717 <HTML>
27718 <HEAD>
27719 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
27720 </HEAD>
27721 <BODY>
27722 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
27724 Normally, when TakeAddr is used to copy an address from a message into
27725 an address book entry, Alpine will attempt to rewrite the full name of the
27726 address in the form
27729 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
27731 instead of<P>
27733 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
27736 It does this because many people find it useful to sort by Last name
27737 instead of First name.  If this feature is set, then the TakeAddr command
27738 will not attempt to reverse the name in this manner.
27740 &lt;End of help on this topic&gt;
27741 </BODY></HTML>
27742 ====== h_config_disable_regex ======
27743 <HTML>
27744 <HEAD>
27745 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
27746 </HEAD>
27747 <BODY>
27748 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
27750 Normally, the
27751 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
27752 option is interpreted as a regular expression.
27753 One type of address that might cause trouble is an address that
27754 contains a plus sign.
27755 If you want to have an address with a plus as one of your
27756 <!--#echo var="VAR_alt-addresses"-->
27757 and you don't want to use regular expressions, then setting this
27758 feature will cause Alpine to treat the addresses you list literally instead.
27760 &lt;End of help on this topic&gt;
27761 </BODY></HTML>
27762 ====== h_config_take_fullname ======
27763 <HTML>
27764 <HEAD>
27765 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
27766 </HEAD>
27767 <BODY>
27768 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
27770 Normally, when TakeAddr is used to copy an address or addresses
27771 from a message into an address book entry, Alpine will try to preserve
27772 the full name associated with each address in the list of addresses.
27773 The reason for this is so that if the entry is a list or later becomes a
27774 list, then information about the individual addresses in the list
27775 is preserved.
27776 If you would rather just have the simple addresses in the list of addresses,
27777 set this feature. For example, with the default setting you might
27778 see something like this in the ADDRESS BOOK editor after you type TakeAddr
27780 <PRE>
27781  Nickname  : nick
27782  Fullname  : Bedrock Elders
27783  Fcc       :
27784  Comment   :
27785  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
27786              Barney Rubble &lt;rubble@bedrock.org&gt;
27787 </PRE>
27789 but with this feature set it would look like
27791 <PRE>
27792  Nickname  : nick
27793  Fullname  : Bedrock Elders
27794  Fcc       :
27795  Comment   :
27796  Addresses : flint@bedrock.org,
27797              rubble@bedrock.org
27798 </PRE>
27800 instead. Note the difference in the Addresses field.
27802 &lt;End of help on this topic&gt;
27803 </BODY></HTML>
27804 ====== h_config_print_from ======
27805 <HTML>
27806 <HEAD>
27807 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
27808 </HEAD>
27809 <BODY>
27810 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
27812 If this feature is set, then the Berkeley-mail style From line is included
27813 at the start of each message that is printed.  This line looks something
27814 like the following, with the address replaced by the address from the
27815 From line of the message being printed:
27817 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
27818 14:11:06 1998
27820 &lt;End of help on this topic&gt;
27821 </BODY>
27822 </HTML>
27823 ====== h_config_expanded_distlists ======
27824 <HTML>
27825 <HEAD>
27826 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
27827 </HEAD>
27828 <BODY>
27829 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
27830 If this feature is set, then distribution lists in the address book
27831 screen will always be expanded automatically.
27833 &lt;End of help on this topic&gt;
27834 </BODY>
27835 </HTML>
27836 ====== h_config_compose_news_wo_conf ======
27837 <HTML>
27838 <HEAD>
27839 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
27840 </HEAD>
27841 <BODY>
27842 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
27843 This feature controls one aspect of Alpine's Composer.  If you enter the
27844 composer while reading a newsgroup, you will normally be prompted to
27845 determine whether you intend the new message to be posted to the current
27846 newsgroup or not.  If this feature is set, Alpine will not prompt you
27847 in this situation, and will assume that you do indeed wish to post
27848 to the newsgroup you are reading.
27850 &lt;End of help on this topic&gt;
27851 </BODY>
27852 </HTML>
27853 ====== h_config_compose_rejects_unqual ======
27854 <HTML>
27855 <HEAD>
27856 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
27857 </HEAD>
27858 <BODY>
27859 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
27861 This feature controls one aspect of the message composer; in particular,
27862 what happens when an unqualified name is entered into an address header.
27863 If set, unqualified names entered as addresses will be treated as errors
27864 unless they match an addressbook nickname.  Alpine will not attempt to turn
27865 them into complete addresses by adding your local domain.<P>
27867 A complete (fully qualified) address is one containing a username followed
27868 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
27869 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
27870 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
27872 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
27876 When you enter a fully qualified address, Alpine does not interpret or
27877 modify it, but simply passes it on to the mail-transport-agent (MTA) for
27878 your system.  Alpine conforms to the Internet standards governing message
27879 headers and will not send an unqualifed name to the MTA.  Therefore, when
27880 you enter an unqualified name, Alpine will normally attempt to turn it into
27881 a fully qualified address, first by checking to see if you have entered a
27882 matching nickname in your addressbook, or failing that, by simply adding
27883 your own domain to the name entered.  So if your address is
27884 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
27885 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
27886 that into &quot;fred@example.com&quot;.<P>
27888 There are situations where it is not desirable for Alpine to interpret such
27889 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
27890 turned out to be a typo (intended to be an addressbook nickname), but
27891 there actually was a &quot;fred&quot; in your local domain, the message might 
27892 be mis-delivered without your realizing it.  In order to reduce the likelihood
27893 of such accidents, setting this feature will cause Alpine to treat such
27894 addresses as errors, and require that you explicitly enter the full local
27895 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
27896 matches an address book nickname.<P>
27898 Consider this a safety feature against mis-directed mail.
27900 <UL>   
27901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27902 </UL><P>
27903 &lt;End of help on this topic&gt;
27904 </BODY>
27905 </HTML>
27906 ====== h_config_quell_local_lookup ======
27907 <HTML>
27908 <HEAD>
27909 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
27910 </HEAD>
27911 <BODY>
27912 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
27914 This feature controls an aspect of Alpine's Composer, and if needed, will
27915 usually be set by your system manager in Alpine's system-wide configuration
27916 file. Specifically, if this feature is set, Alpine will not attempt to look
27917 in the system password file to find a Full Name for the entered address.
27919 Normally, names you enter into address fields (e.g. To: or Cc:) are
27920 checked against your address book(s) to see if they match an address book
27921 nickname.  Failing that, (in Unix Alpine) the name is then checked against
27922 the Unix password file.  If the entered name matches a username in the
27923 system password file, Alpine extracts the corresponding Full Name information
27924 for that individual, and adds that to the address being entered.
27926 However, password file matching can have surprising (incorrect) results if
27927 other users of the system do not receive mail at the domain you are using.
27928 That is, if either the 
27929 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
27930 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
27931 option
27932 is set such that the administrative domain of other users on the system
27933 isn't accurately reflected, Alpine should be told that a passwd file match
27934 is coincidental, and Full Name info will be incorrect.  For example, a
27935 personal name from the password file could get falsely paired with the
27936 entered name as it is turned into an address in the configured domain.
27938 If you are seeing this behavior, enabling this feature will prevent Unix
27939 Alpine from looking up names in the password file to find the Full Name
27940 for incomplete addresses you enter.<P>
27941 <UL>
27942 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27943 </UL>
27945 &lt;End of help on this topic&gt;
27946 </BODY>
27947 </HTML>
27948 ====== h_config_tab_checks_recent ======
27949 <HTML>
27950 <HEAD>
27951 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
27952 </HEAD>
27953 <BODY>
27954 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
27956 In a FOLDER LIST screen, the TAB key usually just changes which
27957 folder is highlighted.
27958 If this feature is set, then the TAB key will cause the number of
27959 recent messages and the total number of messages in the highlighted folder
27960 to be displayed instead.
27963 &lt;End of help on this topic&gt;
27964 </BODY>
27965 </HTML>
27966 ====== h_config_maildrops_preserve_state ======
27967 <HTML>
27968 <HEAD>
27969 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
27970 </HEAD>
27971 <BODY>
27972 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
27974 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
27975 Normally, when mail is moved from a Mail Drop folder to a destination
27976 folder, it is delivered as new mail.
27977 Any Seen/New, Answered, Important/Flagged state that has changed will be
27978 ignored.
27979 All of the mail will be considered unSeen, unAnswered, and unImportant after
27980 it is moved.
27982 If this feature is set, then the state changes that have been made
27983 to the messages in the Mail Drop folder will be preserved.
27985 In any case, messages that are already marked Deleted when the
27986 mail is to be moved from the Mail Drop will be ignored.
27988 &lt;End of help on this topic&gt;
27989 </BODY>
27990 </HTML>
27991 ====== h_config_preopen_stayopens ======
27992 <HTML>
27993 <HEAD>
27994 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
27995 </HEAD>
27996 <BODY>
27997 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
27999 This feature is related to the option
28000 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28001 Normally, Stay Open folders are only opened on demand, when the user
28002 asks to open them.
28003 From then on they are kept open for the duration of the session.
28004 However, if this feature is set, then the Stay Open folders will all be
28005 opened at startup, at the same time that the INBOX is opened.
28008 &lt;End of help on this topic&gt;
28009 </BODY>
28010 </HTML>
28011 ====== h_config_expunge_inbox ======
28012 <HTML>
28013 <HEAD>
28014 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
28015 </HEAD>
28016 <BODY>
28017 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
28019 The INBOX is normally treated differently from regular folders in several
28020 ways.
28021 One of the differences is that the normal &quot;close&quot; sequence of
28022 events is deferred until Alpine is exited, instead of happening when you
28023 leave the INBOX to view another folder.
28024 The &quot;close&quot; sequence normally includes the Expunging
28025 of deleted messages
28026 (either automatically or after a prompt, controlled by the features
28027 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28028 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28029 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28030 handling of the
28031 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
28034 If this feature is set the &quot;close&quot; sequence handling will take
28035 place every time you leave the INBOX.
28036 The INBOX will still be kept open, but the offer to Expunge and the archiving
28037 to the <!--#echo var="VAR_read-message-folder"-->
28038 will take place each time you leave the INBOX instead of only once at the
28039 end of the session.
28042 &lt;End of help on this topic&gt;
28043 </BODY>
28044 </HTML>
28045 ====== h_config_expunge_stayopens ======
28046 <HTML>
28047 <HEAD>
28048 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28049 </HEAD>
28050 <BODY>
28051 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28053 This feature is related to the option
28054 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28055 Stay Open folders are treated differently from regular folders in several
28056 ways.
28057 One of the differences is that the normal &quot;close&quot; sequence of
28058 events is deferred until Alpine is exited, instead of happening when you
28059 leave the folder to view another folder.
28060 The &quot;close&quot; sequence normally includes the Expunging
28061 of deleted messages
28062 (either automatically or after a prompt, controlled by the features
28063 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28064 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28065 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28066 handling of
28067 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28070 If this feature is set the &quot;close&quot; sequence handling will take
28071 place when you leave the Stay Open folder.
28072 The folder will still be kept open, but the offer to Expunge and the archiving
28073 will take place each time you leave the folder instead of only once at the
28074 end of the session.
28075 This feature does not affect the INBOX, which will still only be processed
28076 when you exit Alpine.
28077 However, there is a similar feature that affects only the INBOX called
28078 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28081 &lt;End of help on this topic&gt;
28082 </BODY>
28083 </HTML>
28084 ====== h_config_preserve_start_stop ======
28085 <HTML>
28086 <HEAD>
28087 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28088 </HEAD>
28089 <BODY>
28090 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28092 This feature controls how special control key characters, typically
28093 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28094 are known as the "stop" and "start" characters and are sometimes used in
28095 communications paths to control data flow between devices that operate at
28096 different speeds.
28100 By default, Alpine turns the system's handling of these special characters
28101 off except during printing.  However, if you see Alpine reporting input errors
28102 such as:
28104 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28106 and, at the same time, see your display become garbled, then it is likely
28107 that setting this option will solve the problem.  Be aware, though, that
28108 enabling this feature will also cause Alpine to ostensibly "hang" 
28109 whenever the Ctrl-S key combination is entered as the system is now
28110 interpreting such input as a "stop output" command.  To "start
28111 output"  again, simply type Ctrl-Q. 
28113 &lt;End of help on this topic&gt;
28114 </BODY>
28115 </HTML>
28116 ====== h_config_enable_incoming ======
28117 <HTML>
28118 <HEAD>
28119 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28120 </HEAD>
28121 <BODY>
28122 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28124 Alpine's Incoming Message Folders collection
28125 provides a convenient way to access multiple incoming folders.
28126 It is also useful if you have accounts on multiple computers.
28129 If set, this feature defines a pseudo-folder collection called
28130 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28131 in this collection will be your INBOX, which will no longer show up in
28132 your Default folder collection.
28135 You may add more folders to the Incoming Message Folders collection by
28136 using the
28137 <!--chtml if pinemode="function_key"-->
28138 &quot;F10
28139 <!--chtml else-->
28140 &quot;A
28141 <!--chtml endif-->
28142 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28143 the host the folder is stored on (which defaults to the same host used
28144 for your INBOX), a nickname, and the actual folder name.  Once a set
28145 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28146 or MESSAGE TEXT screens) may be used to scan the folders for those
28147 with Recent messages.  If you add more folders to
28148 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28149 no effect.
28151 NOTE: Normally the software that actually delivers mail (the stuff that happens
28152 before Alpine is involved) is in a better position to do delivery filtering
28153 than is Alpine itself.
28154 If possible, you may want to look at programs such as
28155 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28156 filtering programs.
28157 If you'd prefer to have Alpine do the filtering for you, you may set that
28159 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28161 <UL>   
28162 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28163 </UL><P>
28164 &lt;End of help on this topic&gt;
28165 </BODY>
28166 </HTML>
28167 ====== h_config_enable_incoming_checking ======
28168 <HTML>
28169 <HEAD>
28170 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28171 </HEAD>
28172 <BODY>
28173 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28175 This feature is only operational if you have enabled the optional
28176 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28177 If you do have Incoming Message Folders and you also set this feature,
28178 then the number of Unseen messages in each folder will be displayed
28179 in the FOLDER LIST screen for the Incoming Message Folders.
28180 The number of Unseen messages in a folder will be displayed in parentheses
28181 to the right of the name of each folder.
28182 If there are no Unseen messages in a folder then only the name
28183 is displayed, not a set of parentheses with zero inside them.
28184 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28185 the Incoming Message Folders to cause an immediate update.
28187 If a check for Unseen messages fails for a particular folder then Alpine
28188 will no longer attempt to check that folder for the duration of the
28189 session and this will be indicated by a question mark inside the
28190 parentheses.
28192 The features
28193 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28194 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28195 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28196 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28197 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28198 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28199 all affect how this feature behaves.
28201 <UL>   
28202 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28203 </UL><P>
28204 &lt;End of help on this topic&gt;
28205 </BODY>
28206 </HTML>
28207 ====== h_config_incoming_checking_total ======
28208 <HTML>
28209 <HEAD>
28210 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28211 </HEAD>
28212 <BODY>
28213 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28215 This option has no effect unless the feature
28216 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28217 is set, which in turn has no effect unless
28218 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28219 is set.
28221 When incoming folder checking is turned on the default is to display
28222 the number of unseen messages in each folder.
28223 More precisely, it is the number of undeleted unseen messages.
28224 Using this option you may also display the total number of messages
28225 in each folder.
28226 Instead of a single number representing the number of unseen messages
28227 you will get two numbers separated by a slash character.
28228 The first is the number of unseen messages and the second is the
28229 total number of messages.
28231 You may also use the recent message count instead of the unseen message
28232 count by turning on the feature
28233 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
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>
28241 ====== h_config_incoming_checking_recent ======
28242 <HTML>
28243 <HEAD>
28244 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28245 </HEAD>
28246 <BODY>
28247 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28249 This option has no effect unless the feature
28250 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28251 is set, which in turn has no effect unless
28252 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28253 is set.
28255 When incoming folder checking is turned on the default is to display
28256 the number of unseen messages in each folder.
28257 More precisely, it is the number of undeleted unseen messages.
28258 Using this option you may display the number of recent messages instead
28259 of the number of unseen messages.
28260 A message is only counted as recent if this is the first session to
28261 see it, so the recent count might be less than the unseen count.
28262 The difference between the two would be accounted for by the unseen messages
28263 in the folder which were there previously but have not been looked at yet.
28265 If you simultaneously run more than one email client at a time
28266 (for example, you run more than one Alpine in parallel) then turning
28267 this feature on can cause some confusion.
28268 The confusion stems from the fact that each message is only considered to be
28269 recent in one session.
28270 That means that the counts of new messages may be different in the two
28271 Alpines running side by side, because each incoming message will only be
28272 counted as recent in one of the two sessions.
28274 You may also display the total number of messages
28275 in each folder by using the
28276 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28277 option.
28279 <UL>   
28280 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28281 </UL><P>
28282 &lt;End of help on this topic&gt;
28283 </BODY>
28284 </HTML>
28285 ====== h_config_attach_in_reply ======
28286 <HTML>
28287 <HEAD>
28288 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28289 </HEAD>
28290 <BODY>
28291 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28293 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28294 attachments that were part of the original message will automatically be
28295 included in the Reply.
28297 &lt;End of help on this topic&gt;
28298 </BODY>
28299 </HTML>
28300 ====== h_config_include_header =====
28301 <HTML>
28302 <HEAD>
28303 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28304 </HEAD>
28305 <BODY>
28306 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28308 This feature controls an aspect of Alpine's Reply command. If set, and the
28309 original message is being included in the reply, then headers from that
28310 message will also be part of the reply.
28312 &lt;End of help on this topic&gt;
28313 </HEAD>
28314 </HTML>
28315 ====== h_config_sig_at_bottom =====
28316 <HTML>
28317 <HEAD>        
28318 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28319 </HEAD>
28320 <BODY>
28321 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28323 This feature controls an aspect of Alpine's Reply command.  If this feature
28324 is set, and the original message is being included in the reply, then the
28325 contents of your signature file (if any) will be inserted after the included
28326 message.
28328 This feature does not affect the results of a Forward command.
28330 &lt;End of help on this topic&gt;
28331 </BODY>
28332 </HTML>
28333 ====== h_config_sigdashes =====
28334 <HTML>
28335 <HEAD>
28336 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
28337 </HEAD>
28338 <BODY>
28339 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
28341 This feature enables support for the common USENET news convention 
28342 of preceding a message signature with the special line consisting of 
28343 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
28346 When enabled and a
28347 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
28348 Alpine will insert the special line before including the file's text (unless
28349 the special line already exists somewhere in the file's text).
28352 In addition, when you Reply or Followup to a message containing one of
28353 these special lines and choose to include its text, Alpine will observe
28354 the convention of not including text beyond the special line in your
28355 reply.
28356 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28357 mode is enabled and turned on, then Alpine <EM>will</EM>
28358 include the text beyond the special line regardless of the setting of
28359 this feature.
28362 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
28363 for a related feature.
28366 <UL>   
28367 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28368 </UL><P>
28369 &lt;End of help on this topic&gt;
28370 </BODY>
28371 </HTML>
28372 ====== h_config_new_thread_blank_subject =====
28373 <HTML>
28374 <HEAD>
28375 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
28376 </HEAD>
28377 <BODY>
28378 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
28380 When this feature is enabled (the default) Alpine will create a new thread
28381 every time that the subject line becomes empty at any time during composition.
28384 This behavior is particularly useful in case you are replying to a message.
28385 Replying to a message causes the message to be in the same thread than the
28386 original message that is being replied to. However, many authors want to create
28387 a new message (in a different thread) while replying to a message, and they do
28388 this by changing the full subject, by first deleting the original subject and
28389 typing the new subject of the current message.
28392 Enabling this feature causes that any time that the subject is deleted, the 
28393 message being composed will be considered the first message of a new thread.
28396 <UL>   
28397 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28398 </UL><P>
28399 &lt;End of help on this topic&gt;
28400 </BODY>
28401 </HTML>
28402 ====== h_config_strip_sigdashes =====
28403 <HTML>
28404 <HEAD>
28405 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
28406 </HEAD>
28407 <BODY>
28408 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
28410 This feature doesn't do anything if the feature
28411 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
28412 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
28413 then turning on this feature enables support for the convention
28414 of not including text beyond the sigdashes line when Replying or Following
28415 up to a message and including the text of that message.
28416 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28417 mode is enabled and turned on, then Alpine <EM>will</EM>
28418 include the text beyond the special line regardless of the setting of
28419 this feature.
28421 In other words, this is a way to turn on the signature stripping behavior
28422 without also turning on the dashes-adding behavior.
28424 <UL>   
28425 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28426 </UL><P>
28427 &lt;End of help on this topic&gt;
28428 </BODY>
28429 </HTML>
28430 ====== h_config_forward_as_attachment =====
28431 <HTML>
28432 <HEAD>
28433 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28434 </HEAD>
28435 <BODY>
28436 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28438 This feature affects the way forwarded message text is handled.  When set, rather than 
28439 include the text of the forwarded message below any additional text you provide in the
28440 composer, the forwarded message is attached in its entirety to the message you send.
28442 This is useful in that it keeps the text you provide in the composer distinct from the
28443 text of the forwarded message.  Similarly, it allows the recipient to 
28444 conveniently operate on the forwarded message.  For example, they might reply directly to
28445 the sender of the forwarded message, or process it as part of a spam report.
28446 <UL>   
28447 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28448 </UL><P>
28449 &lt;End of help on this topic&gt;
28450 </BODY>
28451 </HTML>
28452 ====== h_config_preserve_field =====
28453 <HTML>
28454 <HEAD>
28455 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28456 </HEAD>
28457 <BODY>
28458 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28460 This feature affects Alpine's behavior when one replies to a message. 
28461 When you receive a message, some or all of the recipients of the message 
28462 have been added to the To: and Cc: fields. If you reply to such message, 
28463 and this feature is disabled, then the original sender of the message is 
28464 added to the To: field, and all other recipients are added to the Cc: 
28465 field, while your address is added to the From: field.
28468 However, if this feature is enabled, then Alpine will preserve the 
28469 original fields as sent in the original message, so the Cc: and To: 
28470 fields will be preserved. The sender's address will be added to the To: 
28471 field, while your address is added to the From: field.
28474 The behavior of this feature is that replies to all messages will behave 
28475 in the way described above. If you only intend this to happen on a per 
28476 message basis, then keep this feature disabled, and when replying to a 
28477 message you will see a new option in the menu for the &quot;Reply to all 
28478 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28479 make Alpine toggle its question so you can preserve the To: and Cc: 
28480 fields for that message only.
28482 <UL>   
28483 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28484 </UL><P>
28485 &lt;End of help on this topic&gt;
28486 </BODY>
28487 </HTML>
28488 ====== h_config_sub_lists =====
28489 <HTML>
28490 <HEAD>
28491 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28492 </HEAD>
28493 <BODY>
28494 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28496 This feature affects the subcommands available when Saving, 
28497 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28498 available. This command allows you to type in a substring of the folder
28499 you are looking for and when you type ^X it will display all folders
28500 that contain that substring in their names.
28501 This feature is set by default.
28504 &lt;End of help on this topic&gt;
28505 </BODY>
28506 </HTML>
28507 ====== h_config_scramble_message_id =====
28508 <HTML>
28509 <HEAD>
28510 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28511 </HEAD>
28512 <BODY>
28513 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28515 Normally the Message-ID header that Alpine generates when sending a message
28516 contains the name of the computer from which the message is being sent.
28517 Some believe that this hostname could be used by spammers or could
28518 be used by others for nefarious purposes.
28519 If this feature is set, that name will be transformed with a simple
28520 Rot13 transformation.
28521 The result will still have the correct syntax for a Message-ID but the
28522 part of the MessageID that is often a domain name will not be an actual
28523 domain name because the letters will be scrambled.
28525 In addition, other information such as the name program, version, and
28526 a code for operating system used to build Alpine, will be encoded using
28527 the Rot13 transformation, except for the version number which will be
28528 encoded using a Rot5 transformation.
28530 It is possible (but unlikely?) that some spam detection
28531 software will use that as a reason to reject the mail as spam.
28532 It has also been reported that some spam detection software uses the
28533 fact that there are no dots after the &quot;@&quot; as a reason to reject
28534 messages.
28535 If your PC-Alpine Message-ID is using a name without a dot that is because
28536 that is what Windows thinks is your &quot;Full computer name&quot;.
28537 The method used to set this varies from one type of Windows to another but
28538 check under Settings -> Control Panel -> System and
28539 look for Network Identification or Computer Name or something similar.
28540 How to set it is beyond the scope of Alpine.
28543 &lt;End of help on this topic&gt;
28544 </BODY>
28545 </HTML>
28546 ====== h_downgrade_multipart_to_text =====
28547 <HTML>
28548 <HEAD>
28549 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28550 </HEAD>
28551 <BODY>
28552 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28555 This feature affects Alpine's behavior when sending mail.  Internet
28556 standards require Alpine to translate all non-ASCII characters in
28557 messages that it sends using MIME encoding.  This encoding can be
28558 ostensibly broken for recipients if any agent between Alpine and the
28559 recipient, such as an email list expander, appends text to the
28560 message, such as list information or advertising.  When sending such
28561 messages Alpine attempts to protect such encoding by placing extra
28562 MIME boundaries around the message text.
28564 These extra boundaries are invisible to recipients that 
28565 use MIME-aware email programs (the vast majority).  However, if
28566 you correspond with users of email programs that are not MIME-aware,
28567 or do not handle the extra boundaries gracefully, you can
28568 use this feature to prevent Alpine from including the extra
28569 MIME information.  Of course, it will increase the likelihood
28570 that non-ASCII text you send may appear corrupt to the recipient.
28572 &lt;End of help on this topic&gt;
28573 </BODY>
28574 </HTML>
28575 ====== h_config_show_sort =====
28576 <HTML>
28577 <HEAD>
28578 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28579 </HEAD>
28580 <BODY>
28581 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28583 If this feature is set and there is sufficient space on the screen,
28584 a short indication of the current sort order will be
28585 added in the titlebar (the top line on the screen), before the name
28586 of the folder.
28587 For example, with the default Arrival sort in effect,
28588 the display would have the characters
28590 <P><CENTER>[A]</CENTER><P>
28592 added between the title of the screen and the folder name.
28593 The letters are the same as the letters you may type to manually
28594 sort a folder with the SortIndex command ($).
28595 The letters in the table below are the ones that may show
28596 up in the titlebar line.
28598 <TABLE>   
28599 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28600 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28601 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28602 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28603 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28604 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28605 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28606 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28607 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28608 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28609 </TABLE>
28611 If the sort order is Reversed, the letter above will be preceded by the letter
28612 &quot;R&quot;, for example
28614 <P><CENTER>[RS]</CENTER><P>
28616 means that a Reverse Subject sort is in effect.
28617 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28618 left out, and just an &quot;R&quot; is shown.
28620 <P><CENTER>[R]</CENTER>
28623 &lt;End of help on this topic&gt;
28624 </BODY>
28625 </HTML>
28626 ====== h_config_disable_reset_disp =====
28627 <HTML>
28628 <HEAD>
28629 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28630 </HEAD>
28631 <BODY>
28632 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28634 UNIX Alpine only.
28636 This feature affects Alpine's behavior when using
28637 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28638 Normally, before the display filter is run, the terminal mode is reset
28639 to what it was before you started Alpine.
28640 This may be necessary if the filter requires the use of the terminal.
28641 For example, it may need to interact with you.
28642 If you set this feature, then the terminal mode will not be reset.
28643 One thing that turning on this feature should fix is the coloring of
28644 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28645 breaks because the terminal reset resets the color state of the terminal.
28648 &lt;End of help on this topic&gt;
28649 </BODY>
28650 </HTML>
28651 ====== h_config_disable_sender =====
28652 <HTML>
28653 <HEAD>
28654 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28655 </HEAD>
28656 <BODY>
28657 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
28659 This feature affects Alpine's generation of the &quot;Sender:&quot; or
28660 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
28661 header fields.
28662 By default, Alpine will generate such a header in situations where the
28663 username or domain are not the same as
28664 the &quot;From:&quot; header on the message.
28665 With this feature set,
28666 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
28667 This may be desirable on a system that is virtually hosting many domains,
28668 and the sysadmin has other methods available for tracking a message to
28669 its originator.
28671 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
28674 &lt;End of help on this topic&gt;
28675 </BODY>
28676 </HTML>
28677 ====== h_config_use_sender_not_x =====
28678 <HTML>
28679 <HEAD>
28680 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
28681 </HEAD>
28682 <BODY>
28683 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
28685 Normally Alpine adds a header line
28686 labeled &quot;X-X-Sender&quot;, if the sender is
28687 different from the From: line.
28688 The standard specifies that this header
28689 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
28690 Setting this feature causes
28691 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
28693 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
28696 &lt;End of help on this topic&gt;
28697 </BODY>
28698 </HTML>
28699 ====== h_config_use_fk =====
28700 <HTML>
28701 <HEAD>
28702 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
28703 </HEAD>
28704 <BODY>
28705 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
28707 This feature specifies that Alpine will respond to function keys instead of
28708 the normal single-letter commands. In this mode, the key menus at the
28709 bottom of each screen will show function key designations instead of the
28710 normal mnemonic key.
28713 &lt;End of help on this topic&gt;
28714 </BODY>
28715 </HTML>
28716 ====== h_config_cancel_confirm =====
28717 <HTML>
28718 <HEAD>
28719 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
28720 </HEAD>
28721 <BODY>
28722 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
28724 This feature affects what happens when you type ^C to cancel a composition.
28725 By default, if you attempt to cancel a composition by typing ^C, you will be
28726 asked to confirm the cancellation by typing a &quot;C&quot;
28727 for <EM>C</EM>onfirm.
28728 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
28729 risky because the &quot;^C Y&quot; needed to cancel a message
28730 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
28732 If this feature is set the confirmation asked for
28733 will be a &quot;<EM>Y</EM>es&quot;
28734 instead of a &quot;<EM>C</EM>onfirm&quot; response.
28737 &lt;End of help on this topic&gt;
28738 </BODY>
28739 </HTML>
28740 ====== h_config_compose_maps_del =====
28741 <HTML>
28742 <HEAD>
28743 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
28744 </HEAD>
28745 <BODY>
28746 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
28748 This feature affects the behavior of the DELETE key.
28749 If set, Delete will be equivalent to ^D, and delete
28750 the current character.  Normally Alpine defines the Delete key
28751 to be equivalent to ^H, which deletes the <EM>previous</EM>
28752 character.
28755 &lt;End of help on this topic&gt;
28756 </BODY>
28757 </HTML>
28758 ====== h_config_compose_bg_post =====
28759 <HTML>
28760 <HEAD>
28761 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
28762 </HEAD>
28763 <BODY>
28764 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
28766 This feature affects the behavior of Alpine's mail sending.  If set, this
28767 feature enables a subcommand in the composer's "Send?" confirmation
28768 prompt.  The subcommand allows you to tell Alpine to handle the actual
28769 posting in the background.  While this feature usually allows posting
28770 to appear to happen very fast, it has no affect on the actual delivery
28771 time it takes a message to arrive at its destination.
28774 Please Note:
28775 <OL>
28776  <LI>This feature will have no effect if the feature
28777        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
28778        is set.
28779  <LI>This feature isn't supported on all systems.  All DOS and Windows,
28780        as well as several Unix ports, do not recognize this feature.
28781  <LI>Error handling is significantly different when this feature is
28782         enabled.  Any message posting failure results in the message
28783         being appended to your &quot;Interrupted&quot; mail folder.  When you
28784         type the <A HREF="h_common_compose">C</A>ompose command,
28785         Alpine will notice this folder and
28786         offer to extract any messages contained.  Upon continuing a 
28787         failed message, Alpine will display the nature of the failure 
28788         in the status message line.
28789  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
28790         for message data to
28791         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
28792         if you typically run close to any sort of disk-space limits or quotas.
28793 </OL>
28795 &lt;End of help on this topic&gt;
28796 </BODY>
28797 </HTML>
28798 ====== h_config_compose_dsn =====
28799 <HTML>
28800 <HEAD>
28801 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
28802 </HEAD>
28803 <BODY>
28804 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
28806 This feature affects the behavior of Alpine's mail sending.  If set, this
28807 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
28808 prompt.  The subcommand allows you to tell Alpine to request the type of
28809 Delivery Status Notification (DSN) that you would like.  Most users will
28810 be happy with the default, and need not enable this feature.
28812 If the feature
28813 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28814 then this feature has no effect and the type of DSN is not selectable.
28817 Turning on this feature and then turning on the DSNOpts from the send
28818 prompt reveals four on-off toggles at the bottom of the screen.
28819 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
28820 that no notification be returned to you, even if there is a delivery
28821 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
28822 server that you are willing (or not) to receive delay notifications, which
28823 happen when there is an unusual delay at some mail server (in that mail
28824 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
28825 Success requests that you be sent a DSN message when the message is
28826 successfully delivered to the recipients mailbox.  Setting NoErrRets will
28827 automatically turn off Delay and Success notification, and will flip the
28828 toggles to show that.  Similarly, turning on Delay and/or Success will
28829 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
28830 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
28831 the full message be returned in any failed DSN.  RetHdrs requests that
28832 only the headers be returned in any failed DSN.  Notice that this command
28833 applies only to failed delivery status reports.  For delay or success
28834 reports, the full message is never returned, only the headers are returned.
28837 If you don't enable the DSN feature or if you don't turn it on for a
28838 particular message, the default is that you will be notified about failures,
28839 you might be notified about delays, and you won't be notified about
28840 successes.  You will usually receive the full message back when there is
28841 a failure.
28844 If you turn on the DSNOpts the default is to return as much information as
28845 possible to you.  That is, by default, the Success and Delay options are
28846 turned on and the full message will be returned on failure.
28849 The sending prompt will display the current DSN request (if any) in a
28850 shorthand form.  It will be:
28852 <P><CENTER>[Never]</CENTER>
28855 if you have requested NoErrRets.  Otherwise, it will look something like:
28857 <P><CENTER>[FDS-Hdrs]</CENTER>
28860 The &quot;F&quot; will always be there, indicating that you will be notified
28861 of failures.  (Alpine doesn't provide a way to request no failure notification
28862 and at the same time request either success or delay notification.  The only
28863 way to request no failure notifications is to request no notifications at
28864 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
28865 requested Delay and/or Success notification.  If one of those is missing,
28866 that means you are requesting no notification of the corresponding type.
28867 After the dash it will say either Hdrs or Full.  Hdrs means to return only
28868 the headers and Full means to return the full message (applies to
28869 failure notifications only).
28872 NOTE: This feature relies on your system's mail transport agent or
28873 configured
28874 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
28875 having the negotiation mechanism introduced in
28876 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
28877 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
28878 are using doesn't support DSN, a short warning will be shown to you on
28879 the message line at the bottom of the screen after you send your message,
28880 but your message will have been sent anyway.
28883 Note that DSNs don't provide a mechanism to request read receipts.  That
28884 is, if you request notification on success you are notified when the
28885 message is delivered to the mailbox, not when the message is read.
28888 ESMTP allows for graceful migration to upgraded mail transfer agents, but
28889 it is possible that this feature might cause problems for some servers. 
28892 &lt;End of help on this topic&gt;
28893 </BODY>
28894 </HTML>
28895 ====== h_config_auto_zoom =====
28896 <HTML>
28897 <HEAD>
28898 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
28899 </HEAD>
28900 <BODY>
28901 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
28903 This feature affects the behavior of the Select command.
28904 If set, the select command will automatically perform a zoom
28905 after the select is complete.
28906 This feature is set by default.
28908 Some related help topics are
28909 <UL>
28910 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28911 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28912 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28913 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28914 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28915 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28916 </UL>
28919 &lt;End of help on this topic&gt;
28920 </BODY>
28921 </HTML>
28922 ====== h_config_auto_unzoom =====
28923 <HTML>
28924 <HEAD>
28925 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
28926 </HEAD>
28927 <BODY>
28928 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
28930 This feature affects the behavior of the Apply command.  If set, and if
28931 you are currently looking at a Zoomed Index view of selected messages,
28932 the Apply command will do the operation you specify, but then will
28933 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
28934 the normal Index view after the Apply. 
28935 This feature is set by default.
28938 Some related help topics are
28939 <UL>
28940 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28941 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28942 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28943 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28944 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28945 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28946 </UL>
28948 &lt;End of help on this topic&gt;
28949 </BODY>
28950 </HTML>
28951 ====== h_config_auto_unselect =====
28952 <HTML>
28953 <HEAD>
28954 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
28955 </HEAD>
28956 <BODY>
28957 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
28959 This feature affects the behavior of the Apply command.  If set,
28960 the Apply command will do the operation you specify, but then will
28961 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
28962 the normal Index view after the Apply. 
28965 Some related help topics are
28966 <UL>
28967 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28968 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28969 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28970 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28971 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28972 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28973 </UL>
28975 &lt;End of help on this topic&gt;
28976 </BODY>
28977 </HTML>
28978 ====== h_config_fast_recent =====
28979 <HTML>
28980 <HEAD>
28981 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
28982 </HEAD>
28983 <BODY>
28984 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
28986 This feature controls the behavior of the TAB key when traversing folders
28987 in the optional 
28988 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
28989 collection or in optional <!--#echo var="VAR_news-collections"-->.
28992 When the TAB
28993 (<A HREF="h_common_nextnew">NextNew</A>)
28994 key is pressed, the default behavior is to
28995 explicitly examine the status of the folder for the number of recent
28996 messages (messages delivered since the last time it was viewed).
28997 Depending on the size and number of messages in the folder, this test
28998 can be time consuming.
29001 Enabling this feature will cause Alpine to only test for the existence of
29002 any recent messages rather than to obtain the count.  This is much faster
29003 in many cases.  The downside is that you're not given the number of recent
29004 messages when prompted to view the next folder.
29005 If the feature
29006 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
29007 is turned on, then the present feature will have no effect.
29010 <UL>   
29011 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29012 </UL><P>
29013 &lt;End of help on this topic&gt;
29014 </BODY>
29015 </HTML>
29016 ====== h_config_arrow_nav =====
29017 <HTML>
29018 <HEAD>
29019 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
29020 </HEAD>
29021 <BODY>
29022 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
29024 This feature controls the behavior of the left and right arrow keys.
29025 If set, the left and right arrow keys will operate like the usual
29026 navigation keys &lt; and &gt;.
29027 This feature is set by default.
29030 If you set this feature, and do not like the changed behavior of the up/down 
29031 arrow 
29032 keys when navigating through the FOLDER LIST screen -- 
29033 <B>first</B> from column to column, if more than one folder is 
29034 displayed per row, 
29035 and <B>then</B> from row to row -- you may either also wish to set the feature 
29036 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29037 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29038 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29039 folders in each column.
29041 <UL>   
29042 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29043 </UL><P>
29044 &lt;End of help on this topic&gt;
29045 </BODY>
29046 </HTML>
29047 ====== h_config_relaxed_arrow_nav =====
29048 <HTML>
29049 <HEAD>
29050 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29051 </HEAD>
29052 <BODY>
29053 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29055 This feature controls the behavior of the left, right, up and down
29056 arrow keys in the FOLDER LIST screen when the &quot;<A
29057 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29058 set.
29059 This feature is set by default.
29063 When this feature is set, the left and right
29064 arrow keys in the FOLDER LIST screen
29065 move the highlight bar to the left or right, and the up and
29066 down arrows move it up or down.
29069 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29070 feature is not set;
29071 the left and right arrow keys in the Folder List screen strictly
29072 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29073 and down arrow keys move the highlight bar to the previous and next
29074 folder or directory name.
29077 <UL>   
29078 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29079 </UL><P>
29080 &lt;End of help on this topic&gt;
29081 </BODY>
29082 </HTML>
29083 ====== h_config_alt_compose_menu =====
29084 <HTML>
29085 <HEAD>
29086 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29087 </HEAD>
29088 <BODY>
29089 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29091 This feature controls the menu that is displayed when Compose is selected.
29092 If set, a list of options will be presented, with each option representing
29093 the type of composition that could be used. This feature is most useful for
29094 users who want to avoid being prompted with each option separately, or who
29095 want to avoid the checking of remote postponed or form letter folders.
29096 The possible types of composition are:
29099 New, for starting a new composition. Note that if New is selected and roles
29100 are set, roles are checked for matches and applied according to the setting
29101 of the matching role.
29104 Interrupted, for continuing an interrupted composition. This option is only
29105 offered if an interrupted message folder is detected.
29108 Postponed, for continuing postponed compositions. This option is offered
29109 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29110 the postponed folder actually exists. This option is especially handy
29111 for avoiding having to check for the existence of a remote postponed folder.
29114 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29115 is set in the config, and is not checked for existence for reasons similar
29116 to those explained by the postponed option.
29119 setRole, for selecting a role to apply to a composition.
29122 &lt;End of help on this topic&gt;
29123 </BODY>
29124 </HTML>
29125 ====== h_config_alt_role_menu =====
29126 <HTML>
29127 <HEAD>
29128 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29129 </HEAD>
29130 <BODY>
29131 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29133 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29134 a role and compose a new message using that role.
29135 When this feature is set, the role command will first ask whether you want to
29136 Compose a new message, Forward the current message, Reply to the
29137 current message, or Bounce the current message.
29138 If you are not in the MESSAGE INDEX and are not viewing a message,
29139 then there is no current message and the question will be skipped.
29140 After you have chosen to Compose, Forward, Reply, or Bounce you will
29141 then choose the role to be used.
29143 When Bouncing the &quot;Set From&quot; address is used for the
29144 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29145 provided that the option
29146 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29147 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29148 set.
29149 Other actions of the role are ignored when Bouncing.
29152 &lt;End of help on this topic&gt;
29153 </BODY>
29154 </HTML>
29155 ====== h_config_always_spell_check =====
29156 <HTML>
29157 <HEAD>
29158 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29159 </HEAD>
29160 <BODY>
29161 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29163 When this feature is set, every composed message will be spell-checked before
29164 being sent.
29166 &lt;End of help on this topic&gt;
29167 </BODY>
29168 </HTML>
29169 ====== h_config_quell_asterisks =====
29170 <HTML>
29171 <HEAD>
29172 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29173 </HEAD>
29174 <BODY>
29175 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29177 When you are running Alpine you will sometimes be asked for a password
29178 in a prompt on the third line from the bottom of the screen.
29179 Normally each password character you type will cause an asterisk to echo
29180 on the screen. That gives you some feedback to know that your typing is
29181 being recognized.
29182 There is a very slight security risk in doing it this way because someone
29183 watching over your shoulder might be able to see how many characters there
29184 are in your password.
29185 If you'd like to suppress the echoing of the asterisks set this feature.
29187 &lt;End of help on this topic&gt;
29188 </BODY>
29189 </HTML>
29190 ====== h_config_quell_flowed_text =====
29191 <HTML>
29192 <HEAD>
29193 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29194 </HEAD>
29195 <BODY>
29196 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29198 Alpine generates flowed text where possible.
29199 The method for generating flowed text is defined by
29200 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29201 the benefit of doing so is
29202 to send message text that can properly be viewed both on normal width displays
29203 and on displays with smaller or larger than normal screen widths.
29204 With flowed text, a space at the end of a line tells the receiving mail
29205 client that the following line belongs to the same paragraph.
29206 Quoted text will also be affected, with only the innermost
29207 level of &quot;&gt;&quot; quoting being followed by a space.
29208 However, if you have changed the
29209 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29210 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29211 quoted text will not be flowed.
29212 For this reason, we recommend that you leave your
29213 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29215 This feature turns off the generation of flowed text, as it might be
29216 desired to more tightly control how a message is displayed on the receiving end.
29218 If this feature is <EM>not</EM> set, you can control on a message by message
29219 basis whether or not flowed text is generated.
29220 You do this by typing ^V at the Send confirmation prompt that you get
29221 after typing ^X to send a message.
29222 ^V is a toggle that turns flowing off and back on if typed again.
29223 If for some reason flowing cannot be done on a particular message, then the
29224 ^V command will not be available.
29225 This would be the case, for example, if this feature was set, or if your
29226 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29227 If the feature
29228 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29229 then the opportunity to control on a message by message basis
29230 whether or not flowed text is generated is lost.
29232 When this feature is not set and you have typed ^V to turn off flowing,
29233 the Send confirmation prompt will change to look like
29235 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29237 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29238 also turn off the sending of flowed text messages, but it differs in that
29239 it also trims all trailing white space from a message before sending it.
29241 If alternate editors are used extensively, be aware that a message will still
29242 be sent flowed if this feature is unset.  In most cases this will be fine,
29243 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29244 use that.
29246 &lt;End of help on this topic&gt;
29247 </BODY>
29248 </HTML>
29249 ====== h_config_strip_ws_before_send =====
29250 <HTML>
29251 <HEAD>
29252 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29253 </HEAD>
29254 <BODY>
29255 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29257 By default, trailing whitespace is not stripped from
29258 a message before sending.  Trailing whitespace should have no effect on an
29259 email message, and in flowed text can aid in delimiting paragraphs.
29260 However, the old behavior of stripping trailing whitespace was in place
29261 to better deal with older clients that couldn't handle certain types of
29262 text encodings.  This feature restores the old behavior
29264 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29265 generated by default but can be turned off via the
29266 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29267 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29268 of flowed text.
29270 &lt;End of help on this topic&gt;
29271 </BODY>
29272 </HTML>
29273 ====== h_config_del_from_dot =====
29274 <HTML>
29275 <HEAD>
29276 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
29277 </HEAD>
29278 <BODY>
29279 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
29281 This feature controls the behavior of the Ctrl-K command in the composer.
29282 If set, ^K will cut from the current cursor position to the end of the line,
29283 rather than cutting the entire line.
29286 &lt;End of help on this topic&gt;
29287 </BODY>
29288 </HTML>
29289 ====== h_config_print_index =====
29290 <HTML>
29291 <HEAD>
29292 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
29293 </HEAD>
29294 <BODY>
29295 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
29297 This feature controls the behavior of the Print command when in the
29298 MESSAGE INDEX screen.  If set, the print command will give you a prompt
29299 asking if you wish to print the message index, or the currently highlighted
29300 message. If not set, the message will be printed.
29303 &lt;End of help on this topic&gt;
29304 </BODY>
29305 </HTML>
29306 ====== h_config_allow_talk =====
29307 <HTML>
29308 <HEAD>
29309 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
29310 </HEAD>
29311 <BODY>
29312 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
29314 UNIX Alpine only.
29316 By default, permission for others to &quot;talk&quot; to your terminal is turned
29317 off when you are running Alpine.  When this feature is set, permission is
29318 instead turned on.  If enabled, you may see unexpected messages in the
29319 middle of your Alpine screen from someone attempting to contact you via the
29320 &quot;talk&quot; program.
29323 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
29324 talk daemon on your system will attempt to print a message on your screen 
29325 when someone else is trying to contact you.  If you wish to see these
29326 messages while you are running Alpine, you should enable this feature.
29329 If you do enable this feature and see a &quot;talk&quot; message, you must 
29330 suspend or quit Alpine before you can respond.
29333 &lt;End of help on this topic&gt;
29334 </BODY>
29335 </HTML>
29336 ====== h_config_send_filter_dflt =====
29337 <HTML>
29338 <HEAD>
29339 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
29340 </HEAD>
29341 <BODY>
29342 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
29343 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
29344 configured, setting this feature will cause
29345 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
29346 instead of unfiltered, the usual default.
29348 <UL>   
29349 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29350 </UL><P>
29351 &lt;End of help on this topic&gt;
29352 </BODY>
29353 </HTML>
29354 ====== h_config_custom_print =====
29355 <HTML>
29356 <HEAD>
29357 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
29358 </HEAD>
29359 <BODY>
29360 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
29362 When this feature is set, the print command will have an additional
29363 subcommand called "C CustomPrint".  If selected, you will have
29364 the opportunity to enter any system print command --instead of being 
29365 restricted to using those that have been previously configured in the 
29366 printer setup menu.
29369 &lt;End of help on this topic&gt;
29370 </BODY>
29371 </HTML>
29372 ====== h_config_enable_dot_files =====
29373 <HTML>
29374 <HEAD>
29375 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
29376 </HEAD>
29377 <BODY>
29378 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
29380 When this feature is set, files beginning with dot (".") will be
29381 visible in the file browser.  For example, you'll be able to select them
29382 when using the browser to add an attachment to a message.
29384 &lt;End of help on this topic&gt;
29385 </BODY>
29386 </HTML>
29387 ====== h_config_enable_dot_folders =====
29388 <HTML>
29389 <HEAD>        
29390 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
29391 </HEAD>
29392 <BODY>
29393 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
29395 When this feature is set, folders beginning with dot (".") may be added
29396 and viewed.
29398 &lt;End of help on this topic&gt;
29399 </BODY>
29400 </HTML>
29401 ====== h_config_ff_between_msgs =====
29402 <HTML>
29403 <HEAD>
29404 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
29405 </HEAD>
29406 <BODY>
29407 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
29409 Setting this feature causes a formfeed to be printed between messages when
29410 printing multiple messages (with Apply Print command).
29412 &lt;End of help on this topic&gt;
29413 </BODY>
29414 </HTML>
29415 ====== h_config_blank_keymenu =====
29416 <HTML>
29417 <HEAD>
29418 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
29419 </HEAD>
29420 <BODY>
29421 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
29423 If this feature is set the command key menu that normally appears on the
29424 bottom two lines of the screen will not usually be there.  Asking for
29425 help with ^G or ? will cause the key menu to appear instead of causing
29426 the help message to come up.  If you want to actually see the help text,
29427 another ^G or ? will show it to you.  After the key menu has popped
29428 up with the help key it will remain there for an O for Other command but
29429 disappear if any other command is typed.
29431 &lt;End of help on this topic&gt;
29432 </BODY>
29433 </HTML>
29434 ====== h_config_enable_mouse =====
29435 <HTML>
29436 <HEAD>
29437 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29438 </HEAD>
29439 <BODY>
29440 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29442 This feature controls whether or not an X terminal mouse can be used with
29443 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29444 being used, the left mouse button on the mouse can be used to select text
29445 or commands.
29446 Clicking on a command at the bottom of the screen will behave as if you had
29447 typed that command.
29448 Clicking on an index line will move the current message highlight to
29449 that line.
29450 Double-clicking on an index line will view the message.
29451 Double-clicking on a link will view the link.
29453 This type of mouse support will also work in some terminal emulators which are
29454 not actually X terminals, but which have extra code to support the xterm
29455 style mouse.
29456 For those emulators you not only need to turn this feature on but you also
29457 have to set the $DISPLAY environment variable even though it isn't needed
29458 for your terminal.
29459 That will cause Alpine to think that it is an xterm and to properly interpret the
29460 escape sequences sent by the mouse.
29462 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29463 also modified.  It is sometimes possible to hold the shift key down while clicking
29464 left or middle mouse buttons for the normal xterm cut/paste operations. 
29465 There is also an Alpine command to toggle this mode on or off.
29466 The command is Ctrl-&#92; (Control-backslash).
29468 &lt;End of help on this topic&gt;
29469 </BODY>
29470 </HTML>
29471 ====== h_config_enable_xterm_newmail =====
29472 <HTML>
29473 <HEAD>        
29474 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29475 </HEAD>
29476 <BODY>
29477 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29479 This feature controls whether or not Alpine will attempt to announce new
29480 mail arrival when it is running in an X terminal window and that window
29481 is iconified.  If set, and the $DISPLAY variable indicates that an X
29482 terminal is being used, Alpine will send appropriate escape sequences to
29483 the X terminal to modify the label on Alpine's icon to indicate that new
29484 mail has arrived. Alpine will also modify the Alpine window's title to
29485 indicate new mail.
29486 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29488 &lt;End of help on this topic&gt;
29489 </BODY></HTML>
29490 ====== h_config_enable_newmail_short_text =====
29491 <HTML>
29492 <HEAD>        
29493 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29494 </HEAD>
29495 <BODY>
29496 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29498 This feature controls the text to be displayed in an icon in the event
29499 of a new message arrival.  Normally, the message will
29500 be the one that is displayed on the screen.  This feature shortens the
29501 message to a count of the number of new messages in brackets.  This may be
29502 more useful for those who use the window's title bar in the task bar as a
29503 new mail indicator.  This feature is only useful if the
29504 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29505 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29506 feature, this feature is only relevant when run in an xterm environment.
29508 &lt;End of help on this topic&gt;
29509 </BODY></HTML>
29510 ====== h_config_copy_to_to_from =====
29511 <HTML>
29512 <HEAD>
29513 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29514 </HEAD>
29515 <BODY>
29516 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29518 This feature affects the From address used when Replying to a message.
29519 It is probably only useful if you have some
29520 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29521 defined.
29522 When enabled, it checks to see if any of the addresses in the To or Cc
29523 fields of the message you are replying to is one of your addresses.
29524 If it is, and there is only one of them, then that address is used as
29525 the From address in the message you are composing.
29526 In other words, you will be using a From address that is the same
29527 as the To address that was used to get the mail to you in the first place.
29530 If a role is being used and it has a From address defined, that From address will
29531 be used rather than the one derived from this feature.
29534 <UL>   
29535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29536 </UL><P>
29537 &lt;End of help on this topic&gt;
29538 </BODY>
29539 </HTML>
29540 ====== h_config_prefix_editing =====
29541 <HTML>
29542 <HEAD>
29543 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29544 </HEAD>
29545 <BODY>
29546 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29548 This feature affects the Reply command's &quot;Include original message
29549 in Reply?&quot; prompt.  When enabled, it causes the
29550 &quot;Edit Indent String&quot; sub-command to appear which allows 
29551 you to edit the string Alpine would otherwise use to denote included 
29552 text from the message being replied to.<P>
29554 Thus, you can change Alpine's default message quote character (usually
29555 an angle bracket) on a per message basis. So you could change your quoted message to
29556 look, for example, like this:<p>
29558 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29560 John: I just wanted to say hello and to congratulate you
29561 John: on a job well done!</pre><p>
29563 The configuration option
29564 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29565 may be used to change what appears as the default string to be edited.
29567 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29568 currently being replied to.
29570 If you change your <!--#echo var="VAR_reply-indent-string"-->
29571 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29572 quoted text will not be flowed
29573 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29574 when you reply.
29575 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
29576 set to the default value.
29578 <UL>   
29579 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29580 </UL><P>
29581 &lt;End of help on this topic&gt;
29582 </BODY>
29583 </HTML>
29584 ====== h_config_enable_search_and_repl =====
29585 <HTML>
29586 <HEAD>
29587 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
29588 </HEAD>
29589 <BODY>
29590 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
29592 This feature modifies the behavior of Alpine's composer.  Setting this
29593 feature causes Alpine to offer the "^R Replace" subcommand, which
29594 allows you to search and replace text strings in a message you are composing, 
29595 inside the "^W Where is" command.  
29599 To search and replace text, first enter the text to be replaced at the 
29600 "Search: " prompt.  Then, rather than pressing Enter to just search for that
29601 text, press ^R, which turns the prompt into 
29605 Search (to replace): 
29609 and then press Enter.  The cursor will highlight the first occurrence 
29610 of the text string you entered, and the prompt will show: 
29614 Replace "<your text string>" with : 
29618 where <your text string> is what you entered at the previous prompt;
29619 here, enter the replacement text.  To only replace the highlighted 
29620 occurrence, simply press Enter now; to replace all occurrences in the 
29621 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
29622 each replacement.
29626 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
29627 ^X toggles between "Replace All" and "Replace One."
29631 If you previously searched for text in a message, it will be offered for 
29632 re-use as part of the prompt, shown in [ ] brackets.
29635 &lt;End of help on this topic&gt;
29636 </BODY>
29637 </HTML>
29638 ====== h_config_enable_view_attach =====
29639 <HTML>
29640 <HEAD>
29641 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
29642 </HEAD>
29643 <BODY>
29644 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
29646 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29647 Setting this feature causes Alpine to present attachments in boldface.
29648 The first available attachment is displayed in inverse.  This is the
29649 "selected" attachment.  Pressing RETURN will cause Alpine to display
29650 the selected attachment.  Use the arrow keys to change which of the
29651 attachments displayed in boldface is the current selection.
29655 Speaking of arrow keys, the Up and Down Arrows will select the next
29656 and previous attachments if one is available on the screen for selection.
29657 Otherwise, they will simply adjust the viewed text one line up or down.
29661 Similarly, when selectable items are present in a message, the Ctrl-F key
29662 can be used to select the next item in the message independent of which
29663 portion of the viewed message is currently displayed. The Ctrl-B key can
29664 be used to select the previous item in the same way. 
29665 <P> 
29666 &lt;End of help on this topic&gt;
29667 </BODY>
29668 </HTML>
29669 ====== h_config_enable_y_print =====
29670 <HTML>
29671 <HEAD>
29672 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
29673 </HEAD>
29674 <BODY>
29675 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
29677 This feature modifies the behavior of Alpine's Print command.
29679 By default, Alpine's print command is available by pressing the "%" key.  
29680 (This command is a substantial change from Pine versions before 4.00 -- 
29681 where the print command was "Y" -- based on numerous complaints about 
29682 printing being invoked inadvertently, since Y also means "Yes.")  
29686 This feature is supplied to mitigate any disruption or anxiety users 
29687 might feel as a result of this change.  
29691 Enabling this feature will cause Alpine to recognize both the old
29692 command, "Y" for Prynt, as well the new "%" method for invoking
29693 printing.  Note, key menu labels are not changed as a result of
29694 enabling this feature.
29698 &lt;End of help on this topic&gt;
29699 </BODY>
29700 </HTML>
29701 ====== h_config_enable_lessthan_exit =====
29702 <HTML>
29703 <HEAD>
29704 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
29705 </HEAD>
29706 <BODY>
29707 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
29709 If this feature is set, then on screens where there is an Exit command
29710 but no < command, the < key will perform the same function as the Exit
29711 command.
29712 This feature is set by default.
29714 &lt;End of help on this topic&gt;
29715 </BODY>
29716 </HTML>
29717 ====== h_config_enable_view_url =====
29718 <HTML>
29719 <HEAD>
29720 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
29721 </HEAD>
29722 <BODY>
29723 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
29724 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29725 When this feature is set (the default) Alpine will select possible URLs from the
29726 displayed text and display them in boldface for selection.
29728 The first available URL is displayed in inverse.  This is the
29729 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
29730 the selected URL via either built-in means as with mailto:, imap:,
29731 news:, and nntp:, or via an external application as defined
29732 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29733 variable.
29735 Use the arrow keys to change which of the URLs displayed in boldface
29736 is the current selection.
29738 Speaking of arrow keys, the Up and Down Arrows will select the next
29739 and previous URL if one is available on the screen for selection (unless 
29740 you have set the feature 
29741 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
29742 Otherwise, they will simply adjust the viewed text one line up or down.
29744 Similarly, when selectable items are present in a message, the Ctrl-F
29745 key can be used to select the next item in the message independent
29746 of which portion of the viewed message is currently displayed. The
29747 Ctrl-B key can be used to select the previous item in the same way.
29749 <UL>   
29750 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29751 </UL><P>
29752 &lt;End of help on this topic&gt;
29753 </BODY>
29754 </HTML>
29755 ====== h_config_enable_view_web_host =====
29756 <HTML>
29757 <HEAD>
29758 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
29759 </HEAD>
29760 <BODY>
29761 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
29763 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29764 When this feature is set (the default) Alpine will select possible web hostnames
29765 from the displayed text and display them in boldface for selection.  
29766 This can be useful when you receive messages referencing World Wide Web 
29767 sites without the use of complete URLs; for example, specifying only 
29768 &quot;www.patches.freeiz.com/alpine/&quot; (which will <B>not</B> become a 
29769 selectable 
29770 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
29771 rather than explicitly
29772 &quot;http://www.patches.freeiz.com/alpine/&quot;.  
29774 The first available hostname is displayed in inverse.  This is the
29775 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
29776 the selected hostname via an external application as defined
29777 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29778 variable.
29780 Use the arrow keys (unless you have set the feature 
29781 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29782 to change which of the hostnames displayed in
29783 boldface is the current selection.
29785 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29786 key can be used to select the next web hostname in the message independent
29787 of which portion of the viewed message is currently displayed. The
29788 Ctrl-B key can be used to select the previous web hostnames in the same way.
29790 <UL>   
29791 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29792 </UL><P>
29793 &lt;End of help on this topic&gt;
29794 </BODY>
29795 </HTML>
29796 ====== h_config_enable_view_addresses =====
29797 <HTML>
29798 <HEAD>
29799 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
29800 </HEAD>
29801 <BODY>
29802 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
29804 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29805 Setting this feature causes Alpine to select possible email addresses
29806 from the displayed text and display them in boldface for selection.  
29809 The first available email address is displayed in inverse.  This is the
29810 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
29811 the message composition screen with the To: field filled in with the
29812 selected address.
29814 Use the arrow keys (unless you have set the feature 
29815 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29816 to change which of the hostnames displayed in
29817 boldface is the current selection.
29819 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29820 key can be used to select the next web hostname in the message independent
29821 of which portion of the viewed message is currently displayed. The
29822 Ctrl-B key can be used to select the previous web hostnames in the same way.
29824 <UL>   
29825 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29826 </UL><P>
29827 &lt;End of help on this topic&gt;
29828 </BODY>
29829 </HTML>
29830 ====== h_config_enable_view_arrows =====
29831 <HTML>
29832 <HEAD>
29833 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
29834 </HEAD>
29835 <BODY>
29836 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
29838 This feature modifies Up and Down arrow key behavior in Alpine's
29839 MESSAGE TEXT screen when selectable Attachments, URL's, or
29840 web-hostnames are presented. Alpine's usual behavior is to move to
29841 the next or previous selectable item if currently displayed or
29842 simply to adjust the screen view by one line.
29846 Setting this feature causes the UP and Down arrow key to behave as
29847 if no selectable items were present in the message.
29851 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
29852 item) functionality is unchanged.
29855 &lt;End of help on this topic&gt;
29856 </BODY>
29857 <HTML>
29858 ====== h_config_quell_charset_warning =====
29859 <HTML>
29860 <HEAD>
29861 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
29862 </HEAD>
29863 <BODY>
29864 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
29866 By default, if the message you are viewing contains characters that are
29867 not representable in your
29868 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
29869 then Alpine will
29870 add a warning to the start of the displayed text.
29871 If this option is set, then that editorial message will be suppressed.
29873 Setting this feature also suppresses the comment about the character set
29874 in header lines.
29875 For example, when viewing a message you might see
29877 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
29879 in the From header if your Character-Set is something other than ISO-8859-2.
29880 If you set this feature, the comment about the character set will
29881 no longer be there.
29883 &lt;End of help on this topic&gt;
29884 </BODY>
29885 </HTML>
29886 ====== h_config_quell_host_after_url =====
29887 <HTML>
29888 <HEAD>
29889 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
29890 </HEAD>
29891 <BODY>
29892 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
29894 By default, links in HTML text are displayed with the host the link
29895 references appended, within square brackets, to the link text.  Alpine
29896 does this to help indicate where a link will take you, particularly when
29897 the link text might suggest a different destination.
29900 Setting this feature will prevent the server name from being appended
29901 to the displayed text.
29904 &lt;End of help on this topic&gt;
29905 </BODY>
29906 </HTML>
29907 ====== h_config_prefer_plain_text =====
29908 <HTML>
29909 <HEAD>
29910 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
29911 </HEAD>
29912 <BODY>
29913 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
29915 A message being viewed may contain alternate versions of the same content.
29916 Those alternate versions are supposed to be ordered by the sending software such that the
29917 first alternative is the least preferred and the last alternative is the
29918 most preferred. Alpine will normally display the most-preferred version that
29919 it knows how to display. This is most often encountered where the two
29920 alternate versions are a plain text version and an HTML version, with the
29921 HTML version listed last as the most preferred.
29923 If this option is set, then any plain text version will be preferred to
29924 all other versions.
29926 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
29927 which will temporarily change the sense of this option.
29928 If this option is set you will first see the plain text version of a
29929 message.
29930 If you then type the &quot;A&quot; command, you will see the most preferred version,
29931 most likely HTML, instead.
29932 Typing the &quot;A&quot; command a second time will switch it back.
29933 Alternatively, if the present option is not set you will originally see
29934 the most preferred version of the message and typing &quot;A&quot; will switch to
29935 the plain text version.
29937 &lt;End of help on this topic&gt;
29938 </BODY>
29939 </HTML>
29940 ====== h_config_pass_control =====
29941 <HTML>
29942 <HEAD>
29943 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
29944 </HEAD>
29945 <BODY>
29946 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
29948 It is probably not useful to set this option.
29949 This is a legacy option left behind &quot;just in case&quot;.
29950 Multi-byte characters that have an octet that has the same
29951 value as a control character are permitted through whether or not
29952 this option is turned on.
29954 This feature controls how certain characters contained in messages are
29955 displayed.
29956 If set, all characters in a message will be sent to the
29957 screen. Normally, control characters are displayed as shown below to
29958 avoid a garbled screen and to 
29959 avoid inadvertently changing terminal setup parameters.
29960 Control characters are usually displayed as two character sequences like
29961 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
29962 for Control-C,
29963 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
29964 for ESCAPE,
29965 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
29966 for DELETE, and
29967 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
29968 for the character with value 133 (0x85).
29969 (The DEL character is displayed as ^?, regular control characters are displayed
29970 as the character ^ followed by the character obtained by adding the
29971 five low-order bits of the character to 0x40, and the C1
29972 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
29973 character obtained by adding the
29974 five low-order bits of the character to 0x40.)
29975 Sometimes, in cases where changing a single control character into a
29976 two-character sequence would confuse Alpine's display routines,
29977 a question mark is substituted for the control character.
29979 If you wish to filter out regular control characters but pass the
29980 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29981 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.
29983 &lt;End of help on this topic&gt;
29984 </BODY>
29985 </HTML>
29986 ====== h_config_pass_c1_control =====
29987 <HTML>
29988 <HEAD>
29989 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
29990 </HEAD>
29991 <BODY>
29992 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
29994 It is probably not useful to set this option.
29995 This is a legacy option left behind &quot;just in case&quot;.
29996 Multi-byte characters that have an octet that has the same
29997 value as a control character are permitted through whether or not
29998 this option is turned on.
30000 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30001 is set, then this feature has no effect.
30002 However, if you wish to filter out regular control characters but pass the
30003 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30004 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30005 unset and set this feature.
30007 &lt;End of help on this topic&gt;
30008 </BODY>
30009 </HTML>
30010 ====== h_config_fcc_on_bounce =====
30011 <HTML>
30012 <HEAD>
30013 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
30014 </HEAD>
30015 <BODY>
30016 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
30018 This feature controls an aspect of Alpine's behavior when bouncing a
30019 message. If set, normal FCC ("File Carbon Copy") processing will be
30020 done, just as if you had composed a message to the address you are
30021 bouncing to.  If not set, no FCC of the message will be saved. 
30023 &lt;End of help on this topic&gt;
30024 </BODY>
30025 </HTML>
30026 ====== h_config_show_cursor =====
30027 <HTML>
30028 <HEAD>
30029 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
30030 </HEAD>
30031 <BODY>
30032 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
30034 This feature controls an aspect of Alpine's displays.  If set, the system
30035 cursor will move to convenient locations in the displays.  For example,
30036 to the beginning of the status field of the highlighted index line, or
30037 to the highlighted word after a successful WhereIs command.  It is intended
30038 to draw your attention to an "interesting" spot on the screen.
30040 &lt;End of help on this topic&gt;
30041 </BODY>
30042 </HTML>
30043 ====== h_config_sort_fcc_alpha =====
30044 <HTML>
30045 <HEAD>
30046 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30047 </HEAD>
30048 <BODY>
30049 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30051 This feature controls an aspect of Alpine's FOLDER LIST screen.
30052 If set, the default Fcc folder will be sorted alphabetically with the other
30053 folders instead of appearing right after the INBOX.
30055 &lt;End of help on this topic&gt;
30056 </BODY>
30057 </HTML>
30058 ====== h_config_sort_save_alpha =====
30059 <HTML>
30060 <HEAD>
30061 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30062 </HEAD>
30063 <BODY>
30064 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30066 This feature controls an aspect of Alpine's FOLDER LIST screen.
30067 If set, the default save folder will be sorted alphabetically with the other
30068 folders instead of appearing right after the INBOX (and default FCC folder).
30070 &lt;End of help on this topic&gt;
30071 </BODY>
30072 </HTML>
30073 ====== h_config_single_list =====
30074 <HTML>
30075 <HEAD>
30076 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30077 </HEAD>
30078 <BODY>
30079 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30081 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30082 the folders will be listed one per line instead of several per line
30083 in the FOLDER LIST display.
30085 &lt;End of help on this topic&gt;
30086 </BODY>
30087 </HTML>
30088 ====== h_config_vertical_list =====
30089 <HTML>
30090 <HEAD>
30091 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30092 </HEAD>
30093 <BODY>
30094 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30096 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30097 the folders will be listed alphabetically down the columns rather
30098 than across the columns as is the default.
30100 &lt;End of help on this topic&gt;
30101 </BODY>
30102 </HTML>
30103 ====== h_config_verbose_post =====
30104 <HTML>
30105 <HEAD>
30106 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30107 </HEAD>
30108 <BODY>
30109 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30110 This feature controls an aspect of Alpine's message sending.  When enabled,
30111 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30112 intended to cause the SMTP server to provide a more detailed account of
30113 the transaction.  This feature is typically only useful to system
30114 administrators and other support personel as an aid in troublshooting
30115 problems.
30117 Note, this feature relies on a specific capability of the system's mail
30118 transport agent or configured 
30119 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30120 It is possible that this
30121 feature will cause problems for some tranport agents, and may result in
30122 sending failure.  In addition, as the verbose output comes from the mail
30123 transport agent, it is likely to vary from one system to another. 
30124 <P><UL>
30125 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30126 </UL><P>
30127 &lt;End of help on this topic&gt;
30128 </BODY>
30129 </HTML>
30130 ====== h_config_auto_reply_to =====
30131 <HTML>
30132 <HEAD>
30133 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30134 </HEAD>
30135 <BODY>
30136 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30138 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30139 will not prompt when a message being replied to contains a "Reply-To:"
30140 header value, but will simply use its value (as opposed to using the
30141 "From:" field's value).
30145 Note: Using the "Reply-To:" address is usually the preferred behavior,
30146 however, some mailing list managers choose to place the list's address in
30147 the "Reply-To:" field of any message sent out to the list.  In such
30148 cases, this feature makes it all too easy for personal replies to be
30149 inadvertently sent to the entire mail list, so be careful! 
30151 &lt;End of help on this topic&gt;
30152 </BODY>
30153 </HTML>
30154 ====== h_config_del_skips_del =====
30155 <HTML>
30156 <HEAD>
30157 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30158 </HEAD>
30159 <BODY>
30160 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30162 This feature controls an aspect of Alpine's Delete command.  If set, this
30163 feature will cause the Delete command to advance past following messages that
30164 are marked deleted.  In other words, pressing "D" will both mark the
30165 current message deleted and advance to the next message that is not marked
30166 deleted.
30167 This feature is set by default.
30169 &lt;End of help on this topic&gt;
30170 </BODY></HTML>
30171 ====== h_config_expunge_manually =====
30172 <HTML>
30173 <HEAD>
30174 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30175 </HEAD>
30176 <BODY>
30177 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30179 Normally, when you close a folder that contains deleted messages you are
30180 asked if you want to expunge those messages from the folder permanently.
30181 If this feature is set, you won't be asked and the deleted messages will
30182 remain in the folder.
30183 If you choose to set this feature you will have to expunge the
30184 messages manually using the eXpunge command, which you can use while
30185 in the MESSAGE INDEX screen.
30186 If you do not expunge deleted messages the size of your
30187 folder will continue to increase until you are out of disk space.
30189 <UL>   
30190 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30191 </UL><P>
30192 &lt;End of help on this topic&gt;
30193 </BODY>
30194 </HTML>
30195 ====== h_config_auto_expunge =====
30196 <HTML>
30197 <HEAD>
30198 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30199 </HEAD>
30200 <BODY>
30201 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30203 This features controls an aspect of Alpine's eXpunge command.  If set, you
30204 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30205 place.
30206 Actually, this is only true for the INBOX folder and for folders in the
30207 Incoming Folders collection. See the feature
30208 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30210 <UL>   
30211 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30212 </UL><P>
30213 &lt;End of help on this topic&gt;
30214 </BODY>
30215 </HTML>
30216 ====== h_config_full_auto_expunge =====
30217 <HTML>
30218 <HEAD>
30219 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30220 </HEAD>
30221 <BODY>
30222 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30224 This features controls an aspect of Alpine's eXpunge command.  If set, you
30225 will <B>not</B> be prompted to confirm your intent before the expunge 
30226 takes place.  This feature sets this behavior for all folders, unlike the
30227 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30228 feature that works only for incoming folders.
30230 <UL>   
30231 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30232 </UL><P>
30233 &lt;End of help on this topic&gt;
30234 </BODY>
30235 </HTML>
30236 ====== h_config_auto_read_msgs =====
30237 <HTML>
30238 <HEAD>
30239 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30240 </HEAD>
30241 <BODY>
30242 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30243 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30244 and the 
30245 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30246 option is also set, then Alpine will
30247 automatically transfer all read messages to the designated folder and mark
30248 them as deleted in the INBOX.  Messages in the INBOX marked with an 
30249 &quot;N&quot; (meaning New, or unseen) are not affected.
30251 <UL>   
30252 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30253 </UL><P>
30254 &lt;End of help on this topic&gt;
30255 </BODY>
30256 </HTML>
30257 ====== h_config_auto_fcc_only =====
30258 <HTML>
30259 <HEAD>
30260 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
30261 </HEAD>
30262 <BODY>
30263 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
30264 This features controls an aspect of Alpine's composer.
30265 The only time this feature will be used is if you attempt to send mail
30266 that has no recipients but does have an Fcc.
30267 Normally, Alpine will ask if you really mean to copy the message only to
30268 the Fcc.
30269 That is, it asks if you really meant to have no recipients.
30270 If this feature is set, you
30271 will <B>not</B> be prompted to confirm your intent to make only a copy
30272 of a message with no recipients.
30274 This feature is closely related to
30275 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
30276 The difference between this feature and that feature is that this feature
30277 considers a Bcc to be a recipient while that feature will ask for confirmation
30278 even if there is a Bcc when there is no To, Cc, or Newsgroup.
30279 The default values also differ. This feature defaults to asking the question
30280 and you have to turn it off.
30281 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
30282 unless you turn it on.
30285 <UL>   
30286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30287 </UL><P>
30288 &lt;End of help on this topic&gt;
30289 </BODY>
30290 </HTML>
30291 ====== h_config_mark_fcc_seen =====
30292 <HTML>
30293 <HEAD>
30294 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
30295 </HEAD>
30296 <BODY>
30297 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
30299 This features controls the way Fccs (File carbon copies) are
30300 made of the messages you send.
30303 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
30304 copy will be marked as Unseen.
30305 When you look at the folder it was saved in the message will appear to
30306 be a New message until you read it.
30307 When this feature is enabled, the message will be marked as having
30308 been Seen.
30311 <UL>   
30312 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30313 </UL><P>
30314 &lt;End of help on this topic&gt;
30315 </BODY>
30316 </HTML>
30317 ====== h_config_no_fcc_attach =====
30318 <HTML>
30319 <HEAD>
30320 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
30321 </HEAD>
30322 <BODY>
30323 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
30325 This features controls the way Fcc's (File carbon copies) are
30326 made of the messages you send.
30329 Normally, Alpine saves an exact copy of your message as it was sent.
30330 When this feature is enabled, the &quot;body&quot; of the message
30331 you send (the text you type in the composer) is preserved in the 
30332 copy as before, however all attachments are replaced with text
30333 explaining what had been sent rather than the attachments themselves.
30336 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
30337 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
30338 allows you to interactively set whether or not attachments are saved
30339 to the Fcc'd copy.
30342 <UL>   
30343 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30344 </UL><P>
30345 &lt;End of help on this topic&gt;
30346 </BODY>
30347 </HTML>
30348 ====== h_config_read_in_newsrc_order =====
30349 <HTML>
30350 <HEAD>
30351 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
30352 </HEAD>
30353 <BODY>
30354 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
30356 This feature controls the order in which newsgroups will be presented.  If
30357 set, they will be presented in the same order as they occur in your 
30358 <!--chtml if pinemode="os_windows"-->
30359 &quot;NEWSRC&quot;
30360 <!--chtml else-->
30361 &quot;.newsrc&quot;
30362 <!--chtml endif-->
30363 file (the default location of which can be changed with the 
30364 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
30366 If not set, the newsgroups will be presented in alphabetical order.
30368 <UL>   
30369 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30370 </UL><P>
30371 &lt;End of help on this topic&gt;
30372 </BODY>
30373 </HTML>
30374 ====== h_config_quell_tz_comment =====
30375 <HTML>
30376 <HEAD>
30377 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
30378 </HEAD>
30379 <BODY>
30380 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
30382 Normally, when Alpine generates a Date header for outgoing mail,
30383 it will try to include the symbolic timezone at the end of the
30384 header inside parentheses.
30385 The symbolic timezone is often three characters long, but on
30386 some operating systems, it may be longer.
30387 Apparently there are some SMTP servers in the world that will reject an
30388 incoming message if it has a Date header longer than about 80 characters.
30389 If this feature is set, the symbolic timezone normally generated by
30390 Alpine will not be included.
30391 You probably don't need to worry about this feature unless you run into
30392 the problem described above.
30395 &lt;End of help on this topic&gt;
30396 </BODY>
30397 </HTML>
30398 ====== h_config_post_wo_validation =====
30399 <HTML>
30400 <HEAD>
30401 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
30402 </HEAD>
30403 <BODY>
30404 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
30406 This feature controls whether the NNTP server is queried as newsgroups
30407 are entered for posting.  Validation over slow links (e.g. dialup using
30408 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
30410 &lt;End of help on this topic&gt;
30411 </BODY>
30412 </HTML>
30413 ====== h_config_send_wo_confirm =====
30414 <HTML>
30415 <HEAD>
30416 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
30417 </HEAD>
30418 <BODY>
30419 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
30421 By default, when you send or post a message you will be asked to confirm
30422 with a question that looks something like:
30425 <CENTER><SAMP>Send message?</SAMP></CENTER>
30428 If this feature is set, you
30429 will <B>not</B> be prompted to confirm your intent to send
30430 and your message will be sent.
30432 If this feature is set it disables some possibilities and renders some
30433 other features meaningless.
30434 You will not be able to use
30435 <A HREF="h_config_sending_filter">Sending Filters</A>,
30436 Verbose sending mode,
30437 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30438 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30439 or ^V to turn off the generation of flowed text for this message.
30440 These options are normally available as suboptions in the Send prompt, but
30441 with no Send prompt the options are gone.
30444 A somewhat related feature is
30445 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30446 which may be used to eliminate the extra confirmation
30447 question when posting to a newsgroup.
30449 <UL>   
30450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30451 </UL><P>
30452 &lt;End of help on this topic&gt;
30453 </BODY>
30454 </HTML>
30455 ====== h_config_quell_filtering_done_message =====
30456 <HTML>
30457 <HEAD>
30458 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30459 </HEAD>
30460 <BODY>
30461 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30463 If you use Filter Rules that move messages or set status of messages
30464 you sometimes see a message from Alpine that looks like
30467 <CENTER><SAMP>filtering done</SAMP></CENTER>
30470 If this feature is set, this message will be suppressed.
30471 If the feature
30472 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30473 is set then this message will be suppressed regardless.
30476 <UL>   
30477 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30478 </UL><P>
30479 &lt;End of help on this topic&gt;
30480 </BODY>
30481 </HTML>
30482 ====== h_config_quell_filtering_messages =====
30483 <HTML>
30484 <HEAD>
30485 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30486 </HEAD>
30487 <BODY>
30488 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30490 If you use Filter Rules that move messages or set status of messages
30491 you sometimes see messages from Alpine that look like
30494 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30500 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30506 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30509 If this feature is set, these messages will be suppressed.
30510 The feature
30511 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30512 is related.
30515 <UL>   
30516 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30517 </UL><P>
30518 &lt;End of help on this topic&gt;
30519 </BODY>
30520 </HTML>
30521 ====== h_config_quell_post_prompt =====
30522 <HTML>
30523 <HEAD>
30524 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30525 </HEAD>
30526 <BODY>
30527 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30529 By default, when you post a message to a newsgroup you are asked to confirm
30530 that you want to post with the question
30533 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30536 If this feature is set, you
30537 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30538 and your message will be posted.
30541 <UL>   
30542 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30543 </UL><P>
30544 &lt;End of help on this topic&gt;
30545 </BODY>
30546 </HTML>
30547 ====== h_config_check_mail_onquit =====
30548 <HTML>
30549 <HEAD>
30550 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30551 </HEAD>
30552 <BODY>
30553 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30555 If this feature is set, Alpine will check for new mail after you give the
30556 Quit command.
30557 If new mail has arrived since the previous check, you will be notified
30558 and given the choice of quitting or not quitting.
30560 <UL>   
30561 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30562 </UL><P>
30563 &lt;End of help on this topic&gt;
30564 </BODY>
30565 </HTML>
30566 ====== h_config_inbox_no_confirm =====
30567 <HTML>
30568 <HEAD>
30569 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30570 </HEAD>
30571 <BODY>
30572 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30574 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30575 command and there are no more folders or newsgroups to visit, you are asked
30576 if you want to return to the INBOX.
30577 If this feature is set you will not be asked.
30578 It will be assumed that you do want to return to the INBOX.
30580 <UL>   
30581 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30582 </UL><P>
30583 &lt;End of help on this topic&gt;
30584 </BODY>
30585 </HTML>
30586 ====== h_config_dates_to_local =====
30587 <HTML>
30588 <HEAD>
30589 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
30590 </HEAD>
30591 <BODY>
30592 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
30594 Normally, the message dates that you see in the
30595 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
30596 For example, if a message was sent to you from a few timezones to the east
30597 it might appear that it was sent from the future;
30598 or if it was sent from somewhere to the west it might appear
30599 as if it is from yesterday even though it was sent only a few minutes ago.
30600 If this feature is set an attempt will be made to convert the dates
30601 to your local timezone to be displayed.
30603 Note that this does not affect the results of Select by Date or of
30604 anything else other than these displayed dates.
30605 When viewing the message you may look at the original unconverted value of the Date
30606 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
30608 <UL>   
30609 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30610 </UL><P>
30611 &lt;End of help on this topic&gt;
30612 </BODY>
30613 </HTML>
30614 ====== h_config_tab_no_prompt =====
30615 <HTML>
30616 <HEAD>
30617 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
30618 </HEAD>
30619 <BODY>
30620 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
30622 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30623 command and there is a problem checking a folder, you are asked
30624 whether you want to continue with the search in the following folder or not.
30625 This question gives you a chance to stop the NextNew processing.
30626 (The checking problem might be caused by the fact that the folder does not
30627 exist, or by an authentication problem, or by a server problem
30628 of some sort.)
30631 If this feature is set you will not be asked.
30632 It will be assumed that you do want to continue.
30634 <UL>   
30635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30636 </UL><P>
30637 &lt;End of help on this topic&gt;
30638 </BODY>
30639 </HTML>
30640 ====== h_config_input_history =====
30641 <HTML>
30642 <HEAD>
30643 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
30644 </HEAD>
30645 <BODY>
30646 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
30648 Many of the prompts that ask for input in the status line near the
30649 bottom of the screen will respond to Up Arrow and Down Arrow
30650 with the history of previous entries.
30651 For example, in the MESSAGE INDEX screen when you use the WhereIs
30652 command the text you entered will be remembered and can be recalled
30653 by using the Up Arrow key.
30654 Another example, when saving a message the folders saved to will
30655 be remembered and can be recalled using the arrow keys.
30657 In the Save prompt, some users prefer that the Up and Down arrow keys
30658 be used for the Previous Collection and Next Collection commands
30659 instead of for a history of previous saves.
30660 If this option is set the Up and Down arrow keys will become synonyms for the
30661 Previous Collection and Next Collection (^P and ^N) commands in the
30662 prompt for the name of a folder to Save to or in the prompt for the
30663 name of a folder to GoTo.
30664 When this feature is not set (the default), ^P and ^N will change the
30665 collection and the arrow keys will show the history.
30667 <UL>   
30668 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30669 </UL><P>
30670 &lt;End of help on this topic&gt;
30671 </BODY>
30672 </HTML>
30673 ====== h_config_confirm_role =====
30674 <HTML>
30675 <HEAD>
30676 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
30677 </HEAD>
30678 <BODY>
30679 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
30681 If you have roles, when you Reply to or Forward a message, or Compose
30682 a new message, Alpine
30683 will search through your roles for one that matches.
30684 Normally, if no matches are found you will be placed into the composer
30685 with no opportunity to select a role.
30686 If this feature is set, then you will be asked to confirm that you don't
30687 want a role.
30688 This will give you the opportunity to select a role (with the ^T command).
30689 If you confirm no role with a Return, you will be placed in
30690 the composer with no role.
30691 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
30692 These behave the same as if you pressed the Return.
30693 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
30694 match what you might type if there was a role match.)
30696 If you are using the alternate form of the Compose command called
30697 &quot;Role&quot;, then all of your roles will be available to you,
30698 independent of the value of this feauture and of the values set for all of
30699 Reply Use, Forward Use, and Compose Use.
30701 <UL>   
30702 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30703 </UL><P>
30704 &lt;End of help on this topic&gt;
30705 </BODY>
30706 </HTML>
30707 ====== h_config_news_cross_deletes =====
30708 <HTML>
30709 <HEAD>
30710 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
30711 </HEAD>
30712 <BODY>
30713 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
30715 This feature controls what Alpine does when you delete a message in a
30716 newsgroup that appears in more than one newsgroup.  Such a message
30717 is sometimes termed a &quot;crossposting&quot; in that it was posted
30718 across several newsgroups.
30721 Alpine's default behavior when you delete such a message is to remove
30722 only the copy in the current newsgroup from view when you use the
30723 &quot;Exclude&quot; command or the next time you visit the newsgroup.
30726 Enabling this feature causes Alpine to remove every occurrence of the
30727 message from all newsgroups it appears in and to which you are
30728 subscribed.
30731 NOTE: As currently implemented, enabling this feature may increase the
30732 time it takes the Expunge command and newsgroup closing to complete.
30735 <UL>   
30736 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30737 </UL><P>
30738 &lt;End of help on this topic&gt;
30739 </BODY>
30740 </HTML>
30741 ====== h_config_news_catchup =====
30742 <HTML>
30743 <HEAD>
30744 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
30745 </HEAD>
30746 <BODY>
30747 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
30749 This feature controls what Alpine does as it closes a newsgroup.
30750 When set, Alpine will offer to delete all messages from the newsgroup
30751 as you are quitting Alpine or opening a new folder.
30754 This feature is useful if you typically read all the interesting messages
30755 in a newsgroup each time you open it.  This feature saves you from
30756 having to delete each message in a newsgroup as you read it or from
30757 selecting all the messages and doing an
30758 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
30759 move on to the next folder or newsgroup.
30762 <UL>   
30763 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30764 </UL><P>
30765 &lt;End of help on this topic&gt;
30766 </BODY>
30767 </HTML>
30768 ====== h_config_next_thrd_wo_confirm =====
30769 <HTML>
30770 <HEAD>
30771 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
30772 </HEAD>
30773 <BODY>
30774 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
30776 This feature controls an aspect of Alpine's Next and Prev commands in
30777 the case where you are using one of the
30778 &quot;separate-index-screen&quot; styles for the configuration option
30779 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
30780 and currently have the folder sorted by a Threaded or OrderedSubject sort.
30781 When you are Viewing a particular thread you have a
30782 MESSAGE INDEX of only the messages in that thread.
30783 If you press the Next command with the last message in the thread highlighted
30784 you will normally be asked if you want to &quot;View next thread?&quot;,
30785 assuming there is a next thread to view.
30786 If this feature is set it will be assumed that you always want to view the
30787 next thread and you won't be asked to confirm that.
30788 Similarly, if the first message of the thread is highlighted and you
30789 press the Prev command, this feature will prevent the question
30790 &quot;View previous thread&quot;.
30792 This feature only has an effect in the MESSAGE INDEX screen.
30793 If you then view a particular message from that screen and press the
30794 Next command, you will be sent to the next thread without being asked,
30795 independent of the setting of this feature.
30797 The feature
30798 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
30800 &lt;End of help on this topic&gt;
30801 </BODY>
30802 </HTML>
30803 ====== h_config_kw_braces =====
30804 <HTML>
30805 <HEAD>
30806 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
30807 </HEAD>
30808 <BODY>
30809 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
30811 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
30812 TEXT screens.
30813 If you have modified the
30814 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
30815 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
30816 are used to display keywords or their initials along with the Subject; then
30817 this option may be used to modify the resulting display slightly.
30818 By default, the keywords or initials displayed for these tokens will be
30819 surrounded with curly braces ({ and }) and a trailing space.
30820 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
30821 a message, the &quot;SUBJKEY&quot; token will normally look like
30823 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
30825 and the SUBJKEYINIT token would look like
30827 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
30829 The default character before the keywords is the left brace ({) and the
30830 default after the keywords is the right brace followed by a space (} ).
30832 This option allows you to change that.
30833 You should set it to two values separated by a space.
30834 The values may be quoted if they include space characters.
30835 So, for example, the default value could be specified explicitly by setting this
30836 option to
30838 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
30840 The first part wouldn't need to be quoted (but it doesn't hurt).
30841 The second part does need the quotes because it includes a space character.
30842 If you wanted to change the braces to brackets you could use
30844 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
30846 Inside the quotes you can use backslash quote to mean quote, so
30848 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
30850 would produce
30852 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
30854 It is also possible to color keywords in the index using the
30855 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
30857 It is not possible to change the fact that a space character is used to
30858 separate the keywords if more than one keyword is set for a message.
30859 It is also not possible to change the fact that there are no separators
30860 between the keyword initials if more than one keyword is set.
30862 &lt;End of help on this topic&gt;
30863 </BODY>
30864 </HTML>
30865 ====== h_config_opening_sep =====
30866 <HTML>
30867 <HEAD>
30868 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
30869 </HEAD>
30870 <BODY>
30871 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
30873 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
30874 With some setups the text of the subject is followed
30875 by the opening text of the message if there is any room available in the index line.
30876 If you have configured your
30877 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
30878 to include one of the Subject tokens that causes this behavior
30879 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
30880 to modify what is displayed slightly.
30881 By default, the Subject is separated from the opening text of the message by
30882 the three characters space dash space;
30884 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
30886 Use this option to set it to something different.
30887 The value must be quoted if it includes any space characters.
30888 For example, the default value could be specified explicitly by setting this
30889 option to
30891 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
30893 &lt;End of help on this topic&gt;
30894 </BODY>
30895 </HTML>
30896 ====== h_config_select_wo_confirm =====
30897 <HTML>
30898 <HEAD>
30899 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
30900 </HEAD>
30901 <BODY>
30902 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
30904 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
30905 These commands all take text input to specify the name of the folder or
30906 file to be used, but allow you to press ^T for a list of possible names.
30907 If set, the selected name will be used immediately, without further
30908 opportunity to confirm or edit the name.
30910 Some related help topics are
30911 <UL>
30912 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30913 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30914 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30915 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
30916 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
30917 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
30918 </UL>
30920 &lt;End of help on this topic&gt;
30921 </BODY>
30922 </HTML>
30923 ====== h_config_save_part_wo_confirm =====
30924 <HTML>
30925 <HEAD>
30926 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
30927 </HEAD>
30928 <BODY>
30929 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
30931 This feature controls an aspect of Alpine's Save command.
30932 By default, when you Save a message that has some deleted parts, you will
30933 be asked to confirm that you want to Save with a prompt that looks like:
30935 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
30937 If this feature is set, you will not be asked.
30939 &lt;End of help on this topic&gt;
30940 </BODY>
30941 </HTML>
30942 ====== h_config_use_resentto =====
30943 <HTML>
30944 <HEAD>
30945 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
30946 </HEAD>
30947 <BODY>
30948 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
30950 This feature is turned off by default because turning it on causes problems
30951 with some deficient IMAP servers.
30952 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
30953 <A HREF="h_rule_patterns">Pattern</A>
30954 contains a To header pattern and this feature is turned on,
30955 then a check is made in the message to see
30956 if a Resent-To header is present, and that is used instead of the To header.
30957 If this feature is not turned on, then the regular To header will always
30958 be used.
30961 &lt;End of help on this topic&gt;
30962 </BODY>
30963 </HTML>
30964 ====== h_config_use_reg_start_for_stayopen =====
30965 <HTML>
30966 <HEAD>
30967 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
30968 </HEAD>
30969 <BODY>
30970 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
30972 This feature affects which message is selected as the current message
30973 when you enter a
30974 <A HREF="h_config_permlocked">Stay Open</A> folder.
30976 Normally, the starting position for an incoming folder (which most Stay Open
30977 folders will likely be) is controlled by the
30978 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
30979 However, if a folder is a Stay Open folder, when you re-enter the folder
30980 after the first time the current message will be the same as it was when
30981 you left the folder.
30982 An exception is made if you use the TAB command to get to the folder.
30983 In that case, the message number will be incremented by one from what it
30984 was when you left the folder.
30986 The above special behavior is thought to be useful.
30987 However, it is special and different from what you might at first expect.
30988 If this feature is set, then Stay Open folders will not be treated specially
30989 as far as the startup rule is concerned.
30992 &lt;End of help on this topic&gt;
30993 </BODY>
30994 </HTML>
30995 ====== h_config_use_current_dir =====
30996 <HTML>
30997 <HEAD>
30998 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
30999 </HEAD>
31000 <BODY>
31001 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
31003 This feature controls an aspect of several commands. 
31004 If set, your &quot;current working directory&quot; 
31005 <!--chtml if pinemode="running"-->
31006 (which, at least for your current Alpine &quot;session,&quot; 
31007 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
31008 <!--chtml endif-->
31009 will be used instead of your home directory 
31010 <!--chtml if pinemode="running"-->
31011 (which, in the present configuration of your system, is
31012  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
31013 <!--chtml endif-->
31014 for all of the following operations:<UL>
31015     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
31016     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
31017     <LI> <!--chtml if pinemode="function_key"-->F4
31018          <!--chtml else-->Ctrl-R
31019          <!--chtml endif--> file inclusion in the COMPOSER
31020     <LI> <!--chtml if pinemode="function_key"-->F5
31021          <!--chtml else-->Ctrl-J
31022          <!--chtml endif--> file attachment in the COMPOSER
31023 </UL>
31024 <!--chtml if pinemode="os_windows"-->
31026 If you are starting PC-Alpine from a desktop icon or the Start menu, 
31027 you can set the &quot;current drive&quot; 
31028 by specifying it in the &quot;Start in:&quot; 
31029 box found in the Shortcut tab of the Properties.  
31030 <!--chtml endif-->
31032 <UL>   
31033 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31034 </UL>
31037 &lt;End of help on this topic&gt;
31038 </BODY>
31039 </HTML>
31040 ====== h_config_save_wont_delete =====
31041 <HTML>
31042 <HEAD>
31043 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31044 </HEAD>
31045 <BODY>
31046 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31048 This feature controls one aspect of the Save command.  If set, Save will
31049 not mark the message &quot;deleted&quot; (its default behavior) after
31050 it has been copied to the designated folder.
31053 &lt;End of help on this topic&gt;
31054 </BODY>
31055 </HTML>
31056 ====== h_config_use_boring_spinner =====
31057 <HTML>
31058 <HEAD>
31059 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31060 </HEAD>
31061 <BODY>
31062 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31064 When Alpine is delayed for some reason it usually shows that
31065 something is happening with a small animated display in the status
31066 message line near the bottom of the screen.
31067 Setting this feature will cause that animation to be the same
31068 each time instead of having Alpine choose a random animation.
31069 You may turn the animation off altogether by setting the
31070 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31071 option to zero.
31074 &lt;End of help on this topic&gt;
31075 </BODY>
31076 </HTML>
31077 ====== h_config_unsel_wont_advance =====
31078 <HTML>
31079 <HEAD>
31080 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31081 </HEAD>
31082 <BODY>
31083 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31085 This feature controls one aspect of the Unselect Current message command.
31086 Normally, when the Unselect current message command (:) is typed when the
31087 current message is selected, the message will be unselected and the next
31088 message will become the current message.
31089 If this feature is set, the cursor will not advance to the next message.
31090 Instead, the current message will remain the current message after
31091 unselecting.
31094 &lt;End of help on this topic&gt;
31095 </BODY>
31096 </HTML>
31097 ====== h_config_prune_uses_iso =====
31098 <HTML>
31099 <HEAD>
31100 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31101 </HEAD>
31102 <BODY>
31103 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31105 By default, Alpine asks monthly whether or not you would like to rename
31106 some folders to a new name containing the date.
31107 It also asks whether or not you would like to delete some old folders.
31108 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31109 explanation.
31112 By default, the name used when renaming a folder looks like
31114 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31116 For example, the first time you run Alpine in May of 2004,
31117 the folder &quot;sent-mail&quot; might be renamed to
31119 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31121 If this feature is set, the name used will be of the form
31123 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31125 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31126 month (01, 02, ..., 12).
31127 For the April, 2004 example above, it would instead be
31129 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31131 because April is the 4th month of the year.
31132 A reason you might want to set this feature is so that the folders
31133 will sort in chronological order.
31136 &lt;End of help on this topic&gt;
31137 </BODY>
31138 </HTML>
31139 ====== h_config_save_advances =====
31140 <HTML>
31141 <HEAD>
31142 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31143 </HEAD>
31144 <BODY>
31145 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31147 This feature controls one aspect of the Save command.  If set, Save will
31148 (in addition to copying the current message to the designated folder) also
31149 advance to the next message.
31152 &lt;End of help on this topic&gt;
31153 </BODY>
31154 </HTML>
31155 ====== h_config_force_arrow =====
31156 <HTML>
31157 <HEAD>
31158 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31159 </HEAD>
31160 <BODY>
31161 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31163 This feature affects Alpine's MESSAGE INDEX display routine.
31164 If set, the normal inverse-video cursor will be
31165 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31166 second column of the index display.
31168 This is the same index cursor you get if you turn on
31169 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31170 line coloring will still be present if this feature is turned on and
31171 <!--#echo var="FEAT_assume-slow-link"--> is off.
31173 An alternative version of the Arrow cursor is available by including the
31174 <A HREF="h_config_index_arrow_color">ARROW</A>
31175 token in the
31176 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31178 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31179 but that is not implemented.
31182 &lt;End of help on this topic&gt;
31183 </BODY>
31184 </HTML>
31185 ====== h_config_ignore_size =====
31186 <HTML>
31187 <HEAD>
31188 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
31189 </HEAD>
31190 <BODY>
31191 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
31193 When you have an account residing in an IMAP server, Alpine records the 
31194 size of each message as reported by the server. However, when Alpine saves 
31195 a message in such IMAP server, Alpine will compute the size of the message 
31196 independently, from the data it received. If these two numbers do not 
31197 match for a message, Alpine asks you if you still want to take the risk of 
31198 saving such message, since data corruption or loss of data could result 
31199 from this save.
31202 Sometimes the root of this problem is that the IMAP server does not 
31203 compute sizes correctly, and there will not be loss of information when 
31204 saving such message. Enabling this feature will make Alpine ignore such 
31205 error and continue saving the message without producing any warnings or 
31206 ever stopping the process, as if there had not been any error. This option 
31207 applies to all IMAP servers that you use, so if you enable this feature, 
31208 size discrepancy warnings will not be given for any IMAP server you 
31209 connect to.
31212 Example of a server where you could reproduce this problem is the Gmail 
31213 IMAP server. Another example can be found in some versions of the Exchange 
31214 server.
31217 It is recommended that this feature be disabled most of the time and only 
31218 enabled when you find a server which you can determine that has the above 
31219 mentioned defect, but be disabled again after making the save operation 
31220 succeed.
31223 &lt;End of help on this topic&gt;
31224 </BODY>
31225 </HTML>
31226 ====== h_config_force_low_speed =====
31227 <HTML>
31228 <HEAD>
31229 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31230 </HEAD>
31231 <BODY>
31232 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31234 UNIX Alpine only.
31236 This feature affects Alpine's display routines.  If set, the normal
31237 inverse-video cursor (used to highlight the current item in a list) will be
31238 replaced by an &quot;arrow&quot; cursor and other
31239 screen update optimizations for
31240 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31241 One of the optimizations is that colored index lines (set up with Indexcolor
31242 Rules) will not be colored.
31243 If you are just turning this feature on because you like using
31244 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31245 coloring by turning this feature off and the
31246 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
31249 &lt;End of help on this topic&gt;
31250 </BODY>
31251 </HTML>
31252 ====== h_config_show_delay_cue =====
31253 <HTML>
31254 <HEAD>
31255 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
31256 </HEAD>
31257 <BODY>
31258 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
31260 If set, this feature will cause an asterisk to appear in the upper
31261 left-hand corner of the screen whenever Alpine checks for new mail.
31262 Two asterisks whenever Alpine saves (checkpoints) the state of the current
31263 mailbox to disk.
31265 <!--chtml if pinemode="os_windows"-->
31267 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
31268 it is trying to open a network connection (e.g, to open your INBOX
31269 on an IMAP
31270 server) or read from the network connection.  A greater-than symbol,
31271 will be displayed when PC-Alpine is trying to write to the network
31272 connection (e.g, sending a command to your IMAP server).
31273 <!--chtml endif-->
31276 &lt;End of help on this topic&gt;
31277 </BODY>
31278 </HTML>
31279 ====== h_config_color_style =====
31280 <HTML>
31281 <HEAD>
31282 <TITLE>OPTION: Color Style</TITLE>
31283 </HEAD>
31284 <BODY>
31285 <H1>OPTION: Color Style</H1>
31287 UNIX Alpine only.
31289 If the terminal or terminal emulator you are using is capable of displaying
31290 colors, this option controls whether or not color will be used in Alpine.
31291 If you turn color on and things are set up correctly,
31292 you should see color appear on the screen immmediately.
31293 Modern terminal emulators are usually capable of displaying colors.
31295 The available options include:
31298 <DL>
31299 <DT>no-color</DT>
31300 <DD>Don't use color.
31301 </DD>
31303 <DT>use-termdef</DT>
31304 <DD>In order to decide if your terminal is capable of color, Alpine looks in
31305 the terminal capabilities database, TERMINFO or TERMCAP, depending on
31306 how Alpine was compiled.
31307 This is a good option to choose if you switch between a color and a non-color
31308 terminal with the same Alpine configuration.
31309 Alpine will know to use color on the color terminal because it is described
31310 in the termcap entry, and Alpine will know to use black and white on the
31311 non-color terminal.
31312 The Alpine Technical Notes
31313 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
31314 have more information on configuring a TERMCAP or TERMINFO
31315 entry for color Alpine.
31316 This is usually something a system administrator does.
31317 </DD>
31319 <DT>force-ansi-8color</DT>
31320 <DD>This is probably the setting that most people should use.
31321 Because setting up a termcap entry is confusing and because the
31322 terminal capabilities database is often not correctly configured for color,
31323 this choice and the next may be easier for you to use.
31324 If your terminal emulator responds to ANSI color escape sequences, which
31325 many do, this option will cause Alpine to believe your terminal will respond
31326 to the escape sequences that produce eight different foreground and background
31327 colors.
31328 The escape sequences used to set the foreground colors are
31330   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31332 where the color_number is an ASCII digit between 0 and 7.
31333 The numbers 0 through 7 should correspond to the colors black, red, green,
31334 yellow, blue, magenta, cyan, and white.
31335 Some terminal emulators use a pre-ANSI scheme that swaps
31336 the colors blue and red and the colors yellow and cyan.
31337 This will cause the default colors to be different, but other than that
31338 things should work fine.
31339 There is also a 9th color available, the last one shown, which is the default
31340 color from the terminal emulator.
31341 When used as a background color some people refer to this color as
31342 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
31343 shown in the color swatch of the SETUP COLOR screen.
31344 The foreground transparent color is shown as
31345 the color of the &quot;TRAN&quot; text.
31346 (The transparent color will not work correctly in a PC-Alpine configuration.)
31347 The escape sequences used to set the background colors are the same
31348 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
31349 The escape sequences for foreground and background default colors (transparent)
31350 are 39m and 49m.
31352 Note: With the Tera Term terminal emulator this setting works well.
31353 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
31354 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
31355 menu, in the &quot;Window&quot; submenu.
31356 </DD>
31358 <DT>force-ansi-16color</DT>
31359 <DD>Many terminal emulators know about the same eight colors above
31360 plus eight more.
31361 This option attempts to use all 16 colors.
31362 The same escape sequences as for the eight-color terminal are used
31363 for the first eight colors.
31364 The escape sequences used to set foreground colors 8-15 are the same as
31365 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
31366 The background color sequences for colors 8-15 are the same as for 0-7
31367 except the &quot;4&quot; is replaced with &quot;10&quot;.
31368 You can tell if the 16 colors are working by turning on this option
31369 and then going into one of the color configuration screens, for example,
31370 the configuration screen for Normal Color.
31371 If you see 16 different colors to select from (plus a 17th for
31372 the transparent color), it's working.
31373 </DD>
31375 <DT>force-xterm-256color</DT>
31376 <DD>Some versions of xterm (and some other terminal emulators)
31377 have support for 256 colors.
31378 The escape sequences used to set the foreground colors are
31380   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31382 where the color_number is an ASCII digit between 0 and 255.
31383 Background colors are the same with the 38 replaced with a 48.
31384 The numbers 0 through 15 are probably similar to the 16 color version
31385 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
31386 The terminal default (transparent) color is the 257th color at the bottom.
31387 Some terminal emulators will misinterpret these escape sequences causing
31388 the terminal to blink or overstrike characters or to do something else
31389 undesirable.
31391 The PuTTY terminal emulator has an option called &quot;Allow terminal to
31392 use xterm 256-colour mode&quot; which allows PuTTY to work well with
31393 this 256-color setting.
31395 </DD>
31396 </DL>
31399 The normal default is &quot;no-color&quot;.
31402 Once you've turned on color you may set the
31403 colors of many objects on the screen individually.
31404 For example, you may add colors to the status letters on the MESSAGE
31405 INDEX page.
31406 Most categories of color that Alpine supports are configurable here.
31407 For example, &quot;Normal Color&quot;
31408 is the color used to display most of the text in Alpine, and
31409 &quot;Reverse Color&quot; is used to display highlighted text, such as the
31410 current message in the MESSAGE INDEX.
31412 Lines in the MESSAGE INDEX may also be colored.
31413 Use Setup Rules to get to the Indexcolor configuration screen.
31416 <UL>   
31417 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31418 </UL><P>
31419 &lt;End of help on this topic&gt;
31420 </BODY>
31421 </HTML>
31422 ====== h_config_disable_index_locale_dates =====
31423 <HTML>
31424 <HEAD>
31425 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
31426 </HEAD>
31427 <BODY>
31428 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
31430 This feature affects the display of dates in the MESSAGE INDEX.
31431 Normally an attempt is made to localize the dates
31432 used in the MESSAGE INDEX display to your locale.
31433 This is controlled with the
31434 LC_TIME locale setting on a UNIX system.
31435 On Windows the Regional Options control panel may be used to set the date format.
31436 At the programming level, Alpine is using the strftime routine
31437 to print the parts of a date.
31439 If this feature is set, dates are displayed in English and
31440 with the conventions of the United States.
31443 <UL>   
31444 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31445 </UL><P>
31446 &lt;End of help on this topic&gt;
31447 </BODY>
31448 </HTML>
31449 ====== h_config_auto_open_unread =====
31450 <HTML>
31451 <HEAD>
31452 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
31453 </HEAD>
31454 <BODY>
31455 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
31457 This feature controls the behavior of the TAB key when traversing folders
31458 in the optional 
31459 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
31460 collection or in optional <!--#echo var="VAR_news-collections"-->.
31462 When the TAB
31463 (<A HREF="h_common_nextnew">NextNew</A>)
31464 key is pressed, and there
31465 are no more unseen messages in the current (incoming message or news)
31466 folder, Alpine will search the list of folders in the current collection for
31467 one containing New or Recent (new since the last time the folder was
31468 opened) messages.
31469 This behavior may be modified slightly with the
31470 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
31471 feature that causes Alpine to look for Unseen messages instead of Recent
31472 messages.
31473 Normally, when such a folder is found, Alpine will ask
31474 whether you wish to open the folder.  If this feature is set, Alpine will
31475 automatically open the folder without prompting.
31477 This feature also affects some other similar situations.
31478 If you have a
31479 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
31480 that is equal to one of the &quot;separate-&quot; values, and you are
31481 viewing a thread; then when you type the NextNew command and are at the
31482 end of the current thread you will automatically go to the next thread
31483 if this feature is set.
31484 By default, you would be asked if you want to view the next thread.
31485 You will also be asked at times whether or not you want to view the next
31486 thread after you delete the last message in the thread.
31487 Setting this feature will also cause that question to be skipped.
31490 <UL>   
31491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31492 </UL><P>
31493 &lt;End of help on this topic&gt;
31494 </BODY>
31495 </HTML>
31496 ====== h_config_auto_include_reply =====
31497 <HTML>
31498 <HEAD>
31499 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31500 </HEAD>
31501 <BODY>
31502 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31504 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31505 will ask whether you wish to include the original message in your reply.
31506 If this feature is set and the feature
31507 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31508 is <EM>not</EM> set, then the original message will be included in the reply
31509 automatically, without prompting.
31511 &lt;End of help on this topic&gt;
31512 </BODY>
31513 </HTML>
31514 ====== h_config_select_in_bold =====
31515 <HTML>
31516 <HEAD>
31517 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31518 </HEAD>
31519 <BODY>
31520 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31522 This feature controls an aspect of Alpine's 
31523 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31524 commands; in
31525 particular, the Select and WhereIs commands. Select and WhereIs (with the
31526 ^X subcommand) will search the current folder for messages meeting a
31527 specified criteria, and &quot;tag&quot; the resulting messages with an 
31528 &quot;X&quot; in the
31529 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31530 is set, instead of using the &quot;X&quot; to denote a selected message, 
31531 Alpine will
31532 attempt to display those index lines in boldface. Whether this is
31533 preferable to the &quot;X&quot; will depend on personal taste and the type of
31534 terminal being used.
31536 <UL>   
31537 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31538 </UL><P>
31539 &lt;End of help on this topic&gt;
31540 </BODY>
31541 </HTML>
31542 ====== h_config_alt_auth =====
31543 <HTML>
31544 <HEAD>
31545 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31546 </HEAD>
31547 <BODY>
31548 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31550 This feature affects how Alpine connects to IMAP servers.
31551 It's utility has largely been overtaken by events,
31552 but it may still be useful in some circumstances.
31553 If you only connect to modern IMAP servers that support
31554 &quot;TLS&quot; you can ignore this feature.
31557 Details:
31560 By default, Alpine will attempt to connect to an IMAP server on the
31561 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31562 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31563 then a secure (encrypted) session will be negotiated.
31566 With this feature enabled, before connecting on the normal IMAP port, Alpine
31567 will first attempt to connect to an alternate IMAP service port (993) used
31568 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31569 (SSL) method.
31570 If the SSL attempt fails, Alpine will then try the default
31571 behavior described in the previous paragraph.
31574 TLS negotiation on the normal port is preferred, and supersedes the use of
31575 SSL on port 993, but older servers may not provide TLS support.
31576 This feature may be convenient when accessing IMAP servers that do not support
31577 TLS, but do support SSL connections on port 993.
31578 However, it is important to understand that with this feature enabled,
31579 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
31580 but it will proceed to make an insecure connection if that is the only
31581 option offered by the server, or if the Alpine in question has been built
31582 without encryption capability.
31585 Note that this feature specifies a per-user (or system-wide) default
31586 behavior, but host/folder specification flags may be used to control the
31587 behavior of any specific connection.
31588 This feature interacts with some of
31589 the possible host/folder path specification flags as follows:
31592 The <SAMP>/tls</SAMP> host flag, for example,
31595 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
31597 will over-ride this feature for the specified host by bypassing the
31598 SSL connection attempt.
31599 Moreover, with <SAMP>/tls</SAMP> specified,
31600 the connection attempt will fail if the
31601 service on port 143 does not offer TLS support.
31604 The <SAMP>/ssl</SAMP> host flag, for example,
31607 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
31609 will insist on an SSL connection for the specified host,
31610 and will fail if the SSL service on port 993 is not available.
31611 Alpine will not subsequently retry a connection
31612 on port 143 if <SAMP>/ssl</SAMP> is specified.
31615 <UL>   
31616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31617 </UL><P>
31618 &lt;End of help on this topic&gt;
31619 </BODY>
31620 </HTML>
31621 ====== h_config_file_dir ======
31622 <HTML>
31623 <HEAD>
31624 <TITLE>OPTION: File Directory</TITLE>
31625 </HEAD>
31626 <BODY>
31627 <H1>OPTION: File Directory</H1>
31629 PC-Alpine only.
31631 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
31632 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
31633 Message Index's &quot;E&nbsp;Export&quot; command.
31636 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
31637 component, Alpine assumes the file exists in the user's home directory.
31638 Under Windows operating systems, this definition isn't always clear.  This 
31639 feature allows you to explictly set where Alpine should look for files
31640 without a leading path.
31643 NOTE: this feature's value is ignored if either 
31644 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
31645 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
31648 <UL>   
31649 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31650 </UL><P>
31651 &lt;End of help on this topic&gt;
31652 </BODY>
31653 </HTML>
31654 ====== h_config_quote_all_froms =====
31655 <HTML>
31656 <HEAD>
31657 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
31658 </HEAD>
31659 <BODY>
31660 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
31662 This feature controls an aspect of the Save command (and also the way
31663 outgoing messages are saved to an FCC folder).  If set, Alpine will add
31664 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
31665 when they are saved to another folder, including lines syntactically
31666 distinguishable from the type of message separator line commonly used on
31667 Unix systems.
31670 The default behavior is that a &quot;>&quot; will be prepended only to lines
31671 beginning with &quot;From &quot; that might otherwise be confused with a message
31672 separator line on Unix systems.  If pine is the only mail program you use,
31673 this default is reasonable.  If another program you use has trouble
31674 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
31675 enable this feature.  This feature only applies to the common Unix mailbox
31676 format that uses message separator lines beginning with &quot;From &quot;.  If
31677 Alpine has been configured to use a different mailbox format (possibly
31678 incompatible with other mail programs), then this issue does not arise,
31679 and the feature is irrelevant.
31682 &lt;End of help on this topic&gt;
31683 </BODY>
31684 </HTML>
31685 ====== h_config_normal_color =====
31686 <HTML>
31687 <HEAD>
31688 <TITLE>OPTION: Normal Color</TITLE>
31689 </HEAD>
31690 <BODY>
31691 <H1>OPTION: Normal Color</H1>
31693 Sets the color Alpine normally uses.
31694 The foreground color is the color of the actual character and the
31695 background color is the color of the area behind the character.
31696 By default this color is black characters on a white background.
31698 <A HREF="h_color_setup">Descriptions of the available commands</A>
31700 Look <A HREF="h_edit_nav_cmds">here</A>
31701 to see the available Editing and Navigation commands.
31703 &lt;End of help on this topic&gt;
31704 </BODY>
31705 </HTML>
31706 ====== h_config_reverse_color =====
31707 <HTML>
31708 <HEAD>
31709 <TITLE>OPTION: Reverse Color</TITLE>
31710 </HEAD>
31711 <BODY>
31712 <H1>OPTION: Reverse Color</H1>
31714 Sets the color Alpine uses for reverse video characters.
31715 The foreground color is the color of the actual character and the
31716 background color is the color of the area behind the character.
31718 <A HREF="h_color_setup">Descriptions of the available commands</A>
31720 Look <A HREF="h_edit_nav_cmds">here</A>
31721 to see the available Editing and Navigation commands.
31723 &lt;End of help on this topic&gt;
31724 </BODY>
31725 </HTML>
31726 ====== h_config_title_color =====
31727 <HTML>
31728 <HEAD>
31729 <TITLE>OPTION: Title Color</TITLE>
31730 </HEAD>
31731 <BODY>
31732 <H1>OPTION: Title Color</H1>
31734 Sets the color Alpine uses for the titlebar (the top line on the screen).
31735 The foreground color is the color of the actual character and the
31736 background color is the color of the area behind the character.
31737 By default, the Title Color is black characters on a yellow background.
31739 The actual titlebar color may be different from the Title Color if
31740 the option
31741 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
31742 is set to some value other than the default.
31743 It may also be different if the current folder is closed and the
31744 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
31745 color is set to something different from the Title Color.
31747 <A HREF="h_color_setup">Descriptions of the available commands</A>
31749 Look <A HREF="h_edit_nav_cmds">here</A>
31750 to see the available Editing and Navigation commands.
31752 &lt;End of help on this topic&gt;
31753 </BODY>
31754 </HTML>
31755 ====== h_config_titleclosed_color =====
31756 <HTML>
31757 <HEAD>
31758 <TITLE>OPTION: Title Closed Color</TITLE>
31759 </HEAD>
31760 <BODY>
31761 <H1>OPTION: Title Closed Color</H1>
31763 Sets the color Alpine uses for the titlebar (the top line on the screen)
31764 when the current folder is closed.
31765 The foreground color is the color of the actual character and the
31766 background color is the color of the area behind the character.
31767 By default, the Title Color Closed Color is white characters on a red background.
31769 By setting this color to something noticeable you will be alerted to the
31770 fact that the current folder is closed, perhaps unexpectedly.
31772 &lt;End of help on this topic&gt;
31773 </BODY>
31774 </HTML>
31775 ====== h_config_status_color =====
31776 <HTML>
31777 <HEAD>
31778 <TITLE>OPTION: Status Color</TITLE>
31779 </HEAD>
31780 <BODY>
31781 <H1>OPTION: Status Color</H1>
31783 Sets the color Alpine uses for status messages written to the message
31784 line near the bottom of the screen.
31785 The foreground color is the color of the actual character and the
31786 background color is the color of the area behind the character.
31787 By default, the Status Color is the same as the Reverse Color.
31789 <A HREF="h_color_setup">Descriptions of the available commands</A>
31791 Look <A HREF="h_edit_nav_cmds">here</A>
31792 to see the available Editing and Navigation commands.
31794 &lt;End of help on this topic&gt;
31795 </BODY>
31796 </HTML>
31797 ====== h_config_index_opening_color =====
31798 <HTML>
31799 <HEAD>
31800 <TITLE>OPTION: Index Opening Color</TITLE>
31801 </HEAD>
31802 <BODY>
31803 <H1>OPTION: Index Opening Color</H1>
31805 With some setups the text of the subject is followed
31806 by the opening text of the message if there is any room available in the index line.
31807 If you have configured your
31808 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31809 to include one of the Subject tokens that causes this behavior
31810 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
31811 this opening text with this option.
31812 This coloring takes place for all but the current index line, and the Opening
31813 Color appears to be in front of any color from an Index Color Rule.
31815 By default the Index Opening Color is gray characters on a white background.
31818 <A HREF="h_color_setup">Descriptions of the available commands</A>
31820 Look <A HREF="h_edit_nav_cmds">here</A>
31821 to see the available Editing and Navigation commands.
31823 &lt;End of help on this topic&gt;
31824 </BODY>
31825 </HTML>
31826 ====== h_config_index_pri_color =====
31827 <HTML>
31828 <HEAD>
31829 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
31830 </HEAD>
31831 <BODY>
31832 <H1>OPTION: Index Priority Symbol Colors</H1>
31834 The X-Priority header is a non-standard header that is used in a
31835 somewhat standard way by many mail programs.
31836 Alpine expects the value of this header to be a digit with a value
31837 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
31838 Alpine can be made to display an indication of this priority in
31839 messages by use of one of the tokens
31840 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
31841 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
31842 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31845 You may set the color used to draw these tokens by use of the colors
31846 Index High Priority Symbol Color and Index Low Priority Symbol Color.
31847 This coloring takes place for all but the current index line, and the Priority
31848 Color appears to be in front of any color from an Index Color Rule.
31849 If the priority has a value of 1 or 2 the High Priority color will be
31850 used,
31851 and if the value is 4 or 5 the Low Priority color will be used.
31853 If you don't set these colors the index line will be colored in the same color as
31854 the bulk of the index line.
31857 <A HREF="h_color_setup">Descriptions of the available commands</A>
31859 Look <A HREF="h_edit_nav_cmds">here</A>
31860 to see the available Editing and Navigation commands.
31862 &lt;End of help on this topic&gt;
31863 </BODY>
31864 </HTML>
31865 ====== h_config_index_subject_color =====
31866 <HTML>
31867 <HEAD>
31868 <TITLE>OPTION: Index Subject Color</TITLE>
31869 </HEAD>
31870 <BODY>
31871 <H1>OPTION: Index Subject Color</H1>
31873 You may set the color used to draw the Subject part of the index line.
31874 This coloring takes place for all but the current index line, and the Subject
31875 Color appears to be in front of any color from an Index Color Rule.
31877 If you don't set this color it will be colored in the same color as
31878 the bulk of the index line.
31881 <A HREF="h_color_setup">Descriptions of the available commands</A>
31883 Look <A HREF="h_edit_nav_cmds">here</A>
31884 to see the available Editing and Navigation commands.
31886 &lt;End of help on this topic&gt;
31887 </BODY>
31888 </HTML>
31889 ====== h_config_index_from_color =====
31890 <HTML>
31891 <HEAD>
31892 <TITLE>OPTION: Index From Color</TITLE>
31893 </HEAD>
31894 <BODY>
31895 <H1>OPTION: Index From Color</H1>
31897 You may set the color used to draw the From part of the index line.
31898 This coloring takes place for all but the current index line, and the From
31899 Color appears to be in front of any color from an Index Color Rule.
31901 If you don't set this color it will be colored in the same color as
31902 the bulk of the index line.
31905 <A HREF="h_color_setup">Descriptions of the available commands</A>
31907 Look <A HREF="h_edit_nav_cmds">here</A>
31908 to see the available Editing and Navigation commands.
31910 &lt;End of help on this topic&gt;
31911 </BODY>
31912 </HTML>
31913 ====== h_config_index_arrow_color =====
31914 <HTML>
31915 <HEAD>
31916 <TITLE>OPTION: Index Arrow Color</TITLE>
31917 </HEAD>
31918 <BODY>
31919 <H1>OPTION: Index Arrow Color</H1>
31921 If you have configured your
31922 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31923 to include the &quot;ARROW&quot; token, you may set the color of
31924 the arrow displayed with this option.
31925 If you don't set the color it will be colored in the same color as
31926 the bulk of the index line.
31929 <A HREF="h_color_setup">Descriptions of the available commands</A>
31931 Look <A HREF="h_edit_nav_cmds">here</A>
31932 to see the available Editing and Navigation commands.
31934 &lt;End of help on this topic&gt;
31935 </BODY>
31936 </HTML>
31937 ====== h_config_index_color =====
31938 <HTML>
31939 <HEAD>
31940 <TITLE>OPTION: Index Colors</TITLE>
31941 </HEAD>
31942 <BODY>
31943 <H1>OPTION: Index Colors</H1>
31945 You may add color to the single character symbols that give the status
31946 of each message in the MESSAGE INDEX.
31947 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
31948 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
31949 screen depending on whether the message is addressed to you, and whether
31950 the message is marked Important, is Deleted, is Answered, or is New.
31951 The color for each of those characters may be specified by setting the
31952 &quot;Index-to-me&quot; Symbol Color,
31953 the &quot;Index-important&quot; Symbol Color,
31954 the &quot;Index-deleted&quot; Symbol Color,
31955 the &quot;Index-answered&quot; Symbol Color,
31956 and the &quot;Index-new&quot; Symbol Color.
31957 There are also two other symbol colors called &quot;Index-recent&quot;
31958 and &quot;Index-unseen&quot;.
31959 These two colors will only be used if you have configured your
31960 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31961 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
31963 The default colors for these symbols are:
31964 <TABLE>
31965 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
31966 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
31967 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31968 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
31969 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
31970 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31971 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31972 </TABLE>
31974 Besides coloring the message status symbols, you may also color the
31975 entire index line.
31976 This is done by using the
31977 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
31978 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
31979 When the entire line is colored that color will be &quot;behind&quot; the
31980 status symbol colors talked about in the paragraph above.
31982 You may also color
31983 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
31984 in the index using the
31985 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
31986 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
31987 the Subject using
31988 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
31989 the From field using
31990 <A HREF="h_config_index_from_color">Index From Color</A>;
31991 and the
31992 <A HREF="h_config_index_opening_color">Index Opening</A> text.
31994 <A HREF="h_color_setup">Descriptions of the available commands</A>
31996 Look <A HREF="h_edit_nav_cmds">here</A>
31997 to see the available Editing and Navigation commands.
31999 &lt;End of help on this topic&gt;
32000 </BODY>
32001 </HTML>
32002 ====== h_config_metamsg_color =====
32003 <HTML>
32004 <HEAD>
32005 <TITLE>OPTION: Meta-Message Color</TITLE>
32006 </HEAD>
32007 <BODY>
32008 <H1>OPTION: Meta-Message Color</H1>
32010 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
32011 that aren't part of the message itself.
32012 For example, an attachment that isn't shown might produce a meta
32013 message something like:
32015 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
32017 If you set the
32018 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
32019 option you might see
32021 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
32023 Warnings about suspicious looking URLs in HTML will also be colored
32024 with this color.
32026 The foreground color is the color of the actual character and the
32027 background color is the color of the area behind the character.
32028 By default, the Meta-Message Color is black characters on a yellow background.
32030 <A HREF="h_color_setup">Descriptions of the available commands</A>
32032 Look <A HREF="h_edit_nav_cmds">here</A>
32033 to see the available Editing and Navigation commands.
32035 &lt;End of help on this topic&gt;
32036 </BODY>
32037 </HTML>
32038 ====== h_config_keylabel_color =====
32039 <HTML>
32040 <HEAD>
32041 <TITLE>OPTION: KeyLabel Color</TITLE>
32042 </HEAD>
32043 <BODY>
32044 <H1>OPTION: KeyLabel Color</H1>
32046 Sets the color Alpine uses for the labels of the keys in the two-line
32047 menu at the bottom of the screen.
32048 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32049 This option sets the color used when displaying &quot;PrevMsg&quot;.
32050 The foreground color is the color of the actual character and the
32051 background color is the color of the area behind the character.
32052 By default, the KeyLabel Color is the same as the Normal Color.
32054 WARNING: Some terminal emulators have the property that the screen will scroll
32055 down one line whenever a character is written to the character cell in the
32056 lower right corner of the screen.
32057 Alpine can usually avoid writing a character in that corner of the screen.
32058 However, if you have defined a KeyLabel Color then Alpine does have to write
32059 a character in that cell in order to color the cell correctly.
32060 If you find that your display sometimes scrolls up a line this could be
32061 the problem.
32062 The most obvious symptom is probably that the titlebar at the top of the
32063 screen scrolls off the screen.
32064 Try setting KeyLabel Color to Default to see if that fixes the problem.
32066 <A HREF="h_color_setup">Descriptions of the available commands</A>
32068 Look <A HREF="h_edit_nav_cmds">here</A>
32069 to see the available Editing and Navigation commands.
32071 &lt;End of help on this topic&gt;
32072 </BODY>
32073 </HTML>
32074 ====== h_config_keyname_color =====
32075 <HTML>
32076 <HEAD>
32077 <TITLE>OPTION: KeyName Color</TITLE>
32078 </HEAD>
32079 <BODY>
32080 <H1>OPTION: KeyName Color</H1>
32082 Sets the color Alpine uses for the names of the keys in the two-line
32083 menu at the bottom of the screen.
32084 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32085 This option sets the color used when displaying the &quot;P&quot;.
32086 The foreground color is the color of the actual character and the
32087 background color is the color of the area behind the character.
32088 By default, the KeyName Color is the same as the Reverse Color.
32090 <A HREF="h_color_setup">Descriptions of the available commands</A>
32092 Look <A HREF="h_edit_nav_cmds">here</A>
32093 to see the available Editing and Navigation commands.
32095 &lt;End of help on this topic&gt;
32096 </BODY>
32097 </HTML>
32098 ====== h_config_slctbl_color =====
32099 <HTML>
32100 <HEAD>
32101 <TITLE>OPTION: Selectable Item Color</TITLE>
32102 </HEAD>
32103 <BODY>
32104 <H1>OPTION: Selectable Item Color</H1>
32106 Sets the color Alpine uses for selectable items, such as URLs.
32107 The foreground color is the color of the actual character and the
32108 background color is the color of the area behind the character.
32109 By default, the Selectable Item Color is the same as the Normal Color,
32110 except that it is bold.
32112 <A HREF="h_color_setup">Descriptions of the available commands</A>
32114 Look <A HREF="h_edit_nav_cmds">here</A>
32115 to see the available Editing and Navigation commands.
32117 &lt;End of help on this topic&gt;
32118 </BODY>
32119 </HTML>
32120 ====== h_config_quote_color =====
32121 <HTML>
32122 <HEAD>
32123 <TITLE>OPTION: Quote Colors</TITLE>
32124 </HEAD>
32125 <BODY>
32126 <H1>OPTION: Quote Colors</H1>
32128 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32129 screen.
32130 If a line begins with a &gt; character (or space followed by &gt;)
32131 it is considered a quote.
32132 That line will be given the Quote1 Color (first level quote).
32133 If there is a second level of quoting then the Quote2 Color will be used.
32134 Alpine considers there to be a second level of quoting if that first &gt; is
32135 followed by another &gt; (or space followed by &gt;).
32136 If there are characters other than whitespace and &gt; signs, then it isn't
32137 considered another level of quoting.
32138 Similarly, if there is a third level of quoting the Quote3 Color will be
32139 used.
32140 If there are more levels after that the Quote Colors are re-used.
32141 If you define all three colors then it would repeat like Color1, Color2, Color3,
32142 Color1, Color2, Color3, ...
32143 If you only define the first two it would be
32144 Color1, Color2, Color1, Color2, ...
32145 If you define only the Quote1 Color, then the entire quote would be that
32146 color regardless of the quoting levels.
32147 By default, the Quote1 Color is black characters on a greenish-blue background;
32148 the Quote2 Color is black characters on a dull yellow background; and
32149 the Quote3 Color is black characters on a green background.
32151 <A HREF="h_color_setup">Descriptions of the available commands</A>
32153 Look <A HREF="h_edit_nav_cmds">here</A>
32154 to see the available Editing and Navigation commands.
32156 &lt;End of help on this topic&gt;
32157 </BODY>
32158 </HTML>
32159 ====== h_config_folder_color =====
32160 <HTML>
32161 <HEAD>
32162 <TITLE>OPTION: Folder Color</TITLE>
32163 </HEAD>
32164 <BODY>
32165 <H1>OPTION: Folder Color</H1>
32167 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32168 screen. By default, the Folder Color is the normal text color.
32171 If you set a color for this feature, other than the normal color
32172 (the default), or a color for
32173 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32174 will be colored according to the color specified in the
32175 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32176 case, the color will be the only indication that the colored name
32177 refers to a directory. The normal behavior is that Alpine
32178 indicates that a name refers to a directory by appending a
32179 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32180 the folder.
32183 If a folder is a directory, then the folder name will be painted
32184 according to the color defined by this variable, and a separator
32185 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32186 to the name. That
32187 indicator will be painted according to the color defined in the
32188 <A HREF="h_config_directory_color">Directory Color</A> option.
32191 &lt;End of help on this topic&gt;
32192 </BODY>
32193 </HTML>
32194 ====== h_config_directory_color =====
32195 <HTML>
32196 <HEAD>
32197 <TITLE>OPTION: Directory Color</TITLE>
32198 </HEAD>
32199 <BODY>
32200 <H1>OPTION: Directory Color</H1>
32202 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32203 screen. By default, the Folder Color is the normal text color.
32205 If you set a color for this feature, other than the normal color
32206 (the default), or a color for
32207 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32208 will be colored according to the color specified in the
32209 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32210 case, the color will be the only indication that the colored name
32211 refers to a directory. The normal behavior is that Alpine
32212 indicates that a name refers to a directory by appending a
32213 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32214 the folder.
32216 If a folder is a directory, then the folder name will be painted
32217 according to the color defined by the option
32218 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32219 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32220 after the name. That
32221 indicator will be painted according to the color defined in this
32222 option.
32224 &lt;End of help on this topic&gt;
32225 </BODY>
32226 </HTML>
32227 ====== h_config_folder_list_color =====
32228 <HTML>
32229 <HEAD>
32230 <TITLE>OPTION: Folder-List Color</TITLE>
32231 </HEAD>
32232 <BODY>
32233 <H1>OPTION: Folder-List Color</H1>
32235 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32236 screen. By default, the Folder-List Color is the normal text color.
32238 This text refers to the informative text that Alpine displays so you
32239 can recognize each collection. The color of the content of each collection
32240 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32241 and <A HREF="h_config_directory_color">Directory Color</A>.
32243 Unlike the options
32244 <A HREF="h_config_folder_color">Folder Color</A>
32245 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32246 this option does not affect the way that Alpine reports folders,
32247 directories and folders that are directories.
32249 &lt;End of help on this topic&gt;
32250 </BODY>
32251 </HTML>
32252 ====== h_config_incunseen_color =====
32253 <HTML>
32254 <HEAD>
32255 <TITLE>OPTION: Incoming Unseen Color</TITLE>
32256 </HEAD>
32257 <BODY>
32258 <H1>OPTION: Incoming Unseen Color</H1>
32260 If the option
32261 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
32262 is turned on it is possible to highlight the folders that contain
32263 unseen messages by coloring them with this color.
32264 By default, this is the same as the Normal Color and no highlighting is done.
32266 Usually the &quot;current&quot; folder (the folder the cursor is on)
32267 is highlighted using reverse video.
32268 If the current folder is colored because it contains unseen messages then
32269 the color used to show that it is also the current folder is controlled
32270 by the
32271 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
32272 feature at the top of the SETUP COLOR screen.
32274 <A HREF="h_color_setup">Descriptions of the available commands</A>
32276 Look <A HREF="h_edit_nav_cmds">here</A>
32277 to see the available Editing and Navigation commands.
32279 &lt;End of help on this topic&gt;
32280 </BODY>
32281 </HTML>
32282 ====== h_config_signature_color =====
32283 <HTML>
32284 <HEAD>
32285 <TITLE>OPTION: Signature Color</TITLE>
32286 </HEAD>
32287 <BODY>
32288 <H1>OPTION: Signature Color</H1>
32290 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
32291 screen. According to USENET conventions, the signature is defined as the
32292 paragraph following the &quot;sigdashes&quot;, that is, the special line
32293 consisting of the three characters
32294 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
32295 empty line right after the sigdashes to be considered as part of the
32296 signature.
32297 By default, the Signature Color is blue characters on a white background.
32299 <A HREF="h_color_setup">Descriptions of the available commands</A>
32301 Look <A HREF="h_edit_nav_cmds">here</A>
32302 to see the available Editing and Navigation commands.
32304 &lt;End of help on this topic&gt;
32305 </BODY>
32306 </HTML>
32307 ====== h_config_prompt_color =====
32308 <HTML>
32309 <HEAD>
32310 <TITLE>OPTION: Prompt Color</TITLE>
32311 </HEAD>
32312 <BODY>
32313 <H1>OPTION: Prompt Color</H1>
32315 Sets the color Alpine uses for confirmation prompts and questions that
32316 appear in the status line near the bottom of the screen.
32317 The foreground color is the color of the actual character and the
32318 background color is the color of the area behind the character.
32319 By default, the Prompt Color is the same as the Reverse Color.
32321 <A HREF="h_color_setup">Descriptions of the available commands</A>
32323 Look <A HREF="h_edit_nav_cmds">here</A>
32324 to see the available Editing and Navigation commands.
32326 &lt;End of help on this topic&gt;
32327 </BODY>
32328 </HTML>
32329 ====== h_config_header_general_color =====
32330 <HTML>
32331 <HEAD>
32332 <TITLE>OPTION: Header General Color</TITLE>
32333 </HEAD>
32334 <BODY>
32335 <H1>OPTION: Header General Color</H1>
32337 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
32338 screen.
32339 The foreground color is the color of the actual character and the
32340 background color is the color of the area behind the character.
32341 By default, this is the same as the Normal Color.
32343 It is also possible to set the colors for specific header fields, for
32344 example the Subject, using
32345 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
32346 If both a Header General Color and a specific Viewer Header Color are set
32347 the specific color will override the general color, as you would expect.
32349 <A HREF="h_color_setup">Descriptions of the available commands</A>
32351 Look <A HREF="h_edit_nav_cmds">here</A>
32352 to see the available Editing and Navigation commands.
32354 &lt;End of help on this topic&gt;
32355 </BODY>
32356 </HTML>
32357 ====== h_config_incol =====
32358 <HTML>
32359 <HEAD>
32360 <TITLE>Index Line Color</TITLE>
32361 </HEAD>
32362 <BODY>
32363 <H1>Index Line Color</H1>
32365 This option is used to set the color of a line in the index when the
32366 message for that line matches the Pattern.
32367 This colors the whole index line, except possibly the status letters,
32368 which may be colored separately using the
32369 <A HREF="h_color_setup">Setup Kolor</A> screen.
32370 The foreground color is the color of the actual characters and the
32371 background color is the color of the area behind the characters.
32373 <A HREF="h_color_setup">Descriptions of the available commands</A>
32375 Look <A HREF="h_edit_nav_cmds">here</A>
32376 to see the available Editing and Navigation commands.
32378 &lt;End of help on this topic&gt;
32379 </BODY>
32380 </HTML>
32381 ====== h_config_usetransparent_color =====
32382 <HTML>
32383 <HEAD>
32384 <TITLE>OPTION: Use Transparent Color</TITLE>
32385 </HEAD>
32386 <BODY>
32387 <H1>OPTION: Use Transparent Color</H1>
32389 This is a special color supported by some terminal emulators.
32390 It is intended to result in the default foreground or background color
32391 from the terminal emulator.
32392 This is the color the terminal was displaying characters in before you started Alpine.
32393 The reason it is called Transparent is because you could set the foreground color
32394 to some specific color, like Red, and then set the background color to the
32395 Transparent Color. If it works as expected, the background color from the terminal
32396 window in which Alpine is running will show through but with the Red characters
32397 in the foreground.
32399 <A HREF="h_color_setup">Descriptions of the available commands</A>
32401 Look <A HREF="h_edit_nav_cmds">here</A>
32402 to see the available Editing and Navigation commands.
32404 &lt;End of help on this topic&gt;
32405 </BODY>
32406 </HTML>
32407 ====== h_config_usenormal_color =====
32408 <HTML>
32409 <HEAD>
32410 <TITLE>OPTION: Use Normal Color</TITLE>
32411 </HEAD>
32412 <BODY>
32413 <H1>OPTION: Use Normal Color</H1>
32415 When you use this color value, the actual color used will be the same
32416 as the corresponding Normal Color.
32417 For example if your Normal Color is black on white and you set both
32418 the foreground and background colors here to use the Normal Color, you'll
32419 get black on white. If you later change the Normal Color to red on blue
32420 this color will also change to red on blue.
32422 <A HREF="h_color_setup">Descriptions of the available commands</A>
32424 Look <A HREF="h_edit_nav_cmds">here</A>
32425 to see the available Editing and Navigation commands.
32427 &lt;End of help on this topic&gt;
32428 </BODY>
32429 </HTML>
32430 ====== h_config_usenone_color =====
32431 <HTML>
32432 <HEAD>
32433 <TITLE>OPTION: Use None Color</TITLE>
32434 </HEAD>
32435 <BODY>
32436 <H1>OPTION: Use None Color</H1>
32438 This is a special color that simply means to leave the color alone.
32439 It is useful for Index symbols and for Keyword Colors used in the Subject
32440 field of an index line.
32441 The most likely use is to set an explicit foreground color and then set
32442 the background color to the None Color.
32443 That will cause the symbol or keyword to be drawn in the foreground color
32444 with a background equal to whatever color the rest of the index line is already
32445 drawn in.
32446 You will see no visible effect unless you have assigned Indexcolor Rules to
32447 color index lines or you have set an actual color for the Reverse Color.
32449 <A HREF="h_color_setup">Descriptions of the available commands</A>
32451 Look <A HREF="h_edit_nav_cmds">here</A>
32452 to see the available Editing and Navigation commands.
32454 &lt;End of help on this topic&gt;
32455 </BODY>
32456 </HTML>
32457 ====== h_config_dflt_color =====
32458 <HTML>
32459 <HEAD>
32460 <TITLE>OPTION: Default Color</TITLE>
32461 </HEAD>
32462 <BODY>
32463 <H1>OPTION: Default Color</H1>
32465 Setting default will cause the color to be the default color.
32466 Unsetting default is normally done by choosing a color, but in some cases
32467 you may want to declare the current default color to be your non-default
32468 choice.
32469 For example, the default Keyname Color is the same as the Reverse Color.
32470 Whenever the Reverse Color changes the Keyname Color will also change, unless
32471 you've changed it or unset the default box.
32473 <A HREF="h_color_setup">Descriptions of the available commands</A>
32475 Look <A HREF="h_edit_nav_cmds">here</A>
32476 to see the available Editing and Navigation commands.
32478 &lt;End of help on this topic&gt;
32479 </BODY>
32480 </HTML>
32481 ====== h_config_bold_slctbl =====
32482 <HTML>
32483 <HEAD>
32484 <TITLE>OPTION: Bold</TITLE>
32485 </HEAD>
32486 <BODY>
32487 <H1>OPTION: Bold</H1>
32489 The color for this particular section may have the Bold attribute turned
32490 on or off.
32491 Setting bold will cause the characters to be bold.
32493 <A HREF="h_color_setup">Descriptions of the available commands</A>
32495 Look <A HREF="h_edit_nav_cmds">here</A>
32496 to see the available Editing and Navigation commands.
32498 &lt;End of help on this topic&gt;
32499 </BODY>
32500 </HTML>
32501 ====== h_config_kw_color =====
32502 <HTML>
32503 <HEAD>
32504 <TITLE>OPTION: Keyword Colors</TITLE>
32505 </HEAD>
32506 <BODY>
32507 <H1>OPTION: Keyword Colors</H1>
32509 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32510 Keywords are displayed as part of the Subject by default.
32511 They are also displayed as part of the Subject if the tokens
32512 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32513 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32514 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32515 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32517 For example, you might have set up a Keyword
32518 &quot;Work&quot; using the
32519 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32520 You could cause that Keyword to show up as a special color
32521 by setting up the Keyword Color using this option, and then including it
32522 in the MESSAGE INDEX screen using one of the tokens listed above in the
32523 <!--#echo var="VAR_index-format"-->.
32525 <A HREF="h_color_setup">Descriptions of the available commands</A>
32527 Look <A HREF="h_edit_nav_cmds">here</A>
32528 to see the available Editing and Navigation commands.
32530 &lt;End of help on this topic&gt;
32531 </BODY>
32532 </HTML>
32533 ====== h_config_customhdr_color =====
32534 <HTML>
32535 <HEAD>
32536 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32537 </HEAD>
32538 <BODY>
32539 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32541 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32542 For example, you may set the color of the Subject header or the From header.
32543 The foreground color is the color of the actual character and the
32544 background color is the color of the area behind the character.
32546 In addition to setting the colors for particular headers (like the Subject)
32547 you may also set a color to be used for all headers unless overridden by a
32548 more specific Viewer Header Color.
32549 To do this use the
32550 <A HREF="h_config_header_general_color">Header General Color</A>.
32552 For Header Colors,
32553 there is an additional line on the
32554 screen labeled &quot;Pattern to match&quot;.
32555 If you leave that blank, then the whole field for that header will
32556 be colored.
32557 However, if you give a pattern to match, the coloring will only take place
32558 if there is a match for that pattern in the value of the field.
32559 For example, if you are working on a color for the Subject header and
32560 you fill in a pattern of &quot;important&quot;, then only Subjects that
32561 contain the word &quot;important&quot; will be colored.
32563 If the pattern you enter is a comma-separated list of patterns, then coloring
32564 happens if any of those patterns matches.
32566 <A HREF="h_color_setup">Descriptions of the available commands</A>
32568 Look <A HREF="h_edit_nav_cmds">here</A>
32569 to see the available Editing and Navigation commands.
32571 &lt;End of help on this topic&gt;
32572 </BODY>
32573 </HTML>
32574 ====== h_config_indextoken_color =====
32575 <HTML>
32576 <HEAD>
32577 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
32578 </HEAD>
32579 <BODY>
32580 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
32582 This option allows you to set up the color in which any token, not specified by the
32583 previous options, will be colored in the MESSAGE INDEX screen. 
32585 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
32586 a token that can be used in the index format. 
32587 The list of available tokens is <A HREF="h_index_tokens">here</A>.
32589 If you fail to enter a valid token your entry will be ignored, and you will be asked to
32590 enter a new one. Once you have entered a valid token, a line will be added to the
32591 configuration screen that you can use to set up the colors in which that token will
32592 be painted. This is done in the same way that you configure colors for other
32593 variables.
32595 <A HREF="h_color_setup">Descriptions of the available commands</A>
32597 Look <A HREF="h_edit_nav_cmds">here</A>
32598 to see the available Editing and Navigation commands.
32600 &lt;End of help on this topic&gt;
32601 </BODY>
32602 </HTML>
32603 ====== h_config_customhdr_pattern =====
32604 <HTML>
32605 <HEAD>
32606 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
32607 </HEAD>
32608 <BODY>
32609 <H1>OPTION: Viewer Header Color Pattern</H1>
32611 If you leave this blank, then the whole field for the header will
32612 be colored.
32613 If you give a pattern to match, the coloring will only take place
32614 if there is a match for that pattern in the value of the field.
32615 For example, if you are working on a color for the Subject header and
32616 you fill in a pattern of &quot;important&quot;, then only Subjects that
32617 contain the word &quot;important&quot; will be colored.
32619 For address headers (like From and To) and for the Newsgroups header,
32620 a pattern match will cause only the matched addresses or newsgroups to be
32621 colored.
32622 If there is no pattern to match, then all of the addresses or newsgroups
32623 in the relevant header will be colored.
32625 The matching pattern may be a comma-separated list of patterns to match
32626 instead of a single pattern.
32627 For example, you could use the pattern &quot;important,urgent&quot; which would
32628 cause a match if either the word &quot;important&quot; or the word
32629 &quot;urgent&quot; appeared in the value of the header.
32630 You could list several comma-separated email addresses in the Header
32631 From Color pattern so that those addresses will be colored when any of
32632 them appear in the From header.
32634 To add a new matching pattern or change the existing pattern use the 
32635 <!--chtml if pinemode="function_key"-->
32636 &quot;F4&quot;
32637 <!--chtml else-->
32638 &quot;C&quot;
32639 <!--chtml endif-->
32640 &quot;Change&quot; command that is available when the &quot;Pattern to
32641 match&quot; line is highlighted.
32643 <!--chtml if pinemode="function_key"-->
32644 &quot;F10&quot;
32645 <!--chtml else-->
32646 &quot;D&quot;
32647 <!--chtml endif-->
32648 &quot;Delete&quot; command may be used to quickly remove all patterns
32649 for a particular header.
32651 &lt;End of help on this topic&gt;
32652 </BODY>
32653 </HTML>
32654 ====== h_color_setup =====
32655 <HTML>
32656 <HEAD>
32657 <TITLE>SETUP COLOR COMMANDS</TITLE>
32658 </HEAD>
32659 <BODY>
32660 <H1>SETUP COLOR COMMANDS</H1>
32661 <!--chtml if pinemode="function_key"-->
32662 <PRE>
32663 Available Commands -- Group 1
32664 -------------------------------
32665 F1  Display this help text
32666 F2  Show other available commands
32667 F3  Exit to MAIN MENU
32668 F4  Select the highlighted foreground or background color
32669 F5  Move to previous line
32670 F6  Move to next line
32671 F7  Previous page
32672 F8  Next page
32673 F9  Add a config section for a header field
32674 F10 Restore all default colors (for all sections)
32675 F11 Print color configuration screen
32676 F12 Whereis (search for word)
32678 Available Commands -- Group 2
32679 -------------------------------
32680 F1  Display this help text
32681 F2  Show other available commands
32682 F5  Delete config section for highlighted header field
32683 F6  Shuffle the order of Header Color sections
32684 </PRE>
32685 <!--chtml else-->
32686 <PRE>
32687 General commands
32688 -------------------------------------------------
32689  ?  Display this help text     E  Exit back to MAIN MENU
32690  P  Previous Line              N  Next Line
32691  -  Previous page             Spc (space bar) Next page
32692  W  WhereIs (search for word)  %  Print color configuration screen
32694 Color Setup Commands
32695 ------------------------------------------------
32696  *  Select the highlighted foreground or background color
32697  A  Add a config section for a header field
32698  D  Delete config section for highlighted header field
32699  R  Restore all default colors (for all sections)
32700  $  Shuffle the order of Header Color sections
32701 </PRE>
32702 <!--chtml endif-->
32704 <H2>Description of the Setup Color Screen</H2>
32706 From this screen you may turn on color and set the colors of
32707 various parts of the Alpine display.
32708 For help on turning on color move your cursor into the Color Style section
32709 at the top of the Setup Color screen and ask for help.
32712 There are several sections in the Setup Color Screen.
32713 At the top are some settings that handle the style of color used
32714 with your terminal emulator (UNIX only), and some settings that
32715 control how the current indexline and the titlebar are colored.
32716 After that comes a long section called GENERAL COLORS that allows
32717 you to set the color of many elements in the Alpine screens.
32718 For example, the color of the titlebar, status messages,
32719 selectable links, quotes and signatures in messages, and so on.
32720 After that is a section called INDEX COLORS that allows you to
32721 set the colors of various pieces of the displayed index lines in
32722 the MESSAGE INDEX screen.
32723 The next section is HEADER COLORS. This is for coloring headers of
32724 messages in the MESSAGE TEXT screen in just about any way you would like.
32725 Finally, the KEYWORD COLORS section allows you to highlight
32726 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32727 in the MESSAGE INDEX screen.
32730 To change a color, highlight the color you want to change (for example,
32731 the Status Color) by moving
32732 the cursor into it.
32733 You may want to read the help text for the color to see a brief desription
32734 of what you are coloring.
32735 Then press &quot;C&quot; for Change to set the color to something new.
32736 That will put you into a screen with two columns of colors, one for
32737 the foreground color and one for the background color.
32738 The foreground color is just the color you want the actual characters
32739 to be and the background color is the color of the rest of the rectangle
32740 behind the characters.
32741 Select the foreground and background colors desired by using the Next and
32742 Prev keys to highlight the color, and the * command to select it.
32744 To set a color to its default value, set the X in the Default line at
32745 the bottom of the list of colors.
32748 The HEADER COLORS section is a little bit different from the others.
32749 Besides coloring the specific fields that Alpine knows about, you may also
32750 color specific header fields when viewing a message in the MESSAGE TEXT
32751 screen.
32752 For example, you may color the Subject header a particular color.
32753 There are a few commands for use with headers.
32754 The &quot;AddHeader&quot; command adds a section to the color
32755 configuration screen that allows you to set the color for that header.
32756 You'll be asked for the name of the header field you want to color.
32757 If you wanted to color the Subject, you would answer
32758 with the word &quot;subject&quot;.
32759 Once you've added a header field, the color setting works just like the
32760 other color fields, except that there is an additional line on the
32761 configuration screen labeled &quot;Pattern to match&quot;.
32762 If you leave that blank, then the whole field for that header will always
32763 be colored.
32764 However, if you give a pattern to match, the coloring will only take place
32765 if there is a match for that pattern in the value of the field.
32766 For example, if you are working on a color for the Subject header and
32767 you fill in a pattern of &quot;important&quot;, then only Subjects that
32768 contain the word &quot;important&quot; will be colored.
32770 The &quot;DeleteHdr&quot; command removes a header section from the
32771 configuration altogether.
32772 The &quot;Shuffle&quot; command changes the order of header sections.
32773 This is only necessary if you use header sections with pattern fields.
32774 For example, if you have two Subject sections, one with one pattern and
32775 another with another pattern, and the subject for a particular message
32776 happens to match both, then the color from the first match is used.
32779 The command &quot;RestoreDefs&quot; will restore all of the default colors.
32780 Each section will change to the default value used for that section when
32781 color is first enabled.
32782 When you restore all default colors the color settings for the Header Colors
32783 will be unset (since that's the default), but the header fields you've
32784 added will remain so that you may easily reset them.
32785 In order to get rid of them completely you'd have to use
32786 the &quot;DeleteHdr&quot; command.
32789 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
32790 may be set with matching rules and that is configured separately from
32791 the rest of the color settings described here.
32792 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
32793 instead of in the Setup/Kolor section.
32795 <P><UL>
32796 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32797 </UL><P>
32798 &lt;End of help on this topic&gt;
32799 </BODY>
32800 </HTML>
32801 ====== h_config_news_uses_recent ======
32802 <HTML>
32803 <HEAD>
32804 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
32805 </HEAD>
32806 <BODY>
32807 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
32809 This feature causes certain messages to be marked as "New" in the
32810 MESSAGE INDEX of newsgroups.
32811 This feature is set by default.
32815 When opening a newsgroup, Alpine will consult your "newsrc" file and
32816 determine the last message you have previously disposed of via the "D"
32817 key.  If this feature is set, any subsequent messages will be shown in the
32818 Index with an "N", and the first of these messages will be highlighted.
32819 Although this is only an approximation of true "New" or "Unseen"
32820 status, it provides a useful cue to distinguish more-or-less recent
32821 messages from those you have seen previously, but are not yet ready to
32822 mark deleted.
32826 Background: your "newsrc" file (used to store message status information
32827 for newsgroups) is only capable of storing a single flag, and Alpine uses
32828 this to record whether or not you are "done with" a message, as
32829 indicated by marking the message as "Deleted".  Unfortunately, this
32830 means that Alpine has no way to record exactly which messages you have
32831 previously seen, so it normally does not show the "N" status flag for
32832 any messages in a newsgroup. This feature enables a starting
32833 *approximation* of seen/unseen status that may be useful.
32835 &lt;End of help on this topic&gt;
32836 </BODY>
32837 </HTML>
32838 ====== h_config_expose_hidden_config =====
32839 <HTML>
32840 <HEAD>
32841 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
32842 </HEAD>
32843 <BODY>
32844 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
32846 If set, this causes configuration options and features that are normally
32847 hidden from view to be editable in the Setup/Config screen.
32850 The purpose of this feature is to allow you to change configuration
32851 features and variables that are normally hidden.
32852 This is particularly useful if you are using a remote configuration,
32853 where it is difficult to edit the contents manually, but it may also be used
32854 on a local pinerc configuration file.
32856 If set, several configuration variables and features that are normally
32857 hidden from view will show up in the Setup/Configuration screen.
32858 They will be at the bottom of the configuration screen.
32859 You can find them by searching for the words &quot;hidden configuration&quot;.
32862 Note that this is an advanced feature that should be used with care.
32863 The reason that this part of the configuration is normally hidden is because
32864 there is a significant potential for causing problems if you change these
32865 variables.
32866 If something breaks after a change try changing it back to see if that is
32867 what is causing the problem.
32868 There are also some variables that are normally hidden because they are
32869 manipulated through Alpine in other ways.
32870 For example, colors are normally set using the Setup/Kolors screen and
32871 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
32872 the Setup/AddressBooks screen, so there is little reason to edit these directly.
32873 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
32874 the Add, Delete, and Rename commands in the FOLDER LIST screen,
32875 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
32876 internally by Alpine and not set directly by the user.
32878 <UL>   
32879 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32880 </UL><P>
32881 &lt;End of help on this topic&gt;
32882 </BODY>
32883 </HTML>
32884 ====== h_config_disable_signature_edit =====
32885 <HTML>
32886 <HEAD>
32887 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
32888 </HEAD>
32889 <BODY>
32890 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
32892 If set, this disables the editing of signature files from within
32893 the Setup/Config screen.
32895 <UL>   
32896 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32897 </UL><P>
32898 &lt;End of help on this topic&gt;
32899 </BODY>
32900 </HTML>
32901 ====== h_config_disable_roles_templateedit =====
32902 <HTML>
32903 <HEAD>
32904 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
32905 </HEAD>
32906 <BODY>
32907 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
32909 If set, this disables the editing of template files within the
32910 Role setup screen.
32912 <UL>   
32913 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32914 </UL><P>
32915 &lt;End of help on this topic&gt;
32916 </BODY>
32917 </HTML>
32918 ====== h_config_disable_roles_sigedit =====
32919 <HTML>
32920 <HEAD>
32921 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
32922 </HEAD>
32923 <BODY>
32924 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
32926 If set, this disables the editing of signature files within the
32927 Role setup screen.
32929 <UL>   
32930 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32931 </UL><P>
32932 &lt;End of help on this topic&gt;
32933 </BODY>
32934 </HTML>
32935 ====== h_config_disable_roles_setup =====
32936 <HTML>
32937 <HEAD>
32938 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
32939 </HEAD>
32940 <BODY>
32941 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
32943 If set, this disables the Setup/Rules/Roles command.
32945 <UL>   
32946 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32947 </UL><P>
32948 &lt;End of help on this topic&gt;
32949 </BODY>
32950 </HTML>
32951 ====== h_config_disable_pipes_in_templates =====
32952 <HTML>
32953 <HEAD>
32954 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
32955 </HEAD>
32956 <BODY>
32957 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
32959 By default, if a template file name is followed by a vertical bar (|) then
32960 that causes the file to be executed to produce the text for the template.
32961 If this feature is set, then this is not allowed.
32963 <UL>   
32964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32965 </UL><P>
32966 &lt;End of help on this topic&gt;
32967 </BODY>
32968 </HTML>
32969 ====== h_config_disable_pipes_in_sigs =====
32970 <HTML>
32971 <HEAD>
32972 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
32973 </HEAD>
32974 <BODY>
32975 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
32977 By default, if a signature file name is followed by a vertical bar (|) then
32978 that causes the file to be executed to produce the text for the signature.
32979 If this feature is set, then this is not allowed.
32981 <UL>   
32982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32983 </UL><P>
32984 &lt;End of help on this topic&gt;
32985 </BODY>
32986 </HTML>
32987 ====== h_config_disable_password_cmd =====
32988 <HTML>
32989 <HEAD>
32990 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
32991 </HEAD>
32992 <BODY>
32993 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
32995 If set, then the Setup/Newpassword command is disabled.
32997 <UL>   
32998 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32999 </UL><P>
33000 &lt;End of help on this topic&gt;
33001 </BODY>
33002 </HTML>
33003 ====== h_config_disable_password_caching =====
33004 <HTML>
33005 <HEAD>
33006 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
33007 </HEAD>
33008 <BODY>
33009 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
33011 Normally, loginname/password combinations are cached in Alpine so that
33012 you do not have to enter the same password more than once in a session.
33013 A disadvantage to this approach is that the password must be stored in
33014 the memory image of the running Alpine in order that it can be re-used.
33015 In the event that Alpine crashes and produces a core dump, and that core
33016 dump is readable by others, the loginname and password could be read
33017 from the core dump.
33019 If this feature is set, then the passwords will not be cached and you
33020 will have to retype the password whenever Alpine needs it.
33021 Even with this feature set there is still some chance that the core
33022 file will contain a password, so care should be taken to make the
33023 core files unreadable.
33025 NOTE: If PASSFILE caching is enabled, this does not disable it.
33026 That is a separate and independent feature.
33027 <UL>   
33028 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33029 </UL><P>
33030 &lt;End of help on this topic&gt;
33031 </BODY>
33032 </HTML>
33033 ====== h_config_disable_password_file_saving =====
33034 <HTML>
33035 <HEAD>
33036 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
33037 </HEAD>
33038 <BODY>
33039 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
33041 This feature changes the behavior of Alpine when a login name and password combination
33042 for a specific server is not found in the password file. The default behavior is that
33043 Alpine will ask the user if they wish to save this information in the password file for future
33044 use. It is assumed that if a user created a password file it is because they intend
33045 to use it, but in some instances a user might want to save some passwords and not others.
33046 In this case, enabling this feature will make Alpine not add any more passwords to the
33047 password file and will only use the passwords that it already saved. If you wish to allow
33048 Alpine to save more passwords in the password file, disable this feature.
33050 <UL>   
33051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33052 </UL><P>
33053 &lt;End of help on this topic&gt;
33054 </BODY>
33055 </HTML>
33056 ====== h_config_disable_kb_lock =====
33057 <HTML>
33058 <HEAD>
33059 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
33060 </HEAD>
33061 <BODY>
33062 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
33064 If set, then the Keyboard Lock command is removed from the MAIN MENU.
33066 <UL>   
33067 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33068 </UL><P>
33069 &lt;End of help on this topic&gt;
33070 </BODY>
33071 </HTML>
33072 ====== h_config_disable_config_cmd =====
33073 <HTML>
33074 <HEAD>
33075 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33076 </HEAD>
33077 <BODY>
33078 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33080 If set, then the Setup/Config screen is disabled.
33082 <UL>   
33083 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33084 </UL><P>
33085 &lt;End of help on this topic&gt;
33086 </BODY>
33087 </HTML>
33088 ====== h_config_allow_chg_from =====
33089 <HTML>
33090 <HEAD>
33091 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33092 </HEAD>
33093 <BODY>
33094 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33096 This feature affects Alpine's handling of the &quot;From:&quot; header field
33097 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33098 option.
33100 If this feature is set then the From line can be changed just like
33101 all the other header fields that can be changed.
33102 This feature defaults to <EM>ON</EM>.
33104 Even with this feature turned ON (the default) you will not be able 
33105 to change the From header unless you add it to your list of
33106 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33107 You may also want to change the
33108 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33109 if you want the From header to always show up in the composer without
33110 having to type the Rich Headers command first.
33112 Note that many sites restrict the use of this feature in order to
33113 reduce the chance of falsified addresses and misdirected mail.
33114 If you want to change the value of what gets included in the From header
33115 in messages you send
33116 look <A HREF="h_config_change_your_from">here</A> for a description.
33118 <UL>   
33119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33120 </UL><P>
33121 &lt;End of help on this topic&gt;
33122 </BODY>
33123 </HTML>
33124 ====== h_config_disable_collate =====
33125 <HTML>
33126 <HEAD>
33127 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33128 </HEAD>
33129 <BODY>
33130 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33132 This is a hard to understand feature that should only be used in rare cases.
33133 Normally, the C function call
33135 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33137 is used by Alpine.
33138 If you want to try turning it off,
33139 setting this feature will turn it off.
33140 This part of the locale has to do with the sort order
33141 of characters in your locale.
33143 <UL>   
33144 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33145 </UL><P>
33146 &lt;End of help on this topic&gt;
33147 </BODY>
33148 </HTML>
33149 ====== h_config_quell_attach_extra_prompt =====
33150 <HTML>
33151 <HEAD>
33152 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33153 </HEAD>
33154 <BODY>
33155 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33157 By default, when you attempt to view an attachment externally
33158 from the &quot;Attachment View&quot; screen, you are asked if you
33159 really want to view the selected attachment.
33162 If this feature is set, you will <B>not</B> be prompted to confirm
33163 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33164 prompt. This feature was added for those wanting to preserve that
33165 behavior (along with 
33166 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
33169 <UL>   
33170 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33171 </UL><P>
33172 &lt;End of help on this topic&gt;
33173 </BODY>
33174 </HTML>
33175 ====== h_config_quell_attach_ext_warn =====
33176 <HTML>
33177 <HEAD>
33178 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33179 </HEAD>
33180 <BODY>
33181 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33184 This feature suppresses the extra warning you can get when trying
33185 to view an attachment for which there is no mime-type match.  Turning
33186 on this feature will just run the program according to extension
33187 instead of first warning the user that it will run according to the
33188 file's extension.
33190 This feature can be used along side 
33191 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33192 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
33194 <UL>   
33195 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33196 </UL><P>
33197 &lt;End of help on this topic&gt;
33198 </BODY>
33199 </HTML>
33200 ====== h_config_mailcap_params =====
33201 <HTML>
33202 <HEAD>
33203 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33204 </HEAD>
33205 <BODY>
33206 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33208 If set, this will allow mailcap named parameter substitution to occur
33209 in mailcap entries.
33210 By default, this is turned off to prevent security problems that may occur
33211 with some incorrect mailcap configurations.
33212 For more information, see RFC1524 and look for "named parameters" in the
33213 text of the RFC.
33215 <UL>   
33216 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33217 </UL><P>
33218 &lt;End of help on this topic&gt;
33219 </BODY>
33220 </HTML>
33221 ====== h_config_disable_shared =====
33222 <HTML>
33223 <HEAD>
33224 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33225 </HEAD>
33226 <BODY>
33227 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33229 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33230 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33231 will be disabled.
33232 The reason this feature exists is because there are some implementations
33233 of system password lookup routines that are very slow when presented with
33234 a long loginname that does not exist.
33235 This feature could be set to prevent the delay at startup time when the
33236 names above are searched for in the password file.
33238 <UL>   
33239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33240 </UL><P>
33241 &lt;End of help on this topic&gt;
33242 </BODY>
33243 </HTML>
33244 ====== h_config_hide_nntp_path =====
33245 <HTML>
33246 <HEAD>
33247 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
33248 </HEAD>
33249 <BODY>
33250 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
33252 Normally the Path header that Alpine generates when posting to a newsgroup
33253 contains the name of the computer from which the message is being sent and
33254 the user name.
33255 Some believe that this information is used by spammers.
33256 If this feature is set, that information will be replaced with the text
33258 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
33260 instead.
33262 It should be noted that many servers being connected to will still reveal
33263 the information that this feature attempts to protect.
33265 <UL>   
33266 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33267 </UL><P>
33268 &lt;End of help on this topic&gt;
33269 </BODY>
33270 </HTML>
33271 ====== h_config_no_bezerk_zone =====
33272 <HTML>
33273 <HEAD>
33274 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
33275 </HEAD>
33276 <BODY>
33277 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
33279 POSIX mandates a timezone in UNIX mailbox format folder delimiters
33280 (the line that begins with From <SPACE>).
33281 Some versions of Berkeley mail have trouble with this, and don't recognize
33282 the line as a message delimiter.
33283 If this feature is set, the timezone will be left off the delimiter line.
33285 <UL>   
33286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33287 </UL><P>
33288 &lt;End of help on this topic&gt;
33289 </BODY>
33290 </HTML>
33291 ====== h_config_quell_domain_warn =====
33292 <HTML>
33293 <HEAD>
33294 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
33295 </HEAD>
33296 <BODY>
33297 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
33299 When your configuration is set up so that your domain name contains no dots,
33300 it is usually a configuration error.
33301 By default, Alpine will warn you about this when you start it up.
33302 You will see a warning message that looks like
33305 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
33308 If this feature is set, the warning is turned off.
33310 <UL>   
33311 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33312 </UL><P>
33313 &lt;End of help on this topic&gt;
33314 </BODY>
33315 </HTML>
33316 ====== h_config_quell_imap_env =====
33317 <HTML>
33318 <HEAD>
33319 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
33320 </HEAD>
33321 <BODY>
33322 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
33324 In the MESSAGE INDEX screen, if the open folder is being accessed
33325 using IMAP, Alpine normally tries to paint the index lines on the screen
33326 as soon as the information arrives from the IMAP server.
33327 This means that the index information makes it onto the screen more quickly
33328 than it otherwise would.
33329 This sometimes results in behavior that bothers some users.
33330 For example, when paging to a new page of the index, it may be possible for
33331 the lines to be painted on the screen in a random order, rather than from
33332 top to bottom.
33335 Setting this feature causes Alpine to wait for all of the information
33336 to be gathered before it paints the index screen.
33337 Once it collects all of the information, the screen will be painted quickly
33338 from top to bottom.
33340 <UL>   
33341 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33342 </UL><P>
33343 &lt;End of help on this topic&gt;
33344 </BODY>
33345 </HTML>
33346 ====== h_config_quell_news_env =====
33347 <HTML>
33348 <HEAD>
33349 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
33350 </HEAD>
33351 <BODY>
33352 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
33354 In the MESSAGE INDEX screen, if the open folder is being accessed
33355 using NNTP (News), Alpine normally tries to paint the index lines on the screen
33356 as soon as the information arrives from the NNTP server.
33357 This means that the index information makes it onto the screen more quickly
33358 than it otherwise would.
33359 This sometimes results in behavior that bothers some users.
33360 For example, when paging to a new page of the index, it may be possible for
33361 the lines to be painted on the screen in a random order, rather than from
33362 top to bottom.
33365 Setting this feature causes Alpine to wait for all of the information
33366 to be gathered before it paints the index screen.
33367 Once it collects all of the information, the screen will be painted quickly
33368 from top to bottom.
33370 <UL>   
33371 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33372 </UL><P>
33373 &lt;End of help on this topic&gt;
33374 </BODY>
33375 </HTML>
33376 ====== h_config_quell_content_id =====
33377 <HTML>
33378 <HEAD>
33379 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
33380 </HEAD>
33381 <BODY>
33382 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
33384 This feature changes the behavior of Alpine when sending messages.
33385 It is intended to work around a bug in Microsoft's Outlook XP mail user
33386 agent.
33387 As of this writing, Microsoft has acknowledged the bug but
33388 has not added it to the Knowledge Base.
33389 We have been told that there will be a post-SP1 hotfix for Outlook XP.
33390 This particular bug has bug fix number OfficeQFE:4781.
33391 The nature of the bug is that messages with attachments that
33392 contain a Content-ID header (which standard Alpine attachments do)
33393 do not show the attachment indicator (a paperclip) when viewed with
33394 Outlook XP.
33395 So the user has no indication that the message contains an attachment.
33398 If this feature is set then Alpine will remove most Content-ID headers
33399 before sending a message.
33400 If an attachment is of type MESSAGE, then the existing Content-ID headers
33401 inside the message will be left intact.
33402 This would only happen with Alpine if a message was forwarded as an attachment
33403 or if a message with a message attached was forwarded.
33404 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
33405 the Content-ID headers of the alternative parts will not be removed.
33408 Because the Content-ID header is a standard part of MIME it is possible
33409 that setting this feature will break something.
33410 For example, if an attachment has a Content-ID header that is necessary
33411 for the correct functioning of that attachment, it is possible that Alpine
33412 may remove that header when the attachment is forwarded.
33413 However, it seems fairly safe at this time.
33416 <UL>   
33417 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33418 </UL><P>
33419 &lt;End of help on this topic&gt;
33420 </BODY>
33421 </HTML>
33422 ====== h_config_winpos_in_config =====
33423 <HTML>
33424 <HEAD>
33425 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
33426 </HEAD>
33427 <BODY>
33428 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
33430 PC-Alpine only.
33433 Normally, PC-Alpine will store its window size and position in the
33434 Windows Registry.
33435 This is convenient if you want to use the same remote
33436 configuration from more than one PC.
33437 If you use multiple configuration files to start PC-Alpine, you may want
33438 to store the window size and position in the configuration file instead
33439 of in the Registry.
33440 Setting this feature causes the value to be stored in 
33441 <A HREF="h_config_window_position">Window-Position</A>.
33444 <UL>   
33445 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33446 </UL><P>
33447 &lt;End of help on this topic&gt;
33448 </BODY>
33449 </HTML>
33450 ====== h_config_quell_ssl_largeblocks =====
33451 <HTML>
33452 <HEAD>
33453 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
33454 </HEAD>
33455 <BODY>
33456 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
33458 PC-Alpine only.
33460 This feature changes the behavior of fetching messages
33461 and attachments so that the message data is fetched in chunks no larger
33462 than 12K bytes.
33463 This works around a bug in Microsoft's SSL/TLS support.
33464 Some versions of Microsoft SSL are not able to read full-sized (16K)
33465 SSL/TLS packets.
33466 Some servers will send such packets and this will
33467 cause PC-Alpine to crash with the error
33470 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
33473 Microsoft is aware of the problem and has developed a hotfix for it, it is
33474 discussed in article 300562 in the Microsoft Knowledge Base.
33476 <UL>   
33477 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33478 </UL><P>
33479 &lt;End of help on this topic&gt;
33480 </BODY>
33481 </HTML>
33482 ====== h_config_quell_partial =====
33483 <HTML>
33484 <HEAD>
33485 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
33486 </HEAD>
33487 <BODY>
33488 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
33490 Partial fetching is a feature of the IMAP protocol.
33491 By default, Alpine
33492 will use partial fetching when copying the contents of a message or attachment
33493 from the IMAP server to Alpine.
33494 This means that the fetch will be done in many
33495 small chunks instead of one big chunk. The main benefit of this approach is
33496 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
33497 to stop the fetch early. In some cases partial fetching may cause a performance
33498 problem so that the fetching of data takes significantly longer when partial
33499 fetching is used. Turning on this feature will turn off partial fetching.
33501 <UL>   
33502 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33503 </UL><P>
33504 &lt;End of help on this topic&gt;
33505 </BODY>
33506 </HTML>
33507 ====== h_config_quell_personal_name_prompt =====
33508 <HTML>
33509 <HEAD>
33510 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
33511 </HEAD>
33512 <BODY>
33513 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33515 PC-Alpine only.  This feature quells the prompting for a 
33516 <A HREF="h_config_pers_name">personal name</A>.  This
33517 prompt normally happens before composing a message, and only happens when
33518 there is no personal name already set.
33520 <UL>   
33521 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33522 </UL><P>
33523 &lt;End of help on this topic&gt;
33524 </BODY>
33525 </HTML>
33526 ====== h_config_quell_user_id_prompt =====
33527 <HTML>
33528 <HEAD>
33529 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33530 </HEAD>
33531 <BODY>
33532 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33534 PC-Alpine only.  This feature quells the prompting for a 
33535 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33536 if the information can be obtained from the login name used
33537 to open the INBOX.  Normally, this prompt happens before composing
33538 a message, and only happens when there is no user-id already set
33539 in the configuration.
33541 With this feature set, composing a message is only possible after
33542 establishing a connection to the INBOX.
33544 <UL>   
33545 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33546 </UL><P>
33547 &lt;End of help on this topic&gt;
33548 </BODY>
33549 </HTML>
33550 ====== h_config_save_aggregates =====
33551 <HTML>
33552 <HEAD>
33553 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33554 </HEAD>
33555 <BODY>
33556 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
33558 This feature will optimize an aggregate copy operation, if
33559 possible, by issuing a single IMAP <EM>COPY</EM> command with a
33560 list of the messages to be copied.
33561 This feature is set by default.
33562 This may reduce network traffic and elapsed time for the Save.
33563 <EM>However, many IMAP servers (including the UW IMAP server) do
33564 not preserve the order of messages when this optimization is applied.</EM>
33565 If this feature is not set, 
33566 Alpine will copy each message individually and the order of the messages
33567 will be preserved.
33569 <UL>   
33570 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33571 </UL><P>
33572 &lt;End of help on this topic&gt;
33573 </BODY>
33574 </HTML>
33575 ====== h_config_use_system_translation =====
33576 <HTML>
33577 <HEAD>
33578 <TITLE>FEATURE: Use System Translation</TITLE>
33579 </HEAD>
33580 <BODY>
33581 <H1>FEATURE: Use System Translation</H1>
33583 UNIX Alpine only.
33585 Alpine normally uses its own internal software to convert between the multi-byte
33586 representation of characters and the Unicode representation of those
33587 same characters.
33588 It converts from the multi-byte characters your keyboard produces to Unicode,
33589 and from Unicode to the multi-byte characters your display expects.
33590 Alpine also uses its own internal software to decide how much space on
33591 the screen a particular Unicode character will occupy.
33594 Setting this feature tells Alpine to use the system-supplied routines to
33595 perform these tasks instead.
33596 In particular there are three tasks and three system routines that will
33597 be used for these tasks.
33600 To convert from multi-byte to Unicode the routine
33603 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
33606 is used.
33607 To convert from Unicode to multi-byte the routine
33610 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
33613 is used.
33614 And to find the screen width a particular Unicode character will
33615 occupy the routine used is
33618 <CENTER><SAMP>wcwidth</SAMP></CENTER>
33621 This feature has been only lightly tested.
33622 The internal routines should normally be used unless you run into
33623 a problem that you think may be solved by using the system routines.
33624 Note that your environment needs to be set up for these
33625 routines to work correctly.
33626 In particular, the LANG or LC_CTYPE variable in your environment will
33627 need to be set.
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_suspend_spawns =====
33637 <HTML>
33638 <HEAD>
33639 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
33640 </HEAD>
33641 <BODY>
33642 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
33644 This feature affects Alpine's behavior when process suspension is enabled
33645 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
33646 temporarily interact with the operating system command &quot;shell&quot; 
33647 without
33648 quitting Alpine, and then subsequently resume the still-active Alpine session.
33651 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
33652 is set and subsequently the Ctrl-Z key
33653 is pressed, Alpine will normally suspend itself and return temporary control
33654 to Alpine's parent shell process.  However, if this feature is set, Alpine
33655 will instead create an inferior subshell process.  This is useful when the
33656 parent process is not intended to be used interactively.  Examples include
33657 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
33658 or via a menu system.<P>
33660 Note that one typically resumes a suspended Alpine by entering the Unix
33661 &quot;fg&quot; command, but if this feature is set, it will be necessary to
33662 enter the &quot;exit&quot; command instead.
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_8bit_smtp =====
33671 <HTML>
33672 <HEAD>
33673 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
33674 </HEAD>
33675 <BODY>
33676 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
33678 This feature affects Alpine's behavior when sending mail.
33679 By default, this feature is set.
33680 Internet standards
33681 require that all electronic mail messages traversing the global Internet
33682 consist of 7bit ASCII characters unless a pair of cooperating mail 
33683 transfer agents explicitly agree to allow 8bit messages.  In general, 
33684 then, exchanging messages in non-ASCII characters requires MIME encoding.
33686 However, there are now Internet standards that allow for unencoded 8bit
33687 exchange of messages between cooperating systems.  When this feature is set
33688 Alpine will try to negotiate unencoded 8bit transmission during the
33689 sending process.  Should the negotiation fail, Alpine will fall back to its
33690 ordinary encoding rules. 
33692 Note, this feature relies on your system's mail transport agent or
33693 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
33694 having the negotiation mechanism introduced in
33695 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
33696 &quot;8BITMIME&quot;. 
33698 ESMTP allows for graceful migration to upgraded mail transfer agents, but
33699 it is possible that this feature might cause problems for some servers. 
33700 <P><UL>
33701 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33702 </UL>
33703 <P>&lt;End of help on this topic&gt;
33704 </BODY>
33705 </HTML>
33706 ====== h_config_8bit_nntp =====
33707 <HTML>
33708 <HEAD>
33709 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
33710 </HEAD>
33711 <BODY>
33712 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
33714 This feature affects Alpine's behavior when posting news.  
33718 The Internet standard for exchanging USENET news messages (RFC-1036)
33719 specifies that USENET messages should conform to Internet mail standards
33720 and contain only 7bit characters, but much of the news transport software
33721 in use today is capable of successfully sending messages containing 8bit
33722 characters.  Hence, many people believe that it is appropriate to send 8bit
33723 news messages without any MIME encoding.
33727 Moreover, there is no Internet standard for explicitly negotiating 8bit
33728 transfer, as there is for Internet email.  Therefore, Alpine provides the
33729 option of posting unencoded 8bit news messages, though not as the default.
33730 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
33731 postings that contain 8bit characters. 
33735 Note, articles may cross a path or pass through news transport software
33736 that is unsafe or even hostile to 8bit characters.  At best this will only
33737 cause the posting to become garbled.  The safest way to transmit 8bit
33738 characters is to leave Alpine's MIME encoding turned on, but recipients
33739 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
33740 messages.
33742 &lt;End of help on this topic&gt;
33743 </BODY>
33744 </HTML>
33745 ====== h_config_mark_for_cc =====
33746 <HTML>
33747 <HEAD>
33748 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
33749 </HEAD>
33750 <BODY>
33751 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
33753 This feature affects Alpine's MESSAGE INDEX display.
33754 By default, a '+' is displayed in the first column if the
33755 message is addressed directly to you.
33756 When this feature is set and the message is not addressed to you, then a
33757 '-' character is displayed if the message is instead Cc'd directly
33758 to you.
33761 <UL>   
33762 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33763 </UL><P>
33764 &lt;End of help on this topic&gt;
33765 </BODY>
33766 </HTML>
33767 ====== h_config_tab_uses_unseen =====
33768 <HTML>
33769 <HEAD>
33770 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
33771 </HEAD>
33772 <BODY>
33773 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
33775 This feature affects Alpine's behavior when using the TAB
33776 <A HREF="h_common_nextnew">NextNew Command</A>
33777 to move from one folder to the next.
33778 Alpine's usual behavior is to search for folders
33779 with <EM>Recent</EM> messages in them.
33780 Recent messages are messages that have arrived since the last time the
33781 folder was opened.
33784 Setting this feature causes Alpine to search for <EM>Unseen</EM>
33785 messages instead of Recent messages.
33786 Unseen messages remain Unseen until you view them (or flag then as Seen with
33787 the <A HREF="h_common_flag">Flag Command</A>).
33788 Setting this feature allows you to locate messages you have not read
33789 instead of only recently received messages.
33790 When this feature is set, the feature
33791 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
33792 will have no effect, so the checking may be slower.
33795 Another reason why you might want to use this feature is that Alpine sometimes
33796 opens folders implicitly behind the scenes, and this clears the
33797 Recent status of all messages in the folder.
33798 One example where this happens is when Saving or filtering a
33799 message to another folder.
33800 If that message has some <A HREF="h_config_keywords">keywords</A>
33801 set, then because of some shortcomings
33802 in the IMAP specification, the best way to ensure that those keywords are
33803 still set in the saved copy of the message is to open the folder and
33804 set the keywords explicitly.
33805 Because this clears the Recent status of all messages in that folder the
33806 folder will not be found by the NextNew command unless this feature is set.
33809 &lt;End of help on this topic&gt;
33810 </BODY>
33811 </HTML>
33812 ====== h_config_tab_new_only =====
33813 <HTML>
33814 <HEAD>
33815 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
33816 </HEAD>
33817 <BODY>
33818 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
33820 This feature affects Alpine's behavior when using the TAB key to move from
33821 one message to the next.  Alpine's usual behavior is to select the next
33822 unread message or message flagged as "Important".
33826 Setting this feature causes Alpine to skip the messages flagged as important,
33827 and select unread messages exclusively.  Tab behavior when there are no
33828 new messages left to select remains unchanged.
33830 &lt;End of help on this topic&gt;
33831 </BODY>
33832 </HTML>
33833 ====== h_config_warn_if_subj_blank =====
33834 <HTML>
33835 <HEAD>
33836 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
33837 </HEAD>
33838 <BODY>
33839 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
33841 This feature affects Alpine's behavior when you send a message being
33842 composed.
33843 If this option is set, Alpine will check to see if the message about to be sent
33844 has a subject or not.
33845 If not, you will be asked if you want to send the message anyway.
33848 <UL>   
33849 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33850 </UL><P>
33851 &lt;End of help on this topic&gt;
33852 </BODY>
33853 </HTML>
33854 ====== h_config_warn_if_fcc_blank =====
33855 <HTML>
33856 <HEAD>
33857 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
33858 </HEAD>
33859 <BODY>
33860 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
33862 This feature affects Alpine's behavior when you send a message being
33863 composed.
33864 If this option is set, Alpine will check to see if the message about to be sent
33865 has an Fcc or not.
33866 If not, you will be asked if you want to send the message anyway.
33869 <UL>   
33870 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33871 </UL><P>
33872 &lt;End of help on this topic&gt;
33873 </BODY>
33874 </HTML>
33875 ====== h_config_warn_if_no_to_or_cc =====
33876 <HTML>
33877 <HEAD>
33878 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
33879 </HEAD>
33880 <BODY>
33881 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
33883 This feature affects Alpine's behavior when you send a message being
33884 composed.
33885 If this option is set, Alpine will check to see if the message about to be sent
33886 has either a To address, a Cc address, or a Newsgroup.
33887 If none of these is set,
33888 you will be asked if you want to send the message anyway.
33891 This feature is closely related to
33892 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
33893 Alpine will normally ask if you want to copy a message only to the Fcc.
33894 This feature also applies to cases where there is a Bcc but still no To, Cc,
33895 or Newsgroup.
33896 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
33897 message with only an Fcc, then you won't be asked about sending with
33898 a blank To and Cc and Newsgroups header even if this feature is set.
33899 Similarly, if you have already been asked if you want to send to the Fcc
33900 only and you have answered Yes, then you won't be asked again about sending with
33901 blank To, Cc, and Newsgroups headers even if this feature is set.
33904 <UL>   
33905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33906 </UL><P>
33907 &lt;End of help on this topic&gt;
33908 </BODY>
33909 </HTML>
33910 ====== h_config_quell_dead_letter =====
33911 <HTML>
33912 <HEAD>
33913 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
33914 </HEAD>
33915 <BODY>
33916 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
33918 This feature affects Alpine's behavior when you cancel a message being
33919 composed.  Alpine's usual behavior is to write the canceled message to
33920 a file named 
33921 <!--chtml if pinemode="os_windows"-->
33922 &quot;DEADLETR&quot;,
33923 <!--chtml else-->
33924 &quot;dead.letter&quot; in your home directory,
33925 <!--chtml endif-->
33926 overwriting any previous message. Under
33927 some conditions (some routine), this can introduce a noticeable delay.
33928 Setting this feature will cause Alpine NOT to write canceled compositions
33929 into the file.
33931 NOTE: Enabling this feature means NO record of canceled messages is
33932 maintained.
33934 This feature affects the newer option
33935 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
33936 number of dead letter files to keep around.
33937 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
33939 <UL>   
33940 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33941 </UL><P>
33942 &lt;End of help on this topic&gt;
33943 </BODY>
33944 </HTML>
33945 ====== h_config_quell_beeps =====
33946 <HTML>
33947 <HEAD>
33948 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
33949 </HEAD>
33950 <BODY>
33951 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
33953 This feature affects Alpine's behavior when it displays status message
33954 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
33955 will not affect the display of such messages, but will cause those that
33956 emit a beep to become silent.
33959 <UL>   
33960 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33961 </UL><P>
33962 &lt;End of help on this topic&gt;
33963 </BODY>
33964 </HTML>
33965 ====== h_config_suppress_user_agent =====
33966 <HTML>
33967 <HEAD>
33968 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
33969 </HEAD>
33970 <BODY>
33971 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
33973 If this feature is set then Alpine will not generate a
33974 <CODE>User-Agent</CODE> header in outgoing messages.
33976 <UL>   
33977 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33978 </UL><P>
33979 &lt;End of help on this topic&gt;
33980 </BODY>
33981 </HTML>
33982 ====== h_config_quell_lock_failure_warnings =====
33983 <HTML>
33984 <HEAD>
33985 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
33986 </HEAD>
33987 <BODY>
33988 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
33990 This feature affects Alpine's behavior when it encounters a problem
33991 acquiring a mail folder lock.  Typically, a secondary file associated
33992 with the mail folder being opened is created as part of the locking
33993 process.  On some systems, such file creation has been administratively
33994 precluded by the system configuration.
33996 Alpine issues a warning when such failures occur, which can become bothersome
33997 if the system is configured to disallow such actions.  Setting this
33998 feature causes Alpine to remain silent when this part of lock creation fails.
34000 WARNING: systems that have been configured in a way that precludes locking
34001 introduce some risk of mail folder corruption when more than one program
34002 attempts to modify the mail folder.  This is most likely to occur to one's
34003 INBOX or other incoming message folder. 
34005 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
34007 <UL>   
34008 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34009 </UL><P>
34010 &lt;End of help on this topic&gt;
34011 </BODY>
34012 </HTML>
34013 ====== h_config_enable_role_take ======
34014 <HTML>
34015 <HEAD>
34016 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
34017 </HEAD>
34018 <BODY>
34019 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
34021 Normally, the Take command takes addresses from a message and helps you
34022 put them into your Address Book.
34023 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
34024 you may find it useful
34025 to be able to Take information from a message's headers and put it into
34026 a new Rule.
34027 When this feature is set, you will be given an extra prompt that gives
34028 you the choice to Take into the Address Book or Take into a rule.
34029 <P><UL>
34030 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34031 </UL>
34033 &lt;End of help on this topic&gt;
34034 </BODY>
34035 </HTML>
34036 ====== h_config_enable_take_export ======
34037 <HTML>
34038 <HEAD>
34039 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
34040 </HEAD>
34041 <BODY>
34042 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
34044 Normally, the Take command takes addresses from a message and helps you
34045 put them into your Address Book.
34046 When this feature is set, you will be given an extra prompt that gives you
34047 the choice to Take addresses into a file instead of your Address
34048 Book.
34049 Only the user@domain_name part of the address is put in the file.
34050 <P><UL>
34051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34052 </UL>
34054 &lt;End of help on this topic&gt;
34055 </BODY>
34056 </HTML>
34057 ====== h_config_quell_folder_internal_msg ======
34058 <HTML>
34059 <HEAD>
34060 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
34061 </HEAD>
34062 <BODY>
34063 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
34065 This feature determines whether or not Alpine will create 
34066 &quot;pseudo messages&quot; in folders that are in standard Unix or 
34067 MMDF format. <P> 
34069 Alpine will normally create these pseudo messages when they are not already
34070 present in a standard Unix or MMDF folder.  Their purpose is to record
34071 certain mailbox state data needed for correct IMAP and POP server
34072 operation, and also for Alpine to be able to mark messages as Answered when
34073 the Reply has been postponed.<P>
34075 Sites that do not use IMAP/POP for remote mail access, and that need to
34076 support mail tools that are adversely affected by the presence of the
34077 pseudo-messages (e.g. some mail notification tools) may enable this
34078 feature to tell Alpine not to create them.  Note that Alpine's 
34079 &quot;Answered&quot; flag
34080 capability will be adversely affected if this is done.<P>
34082 Note too that, even if this feature is enabled, Alpine will not remove
34083 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34084 or ipopd servers.) This feature has no effect on folders that are not in
34085 standard Unix or MMDF format, as pseudo-messages are not needed in the
34086 other formats to record mailbox state information.
34087 <P><UL>
34088 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34089 </UL>
34091 &lt;End of help on this topic&gt;
34092 </BODY>
34093 </HTML>
34094 ====== h_config_mulnews_as_typed ======
34095 <HTML>
34096 <HEAD>
34097 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34098 </HEAD>
34099 <BODY>
34100 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34102 This feature will be of little use to most users.
34103 It has no effect unless the feature
34104 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34105 is set.
34107 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34108 then the setting of this feature may have an effect on the names of the
34109 newsrc files used.
34110 Normally, the name of the news server will be canonicalized before it is
34111 used in the newsrc file name.
34112 For example, if you type the news server name
34115 <CENTER><SAMP>servername</SAMP></CENTER>
34118 it is likely that the canonical name will be something like
34121 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34124 Or it may be the case that
34127 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34130 is really an alias (a DNS CNAME) for
34133 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34136 If this feature is not set, then the canonicalized names will be used.
34137 If this feature is set, then the name you typed in (or put in your
34138 configuration) will be used.
34140 <P><UL>
34141 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34142 </UL>
34144 &lt;End of help on this topic&gt;
34145 </BODY>
34146 </HTML>
34147 ====== h_config_quell_empty_dirs ======
34148 <HTML>
34149 <HEAD>
34150 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34151 </HEAD>
34152 <BODY>
34153 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34155 This feature causes Alpine to remove from the display any directories
34156 that do not contain at least one file or directory.  This can be useful
34157 to prevent overly cluttered folder lists when a collection is stored on
34158 a server that treats all names as both a folder and a directory.
34161 Note, enabling this feature can cause surprising behavior!  For example,
34162 you can still use Add to create a directory, but unless you immediately
34163 enter that directory and create a folder, that newly created directory
34164 may not be displayed next time you enter the folder list.
34167 The description above is not quite correct.
34168 Only directories which potentially may hold messages are hidden if empty.
34169 That is, a directory which is really just a directory and is not selectable
34170 as a folder will not be hidden.
34171 Such directories can occur on servers that treat most names as both a folder
34172 and a directory.
34173 These directories are typically created implicitly when a folder is created
34174 inside a directory that does not yet exist.
34177 <UL>   
34178 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34179 </UL><P>
34180 &lt;End of help on this topic&gt;
34181 </BODY>
34182 </HTML>
34183 ====== h_config_termcap_wins =====
34184 <HTML>
34185 <HEAD>
34186 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34187 </HEAD>
34188 <BODY>
34189 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34191 This feature may affect Alpine's low-level input routines.  Termcap (or
34192 terminfo, depending on how your copy of Alpine was compiled and linked)
34193 is the name of the database that describes terminal capabilities.  In
34194 particular, it describes the sequences of characters that various keys
34195 will emit.
34198 An example would be the Up Arrow key on the keyboard.  Up
34199 Arrow is not a distinct character on most Unix systems.  When you press
34200 the Up Arrow key a short sequence of characters are produced.  This
34201 sequence is supposed to be described in the termcap database by the
34202 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34203 are using terminfo instead of termcap).
34206 By default, Alpine defines some terminal
34207 escape sequences that are commonly used.  For example, the sequence
34208 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34209 &quot;ESC&nbsp;[&nbsp;A&quot;
34210 is also recognized as an Up Arrow key.  These are chosen because common
34211 terminals like VT100's or ANSI standard terminals produce these
34212 sequences when you press the Up Arrow key.
34215 If your system's termcap
34216 (terminfo) database assigns some other function to the sequence
34217 &quot;ESC&nbsp;O&nbsp;A&quot;
34218 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34219 database assigns a sequence that doesn't begin with an escape
34220 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34221 This usually works fine
34222 because most terminals emit the escape sequences that Alpine has defined
34223 by default.  We have also found that it is usually better to have these
34224 defaults take precedence over the definitions contained in the database
34225 because the defaults are more likely to be correct than the database.
34228 There are some terminals where this breaks down.  If you want Alpine to
34229 believe the definitions given in your termcap (terminfo) database in
34230 preference to the defaults the Alpine itself sets up, then you may turn
34231 this feature on.  Then, sequences of characters that are defined in
34232 both termcap (terminfo) and in Alpine's set of defaults will be
34233 interpreted the way that termcap (terminfo) says they should be
34234 interpreted.  Also, if your terminal capabilities database assigns a
34235 sequence that doesn't begin with escape, it will not be ignored.
34238 <UL>   
34239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34240 </UL><P>
34241 &lt;End of help on this topic&gt;
34242 </BODY>
34243 </HTML>
34244 ====== h_config_cruise_mode =====
34245 <HTML>
34246 <HEAD>
34247 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
34248 </HEAD>
34249 <BODY>
34250 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
34252 This feature affects Alpine's behavior when you hit the
34253 &quot;Space&nbsp;Bar&quot; at
34254 the end of a displayed message.  Typically, Alpine complains that the end
34255 of the text has already been reached.  Setting this feature causes such
34256 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
34257 taking you to the next &quot;interesting&quot; message,
34258 or scanning ahead to the 
34259 next incoming folder with &quot;interesting&quot; messages.
34262 <UL>   
34263 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34264 </UL><P>
34265 &lt;End of help on this topic&gt;
34266 </BODY>
34267 </HTML>
34268 ====== h_config_cruise_mode_delete =====
34269 <HTML>
34270 <HEAD>
34271 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
34272 </HEAD>
34273 <BODY>
34274 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
34276 This feature modifies the behavior of Alpine's 
34277 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
34278 Setting this feature causes Alpine to implicitly delete read
34279 messages when it moves on to display the next &quot;interesting&quot; message.
34281 NOTE: Beware when enabling this feature AND the 
34282 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
34283 feature.
34285 <UL>   
34286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34287 </UL><P>
34288 &lt;End of help on this topic&gt;
34289 </BODY>
34290 </HTML>
34291 ====== h_config_slash_coll_entire =====
34292 <HTML>
34293 <HEAD>
34294 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
34295 </HEAD>
34296 <BODY>
34297 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
34299 The slash (/) command is available from the MESSAGE INDEX screen when
34300 the folder is sorted by either Threads or OrderedSubject, and the
34301 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
34302 is set to something other than &quot;none&quot;.
34303 Normally, the slash command Collapses or Expands the subthread that
34304 starts at the currently highlighted message, if any.
34305 If this option is set, then the slash command Collapses or Expands the
34306 <EM>entire</EM> current thread instead of just the subthread.
34307 The current thread is simply the top-level thread that contains the
34308 current message.
34311 <UL>   
34312 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34313 </UL><P>
34314 &lt;End of help on this topic&gt;
34315 </BODY>
34316 </HTML>
34317 ====== h_config_color_thrd_import =====
34318 <HTML>
34319 <HEAD>
34320 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
34321 </HEAD>
34322 <BODY>
34323 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
34325 This option affects only the THREAD INDEX screen.
34326 Whether or not you ever see a THREAD INDEX screen depends on the setting
34327 of the configuration option
34328 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
34329 and on the sort order of the index.
34332 If a message within a thread is flagged as Important
34333 and this option is set, then
34334 the entire line in the THREAD INDEX will be colored the color of the
34335 Index-important Symbol, which can be set using the
34336 <A HREF="h_color_setup">Setup Kolor</A> screen.
34339 <UL>   
34340 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34341 </UL><P>
34342 &lt;End of help on this topic&gt;
34343 </BODY>
34344 </HTML>
34345 ====== h_config_allow_goto =====
34346 <HTML>
34347 <HEAD>        
34348 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
34349 </HEAD>
34350 <BODY>
34351 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
34353 This feature modifies the behavior of Alpine's file browser.  Setting this
34354 feature causes Alpine to offer the "G Goto" command in the file browser.
34355 That is the default.
34359 The Goto command allows you to explicitly type in the desired directory.
34361 &lt;End of help on this topic&gt;
34362 </BODY></HTML>
34363 ====== h_config_add_ldap =====
34364 <HTML>
34365 <HEAD>
34366 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
34367 </HEAD>
34368 <BODY>
34369 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
34371 If both the Directory option
34372 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
34373 and this feature are set,
34374 then when an implicit directory lookup is done from the
34375 composer you will automatically be prompted to add the result of the
34376 directory lookup to your address book.
34378 <UL>   
34379 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34380 </UL><P>
34381 &lt;End of help on this topic&gt;
34382 </BODY>
34383 </HTML>
34384 ===== h_patterns_compat_behavior =====
34385 <HTML>
34386 <HEAD>
34387 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
34388 </HEAD>
34389 <BODY>
34390 <H1>Rules Behavior Changes in Pine 4.50</H1>
34392 In Alpine, Rules that contain unrecognized elements
34393 are ignored.
34394 In most cases, the unrecognized elements will be something that was
34395 added as a new Rules feature in a later version of Alpine.
34396 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
34397 ignore rules that contained unrecognized elements.
34398 For example, a new element of Rules that was added in Pine 4.50 is
34399 Age interval.
34400 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
34401 all messages older than a week red.
34402 Now, if you run Pine 4.44 using that same configuration file, it will not
34403 recognize the Age interval and so will just ignore it.
34404 That means that all messages will match that rule so all messages will
34405 be colored red when using Pine version 4.44.
34408 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
34409 However, since the behavior still exists in versions prior to Pine 4.50 and
34410 since Filtering is a potentially destructive operation, another measure
34411 was taken to attempt to avoid unintentional Filtering of messages.
34412 The first time that you run Alpine or a Pine that is version 4.50 or greater,
34413 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
34414 will be copied to a new Filters configuration variable
34415 with a different name (&quot;Patterns-Filters2&quot;).
34416 From then on, Alpine will continue to use the new
34417 variable.
34418 Of course, Pine version 4.44 or lower will continue to use the old
34419 variable.
34420 That means that if you are using Alpine
34421 and also using a version of Pine that is older than 4.50, they will not
34422 share the configuration information about Filters.
34423 If you make a change in one version you won't see it in the other version.
34426 Since Scoring can be used to trigger Filtering, the same thing has been
34427 done for Score rules.
34428 The old configuration variable name is (&quot;Patterns-Scores&quot;)
34429 and the new name is (&quot;Patterns-Scores2&quot;).
34430 The same is not true of Role, Indexcolor, and Other rules that are
34431 thought to be less harmful when a mistake is made.
34434 &lt;End of help on this topic&gt;
34435 </BODY>
34436 </HTML>
34437 ======= h_config_filt_opts_sentdate =======
34438 <HTML>
34439 <HEAD>
34440 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
34441 </HEAD>
34442 <BODY>
34443 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
34445 By default, the Age interval of a Pattern uses a message's time of
34446 arrival to compute the age of the message.
34447 If this feature is set, the date in the message's Date header will
34448 be used instead.
34450 &lt;End of help on this topic&gt;
34451 </BODY>
34452 </HTML>
34453 ======= h_config_filt_opts_notdel =======
34454 <HTML>
34455 <HEAD>
34456 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
34457 </HEAD>
34458 <BODY>
34459 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
34461 If this option is set then a message will be moved into the
34462 specified folder only if it is not marked for deletion.
34463 This is useful if you have multiple Alpine sessions running
34464 simultaneously and you don't want messages to be filtered into a
34465 folder more than once.
34466 It is also useful if you want to filter
34467 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
34468 This method is not foolproof.
34469 There may be cases where a message
34470 gets marked deleted and so it is never filtered into the folder.
34471 For example, if you deleted it in another Alpine session or another mail
34472 program that didn't use the filtering rule.
34474 This option has no effect if the Filter Action is not set to Move.
34476 &lt;End of help on this topic&gt;
34477 </BODY>
34478 </HTML>
34479 ======= h_config_filt_opts_nonterm =======
34480 <HTML>
34481 <HEAD>
34482 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
34483 </HEAD>
34484 <BODY>
34485 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
34487 If this option is set then this is a non-terminating rule.
34488 Usually, for each message, Alpine searches through the Filter Rules until
34489 a match is found and then it performs the action associated with that rule.
34490 Rules following the match are not considered.
34491 If this option is set then the search for matches will continue at the next
34492 rule.
34494 If a non-terminating rule matches then the actions associated with
34495 that rule, except for any implied deletion of the message, are performed
34496 before the match for the next rule is checked.
34497 For example, if the non-terminating rule sets the Important status, then that
34498 status will be set when the next rule is considered.
34499 However, if the non-terminating rule Moves the message, the message will
34500 actually be copied instead of copied and deleted so that it is still there
34501 for the next rule.
34502 A moved message is deleted after all the relevant rules have been checked.
34503 The name of the &quot;Move&quot; action is confusing in this case because
34504 a single message can be moved to more than one folder.
34505 It turns the Move into a Copy instead, but it is still followed by a deletion
34506 at the end.
34508 This option may be useful if you want to have a single message filtered to
34509 two different folders because it matches two different Patterns.
34510 For example, suppose you normally filter messages to a particular mailing
34511 list into one folder, and messages addressed directly to you into a second
34512 folder.
34513 If a message is sent to both you and the list (and you can tell that by
34514 looking at the headers of the message) this option may give you a convenient
34515 way to capture a copy to each folder.
34516 (It may also cause you to capture two copies to each folder,
34517 depending on whether your mail system delivers one or two copies of the
34518 message to you and on how the list works.)
34520 &lt;End of help on this topic&gt;
34521 </BODY>
34522 </HTML>
34523 ===== h_mainhelp_smime ======
34524 <HTML>
34525 <HEAD>
34526 <TITLE>S/MIME Overview</TITLE>
34527 </HEAD>
34528 <BODY>
34529 <H1>S/MIME Overview</H1>
34531 S/MIME is a standard for the public key encryption and signing of email.
34532 UNIX Alpine contains a basic implementation of S/MIME based on
34533 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries.
34534 To check if this version of Alpine supports S/MIME look at
34535 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34536 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34538 Some limitations:
34539 <UL>
34540    <LI> There is no PC-Alpine implementation.
34541    <LI> There is no provision for checking for CRLs
34542         (Certificate Revocation Lists) in Alpine.
34543    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34544    <LI> There is no mechanism available for feeding either an entire incoming
34545         or an entire outgoing message to an external
34546         filter and using that external filter to do S/MIME or PGP processing.
34547    <LI> Because the implementation currently uses OpenSSL, there is only a very
34548         limited integration with the Mac OS Keychain (the storing and access of
34549         public certificates).
34550 </UL>
34552 The S/MIME configuration screen is reached by going to the Main Menu and typing
34553 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
34556 <H2>S/MIME BASICS</H2>
34558 In order to digitally sign messages you send you must have a public/private key-pair.
34559 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
34560 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
34561 users or a company which provides certificates for its workers.
34562 These certificates are bound to an email address, so the identity being verified is the
34563 email address not a person's name.
34565 Mail is signed by using the sender's private key, which only the owner of the private key
34566 has access to.
34567 The signature is verified using the signer's public key, which anyone can
34568 have access to.
34569 With Alpine, the first time you receive a signed message the public key of the
34570 sender will be stored for future use.
34573 Mail is encrypted using the recipient's public key and decrypted by
34574 the recipient with their private key.
34577 You need a key of your own in order to sign outgoing messages and to have others
34578 encrypt messages sent to you.
34579 You do not need a key of your own to verify signed messages sent by others or to
34580 encrypt messages sent to others.
34582 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
34584 By default UNIX Alpine stores the certificates it uses in a directory in your
34585 home directory.
34586 The directory name is
34588 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
34590 Within that directory are three subdirectories.
34591 Each of the three subdirectories contains files with PEM-encoded contents,
34592 the default format for OpenSSL.
34593 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
34594 The files within that directory have names that are email addresses with the
34595 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
34596 An example filename is
34598 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34600 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
34601 your private key.
34602 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
34603 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
34604 Authorities that you want to trust but that aren't contained in the set of system CAs.
34605 Those files may have arbitrary names as long as they end with the
34606 suffix &quot;<SAMP>.crt</SAMP>&quot;.
34608 <H2>HOW TO SIGN AND ENCRYPT</H2>
34610 If you have a certificate you may sign outgoing messages.
34611 After typing the Ctrl-X command to send a message you will see the prompt
34613 <CENTER><SAMP>Send message?</SAMP></CENTER>
34615 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
34616 Typing the &quot;G&quot; command will change the prompt to
34618 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
34620 Typing the &quot;E&quot; command will change the prompt to
34622 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
34624 You may even type both to get
34626 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
34629 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
34631 The reading of a signed message should not require any special action on
34632 your part.
34633 There should be an editorial addition at the start of the message which
34634 says either
34636 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
34640 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
34642 If an encrypted message is sent to you the encrypted text will not
34643 be shown.
34644 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
34645 you are viewing the message) and supply your passphrase when asked.
34647 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
34648 which gives you some information about the certificate used to sign or encrypt the message.
34650 <H2>MISCELLANEOUS</H2>
34652 If you have access to a private certificate in the PKCS12 format, which 
34653 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
34654 use the following commands to generate private keys, public and certificate
34655 authorities certificates. In the examples below, we assume that the 
34656 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
34657 that your email address is &quot;your@address.com&quot;.
34660 In order to create a private key use the command
34662 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
34664 In order to create a public certificate use the command
34666 <CENTER><SAMP>
34667 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
34668 </SAMP></CENTER>
34670 In order to create a certificate authority certificate use the command
34672 <CENTER><SAMP>
34673 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
34674 </SAMP></CENTER>
34676 <P> If the previous command produces an empty file, it means that the 
34677 certificate authority was not included in the .p12 file, so you will have 
34678 to get it from some other sources. You will need these certificates, so 
34679 that you can validate correctly signatures.
34682 After you have exported these certificates and keys, you can  use the import 
34683 command in Alpine, from the S/MIME configuration screen,
34684 to import these certificates into Alpine. They will be available for use
34685 as soon as you import them.
34687 &lt;End of help on this topic&gt;
34688 </BODY>
34689 </HTML>
34690 ====== h_config_smime_pubcertdir =====
34691 <HTML>
34692 <HEAD>
34693 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
34694 </HEAD>
34695 <BODY>
34696 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
34698 UNIX Alpine only.
34700 If the option
34701 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34702 is set then this option will have no effect.
34704 Normally, Public Certificates for use with S/MIME will be stored in the directory
34705 which is the value of this option.
34706 Those certificates will be stored in PEM format, one certificate per file.
34707 The name of the file for the certificate corresponding to
34709 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34711 should be
34713 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
34715 For example, a file for user@example.com would be in the file
34717 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34719 in this directory.
34721 Use the Setup/SMIME screen to modify this variable.
34723 Typically, the public certificates that you have will come from S/MIME signed
34724 messages that are sent to you.
34725 Alpine will extract the public certificate from the signed message and store
34726 it in the certificates directory.
34727 These PEM format public certificates look something like:
34728 <PRE>
34729 -----BEGIN CERTIFICATE-----
34730 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
34731 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
34732 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
34734 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
34735 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
34736 -----END CERTIFICATE-----
34737 </PRE>
34739 <UL>   
34740 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34741 </UL><P>
34743 <UL>   
34744 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34745 </UL><P>
34746 &lt;End of help on this topic&gt;
34747 </BODY>
34748 </HTML>
34749 ====== h_config_smime_pubcertcon =====
34750 <HTML>
34751 <HEAD>
34752 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
34753 </HEAD>
34754 <BODY>
34755 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
34757 UNIX Alpine only.
34759 If this option is set it will be used instead of
34760 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34762 This option gives you a way to store certificates remotely on an IMAP server
34763 instead of storing the certificates one per file locally.
34764 In order to do that you just give this option a remote folder name for a folder
34765 which does not yet exist.
34766 The name is similar to the name you might use for a remote configuration file.
34767 A remote folder name might look something like:
34769 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
34772 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34773 about the syntax of folder names.
34775 Use the Setup/SMIME screen to modify this variable.
34777 <UL>   
34778 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34779 </UL><P>
34781 <UL>   
34782 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34783 </UL><P>
34784 &lt;End of help on this topic&gt;
34785 </BODY>
34786 </HTML>
34787 ====== h_config_smime_privkeydir =====
34788 <HTML>
34789 <HEAD>
34790 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
34791 </HEAD>
34792 <BODY>
34793 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
34795 UNIX Alpine only.
34797 In order to sign outgoing S/MIME messages you will need a
34798 personal digital ID certificate.
34799 You will usually get such a certificate from a certificate authority such as
34800 Thawte or CAcert.
34801 (In order to encrypt outgoing messages you don't need a personal digital ID, you
34802 need the public certificate of the recipient instead.)
34803 If the option
34804 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
34805 is set then this option will have no effect.
34807 Normally, Private Keys for use with S/MIME will be stored in the directory
34808 which is the value of this option.
34809 Those certificates will be stored in PEM format, one certificate per file.
34810 The name of the file for the certificate corresponding to your
34812 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34814 should be
34816 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
34818 For example, if your address is user@example.com the name of the file would be
34820 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
34822 in this directory.
34824 Use the Setup/SMIME screen to modify this variable.
34826 Typically, the private key that you have will come from a Certificate
34827 Authority.
34828 The private key should be stored in a PEM format file that
34829 looks something like:
34830 <PRE>
34831 -----BEGIN RSA PRIVATE KEY-----
34832 Proc-Type: 4,ENCRYPTED
34833 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
34835 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
34836 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
34837 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
34839 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
34840 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
34841 -----END RSA PRIVATE KEY-----
34842 </PRE>
34844 <UL>   
34845 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34846 </UL><P>
34848 <UL>   
34849 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34850 </UL><P>
34851 &lt;End of help on this topic&gt;
34852 </BODY>
34853 </HTML>
34854 ====== h_config_smime_privkeycon =====
34855 <HTML>
34856 <HEAD>
34857 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
34858 </HEAD>
34859 <BODY>
34860 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
34862 UNIX Alpine only.
34864 If this option is set it will be used instead of
34865 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34867 This option gives you a way to store keys remotely on an IMAP server
34868 instead of storing the keys one per file locally.
34869 In order to do that you just give this option a remote folder name for a folder
34870 which does not yet exist.
34871 The name is similar to the name you might use for a remote configuration file.
34872 A remote folder name might look something like:
34874 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
34877 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34878 about the syntax of folder names.
34880 Use the Setup/SMIME screen to modify this variable.
34882 <UL>   
34883 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34884 </UL><P>
34886 <UL>   
34887 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34888 </UL><P>
34889 &lt;End of help on this topic&gt;
34890 </BODY>
34891 </HTML>
34892 ====== h_config_smime_cacertdir =====
34893 <HTML>
34894 <HEAD>
34895 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
34896 </HEAD>
34897 <BODY>
34898 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
34900 UNIX Alpine only.
34902 If the option
34903 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
34904 is set then this option will have no effect.
34906 CACert is a shorthand name for certification authority certificate.
34907 Normally Alpine will use the CACerts that are located in the standard system
34908 location for CACerts.
34909 It may be the case that one of your correspondents has a Digital ID which has
34910 been signed by a certificate authority that is not in the regular set of system certificate
34911 authorities.
34912 You may supplement the system list by adding further certificates of your own.
34913 These should  be stored in the directory
34914 which is the value of this option.
34915 The certificates will be stored in PEM format, one certificate per file.
34916 The names of the files can be anything ending in &quot;.crt&quot;.
34918 Use the Setup/SMIME screen to modify this variable.
34920 These PEM format CA certificates look very similar to your public
34921 certificates for particular email addresses
34922 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
34924 <UL>   
34925 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34926 </UL><P>
34928 <UL>   
34929 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34930 </UL><P>
34931 &lt;End of help on this topic&gt;
34932 </BODY>
34933 </HTML>
34934 ====== h_config_smime_cacertcon =====
34935 <HTML>
34936 <HEAD>
34937 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
34938 </HEAD>
34939 <BODY>
34940 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
34942 UNIX Alpine only.
34944 If this option is set it will be used instead of
34945 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34947 This option gives you a way to store certificates remotely on an IMAP server
34948 instead of storing the certificates one per file locally.
34949 In order to do that you just give this option a remote folder name for a folder
34950 which does not yet exist.
34951 The name is similar to the name you might use for a remote configuration file.
34952 A remote folder name might look something like:
34954 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
34957 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34958 about the syntax of folder names.
34960 Use the Setup/SMIME screen to modify this variable.
34962 <UL>   
34963 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34964 </UL><P>
34966 <UL>   
34967 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34968 </UL><P>
34969 &lt;End of help on this topic&gt;
34970 </BODY>
34971 </HTML>
34972 ========== h_config_smime_sign_by_default ==========
34973 <HTML>
34974 <HEAD>
34975 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
34976 </HEAD>
34977 <BODY>
34978 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
34980 UNIX Alpine only.
34982 This feature only has an effect if your version of Alpine includes
34983 support for S/MIME.
34984 It affects Alpine's behavior when you send a message.
34985 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
34987 Only the default value is affected.
34988 In any case, you may still toggle the Signing option on or off before sending
34989 with the &quot;G Sign&quot; command (provided you have a personal digital ID
34990 certificate).
34992 <UL>   
34993 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34994 </UL><P>
34997 <UL>   
34998 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34999 </UL><P>
35000 &lt;End of help on this topic&gt;
35001 </BODY>
35002 </HTML>
35003 ========== h_config_smime_use_cert_store ==========
35004 <HTML>
35005 <HEAD>
35006 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
35007 </HEAD>
35008 <BODY>
35009 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
35011 UNIX Alpine only.
35013 This feature only has an effect if your version of Alpine includes
35014 support for S/MIME.
35015 It affects Alpine's behavior when you validate a message, and should
35016 not be disabled, unless you are performing a test.
35018 There are two important aspects of validation: validation of the message
35019 (that is, the message was not modified after it was sent) 
35020 as well as validation of the identity of the sender. This option has to 
35021 do with the latter. 
35023 In order to validate that the message came from the sender in the message
35024 and not an impersonator, Alpine can 
35025 either use the certificates that come in the message, or the ones that 
35026 you have personally stored. If this feature is enabled (the default) then 
35027 Alpine will use certificates that you have already saved in your store 
35028 and not those that come in the message to validate the sender of the 
35029 message. In particular, the first time that you receive a signed message
35030 from a sender, and their certificate does not validate against your
35031 store, then you will be asked if you wish to save such certificate. If
35032 you do not wish to save the certificate, then Alpine will fail to validate
35033 the signature of the message. Otherwise, Alpine will proceed to validate
35034 the signature of the message. This behavior helps you prevent against impersonation, because 
35035 it is assumed that you trust the certificates that you have saved, and 
35036 might not trust those that came with the message that you are validating.
35038 <UL>   
35039 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35040 </UL><P>
35043 <UL>   
35044 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35045 </UL><P>
35046 &lt;End of help on this topic&gt;
35047 </BODY>
35048 </HTML>
35049 ========== h_config_smime_pubcerts_in_keychain ==========
35050 <HTML>
35051 <HEAD>
35052 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
35053 </HEAD>
35054 <BODY>
35055 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
35057 UNIX Alpine only.
35059 If this feature is set the Mac OS X default keychain will be used as the place
35060 to store public certificates instead of a
35061 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35062 or a
35063 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35065 <UL>   
35066 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35067 </UL><P>
35069 <UL>   
35070 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35071 </UL><P>
35072 &lt;End of help on this topic&gt;
35073 </BODY>
35074 </HTML>
35075 ========== h_config_smime_dont_do_smime ==========
35076 <HTML>
35077 <HEAD>
35078 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
35079 </HEAD>
35080 <BODY>
35081 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35083 UNIX Alpine only.
35085 Setting this feature turns off all of Alpine's S/MIME support.
35086 You might want to set this if you are having trouble due to the S/MIME support.
35088 <UL>   
35089 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35090 </UL><P>
35093 <UL>   
35094 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35095 </UL><P>
35096 &lt;End of help on this topic&gt;
35097 </BODY>
35098 </HTML>
35099 ========== h_config_smime_encrypt_by_default ==========
35100 <HTML>
35101 <HEAD>
35102 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35103 </HEAD>
35104 <BODY>
35105 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35107 UNIX Alpine only.
35109 This feature only has an effect if your version of Alpine includes
35110 support for S/MIME.
35111 It affects Alpine's behavior when you send a message.
35112 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35114 Only the default value is affected.
35115 In any case, you may still toggle the Encrypt option on or off before sending
35116 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35117 for the recipient).
35119 <UL>   
35120 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35121 </UL><P>
35124 <UL>   
35125 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35126 </UL><P>
35127 &lt;End of help on this topic&gt;
35128 </BODY>
35129 </HTML>
35130 ========== h_config_smime_remember_passphrase ==========
35131 <HTML>
35132 <HEAD>
35133 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35134 </HEAD>
35135 <BODY>
35136 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35138 UNIX Alpine only.
35140 This feature only has an effect if your version of Alpine includes
35141 support for S/MIME.
35142 If this option is set, you will only have to enter your passphrase for your private key
35143 once during an Alpine session.
35145 <UL>   
35146 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35147 </UL><P>
35150 <UL>   
35151 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35152 </UL><P>
35153 &lt;End of help on this topic&gt;
35154 </BODY>
35155 </HTML>
35156 ====== h_config_smime_transfer_pub_to_con =====
35157 <HTML>
35158 <HEAD>
35159 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35160 </HEAD>
35161 <BODY>
35162 <H1>S/MIME: Transfer Public Certs to Container</H1>
35164 UNIX Alpine only.
35166 The Transfer command will copy the public certificates in your configured
35167 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35168 to the container in your configured
35169 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35170 This might be useful if you decide to switch from using a cert directory to a cert
35171 container.
35173 Warning: Any previous contents in the container will be lost.
35175 <UL>   
35176 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35177 </UL><P>
35179 <UL>   
35180 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35181 </UL><P>
35182 &lt;End of help on this topic&gt;
35183 </BODY>
35184 </HTML>
35185 ====== h_config_smime_transfer_pub_to_dir =====
35186 <HTML>
35187 <HEAD>
35188 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35189 </HEAD>
35190 <BODY>
35191 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35193 UNIX Alpine only.
35195 The Transfer command will copy the public certificates in your configured
35196 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35197 to the directory in your configured
35198 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35199 This might be useful if you decide to switch from using a cert container to a cert
35200 directory.
35202 <UL>   
35203 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35204 </UL><P>
35206 <UL>   
35207 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35208 </UL><P>
35209 &lt;End of help on this topic&gt;
35210 </BODY>
35211 </HTML>
35212 ====== h_config_smime_transfer_priv_to_con =====
35213 <HTML>
35214 <HEAD>
35215 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35216 </HEAD>
35217 <BODY>
35218 <H1>S/MIME: Transfer Private Keys to Container</H1>
35220 UNIX Alpine only.
35222 The Transfer command will copy the private keys in your configured
35223 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35224 to the container in your configured
35225 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35226 This might be useful if you decide to switch from using a key directory to a key
35227 container.
35229 Warning: Any previous contents in the container will be lost.
35231 <UL>   
35232 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35233 </UL><P>
35235 <UL>   
35236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35237 </UL><P>
35238 &lt;End of help on this topic&gt;
35239 </BODY>
35240 </HTML>
35241 ====== h_config_smime_transfer_priv_to_dir =====
35242 <HTML>
35243 <HEAD>
35244 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35245 </HEAD>
35246 <BODY>
35247 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35249 UNIX Alpine only.
35251 The Transfer command will copy the private keys in your configured
35252 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35253 to the directory in your configured
35254 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35255 This might be useful if you decide to switch from using a key container to a key
35256 directory.
35258 <UL>   
35259 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35260 </UL><P>
35262 <UL>   
35263 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35264 </UL><P>
35265 &lt;End of help on this topic&gt;
35266 </BODY>
35267 </HTML>
35268 ====== h_config_smime_transfer_cacert_to_con =====
35269 <HTML>
35270 <HEAD>
35271 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
35272 </HEAD>
35273 <BODY>
35274 <H1>S/MIME: Transfer CA Certs to Container</H1>
35276 UNIX Alpine only.
35278 The Transfer command will copy the CA certificates in your configured
35279 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
35280 to the container in your configured
35281 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35282 This might be useful if you decide to switch from using a CA cert directory to a CA cert
35283 container.
35285 Warning: Any previous contents in the container will be lost.
35287 <UL>   
35288 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35289 </UL><P>
35291 <UL>   
35292 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35293 </UL><P>
35294 &lt;End of help on this topic&gt;
35295 </BODY>
35296 </HTML>
35297 ====== h_config_smime_transfer_cacert_to_dir =====
35298 <HTML>
35299 <HEAD>
35300 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
35301 </HEAD>
35302 <BODY>
35303 <H1>S/MIME: Transfer CA Certs to Directory</H1>
35305 UNIX Alpine only.
35307 The Transfer command will copy the CA certificates in your configured
35308 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35309 to the directory in your configured
35310 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35311 This might be useful if you decide to switch from using a CA cert container to a CA cert
35312 directory.
35314 <UL>   
35315 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35316 </UL><P>
35318 <UL>   
35319 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35320 </UL><P>
35321 &lt;End of help on this topic&gt;
35322 </BODY>
35323 </HTML>
35324 ====== h_config_smime_transfer_pubcon_to_key =====
35325 <HTML>
35326 <HEAD>
35327 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35328 </HEAD>
35329 <BODY>
35330 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35332 Mac OS X Alpine only.
35334 The Transfer command will copy the public certificates in your configured
35335 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35336 to your default Mac OS X Keychain.
35337 This might be useful if you decide to switch from using a cert container to using
35338 the Keychain to store your public certs, which you may do by using the
35339 feature
35340 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
35342 <UL>   
35343 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35344 </UL><P>
35346 <UL>   
35347 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35348 </UL><P>
35349 &lt;End of help on this topic&gt;
35350 </BODY>
35351 </HTML>
35352 ====== h_config_smime_transfer_pubkey_to_con =====
35353 <HTML>
35354 <HEAD>
35355 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35356 </HEAD>
35357 <BODY>
35358 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35360 UNIX Alpine only.
35362 The Transfer command will copy the public certificates in your configured
35363 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35364 to your default Mac OS X Keychain.
35365 This might be useful if you decide to switch from using a cert container to using
35366 the Keychain to store your public certs.
35368 <UL>   
35369 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35370 </UL><P>
35372 <UL>   
35373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35374 </UL><P>
35375 &lt;End of help on this topic&gt;
35376 </BODY>
35377 </HTML>
35378 ====== h_config_smime_public_certificates =====
35379 <HTML>
35380 <HEAD>
35381 <TITLE>S/MIME: Manage Public Certificates</TITLE>
35382 </HEAD>
35383 <BODY>
35384 <H1>S/MIME: Manage Public Certificates</H1>
35386 UNIX Alpine only.
35388 This menu item allows you to manage your public certificates, this
35389 may include your own public certificate, but it normally includes
35390 certificates of people you correspond with. These certificates are
35391 saved by Alpine automatically when they are found in signed messages
35392 that you receive. This interface allows you to manage them, by
35393 giving you the option to delete them, or trust them (in the case
35394 of self-signed certificates).
35397 Please note that Alpine will not validate a message that was sent to you
35398 using a self-signed certificate, unless you decide to trust that certificate.
35399 Internally, a certificate is trusted by copying it to the
35400 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
35401 collection. If you decide that you want to stop trusting a self-signed
35402 certificate, you must delete such certificate from such collection.
35404 The <B>I</B> Import command available in this screen allows you to 
35405 import a command to this collection.
35407 <UL>   
35408 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35409 </UL><P>
35411 <UL>   
35412 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35413 </UL><P>
35414 &lt;End of help on this topic&gt;
35415 </BODY>
35416 </HTML>
35417 ====== h_config_smime_private_keys =====
35418 <HTML>
35419 <HEAD>
35420 <TITLE>S/MIME: Manage Private Keys</TITLE>
35421 </HEAD>
35422 <BODY>
35423 <H1>S/MIME: Manage Private Keys</H1>
35425 UNIX Alpine only.
35427 This option allows you to manage your private key. Normally a person has only
35428 one key, in the same way that a person only has one valid passport, or ID card,
35429 at any given time. This option allows you to manage private keys. You can
35430 delete them or import them. Additionally, you can view information
35431 about your public certificate, such as the issuer and the dates of validity
35432 of such certificate, among others.
35435 If you have more than one e-mail address for which you want to use the 
35436 same private key, you must add all those addresses to the private key at 
35437 the moment that the key is generated. When you receive a signed message using 
35438 a key generated for several e-mail addresses, Alpine will save a 
35439 certificate for each e-mail address included in such certificate.
35441 The <B>I</B> Import command available in this screen allows you to 
35442 import a command to this collection.
35444 <UL>   
35445 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35446 </UL><P>
35448 <UL>   
35449 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35450 </UL><P>
35451 &lt;End of help on this topic&gt;
35452 </BODY>
35453 </HTML>
35454 ====== h_config_smime_certificate_authorities =====
35455 <HTML>
35456 <HEAD>
35457 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
35458 </HEAD>
35459 <BODY>
35460 <H1>S/MIME: Manage Certificate Authorities</H1>
35462 UNIX Alpine only.
35464 This collection contains certificates that are needed to validate the 
35465 certificate of another person, and therefore contains certificates that 
35466 you trust. Typically a certificate is signed by another entity, called a 
35467 certificate authority. This option allows you to manage which certificates 
35468 you trust, allowing you to import them and to delete them or view information
35469 about each certificate, such as the issuer and the dates of validity
35470 of such certificate.
35472 The <B>I</B> Import command available in this screen allows you to 
35473 import a command to this collection.
35475 <UL>   
35476 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35477 </UL><P>
35479 <UL>   
35480 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35481 </UL><P>
35482 &lt;End of help on this topic&gt;
35483 </BODY>
35484 </HTML>
35485 ====== h_config_smime_password_file_certificates =====
35486 <HTML>
35487 <HEAD>
35488 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
35489 </HEAD>
35490 <BODY>
35491 <H1>S/MIME: Manage Password File Certificates</H1>
35493 UNIX Alpine only.
35495 This option allows you to manage the certificates that are used to
35496 encrypt and decrypt your password file. This is useful in case you
35497 want to change the certificates used to encrypt your password file.
35499 In order to avoid unauthorized use of this option, you are asked to
35500 enter the password of the current private key used to encrypt your
35501 password file.
35503 Once you have entered your password for the current key, you enter a
35504 screen where you can import your new key, and see the information on your
35505 current key.
35507 To import a new key press &quot;RETURN&quot; and enter the location of
35508 the new key. You will be asked to enter the password of the new key. If
35509 this part of the process is successful, Alpine will search for the 
35510 certificate that matches that key. If your key is named 
35511 &quot;your_email@address.com.key&quot;, then Alpine will look for your
35512 certificate in the same directory in the file named
35513 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
35514 as part of your key (that is, it will look to see if your certificate
35515 is in the file &quot;your_email@address.com.key&quot;), if all of this
35516 fails, Alpine will ask you to enter the location of the certificate
35517 that matches the key you unlocked. If a certificate is found, it will be 
35518 used, and in this case, the password file will be read, decrypted with the 
35519 old key and encrypted with the new key. Once this is done, the new key and 
35520 certificates are saved, and the old keys are permanently deleted.
35522 Alpine does not create a backup of your password file, or your old keys
35523 that will be replaced. If you need to keep old copies, you will have to do
35524 this operation outside Alpine.
35525 <UL>   
35526 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35527 </UL><P>
35529 <UL>   
35530 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35531 </UL><P>
35532 &lt;End of help on this topic&gt;
35533 </BODY>
35534 </HTML>
35535 ====== h_certificate_information =====
35536 <HTML>
35537 <HEAD>
35538 <TITLE>S/MIME: Certificate Information Screen</TITLE>
35539 </HEAD>
35540 <BODY>
35541 <H1>S/MIME: Certificate Information Screen</H1>
35543 UNIX Alpine only.
35545 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
35546 such as its owner, e-mail address, issuer, and interval of validity, 
35547 among others.
35549 In the case of public certificates, this screen shows you if there was a
35550 failure when attempting to validate such message. If the certificate is
35551 self-signed, then the <B>T</B> Trust command will be available, which
35552 you can use to trust such certificate and make Alpine not fail validating 
35553 signatures signed with such certificate.
35555 You can also mark a certificate deleted, with the <B>D</B> command, or 
35556 remove the deleted mark with the <B>U</B> undelete command.
35558 In the case of your private key, Alpine shows you the information
35559 from your public key. Additionally, Alpine allows you to see public
35560 and private information about your key, with the <B>B</B> and
35561 <B>R</B> commands respectively.
35562 <UL>   
35563 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35564 </UL><P>
35566 <UL>   
35567 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35568 </UL><P>
35569 &lt;End of help on this topic&gt;
35570 </BODY>
35571 </HTML>
35572 ====== h_config_smime_manage_public_menu =====
35573 <HTML>
35574 <HEAD>
35575 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
35576 </HEAD>
35577 <BODY>
35578 <H1>S/MIME: Commands that Manage Public Certificates</H1>
35580 UNIX Alpine only.
35582 This screen allows you to manage your public certificates. 
35584 The format of this screen is as follows. There are five fields: The 
35585 leftmost field is normally empty, but it could contain the letter 
35586 &quot;D&quot; to indicate that that certificate has been marked for 
35587 deletion. The next field is the e-mail address of the owner of the 
35588 certificate, shown in its entirety. The third and fourth field are the 
35589 first and last day validity for that certificate, respectively. The date
35590 is displayed in the user's locale unless the option 
35591 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
35592 is set. In this case, the month, day and year are represented by two
35593 digits, and the format used is mm/dd/yy. Finally, the fifth 
35594 field is what can be displayed of the MD5 hash of the certificate. You can 
35595 use any of the last three fields to distinguish between two certificates 
35596 for the same owner.
35598 Available commands in this screen and a short description of what they 
35599 do follows.
35600 <UL>
35601 <LI> <B>I</B> Imports a public certificate to this collection.
35602 <LI> <B>V</B> View information about a certificate such as the name of the person the
35603 certificate was issued to, its dates of validity, and validity status.
35604 <LI> <B>D</B> Marks a certificate deleted.
35605 <LI> <B>U</B> Removes the deletion mark on a certificate.
35606 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35607 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
35608 trust a certificate by copying it to the collection of trusted certificates.
35609 </UL>
35611 All commands provide feedback to let you know about their success or failure.
35613 <UL>   
35614 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35615 </UL><P>
35617 <UL>   
35618 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35619 </UL><P>
35620 &lt;End of help on this topic&gt;
35621 </BODY>
35622 </HTML>
35623 ====== h_config_smime_manage_private_menu =====
35624 <HTML>
35625 <HEAD>
35626 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
35627 </HEAD>
35628 <BODY>
35629 <H1>S/MIME: Commands that Manage Private Keys</H1>
35631 UNIX Alpine only.
35633 This screen allows you to manage your private key.
35635 The format of this screen is as follows. There are five fields: The 
35636 leftmost field is normally empty, but it could contain the letter 
35637 &quot;D&quot; to indicate that that certificate has been marked for 
35638 deletion. The next field is the e-mail address of the owner of the 
35639 certificate, shown in its entirety. The third field is the first day of 
35640 validity for that certificate; the fourth field in the last day that that 
35641 certificate is valid, and the fifth field is what can be displayed of the 
35642 MD5 hash of the public certificate corresponding to this private key. You 
35643 can use any of the last three fields to distinguish between two 
35644 certificates for the same owner.
35646 Available commands and a short description of what they do follows.
35647 <UL>
35648 <LI> <B>I</B> Imports a new public key to this collection.
35649 <LI> <B>V</B> View information about the public certificate corresponding to this
35650 key.
35651 <LI> <B>D</B> Marks a key to be deleted.
35652 <LI> <B>U</B> Removes the deletion mark on a key.
35653 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
35654 Note that expunging a private key does not remove the public key, which must
35655 be removed separately.
35656 </UL>
35658 All commands provide feedback to let you know about their success or failure.
35660 <UL>   
35661 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35662 </UL><P>
35664 <UL>   
35665 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35666 </UL><P>
35667 &lt;End of help on this topic&gt;
35668 </BODY>
35669 </HTML>
35670 ====== h_config_smime_manage_cacerts_menu =====
35671 <HTML>
35672 <HEAD>
35673 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
35674 </HEAD>
35675 <BODY>
35676 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
35678 UNIX Alpine only.
35680 This screen allows you to manage your collection of certificates that you
35681 trust. 
35683 The format of this screen is as follows. There are five fields: The 
35684 leftmost field is normally empty, but it could contain the letter 
35685 &quot;D&quot; to indicate that that certificate has been marked for 
35686 deletion. The next field is the e-mail address of the owner of the 
35687 certificate, shown in its entirety. The third field is the first day of 
35688 validity for that certificate; the fourth field in the last day that that 
35689 certificate is valid, and the fifth field is what can be displayed of the 
35690 MD5 hash of the certificate. You can use any of the last three fields to 
35691 distinguish between two certificates for the same owner.
35693 Available commands and a short description of what they do follows.
35694 <UL>
35695 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
35696 done by reading the certificate and validating it. Once a certificate
35697 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
35698 to the certificate, if necessary.
35699 <LI> <B>V</B> View information about this certificate, such as its issuer 
35700 and validity dates.
35701 <LI> <B>D</B> Marks a certificate to be deleted.
35702 <LI> <B>U</B> Removes the deletion mark on a certificate.
35703 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35704 </UL>
35706 All commands provide feedback to let you know about their success or failure.
35708 <UL>
35709 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35710 </UL><P>
35712 <UL>   
35713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35714 </UL><P>
35715 &lt;End of help on this topic&gt;
35716 </BODY>
35717 </HTML>
35718 ====== h_config_lame_list_mode =====
35719 <HTML>
35720 <HEAD>
35721 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
35722 </HEAD>
35723 <BODY>
35724 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
35726 This feature modifies the method Alpine uses to ask your IMAP
35727 server for folder names to display in the FOLDER LIST screen.
35728 It is intended to compensate for a small set of IMAP servers that
35729 are programmed to ignore a part of the request, and thus respond
35730 to Alpine's query with nonsensical results.
35733 If you find that Alpine is erroneously displaying blank folder lists,
35734 try enabling this feature.
35737 NOTE: Enabling this feature has consequences for the Goto and Save
35738 commands.  Many servers allow access to folders outside the area
35739 reserved for your personal folders via some reserved character,
35740 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
35741 allows, at the Goto and Save prompts, quick access to folders
35742 outside your personal folder collection without requiring a specific
35743 collection definition.  This behavior will generally not be available
35744 when this feature is enabled.
35747 <UL>   
35748 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35749 </UL><P>
35750 &lt;End of help on this topic&gt;
35751 </BODY>
35752 </HTML>
35753 ====== h_config_enable_mulnewsrcs =====
35754 <HTML>
35755 <HEAD>
35756 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
35757 </HEAD>
35758 <BODY>
35759 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
35761 This feature makes it so Alpine can use multiple newsrcs based on
35762 the news server being connected to, which allows for separate lists
35763 of subscribed-to newsgroups. When this feature is not set, there is only
35764 one list of newsgroups.
35766 Under this feature, the name of a newsrc is based on the news server.
35767 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
35768 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
35769 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
35770 Setting this feature for the first time will allow for the option of using
35771 your old newsrc the next time you read news.
35773 If this feature is set, then the feature
35774 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
35775 also may affect the name of the newsrc file that is used.
35777 <UL>   
35778 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35779 </UL><P>
35780 &lt;End of help on this topic&gt;
35781 </BODY>
35782 </HTML>
35783 ======= h_ab_export_vcard =======
35784 <HTML>
35785 <HEAD>
35786 <TITLE>Address Book Export Format</TITLE>
35787 </HEAD>
35788 <BODY>
35789 <H1>Address Book Export Format</H1>
35791 You are exporting address book data from Alpine to a file outside of Alpine.
35792 You are being asked to choose the format of the export.
35793 Here are the choices:
35795 <DL>
35796 <DT><EM>A</EM>ddress List</DT>
35797 <DD>
35798 The addresses from the address book entries you are saving
35799 from will be saved one address per line.
35800 Address book lists (those with more than one address) will have
35801 all of their addresses saved separately.
35802 </DD>
35804 <DT><EM>V</EM>Card</DT>
35805 <DD>
35806 The entries will be saved in
35807 <A HREF="h_whatis_vcard">vCard</A> format.
35808 </DD>
35810 <DT><EM>T</EM>ab Separated</DT>
35811 <DD>
35812 The entries will be saved in tab-separated columns.
35813 There will be just 4 columns of data that correspond to Alpine's
35814 Nickname field, Full Name field, Address field, and Comment field.
35815 It might prove useful to Select only the Simple, non-List address book
35816 entries before Saving.
35817 </DD>
35819 <DT><EM>^C</EM> Cancel</DT>
35820 <DD>
35821 Cancel out of the Save.
35822 </DD>
35824 </DL>
35828 &lt;End of help on this topic&gt;
35829 </BODY>
35830 </HTML>
35831 ====== h_config_predict_nntp_server =====
35832 <HTML>
35833 <HEAD>
35834 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
35835 </HEAD>
35836 <BODY>
35837 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
35839 This feature allows Alpine to assume that the open NNTP server at the
35840 time of composition is the NNTP server to which the message should be
35841 posted.  This is especially recommended when there are multiple News
35842 collections.  If this feature is not set, Alpine will try to post to the first server in
35843 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
35844 this feature also negates the need to add News collection servers to
35845 the <!--#echo var="VAR_nntp-server"--> variable.
35847 This feature can be especially handy when used in conjunction with
35848 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
35850 <UL>   
35851 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35852 </UL><P>
35853 &lt;End of help on this topic&gt;
35854 </BODY>
35855 </HTML>
35856 ====== h_config_nntp_search_uses_overview =====
35857 <HTML>
35858 <HEAD>
35859 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
35860 </HEAD>
35861 <BODY>
35862 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
35864 This feature should probably be turned on unless it causes trouble.
35865 The results of the NNTP overview command (XOVER) may be used to help
35866 with some searches in news groups.
35867 It should result in quicker response time.
35868 Turning this feature on apparently causes search results which are
35869 different from what you would get with the feature turned off on some
35870 servers.
35872 <UL>   
35873 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35874 </UL><P>
35875 &lt;End of help on this topic&gt;
35876 </BODY>
35877 </HTML>
35878 ====== h_config_thread_sorts_by_arrival =====
35879 <HTML>
35880 <HEAD>
35881 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
35882 </HEAD>
35883 <BODY>
35884 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
35886 This feature affects how a threading sort arranges threads.  The default way
35887 to arrange threads is by the date of the earliest message in the thread.
35888 This feature arranges threads by the last message to arrive in a thread.
35890 This feature causes old threads that get recent messages to sort to the bottom,
35891 where previously a message arrival to a thread would not rearrange the order of
35892 that thread.
35894 <UL>   
35895 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35896 </UL><P>
35897 &lt;End of help on this topic&gt;
35898 </BODY>
35899 </HTML>
35900 ====== h_config_textplain_int =====
35901 <HTML>
35902 <HEAD>
35903 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
35904 </HEAD>
35905 <BODY>
35906 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
35908 This feature modifies the method Alpine uses to display Text/Plain
35909 MIME attachments from the Attachment Index screen.  Normally, the
35910 &quot;View&quot; command searches for any externally defined (usually
35911 via the
35912 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
35913 and displays the selected text within that viewer.
35916 Enabling this feature causes Alpine to ignore any external viewer
35917 settings and always display text with Alpine's internal viewer.
35920 <UL>   
35921 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35922 </UL><P>
35923 &lt;End of help on this topic&gt;
35924 </BODY>
35925 </HTML>
35926 ====== h_config_wp_columns =====
35927 <HTML>
35928 <HEAD>
35929 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
35930 </HEAD>
35931 <BODY>
35932 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
35934 Web Alpine only.
35936 This configuration setting specifies the number of horizontal characters
35937 used to format various WebAlpine pages.  Smaller values will tend to reduce
35938 the amount of horizontal scrolling required to view pages within narrow
35939 browsers, such as those found on PDAs, and larger values will tend to 
35940 spread more information across the page.
35943 The Message List page uses the width to determine how many characters
35944 to assign each field.  Note, a smaller value may result in a disproportionate
35945 amount of blank space between fields on each line.  Similarly, a large
35946 value may result in cramped fields or horizontal scrolling.
35949 The Message View page uses this value to determine when to wrap lines
35950 in displayed message text.  Note, a smaller value may result in jagged
35951 right margins or confusing quoting.  A larger value may cause lines of text to
35952 run beyond the browser's right edge, requiring horizontal scrolling.
35955 <UL>   
35956 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35957 </UL><P>
35958 &lt;End of help on this topic&gt;
35959 </BODY>
35960 </HTML>
35961 ====== h_config_wp_state =====
35962 <HTML>
35963 <HEAD>
35964 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
35965 </HEAD>
35966 <BODY>
35967 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
35969 Web Alpine only.
35971 Various aspects of cross-session state.
35974 <UL>   
35975 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35976 </UL><P>
35977 &lt;End of help on this topic&gt;
35978 </BODY>
35979 </HTML>
35980 ====== h_config_wp_aggstate =====
35981 <HTML>
35982 <HEAD>
35983 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
35984 </HEAD>
35985 <BODY>
35986 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
35988 Web Alpine only.
35990 Aggregate operations tab state.
35993 <UL>   
35994 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35995 </UL><P>
35996 &lt;End of help on this topic&gt;
35997 </BODY>
35998 </HTML>
35999 ====== h_config_wp_indexlines =====
36000 <HTML>
36001 <HEAD>
36002 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
36003 </HEAD>
36004 <BODY>
36005 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
36007 Web Alpine only.
36009 Number of index lines in table.
36012 <UL>   
36013 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36014 </UL><P>
36015 &lt;End of help on this topic&gt;
36016 </BODY>
36017 </HTML>
36018 ====== h_config_wp_indexheight =====
36019 <HTML>
36020 <HEAD>
36021 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
36022 </HEAD>
36023 <BODY>
36024 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
36026 Web Alpine only.
36028 Index table row height.
36031 <UL>   
36032 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36033 </UL><P>
36034 &lt;End of help on this topic&gt;
36035 </BODY>
36036 </HTML>
36037 ====== h_config_rss_news =====
36038 <HTML>
36039 <HEAD>
36040 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
36041 </HEAD>
36042 <BODY>
36043 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
36045 Web Alpine only.
36047 RSS News feed.
36050 <UL>   
36051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36052 </UL><P>
36053 &lt;End of help on this topic&gt;
36054 </BODY>
36055 </HTML>
36056 ====== h_config_rss_weather =====
36057 <HTML>
36058 <HEAD>
36059 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
36060 </HEAD>
36061 <BODY>
36062 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
36064 Web Alpine only.
36066 RSS Weather feed.
36069 <UL>   
36070 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36071 </UL><P>
36072 &lt;End of help on this topic&gt;
36073 </BODY>
36074 </HTML>
36075 ====== h_config_send_confirms_only_expanded =====
36076 <HTML>
36077 <HEAD>
36078 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
36079 </HEAD>
36080 <BODY>
36081 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
36083 This Web Alpine option specifies whether or not a Send confirmations
36084 happens when a composed message is readied for sending or not.  The
36085 default behavior is to not confirm that the nicknames were expanded to
36086 the intended addresses.
36089 <UL>   
36090 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36091 </UL><P>
36092 &lt;End of help on this topic&gt;
36093 </BODY>
36094 </HTML>
36095 ====== h_config_enable_jump_command =====
36096 <HTML>
36097 <HEAD>
36098 <TITLE>FEATURE: enable-jump-command</TITLE>
36099 </HEAD>
36100 <BODY>
36101 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
36103 This Web Alpine option specifies whether or not a Jump command is
36104 offered in the Message List and Message View pages.  The command is
36105 implemented as an input field in the left column of the List and View
36106 screens. 
36109 When enabled and a number is entered in the input field while the
36110 Message List is displayed, the Message List is reframed with the
36111 specified message.  While viewing a message, the message associated
36112 with the specified message number is displayed.
36115 <UL>   
36116 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36117 </UL><P>
36118 &lt;End of help on this topic&gt;
36119 </BODY>
36120 </HTML>
36121 ====== h_config_enable_newmail_sound =====
36122 <HTML>
36123 <HEAD>
36124 <TITLE>FEATURE: enable-newmail-sound</TITLE>
36125 </HEAD>
36126 <BODY>
36127 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
36129 This Web Alpine option specifies whether or not a sound file is sent
36130 to the web browser along with the newmail notification message.
36134 <UL>   
36135 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36136 </UL><P>
36137 &lt;End of help on this topic&gt;
36138 </BODY>
36139 </HTML>
36140 ====== h_config_render_html_internally =====
36141 <HTML>
36142 <HEAD>
36143 <TITLE>FEATURE: render-html-internally</TITLE>
36144 </HEAD>
36145 <BODY>
36146 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36148 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36149 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36150 the HTML text into plain text in the same way Unix and PC-Alpine do.
36154 <UL>   
36155 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36156 </UL><P>
36157 &lt;End of help on this topic&gt;
36158 </BODY>
36159 </HTML>
36160 ====== h_config_role_undo =====
36161 Yes, remember changes and exit back to list of roles; No, discard changes
36162 made in this screen; ^C, cancel exit and stay in this config screen.
36163 ====== h_exit_editor =====
36164 S, save changes and exit from the editor; D, do not save changes but
36165 do exit from the editor; or ^C, cancel exit and stay in the editor.
36166 ====== h_config_undo =====
36167 Yes, save changes and exit; No, exit without saving any changes made since
36168 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36169 ====== h_os_index_whereis =====
36170 Enter ^V or ^Y to go immediately to the last or first message in the index.
36171 Or, enter the match string followed by RETURN.
36172 ====== h_os_index_whereis_agg =====
36173 Enter ^V or ^Y to go immediately to the last or first message in the index,
36174 Or, enter the match string followed by RETURN (or ^X to select all matches).
36175 =========== h_oe_add_full ==================
36176 Type the full name of the person being added and press the RETURN key.
36177 Press ^C to cancel addition.
36178 =========== h_oe_add_nick ==================
36179 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36180 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36181 ========== h_oe_add_addr ================
36182 Type the e-mail address and press RETURN.
36183 Press ^C to cancel addition.
36184 ========== h_oe_crlst_full ==============
36185 Type a long name or description for the list that you are creating and
36186 press RETURN.  Press ^C to cancel creation of list.
36187 =========== h_oe_crlst_nick =============
36188 Type a nickname (short, easy-to-remember name or single word) for the list
36189 you are creating and press RETURN.  Press ^C to cancel.
36190 ========== h_oe_crlst_addr ==============
36191 Type an e-mail address, or a nickname already in the address book that you
36192 want to be part of this list and press RETURN.
36193 ========== h_oe_adlst_addr =============
36194 Type an e-mail address or a nickname already in the address book that you
36195 want to add to this list and press RETURN.
36196 ========== h_oe_editab_nick ============
36197 Change the nickname using the arrow keys and delete key.  Press RETURN
36198 when done.  Press ^C to cancel editing and leave the nickname as it was.
36199 ========== h_oe_editab_full ============
36200 Change the full name using the arrow keys and delete key.  Press RETURN
36201 when done.  Press ^C to cancel editing and leave the full name as it was.
36202 ========== h_oe_editab_addr ============
36203 Change the address using the arrow keys and delete key.  Press RETURN
36204 when done.  Press ^C to cancel editing and leave the address as it was.
36205 ========== h_oe_editab_fcc ============
36206 Change the fcc using the arrow keys and delete key.  Press RETURN when
36207 done.  Press ^C to cancel editing and leave the fcc as it was.
36208 ========== h_oe_editab_comment ============
36209 Change the comment field using the arrow keys and delete key.  Press RETURN
36210 when done.  Press ^C to cancel editing and leave the comment as it was.
36211 ====== h_ab_forward =====
36212 Yes, expand nicknames and qualify local names with your current domain name;
36213 No, leave nicknames and local names as is;  ^C, cancel.
36214 ========== h_ab_export ==========
36215 Type the name of a file to write the addresses into and
36216 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36217 ========== h_ab_edit_a_field ==========
36218 Edit any of the fields of the currently selected entry by typing one of the
36219 letters at the bottom of the screen.  Press ^C to cancel edit.
36220 ====== h_ab_del_data_revert =====
36221 Press B to completely delete addrbook and revert to default, C to delete config
36222 and revert while leaving data, or D to only delete data (make it empty).
36223 ====== h_ab_del_data_modify =====
36224 Press B to completely delete addrbook, C to delete configuration while leaving
36225 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36226 ====== h_ab_del_config_modify =====
36227 Yes, remove this address book from my configuration.
36228 No, make no changes now.
36229 ====== h_ab_del_config_revert =====
36230 Yes, remove this address book from my config and revert to default.
36231 No, make no changes now.
36232 ====== h_ab_del_default =====
36233 Yes, remove this default address book from my configuration.
36234 No, make no changes now.
36235 ====== h_ab_really_delete =====
36236 Yes, delete the actual contents of the address book, not just the 
36237 configuration.  No, don't delete the data after all, cancel and start over.
36238 ====== h_ab_del_ignore =====
36239 Press I to ignore all the default address books for this category.  Press R to
36240 remove this one address book and add the others to your personal list.
36241 ====== h_ab_del_dir_ignore =====
36242 Press I to ignore all the default directory servers for this category.
36243 Press R to remove this one server and add the others to your personal list.
36244 ====== h_ab_copy_dups =====
36245 Yes, overwrite the existing entry.
36246 No, skip duplicates but save the rest. Press ^C to cancel.
36247 ====== h_confirm_cancel =====
36248 Type C to Confirm that you want to abandon the message you are composing.
36249 Type N or ^C to cancel out of the cancel and keep composing.
36250 ====== h_ab_text_or_vcard =====
36251 Text, start composer with displayed text already included.
36252 VCard, start composer with address book entry attached as a vCard. ^C cancels.
36253 ====== h_ab_backup_or_ldap =====
36254 Backup, copy email address from entry and allow editing of it.
36255 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
36256 ====== h_ldap_text_or_vcard =====
36257 Text: export displayed text for selected entry. Address: export only the
36258 email address. VCard: export entry in vCard format. ^C cancels.
36259 ====== h_ab_save_exp =====
36260 Save, save entry or entries to an address book.
36261 Export, save to file outside of pine. ^C cancels save.
36262 ====== h_ab_add =====
36263 A, add a brand new entry to this address book.
36264 E, edit the entry that is currently highlighted. ^C to cancel.
36265 ====== h_ab_shuf =====
36266 U, swap order of highlighted address book and the one above it.
36267 D, swap order of highlighted address book and the one below it. ^C to cancel.
36268 ====== h_ab_shuf_up =====
36269 U, swap order of highlighted address book and the one above it.
36270 Press ^C to cancel.
36271 ====== h_ab_shuf_down =====
36272 D, swap order of highlighted address book and the one below it.
36273 Press ^C to cancel.
36274 ====== h_folder_prop =====
36275 Count is # of messages in the folder, Unseen means messages that have not
36276 been read, New means messages that were Recently added to the folder.
36277 ====== h_role_shuf =====
36278 U, swap order of highlighted rule and the one above it.
36279 D, swap order of highlighted rule and the one below it. ^C to cancel.
36280 ====== h_role_shuf_up =====
36281 U, swap order of highlighted rule and the one above it.
36282 Press ^C to cancel.
36283 ====== h_role_shuf_down =====
36284 D, swap order of highlighted rule and the one below it.
36285 Press ^C to cancel.
36286 ====== h_incoming_shuf =====
36287 B, swap order of highlighted directory and the one before it.
36288 F, swap order of highlighted directory and the one after it. ^C to cancel.
36289 ====== h_incoming_shuf_up =====
36290 B, swap order of highlighted directory and the one before it.
36291 Press ^C to cancel.
36292 ====== h_incoming_shuf_down =====
36293 F, swap order of highlighted directory and the one after it.
36294 Press ^C to cancel.
36295 ====== h_dir_shuf =====
36296 U, swap order of highlighted directory and the one above it.
36297 D, swap order of highlighted directory and the one below it. ^C to cancel.
36298 ====== h_dir_shuf_up =====
36299 U, swap order of highlighted directory and the one above it.
36300 Press ^C to cancel.
36301 ====== h_dir_shuf_down =====
36302 D, swap order of highlighted directory and the one below it.
36303 Press ^C to cancel.
36304 ====== h_hdrcolor_shuf =====
36305 U, swap order of highlighted Header Color and the one above it.
36306 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
36307 ====== h_hdrcolor_shuf_up =====
36308 U, swap order of highlighted Header Color and the one above it.
36309 Press ^C to cancel.
36310 ====== h_hdrcolor_shuf_down =====
36311 D, swap order of highlighted Header Color and the one below it.
36312 Press ^C to cancel.
36313 ========== h_oe_editab_al ============
36314 Change the address using the arrow keys and delete key.  Press RETURN
36315 when done.  Press ^C to cancel editing and leave the address as it was.
36316 ========== h_dir_comp_search ===============
36317 Type a string to look for just like you would in the composer. Your configured
36318 rules for the servers with the implicit flag set will be used.
36319 ========== h_oe_searchab ===============
36320 Type the word or name you want to search for and press RETURN.  If you press
36321 RETURN without entering anything the word in [] will be searched for.
36322 ========== h_oe_chooseabook ==========
36323 Choose the address book you want to save the new entry in.
36324 Use ^N or ^P to change address books.  ^C to cancel.
36325 ========== h_oe_takeaddr ==========
36326 Edit the e-mail address using the arrow and delete keys.  Press RETURN
36327 when done.  Press ^C to cancel adding this entry to the address book.
36328 ========== h_oe_take_replace ==========
36329 Press R to replace the old entry with this new data.  You will still have
36330 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
36331 ========== h_oe_take_replace_or_add ==========
36332 Press R to replace the old entry.  Press A to add the selected addresses to
36333 the old existing list.  N to enter another nickname. ^C to cancel now.
36334 ========== h_oe_takename ==========
36335 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
36336 when done.  Press ^C to cancel adding this entry to the address book.
36337 ========== h_oe_takenick ==========
36338 Type a nickname (short easy-to-remember name, initials or single word) for this
36339 entry in the address book and press RETURN.  Press ^C to cancel addition.
36340 ========== h_oe_jump ==========
36341 Type the message number you want to jump to and press RETURN.  The word "end"
36342 represents the last message. Press ^C to cancel jumping to another message.
36343 ========== h_oe_jump_thd ==========
36344 Type the thread number you want to jump to and press RETURN.  The word "end"
36345 represents the last thread. Press ^C to cancel jumping to another thread.
36346 ========== h_oe_debuglevel ==========
36347 Higher number shows more debugging details.
36348 Press ^C if you want to cancel the change.
36349 ========== h_oe_broach ==========
36350 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
36351 to go to the previous/next collections in the list.  Press ^C to cancel goto.
36352 ========== h_oe_foldsearch ==========
36353 Type the text you want to search for in foldernames and press RETURN.  If you
36354 press RETURN without entering anything, any text in [] will be searched for.
36355 ========== h_oe_foldrename ==========
36356 Change the old name of the folder to the new name using the arrow and
36357 delete keys and press RETURN.  Press ^C to cancel rename.
36358 ========== h_oe_login ==========
36359 Enter your login name for the host you are opening the mailbox on.  Just press
36360 RETURN to use your login from this host as is, or edit it with delete key.
36361 ========== h_oe_passwd ==========
36362 Type your password for the host and login shown as part of the prompt.
36363 Press ^C to cancel opening folder.
36364 ========== h_oe_choosep ==========
36365 Enter the number associated with the printer you want to select.  Press ^C to
36366 cancel the printer selection.  The current selection is highlighted.
36367 ========== h_oe_customp ==========
36368 Type the name of the Unix print command and press RETURN.  Press ^C to
36369 cancel the printer selection.
36370 ========== h_oe_searchview ==========
36371 Type the word or name you want to search for and press RETURN.  If you press
36372 RETURN without entering anything the word in [] will be searched for.
36373 ========== h_oe_keylock ==========
36374 The keyboard is in use and locked by another user.  Only that user can
36375 unlock this keyboard by typing the password.
36376 ========== h_wt_expire ==========
36377 At the beginning of each month Alpine offers to rename your current sent-mail
36378 folder to one named for the month so you have a sent-mail folder for each month
36379 ========== h_wt_delete_old ==========
36380 It is the beginning of the month, and we need to conserve disk
36381 space.  Please delete any sent-mail that you do not need.
36382 ========== h_select_sort ==========
36383 Select the order for sorting the index by typing the capitalized letter.
36384 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
36385 ========== h_no_F_arg ============
36386 Enter name of file to be opened.
36388 ========== h_sticky_personal_name ==========
36389 Type in your name as you want it to appear on outgoing email.  This entry
36390 will be saved into your Alpine configuration file.
36391 ========== h_sticky_inbox ============
36392 INBOX syntax is usually {complete.machine.name}INBOX
36393 This entry will be saved in your Alpine configuration file.
36394 ========== h_sticky_smtp ============
36395 The name of the computer on your campus that relays your outgoing email
36396 to the Internet.  This entry will be saved in your Alpine configuration file.
36397 ========== h_sticky_user_id ==========
36398 The username or login-id part of your email address.  This entry will be
36399 saved in your Alpine configuration file.
36400 ========== h_sticky_domain ==========
36401 The domain part of your email address, NOT the name of your PC.  This
36402 entry will be saved in your Alpine configuration file.
36403 ========== h_bounce =========
36404 Enter the address or nickname of the intended recipient.  Alpine will resend
36405 the message, which will retain the original author's From: address.
36406 ========== h_incoming_add_folder_nickname =========
36407 Enter an (optional) nickname that will be used in lieu of the actual
36408 host and folder names in the FOLDER LIST display.
36409 ========== h_anon_forward ==========
36410 Enter the address of your intended recipient, or ^C to cancel.
36411 Example: jsmith@somewhere.edu
36412 ========== h_news_subscribe ==========
36413 Enter the name of the newsgroup to which you wish to subscribe,
36414 or ^C to cancel.  Example: comp.mail.pine
36415 ========== h_pipe_msg ==========
36416 Enter the name of the Unix command to which you wish to send this
36417 message, or ^C to cancel.
36418 ========== h_pipe_attach ==========
36419 Enter the name of the Unix command to which you wish to send this
36420 attachment, or ^C to cancel.
36421 ========== h_select_by_num ==========
36422 Enter a list of message numbers (or number ranges), or ^C to cancel.  The word
36423 "end" represents the last message. Example: 2-5,7-9,11,19,35-end
36424 ========== h_select_by_thrdnum ==========
36425 Enter a list of thread numbers (or number ranges), or ^C to cancel.  The word
36426 "end" represents the last thread. Example: 2-5,7-9,11,19,35-end
36427 ========== h_select_txt_from ==========
36428 Messages with From: headers containing the entered string will be selected.
36429 ^C to cancel. ^G again to see original options.
36430 ========== h_select_txt_not_from ==========
36431 Messages without From: headers containing the entered string will be selected.
36432 ^C to cancel. ^G again to see original options.
36433 ========== h_select_txt_to ==========
36434 Messages with To: headers containing the entered string will be selected.
36435 ^C to cancel. ^G again to see original options.
36436 ========== h_select_txt_not_to ==========
36437 Messages without To: headers containing the entered string will be selected.
36438 ^C to cancel. ^G again to see original options.
36439 ========== h_select_txt_cc ==========
36440 Messages with Cc: headers containing the entered string will be selected.
36441 ^C to cancel. ^G again to see original options.
36442 ========== h_select_txt_not_cc ==========
36443 Messages without Cc: headers containing the entered string will be selected.
36444 ^C to cancel. ^G again to see original options.
36445 ========== h_select_txt_subj ==========
36446 Messages with Subject: headers containing the entered string will be selected.
36447 ^C to cancel.  ^X enters Subject: line of current message.
36448 ========== h_select_txt_not_subj ==========
36449 Messages without Subject headers containing the entered string will be selected.
36450 ^C to cancel.  ^X enters Subject: line of current message.
36451 ========== h_select_txt_all ==========
36452 All messages containing the entered string will be selected.  Headers and body,
36453 but not encoded attachments, will be compared.  Enter ^C to cancel.
36454 ========== h_select_txt_not_all ==========
36455 All messages that don't contain the entered string will be selected.  Headers
36456 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
36457 ========== h_select_txt_body ==========
36458 All messages containing the entered string will be selected. Body text, but
36459 not headers or encoded attachments, will be compared. ^C to cancel.
36460 ========== h_select_txt_not_body ==========
36461 All messages that don't contain the entered string will be selected. Body
36462 text, but not headers or encoded attachments, will be compared. ^C to cancel.
36463 ========== h_select_txt_recip ==========
36464 Messages with Cc: or To: headers containing the entered string will be selected.
36465 ^C to cancel. ^G again to see original options.
36466 ========== h_select_txt_not_recip ==========
36467 Messages without Cc: or To: headers containing the string will be selected.
36468 ^C to cancel. ^G again to see original options.
36469 ========== h_select_txt_partic ==========
36470 Messages with Cc, To, or From headers containing the string will be selected.
36471 ^C to cancel. ^G again to see original options.
36472 ========== h_select_txt_not_partic ==========
36473 Messages without Cc, To, or From headers containing the string will be selected.
36474 ^C to cancel. ^G again to see original options.
36475 ========== h_select_date ==========
36476 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
36477 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
36478 ========== h_attach_index_whereis ==========
36479 Enter some text that appears in the Attachment Index entry for the desired
36480 attachment.  The first attachment containing that text will be highlighted.
36481 ========== h_kb_lock ==========
36482 Keystrokes entered here (up to a RETURN) comprise a password that must
36483 be entered again later in order to unlock the keyboard.
36484 ========== h_compose_default ==========
36485 N, compose a new message. R, set a role.
36486 ^C to cancel.
36487 ========== h_untranslatable ==========
36488 Send using UTF-8 character set; Send but replace untranslatable characters
36489 with question marks; return to the composer; or cancel message altogether.
36490 ========== h_compose_intrptd ==========
36491 N, compose a new msg. I, continue interrupted msg. R, set a role.
36492 ^C to cancel.
36493 ========== h_compose_postponed ==========
36494 N, compose a new message. P, continue postponed msg. R, set a role.
36495 ^C to cancel.
36496 ========== h_compose_intrptd_postponed ==========
36497 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36498 R, set a role. ^C to cancel.
36499 ========== h_compose_form ==========
36500 N, compose a new message. F, use form letter. R, set a role.
36501 ^C to cancel.
36502 ========== h_compose_intrptd_form ==========
36503 N, compose a new msg. I, continue interrupted msg. F, use form letter.
36504 R, set a role. ^C to cancel.
36505 ========== h_compose_postponed_form ==========
36506 N, compose a new message. P, continue postponed msg. F, use form letter.
36507 R, set a role. ^C to cancel.
36508 ========== h_compose_intrptd_postponed_form ==========
36509 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36510 F, use form letter. R, set a role. ^C to cancel.
36511 ========== h_config_context_del_except ==========
36512 If you delete the last exceptional collection you can only add it back by
36513 manually editing the exceptions config file.
36514 ========== h_config_whereis ==========
36515 To move quickly to a particular line, enter a search string or
36516 ^C to cancel.
36517 ========== h_config_edit_scorei ==========
36518 Enter interval in the form (min,max). -INF and INF may be used to represent
36519 -infinity and infinity. ^C to cancel change. RETURN to accept change.
36520 ========== h_config_add ==========
36521 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
36522 pressing RETURN sets the Empty Value (this turns off any global default).
36523 ========== h_config_add_custom_color ==========
36524 Enter a header fieldname. For example, "subject" or "from".
36526 ========== h_config_add_pat_hdr ==========
36527 Enter a header fieldname. For example, "reply-to" or "organization" or
36528 any fieldname you want that isn't included already.
36529 ========== h_config_print_opt_choice ==========
36530 You may edit either the initialization string (characters printed before
36531 printing starts) or the trailer string.  Choose one or ^C to cancel.
36532 ========== h_config_print_init ==========
36533 Enter a C-style string for this.  You may use common backslash escapes like
36534 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
36535 ========== h_config_change ==========
36536 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
36537 delete current (highlighted) character, etc.  Enter ^C to cancel change.
36538 ========== h_config_replace_add ==========
36539 Replace ignores the current default, Add places the current default in your
36540 editing buffer as if you had typed it in.
36541 ========== h_config_insert_after ==========
36542 Enter a nickname for this print command.  (InsertBefore puts the new item
36543 before the current line, InsertAfter puts it after the current line.)
36544 ========== h_config_print_cmd ==========
36545 Enter command to be executed for the printer.  Use normal editing keys
36546 to modify, ^C to cancel, carriage return to accept current value.
36547 ========== h_config_role_del ==========
36548 Answering Yes will remove this rule completely from your rules list.
36549 ========== h_config_role_addfile ==========
36550 Type the name of a file to add to your configuration. You don't need to
36551 use a file, you may add rules directly (with Add) without using a file.
36552 ========== h_config_role_delfile ==========
36553 Answering Yes will remove this rule file completely from your rules list.
36554 The rules data file itself will not be removed.
36555 ========== h_config_print_del ==========
36556 Answering Yes will remove this printer completely from your printer list.
36557 ========== h_config_print_name_cmd ==========
36558 You may edit the Nickname of this printer, the Command to be executed when
36559 printing, or change the Options associated with this printer.
36560 ========== h_send_check_fcc ==========
36561 Yes, send message without an Fcc.
36562 No, return to composer.
36563 ========== h_send_check_subj ==========
36564 Yes, send message without a Subject.
36565 No, return to composer.
36566 ========== h_send_check_to_cc ==========
36567 Yes, send message without a To address, or a Cc address, or a Newsgroup.
36568 No, return to composer.
36569 ========== h_send_fcc_only ==========
36570 Yes, copy message to Fcc only and send to NO recipients.
36571 No, return to composer.
36572 ========== h_send_prompt ==========
36573 Yes, send the message.
36574 No or ^C, return to composer.
36575 ========== h_send_prompt_flowed ==========
36576 Yes, send the message.  No or ^C, return to composer.
36577 What's Flowed? See Do Not Send Flowed Text in config screen.
36578 ========== h_send_prompt_dsn ==========
36579 Yes, send the message.  No or ^C, return to composer.
36580 What's DSNOpts? See Enable Delivery Status Notification in config screen.
36581 ========== h_send_prompt_dsn_flowed ==========
36582 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
36583 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
36584 ========== h_role_confirm ==========
36585 Yes, use displayed role. No, compose without a role.
36586 ^C, cancel the message. ^T, select a role from your other eligible roles.
36587 ========== h_norole_confirm ==========
36588 Return, compose without a role.
36589 ^C, cancel the message. ^T, select a role from your eligible roles.
36590 ========== h_custom_print ==========
36591 Enter a Unix command that accepts its data on standard input.
36592 Alpine will display any information the command sends to standard output.
36593 ========== h_convert_abooks_and_sigs ==========
36594 You will be given the opportunity to convert address books and signature files
36595 to remote configurations.
36596 ========== h_convert_abooks ==========
36597 You will be given the opportunity to convert address books to remote
36598 configurations.
36599 ========== h_flag_keyword ==========
36600 Enter the name of the keyword you want to add for this folder.
36601 No spaces, parentheses, braces, percents or asterisks are allowed.
36602 ========== h_select_keyword ==========
36603 Enter the keyword you want to match, or use ^T to select a keyword from a list
36604 of possible keywords for this folder. Use ! to look for non-matches instead.
36605 ========== h_type_keyword ==========
36606 Enter the keyword you want to add. You may add a nickname in the next step.
36607 No spaces, parentheses, braces, percents or asterisks are allowed.
36608 ========== h_type_keyword_nickname ==========
36609 Enter an optional nickname for the keyword you want to add.
36610 Type Carriage return to use the keyword name instead of a nickname.
36611 ========== h_convert_sigs ==========
36612 You will be given the opportunity to convert signature files to remote
36613 configurations.
36614 ========== h_convert_abook ==========
36615 Yes is fairly safe. You will be ADDing a remote address book that is a copy
36616 of the current address book. The current abook won't be removed automatically.
36617 ========== h_convert_sig ==========
36618 Answering Yes copies the contents of the signature file into your Alpine
36619 configuration file. After that, the contents of the file will not be used.
36620 ========== h_save_addman ==========
36621 Enter the simple name of the folder you want to add. Carriage return to
36622 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
36623 ========== h_reopen_folder ==========
36624 Yes reopens the folder, as if you were starting over. This uncovers new mail.
36625 No leaves the folder index as it was without discovering new mail.
36626 ========== h_convert_pinerc_server ==========
36627 This is the name of the host (computer) where the remote Alpine configuration
36628 will be stored. This should be an IMAP server that you have permission to use.
36629 ========== h_convert_pinerc_folder ==========
36630 Enter the correct remote folder name. This folder is special and should
36631 contain only configuration data. It shouldn't contain other mail messages.
36632 ========== h_role_compose ==========
36633 Compose a New message, Reply to current message, Forward current message, or
36634 Bounce message. Then you will be asked to choose one of your Roles to be used.
36635 ========== h_save_size_changed ==========
36636 The reported size of a message is not the same as the actual size. Answer Yes
36637 to continue and hope for the best or No to Cancel the entire Save.
36638 ========== h_select_by_larger_size ==========
36639 Enter a number or ^C to cancel. All messages greater than this many characters
36640 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
36641 ========== h_select_by_smaller_size ==========
36642 Enter a number or ^C to cancel. All messages less than this many characters
36643 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
36644 ========== h_preserve_field ==========
36645 Use 'p' to toggle between preserving or not preserving the original To:
36646 and Cc: fields of the message. Enter ^C to cancel message.