* PC-Alpine: New configuration option "Aspell Dictionaries" allows a
[alpine.git] / pith / pine.hlp
blob454317e071e66846a047520171628f5881ebaa49
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-2015 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 110 2015-11-15 17:54:38
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-2015 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> Ignore message from smtp server after a successful authentication
189        challenge.
191   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
192        SSLCERTSDIR is not found.
194   <LI> When Alpine sends an attachment, it will set the boundary attribute
195        in lower case, as some SMTP servers, such as those of libero.it 
196        reject messages if the boundary attribute is in uppercase.
198   <LI> SMIME: The ^E command that gives infromation on the certificate
199        is only available for messages that have a signed or encrypted 
200        part.
202   <LI> SMIME: If a message contains a RFC822 atachment that is
203        signed/decrypted add the ability to view its SMIME information.
205   <LI> SMIME: Certificate information in the S/MIME screen is available 
206        for certificates stored in a cotainer.
208   <LI> SMIME: Offer the common name of the person, instead of the name of
209        file containing the certificate, as the name to be displayed in the 
210        certificate management screen for certificate authorities. 
211        Suggested by Matthias Rieber.
213   <LI> SMIME: Management of several alternate name (SAN) certificates is 
214        improved. When importing a SAN certificate, also import a certificate
215        for the filename, besides for the e-mail addresses in the
216        certificate. Suggested by Matthias Rieber.
218   <LI> SMIME: add full year when displaying information about a certificate
219        in the certificate management screen. Suggested by Matthias Rieber.
221   <LI> SMIME: sort certificates by some type of alphabetical order in the
222        displayed name.
224   <LI> HTML: Add support for decoding entities in hexadecimal notation.
225        Suggested by Tulip&aacute;nt Gergely.
227   <LI> If the charset of a message can not be determined, use the value set
228        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
230   <LI> Resizing setup screen will redraw screen.
232   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
233        in the width ambiguous zone, it will use other means to determine
234        the width, such as call wcwidth.
236   <LI> Pico: Code reorganization in the search command to make it easier to
237        add subcommands of the search command.
239   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
240        subcommand of the search command to bring this choice into view.
242   <LI> Pico: Add the ability to search for strings in the beginning or end
243        of a line. Use the Ctrl-^ subcommand of the search command to bring 
244        this choice into view.
246   <LI> For a multipart/alternative message, the Take Address command will 
247        work on the part that is being read.
249   <LI> When sending a message, allow for 512 characters of consecutive 
250        non-white space before folding the subject line.
252   <LI> Make sure titlebar (the line at the top of the screen) always 
253        contains the name of the folder/newsgroup that is open, if this 
254        fits in the title.
256   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
257        will also scramble the name, version and operative system in the message-id header. 
258        Based on a contribution by Dennis Davis, which is itself based on a contribution by 
259        Mark Hills.
261   <LI> Change in logic in imap_set_password function to make Alpine ask if
262        a user wants to save a password before reading the password file.
264   <LI> Add the Control-R subcommand to the save command for attachments. 
265        This subcommand toggles if the saving will be done in binary mode 
266        for text attachments. When a user saves an attachment using binary
267        mode it will be saved as it was sent, otherwise the attachment will
268        be transformed to UTF-8 for further transformation through internal
269        and user defined filters for saving.
271   <LI> Add command line argument -smimedir, which allows to specify
272        the default path for a directory that contains the public, private, 
273        and ca directories. This is useful in case a user has a backup of 
274        old certificates that cannot be installed in the ~/.alpine-smime 
275        dir.
277   <LI> Reimplementation of the code that allows the .pinerc file to be a
278        symbolic link by Kyle George from tcpsoft.com to use realpath.
280   <LI> When saving an attachment, the "^T" command leads to a screen where the
281        "A" command can be used to add a file. A directory can be added by
282        pressing "^X" after the "A" command. Added after a suggestion by
283        Stefan Goessling.
285   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
286        scroll through the history of directories used to save attachments, 
287        while preserving the given name of the file. Suggested by Peter 
288        Koellner.
290   <LI> SMIME: Turn off automatic signing and encrypting of a message when
291        bouncing. Suggested after a discussion with Matthias Rieber.
292 </UL>
296 Bugs that have been addressed include:
297 <UL>
298   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
299        Alpine will use the function ASN1_TIME_print to determine the date 
300        of validity. Reported by Ben Stienstra.
302   <LI> SMIME: Crash when atempting to unlock the password file and an
303        incorrect password is entered.
305   <LI> SMIME: Crash when checking the signature of a message that contains
306        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
307        Krellner.
309   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
311   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
312        remote containers. Reported by Matthias Rieber.
314   <LI> SMIME: certificates included in messages were not being transferred
315        to a remote container.
317   <LI> SMIME: Crash if public certificates are located in an inaccessible
318        remote server and the private key is not available.
320   <LI> Pico: Searching for a string that is too long causes Pico to crash
321        in the next search.
323   <LI> Fix vulnerability in regex library. This only affects those who use
324        this library, such as the windows version of Alpine. See 
325        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
326        for more details.
328   <LI> Alpine would not set include and lib paths for OpenSSL if this was
329        installed in /usr/local/ssl.
331   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
332        contents when saving its configuration.
334   <LI> The _INIT_ token does not skip over non-alpha numeric characters in
335        the name. Reported by Andreas Fehr.
337   <LI> Mismatch in size of UCS and CELL caused a corruption in the
338        content of a pointer, which made the speller in PC-Alpine get the 
339        content of a word incorrectly.
341   <LI> Skip testing openssl compatibility version when cross-compilation
342        is detected. Fix contributed by Antti Sepp&auml;l&auml;
344   <LI> Alpine fails to remove temporary files used during a display or sending
345        filter. Fix contributed by Phil Brooke.
347   <LI> When the index is in zoomed state, adding new messages to the 
348        selection would not show those messages if those messages are on 
349        top of the current message in the top of the screen. Reported by
350        Ulf-Dietrich Braumann.
352   <LI> Crash when reviewing history of saving attachments.
354   <LI> Crash in Pico when forwarding messages that contain a direction mark
355        at the end of a line. Reported by James Mingo.
357   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
358 </UL>
362 Version 2.20 addresses bugs found in previous releases and has several 
363 additions as well.
366 Additions include:
369 <UL>
370   <LI> Upgrade UW-IMAP to Panda IMAP from 
371        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
372   <LI> S/MIME: Add screen to manage certificates.
373   <LI> S/MIME: Signatures are validated using the user's certificates instead
374        of the ones included in the message. Behavior can be disabled by
375        disabling the option <A href="h_config_smime_use_cert_store">
376         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
377        by default.
378   <LI> S/MIME: sign messages using intermediate certificates when needed 
379        and possible.
380   <LI> S/MIME: validation of certificates for servers that modify signed 
381        content.
382   <LI> S/MIME: signed and encrypted messages will be signed first and 
383        encrypted second, so that they can be decoded by other clients.
384   <LI> S/MIME: add the sender certificate to the list of certificates in
385        encrypted messages to make it possible for the sender to decrypt
386        the message they sent.
387   <LI> S/MIME: When transferring certificates to a local container, create 
388        container with default names PublicContainer, PrivateContainer and 
389        CAContainer, as appropriate for these files, unless the user has 
390        provided some other names.
391   <LI> S/MIME: Forwarding a message will include the signed part as part
392        of the text and not as a multipart message, just as the reply
393        command does.
394   <LI> HTML: Style tag in body of html message causes Alpine to not write
395        its content until a new &lt;/style&gt;
396   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
397        the same inline tag; the same is valid for the &lt;HR&gt; tag.
398   <LI> Add support to selective expunge through a subcommand of the 
399        select-apply commands. Read more in the <A 
400        HREF="h_index_cmd_expunge">help</A> for the expunge command.
401   <LI> Pico: New subcommand of the search command, allows to reverse the
402        direction of search.
403   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
404        the key and certificate used to encrypt the password file are saved 
405        in the ~/.alpine-smime/.pwd directory, or in the directory specified
406        by the -pwdcertdir command line option. 
407        <A HREF="h_password_file_support">Learn more</A>.
408   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
409        server to use different ways to connect using ssl, for 
410        example {server.com/tls1} will attempt to connect to 
411        server.com at the ssl imap port (port 993) and establish a 
412        connection using TLSv1. These flags can be used in 
413        conjunction with the /ssl flag, the ssl flag is redundant. 
414        Conversely, however, the /ssl flag does not imply any of 
415        these flags; the /ssl flag means SSLv3 or, if not available, 
416        SSLv2 in the SSL port.
417   <LI> Alpine does not attempt to automatically reopen a collection 
418        that was not opened due to cancellation by the user. 
419        Instead, the user must try to open it explicitly.
420   <LI> Alpine searches for a certificate that matches an email address in
421        all addresses in a certificate (instead of just the first 
422        one) but when it tries to unlock the certificate, it asks 
423        for the password for the first email address in that 
424        certificate.
425   <LI> Style tag in body of html message causes Alpine to not write its content
426        until a new &lt;/style&gt;
427   <LI> Experimental: Write the content-type of a message in 
428        lowercase, as some non-compliant servers do not understand 
429        uppercase content-type, such as those of GMX.de.
430   <LI> Experimental: Do not send the RSET command before attempting
431        to send a message, as this causes a delay in some evily managed
432        servers.
433   <LI> Opening a folder updates recent count in maildrops (this 
434        already works for other types of folders)
435   <LI> Automatically redraw screen after opening an attachment 
436        instead of simply clearing it.
437   <LI> Pico: Justification works without need of a predefined quote 
438        string. This allows justification of blocks of text that are 
439        indented with spaces.
440   <LI> Decode the name of attachment names, so they can be written as part   
441        of the description of the part. 
442   <LI> Check bounds and tie strings off to improve security. Contributed 
443        by James Jerkins.
444   <LI> Replace tabs by spaces in From and Subject fields to control for
445        size in screen of these fields. Change only in index screen display.
446   <LI> Aggregate operations allows bouncing a list of messages using a role.
447        Suggested by Ulf-Dietrich Braumann.
448   <LI> Disable saving new passwords to the password file. Implemented
449        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
450   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
451      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
452      Charles M. Register.
453 </UL>
457 Bugs that have been addressed include:
458 <UL>
459   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
460        in personal names. Reported by Lev Gorenstein.
461   <LI> When writing the .pinerc file, lines were truncated if they were longer
462        than 10,000 characters. This could cause data corruption, so now lines
463        are allowed to be of any length.
464   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
465        remove attachments before they were open by a mailcap viewer. It 
466        requires that the user has an equivalent to a command such as "ps 
467        auxww" to list the list of processes, and check if there is any 
468        program using the attachment. The default is "/bin/ps auxww", but 
469        it can be changed at compile time with the option --with-ps-cmd. 
470        See the help of the variable 
471        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
472        for more information.
473   <LI> S/MIME: signed messages that contained an attachment would not validate.
474   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
475        validate. Thanks to Andreas Schamanek for testing, debugging and 
476        advising during the process of fixing this problem.
477   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
478        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
479        and Stefan Mueller.
480   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
481        home directory.
482   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
483        SMIME making it not possible to sign or encrypt messages.
484   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
485        information that is not part of the body, and hence making the body
486        of the message seem wrong.
487   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
488        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
489        enabled, the message contains 8bit characters and the smtp server 
490        supports 8bit sending.
491   <LI> When replying to several messages, subject will be decoded first,
492        and then stripped from re/fwd before they are compared to determine
493        the subject of the replied message.
494   <LI> Crash when tcp connection to NNTP server was lost after connection
495        had been established, but lost immediately afterwards.
496   <LI> Crash with message &quot;lock when already locked&quot;, when painting
497        an index was based on scores that needed information from a remote
498        addressbook in the same server as the folder opened. Reported by
499        Peter Koellner.
500   <LI> Crash in message/rfc822 attachments encoded in base64.
501   <LI> Postponed messages whose content-type is text/html, text/enriched and
502        text/richtext are sent with that content-type, even though, after
503        resuming composition, Alpine had changed its type to text/plain.
504   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
505        character set, which might lead to a crash or a corruption in the 
506        screen. Work was done to contain the bug. A more complete fix will 
507        be done in a future release. Reported by Professor Robert Funnell.
508   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
509   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
510   <LI> Save command did not warn of existence of a message with a deleted 
511        attachment in an aggregate save, unless cursor was positioned on a message 
512        with a deleted attachment. Reported by Florian Herzig.
513   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
514        in an IMAP server.
515   <LI> DATE tokens were not internally transformed to UTF-8, which made their
516        values not appear complete in the screen. Reported by Werner Scheinast.
517   <LI> Fixes to configure script so that it will not require PAM for every system.
518   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
519        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
520        during the build. Fix by Ulf-Dietrich Braumann.
521   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
522        needs to use tcl_getstringresult() instead. Reported by 
523        Ulf-Dietrich Braumann.
524   <LI> Quoted string in URL Viewers configuration variable were not 
525        unquoted before passing to viewer.
526   <LI> Fix in configure script to detect location of tcl library; add
527        /usr/local in FreeBSD and fix a bug in configure script that used 
528        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
529        by Werner Scheinast.
530   <LI> Move SSL configurations from UW-IMAP to configure script, and
531        update OpenSSL configuration for Mac OS X.
532   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
533   <LI> When the download of an attachment is interrumpted, Alpine stills
534      caches what was downloaded, making the download incomplete for 
535      subsequent calls of Alpine attempting to open the attachment. In the 
536      future, Alpine will not cache any downloaded part of the attachment 
537      when it is interrupted.
538 </UL>
543 Version 2.11 addresses bugs found in previous releases and has a few 
544 additions as well.
547 Additions include:
550 <UL>
551    <LI> Alpine requires version 1.0.0c of Openssl to build.
552    <LI> Increase encryption of S/MIME encrypted messages.
553    <LI> Pico: Improvements in justification of paragraphs: lines that begin
554 with a quote string, followed by a space were considered individual paragraphs,
555 now they are considered part of a paragraph. Based on earlier joint work
556 with Jeff Franklin.
557    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
558    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
559 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
560    <LI> Added recognition of ws and wss URIs.
561    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
562  <A HREF="h_config_directory_color">directory names</A>,
563  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
564    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
565 used in the display of the INDEX SCREEN.
566    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
567 that adds the ability to preserve To: and Cc: fields when replying to a 
568 message, as specified by original sender.
569    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
570  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
571    <LI> Quota command includes subcommands for printing, forwarding, etc.
572 </UL>
575 Bugs that have been addressed include:
577 <UL>
578   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
579   <LI> Crash when resizing the screen in a configuration screen.
580   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
581   <LI> Do not use a shell to open a browser.
582   <LI> Configure script did not test for crypto or pam libraries.
583   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
584   <LI> Change Cygwin directory separator to &quot;/&quot;.
585   <LI> Alpine could set List- headers, contrary to RFC 2369.
586 </UL>
589 Version 2.10 addresses bugs found in previous releases and has a few 
590 additions as well.
593 Additions include:
596 <UL>
597    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
598    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
599    <LI> Foreign characters are decoded correctly in IMAP folder names.
600    <LI> Question about breaking connection to slow servers includes their name.
601    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
602    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
603    <LI> Cygwin: Alpine builds without need of patch.
604    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
605    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
606    <LI> Add support for strong encryption of password file when S/MIME is built in.
607 </UL>
610 Bugs that have been addressed include:
613 <UL>
614    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
615    <LI> Double allocation of memory in Pico.
616    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
617    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
618    <LI> Not recognition of environment variables in some options.
619    <LI> Not display of login prompt during initial keystrokes.
620    <LI> justification of long urls breaks them.
621    <LI> Incorrect New Mail message when envelope is not available.
622    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
623    <LI> Crash when resizing the screen after display of LDAP search.
624    <LI> Crash when redrawing screen while opening a remote folder collection.
625    <LI> Infinite loop in scrolltool function during notification of new mail.
626    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
627    <LI> No display of signed and encrypted S/MIME messages.
628    <LI> Alpine will not build with OpenSSL.
629    <LI> Crash for double locking in calls to c-client.
630    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
631    <LI> Ignore the references header when threading messages
632    <LI> No update of colors in index screen after update to addressbook.
633 </UL>
636 Version 2.01 addresses bugs found in previous releases and has a few 
637 additions as well.
640 Additions include:
643 <UL>
644    <LI> Fixed non-ASCII web alpine handling
645    <LI> Added web alpine help.
646    <LI> Allow web alpine inbox on second IMAP server.
647    <LI> Allow web alpine config reset after bad inbox-path gets set.
648    <LI> Added web alpine ability to create group contact from contact list members.
649    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
650    <LI> Tidied up web alpine script layout.
651    <LI> Fixed web alpine status message ordering
652    <LI> Added web alpine Fcc setting via Contacts in Compose
653    <LI> Fixed web alpine autodraft attachment issues
654    <LI> Fixed web alpine problems with recent count maintenance
655    <LI> Fixed web alpine newmail arrival display in message list
656    <LI> Added web alpine confirmation to folder create for Move/Copy
657    <LI> Added web alpine user-domain support
658    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
659 </UL>
662 Bugs that have been addressed include:
665 <UL>
666    <LI> In web alpine fixed delete all selected within a search result to reorient
667         correctly to whole-mailbox message list.
668    <LI> Fixed web alpine delete in view page to be sensitive to sort
669    <LI> Fixed web alpine open of folder within directory from folder manager page.
670    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
671    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
672    <LI> Fixed web alpine adding contacts from message list and view
673    <LI> Fixed web alpine create of non-existent fcc
674    <LI> Remove mistakenly left debugger statement in web alpine javascript.
675    <LI> Some UNIX alpine build problems fixed
676    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
677         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
678         by locale charmap call on some Solaris 8 systems.
679    <LI> MacOS Keychain logins were not working correctly with generic host names, like
680         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
681         new password requests when not needed
682    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
683         last folder in the list
684    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
685         looked for along with the email address
686    <LI> Changes to configure to get spellcheck options with work with arguments.
687    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
688         returned by gethostname (iPhone can do this)
689    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
690         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
691    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
692         Jake Scott of marganstanley.com.
693    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
694         is not used in alpine.
695    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
696         Apparently this causes RIM Blackberry BIS service problems. This is not
697         used in alpine.
698    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
699    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
700         Fix from Ludwig Nussel of SUSE and from Crispin.
701    <LI> Include whole filename in export filename history
702    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
703 </UL>
706 Version 2.00
707 addressed bugs found in previous releases and had a few additions as well.
709 Additions included:
712 <UL>
713    <LI> Redesigned Web Alpine interface
714    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
715         in UNIX versions of Alpine
716    <LI> Attempt to include the attachment filename as part of the name of the
717         temporary file used when viewing an attachment with an external program.
718         Add some randomness to that filename to make it hard to predict the filename.
719         Add a filename extension, usually derived from the type/subtype, to the
720         temporary filename. This was previously done only on Windows and MacOS X.
721    <LI> Enhance address completion in the composer (TAB command) so that it looks
722         through nicknames, fullnames, and addresses from the address book; addresses
723         from the message being viewed, if any; and the results from
724         <A HREF="h_direct_config">LDAP Directory Server</A>
725         lookups for all of the defined directory servers that have the
726         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
727         feature set.
728    <LI> Make the default character set setting more liberal in what it will accept
729         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
730    <LI> Remove the Alpine revision number from the titlebar in released versions
731         while leaving it there in snapshot versions
732    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
733         display of asterisks when you type a password for Alpine
734    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
735    <LI> When the
736         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
737         feature is turned on convert not only the dates in the index screen but also
738         the dates in the MESSAGE VIEW
739 </UL>
742 Bugs addressed in the 2.00 release included:
745 <UL>
746    <LI> Crash when using tab-completion for selecting a Save filename
747    <LI> Make Web Alpine help text images relative for more portability
748    <LI> Fixed attach save of html parts in Web Alpine
749    <LI> Viewing, printing, exporting, replying, and bouncing of message
750         digests was broken. Replying and bouncing should not have been
751         allowed at all for digests. It would be nice to have a more standard
752         index-like view of a message digest but that has not been addressed
753         with this minor bug fix.
754    <LI> Adjust wrapping of HTML messages so that the margins specified by
755         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
756         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
757         are observed correctly
758    <LI> Interrupt of WhereIs command in index was broken
759    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
760         option did not work correctly interpreting unknown characters in message headers
761    <LI> Long address lines could cause blank continuation lines
762    <LI> Save to a local default INBOX failed if the primary collection was also local,
763         which it is by default. The save went to  ~/mail/inbox instead.
764    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
765         inbox, not the inbox in the primary collection
766    <LI> Address book entries with lots of addresses would be truncated when
767         entered in the composer with a screen size wider than 270 or so charcters
768    <LI> Some fields in the index screen were truncated when the screen width was
769         wider than 256 characters
770    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
771         folder, and there is a more than 10 minute pause between typing the TAB
772         and typing the Yes
773 </UL>
776 Version 1.10(962)
777 addressed bugs found in previous releases and had a few additions as well.
779 Additions included:
782 <UL>
783    <LI> Add the possibility of setting a default role
784         (see <A HREF="h_role_select">Roles Screen</A>)
785         which may be convenient if your work flow involves acting in one
786         role for a while then switching to another role and staying in the
787         new role for another period of time
788    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
789         is encountered, ask the user if he or she wants to continue with the
790         risky Save anyway instead of aborting. This may be helpful if your
791         IMAP server is broken in this way but be aware that it is possible there
792         was a real error instead of just a broken server implementation.
793    <LI> Some configure adjustments for Kerberos detection and
794         for SCO OpenServer 5 support
795    <LI> Hide INBOX in a collection if it also appears as an
796         <A HREF="h_config_enable_incoming">Incoming Folder</A>
797    <LI> Show asterisks for feedback when the user is typing a password
798    <LI> Performance improvement for threading of large folders
799    <LI> Previously, the search used to find
800         Pattern matches containing To patterns searched for both To
801         and Resent-To headers. The relatively complicated search this
802         produces causes problems when using some deficient IMAP servers.
803         Now the default is to look only for To headers and ignore the
804         presence of Resent-To. The previous behavior may be restored
805         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
806    <LI> Add an
807         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
808         to help with reading malformed unlabeled messages
809    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
810    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
811    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
812 </UL>
815 Bugs addressed in the 1.10(962) release included:
818 <UL>
819    <LI> Crash when encountering certain errors from an SMTP server
820    <LI> Crash in composer caused by overflow in replace_pat()
821    <LI> Hang when authenticating to an SMTP server that fails with a
822         &quot;connection disconnected&quot; error
823    <LI> Bug in handling of trailing tab character in flowed text
824    <LI> Security enhancement for mailcap parameter substitution
825    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
826         did not work if the message being replied to was not flowed text
827         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
828         was not turned on
829    <LI> Don't allow printer to be changed through hidden config screen
830         if system administrator didn't want it to be allowed
831    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
832         should know that it won't work, causing error messages to appear
833    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
834         of double-quote double-quote didn't work right
835    <LI> Quoting wasn't being done to protect special characters from the
836         MacOS X shell when
837         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
838         was not defined
839    <LI> On MacOS X message attachments should be shown internally instead of
840         being shown using the Mail application
841    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
842         sometimes set the outgoing charset to X-UNKNOWN, making the result
843         unreadable
844    <LI> When the sending of a message failed lines with leading spaces had one
845         additional space inserted in each of those lines when the user
846         was returned to the composer
847    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
848         that contained non-ascii characters because it was truncating the
849         line being searched so that it was shorter than what was visible on
850         the screen
851    <LI> When composing, an attachment with a long name that causes wrapping in
852         just the wrong place would generate an error and cause the send
853         of the attachment to fail
854    <LI> After calling the file browser to attach a file in the composer, a resize
855         of the window when back in the composer would redraw the last screen that
856         had been shown in the browser instead of the current composer screen
857    <LI> Possible crash in index screen when encountering unparseable addresses
858         or when using one of the PRIORITY tokens or the HEADER token in the
859         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
860    <LI> Problems with Header Color editing if the configuration option
861         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
862         was inadvertently changed to the Empty Value in the hidden config screen
863    <LI> When resuming the final postponed message from an Exchange server the user
864         could get a certificate validation failure because alpine was trying
865         to validate the canonical name of the folder instead of the name the
866         user used
867    <LI> Windows line endings in a mimetypes file on a Unix system cause a
868         failure to find a match
869    <LI> Make matching of extension names case independent in mimetypes files
870    <LI> Windows dialog boxes for entering text were not working correctly
871    <LI> Replying to or Forwarding multipart/alternative messages which had a
872         single text/html part did not work well
873    <LI> Printing the print confirmation page caused a crash
874    <LI> A To line with a long, quoted personal name could display incorrectly
875         if it was close to the same width as the screen
876    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
877         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
878         are turned on hide (0/0) when the folder is empty
879    <LI> Folder completion while Saving didn't work if the collection being
880         saved to was the local home directory
881 </UL>
884 Version 1.00
885 was an evolutionary release based on
886 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
887 developed at the University of Washington.
888 It is upwards-compatible for existing Pine users.
891 Changes included:
893 <UL>
894    <LI> Ground-up reorganization of source code around addition
895         of "pith/" core routine library.
896    <LI> Fundamental improvement in Alpine's internal text handling, which
897         is now based exclusively on Unicode. This allows displaying incoming
898         messages and producing outgoing messages in many different languages.
899    <LI> Ground-up reorganization of build and install procedures
900         based on GNU Build System's autotools. NOTE, the included IMAP library
901         build is not based on autotools, so some features will not work. However,
902         it should get built automatically during the Alpine build process.
903    <LI> Web-based version included built on TCL designed to run under
904         a suitable CGI-supporting web server such as Apache.
905 </UL>
909 Details on changes in previous (prerelease) versions of Alpine
910 may be found at the following URL:
912 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP></CENTER>
915 <HR WIDTH="75%"><P>
917 <H2>Getting Help</H2>
918 <DL>
919 <DT>Online Help</DT>
920 <DD>
921 Every Alpine screen and command has associated help text
922 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
923 </DD>
925 <DT>Web Help</DT>
926 <DD>
927 The most current source of information about Alpine,
928 including new version availability, is the web page at
930 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></SAMP></CENTER>
931 </DD>
932 </DL>
934 Frequently Asked Questions (and answers) may be found at the following
935 URL:
937 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
940 <HR WIDTH="75%"><P>
942 <H2>Additional Information</H2>
944 General Alpine configuration information can be found
945 <A HREF="h_news_config">here</A>.
947 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
948 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
949 access is provided by the IMAP Toolkit Environment (c-client library)
950 version <!--#echo var="C_CLIENT_VERSION"-->.
951 <P> 
952 Alpine was developed until 2009 by the Office of Computing 
953 &amp; Communications at the University of Washington in Seattle.  
954 Since then, the effort of developing Alpine has been continued by
955 a community of volunteers who make good software even better!
958 Alpine Copyright 2013-2015 Eduardo Chappa, 
959 <BR> Copyright 2006-2008 University of Washington.
962 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
963 or instead you can find the Apache License, version 2.0 at the web URL:
966 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
969 &lt;End of Release Notes&gt;
970 </BODY>
971 </HTML>
972 ====== h_password_file_support ======
973 <HTML>
974 <HEAD>
975 <TITLE>Encryption for Password File Support Explained</TITLE>
976 </HEAD>
977 <BODY>
978 <H1>Encryption for Password File Support Explained</H1>
980 Index<BR>
981 <OL>
982 <LI><A HREF="#content">Explanation</A>
983 <LI><A HREF="#example">Example</A>
984 </OL>
986 <P><A NAME="content">Unix Alpine Only.</A>
988 <P> If your version of Alpine has been built with password file support
989 then you can use a special file to save your passwords, and avoid typing
990 them every time you open a connection to a remote server.
992 <P> If your version of Alpine was built with SMIME support, and you have a
993 public certificate/private key pair, then Alpine will use such pair to
994 encrypt your password file. If you have more than one key/certificate
995 pair, Alpine will pick the first pair that it finds that works. You can also
996 select a pair, and the way to do this is explained below.
998 <P> Once a pair has been chosen, it will be copied to the directory 
999 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1000 that directory. The first time this process is done, this directory will 
1001 be created, a key/certificate pair will be copied to it, and this pair 
1002 will be used in the future to encrypt and decrypt your password file. You 
1003 can create this directory and copy any key/certificate pair there. You
1004 can add a self-signed certificate there, if you like, and you can let
1005 this certificate expire. This will not affect the encryption and decryption
1006 of the password file.
1008 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1009 your key/certificate pair, you can specify a different one with the 
1010 -pwdcertdir command line option in Alpine. If the directory specified by 
1011 this option is not found or there is no valid key/certificate pair there, 
1012 Alpine will fail to encrypt and decrypt your password file. In other words,
1013 Alpine will not initialize this directory for you.
1015 <P> Alpine does not care about the names of the key and certificates in 
1016 this directory, but the private key must have &quot;.key&quot; extension 
1017 and your public certificate must have the &quot;.crt&quot; extension. The
1018 name of the private key will be used in the prompt when you are asked
1019 to unlock your key to decrypt your password.
1021 <P><A NAME="example">An example follows</A>
1023 <P>Assume you have a private key called peter@address.com.key in your, 
1024 ~/.alpine-smime/private directory, and a public certificate called 
1025 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1026 are your only key/certificate pair.
1028 <P> When Alpine starts for the first time, without command line options, 
1029 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1030 it will create it. Then it will go through your keys and certificates and 
1031 find a pair that it can use, and copy the files peter@address.com.key,
1032 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1033 you can do the same by copying these files by yourself. This can be done
1034 with the sequence of commands
1036 <PRE>
1037 mkdir ~/.alpine-smime/.pwd
1038 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1039 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1040 </PRE>
1042 <P> When Alpine starts, you will be asked the password to unlock your
1043 private key with the prompt.
1045 <PRE>
1046 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1047 </PRE>
1049 <P> If you prefer to use different names for your private and public keys 
1050 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1051 preserve the extension of the files. For example, you can use the names 
1052 private_key.key and public_cert.crt instead. In this case, the prompt you 
1053 will see when you are asked to unlock your private key will read
1055 <PRE>
1056 Enter password of key &lt;private_key&gt; to unlock password file:
1057 </PRE>
1059 <P>Observe that you do not need to use an existing key/certificate pair, 
1060 and that you can create a new private key/public certificate pair to 
1061 encrypt and decrypt your password. However, once one is used, Alpine does 
1062 not provide a mechanism to switch the encryption and decryption files to 
1063 another key/certificate pair. This will be implemented in a future 
1064 release of Alpine.
1067 &lt;End of help&gt;
1068 </BODY>
1069 </HTML>
1070 ====== h_tls_failure_details ======
1071 <HTML>
1072 <HEAD>
1073 <TITLE>Certificate Validation Details</TITLE>
1074 </HEAD>
1075 <BODY>
1076 <H1>Certificate Validation Details</H1>
1078 This screen gives details as to why the certificate validation failed: the
1079 name of the desired server system; the reason for failure; and the name on
1080 the certificate.  This is primarily of interest to experts.
1083 &lt;End of help&gt;
1084 </BODY>
1085 </HTML>
1086 ====== h_tls_failure ======
1087 <HTML>
1088 <HEAD>
1089 <TITLE>TLS or SSL Failure</TITLE>
1090 </HEAD>
1091 <BODY>
1092 <H1>TLS or SSL Failure</H1>
1094 An attempt was made to establish a secure, encrypted connection to the
1095 server system using either Transport Layer Security (TLS) or the older
1096 Secure Sockets Layer (SSL).  This attempt failed.
1099 You should contact your server system management for more assistance.
1100 The problem is probably at the server system and not in Alpine or your local
1101 system.  The text in this screen may be helpful for the server system
1102 management in debugging the problem,
1105 &lt;End of help&gt;
1106 </BODY>
1107 </HTML>
1108 ====== h_tls_validation_failure ======
1109 <HTML>
1110 <HEAD>
1111 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1112 </HEAD>
1113 <BODY>
1114 <H1>TLS and SSL Certificate Validation Failures</H1>
1116 An attempt was made to establish a secure, encrypted connection to the
1117 server system using either Transport Layer Security (TLS) or the older
1118 Secure Sockets Layer (SSL).
1121 An important part of this procedure is server certificate validation.  A
1122 server certificate is an &quot;electronic identification card&quot; for the server
1123 system that is signed by a well-known certificate authority (CA).  Alpine
1124 compares the server system identity in the server certificate with the
1125 name of the server system to which it is trying to connect.  Alpine also
1126 verifies that the CA signature is authentic.
1129 Some common failure conditions are:
1132 <UL>
1133   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1134 signed its own certificate.  This does not necessarily indicate anything
1135 bad; the server operators may simply have elected to not purchase a
1136 signed certificate from a certificate authority.
1138   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1139 the signature on the server system is from an unknown certificate authority.
1140 It can also mean that no certificate authority certificates have been
1141 installed on the local UNIX system.
1143   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1144 the same as either of the above two conditions in UNIX Alpine.  Note that
1145 Windows systems typically have a full set of certificate authority
1146 certificates installed, so it is more likely to be a self-signed
1147 certificate than an unknown certificate authority.
1149   <LI> Server name does not match certificate.  This means that the server
1150 presented a proper signed certificate for a name other than the desired
1151 name.
1152 </UL>
1155 Any of these conditions can indicate that you are being attacked and have
1156 been directed to an imposter server that will record your password and
1157 your private mail messages.  It can also mean something innocuous.
1160 If you are certain that the problem is innocuous, you can append the
1161 option
1164 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1167 to the server system name where it appears in your configuration (e.g. the
1168 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1169 a folder-collection, or a news or SMTP server).  This will
1170 disable certificate validation.  On the other hand, if you are attacked,
1171 you will get no warning if you do this.
1174 &lt;End of Cert Validation Failures help&gt;
1175 </BODY>
1176 </HTML>
1177 ====== h_release_tlscerts ======
1178 <HTML>
1179 <HEAD>
1180 <TITLE>TLS and SSL usage note</TITLE>
1181 </HEAD>
1182 <BODY>
1183 <H1>TLS and SSL usage note</H1>
1186 When using Alpine from Unix or Windows 2000,
1187 server certificates must be signed by a trusted certificate authority.
1188 You may relax this requirement (at the cost of some security) by using
1190 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1191 modifier in the mailbox name.
1194 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1197 The fully-qualified host name of the server should be used
1198 so that it matches the host name in the server certificate.
1200 Here is an example of a host specification that directs Alpine to use
1201 the SSL port (993) and an encrypted data stream.
1203 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1205 &lt;End of TLS usage help&gt;
1206 </BODY>
1207 </HTML>
1208 ====== h_news_config ======
1209 <HTML>
1210 <HEAD>
1211 <TITLE>Alpine Configuration</TITLE>
1212 </HEAD>
1213 <BODY>
1214 <H1>Alpine Configuration</H1>
1216 <H2>Using Environment Variables</H2>
1218 The values of Alpine configuration options may include environment variables
1219 that are replaced by the value of the variable at the time Alpine is run
1220 (and also at the time the config option is changed).
1221 The syntax to use environment variables is a subset of the common Unix
1222 shell dollar-syntax.
1223 For example, if
1225 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1227 appears in the value of an Alpine configuration option it is looked up in the
1228 environent (using getenv(&quot;VAR&quot;)) and its
1229 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1230 To include a literal dollar sign you may precede the dollar sign with another
1231 dollar sign.
1232 In other words, if the text
1234 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1236 is the value of a configuration option, it will be expanded to
1238 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1240 and no environment lookup will be done.
1241 For Unix Alpine it will also work to use a backslash character to
1242 escape the special meaning of the dollar sign, but $$ is preferable since
1243 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1244 to be in a shared configuration file.
1247 This all sounds more complicated than it actually is.
1248 An example may make it clearer.
1249 Unfortunately, the way in which environment variables are set is OS-dependent 
1250 and command shell-dependent.
1251 In some Unix command shells you may use
1253 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1254    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1256 Now, if you use Alpine's Setup/Config screen to set
1258 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1260 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1261 so that this would be equivalent to
1263 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1265 Note, environment variable substitution happens after configuration
1266 options that are lists are split into the separate elements of the list,
1267 so a single environment variable can't contain a list of values.
1270 The environment variable doesn't have to be the only thing
1271 after the equal sign.
1272 However, if the name of the variable is not at the end of the line or
1273 followed by a space (so that you can tell where the variable name ends),
1274 it must be enclosed in curly braces like
1276 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1278 It is always ok to use the braces even if you don't need to.
1280 It is also possible to set a default value for an environment variable.
1281 This default value will be used if the environment variable is not
1282 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1283 The syntax used to set a default value is
1285 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1287 If the config file contains
1289 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1291 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1292 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1293 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1294 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1295 the default value.
1296 (Note that the variable is called &quot;personal-name&quot; in the config
1297 file but is displayed in the config screen as
1298 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1299 In general, the value that goes into a config file is never exactly the
1300 same as the value you see on the screen.)
1303 An example where an environment variable might be useful is the
1304 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1305 Suppose most users used the server
1307 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1309 but that there were some exceptions who used
1311 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1313 In this case, the system manager might include the following line in
1314 the systemwide default Alpine configuration file
1316 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1318 For the exceptional users adding
1320 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1322 to their environment should work.
1324 Another example might be the case where a user has to use a different
1325 SMTP server from work and from home.
1326 The setup might be something as simple as
1328 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1330 or perhaps a default value could be given.
1331 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1332 a list of SMTP servers.
1335 <H2>Configuration precedence</H2>
1337 There are several levels of Alpine configuration.  Configuration values at
1338 a given level override corresponding values at lower levels.  In order of
1339 increasing precedence:
1341 <UL>
1342  <LI> built-in defaults
1343  <LI> system-wide
1344 <!--chtml if pinemode="os_windows"-->
1345       config file from command line or provided
1346       by "PINECONF" environment variable
1347 <!--chtml else-->
1348       pine.conf file
1349 <!--chtml endif-->
1350  <LI> personal configuration file
1351  <LI> personal exceptions configuration file
1352  <LI> command-line options
1353  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1354  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1355 </UL>
1357 The values in both the personal configuration file and the
1358 <A HREF="h_config_exceptions">exceptions</A>
1359 configuration file may be set using the Setup command.
1360 Setup/Config is the command to change most of the personal configuration
1361 options.
1362 The other Setup subcommands are also used to change the configuration,
1363 for example, Setup/AddressBook, Setup/Rules, and so on.
1364 Changing the personal exceptions configuration is very similar.
1365 To change a value in the Config screen you would use the command
1366 Setup/eXceptions/Config.
1367 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1369 There are a couple exceptions to the rule that configuration values are replaced
1370 by the value of the same option in a higher-precedence file.
1371 The Feature-List variable has values that are additive, but can be
1372 negated by prepending &quot;no-&quot; in front of an individual feature name.
1373 So for features, each individual feature's value is replaced by the value
1374 of the same feature in a higher-precedence file.
1375 Note that this is done automatically for you when you change these values via
1376 the Setup/Config command.
1377 The other exception to the <EM>replace</EM> semantics happens when you
1378 use <A HREF="h_config_inheritance">configuration inheritance</A>
1379 for option lists.
1382 <H2>File name defaults</H2>
1384 Notes:<P>
1386 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1387 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1388 <BR> # = default file name is overridable in pinerc.
1389 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1390 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1391 <BR> + between the mailcap paths implies that the two files are combined.
1392 <BR> ; between other default paths implies that the first one found is used.
1393 </P>
1394 Alpine looks for most support files in the same directory it finds its
1395 personal configuration file (pinerc).  The -p command-line flag may be
1396 used to specify a particular path name for the pinerc file.  If a
1397 pinerc file does not exist, it will be created (if directory permissions
1398 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1399 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1400 file does not exist in either one, it will create one in the first of those
1401 two directories that is writable.  In detail:
1402 <PRE>
1404 PC-Alpine:
1406  executable     &lt;DOS search path&gt;&#92;pine.exe
1407  help index     &lt;exe dir&gt;&#92;pine.ndx
1408  help text      &lt;exe dir&gt;&#92;pine.hlp
1410  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1411  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1412  global cfg     $PINECONF
1414  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1415  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1416  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1417  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1418  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1419  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1420  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1421  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1422  postponed#     $HOME&#92;mail&#92;postpond.mtx
1423  interrupted    $HOME&#92;mail&#92;intruptd
1425 Unix Alpine:
1427  executable     &lt;Unix search path&gt;/pine
1428  persnl cfg     ~/.pinerc
1429  except cfg     ~/.pinercex
1430  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1431  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1432  local help     <!--#echo var="PINE_INFO_PATH"-->
1434  interrupted    ~/.pine-interrupted-mail
1435  debug          ~/.pine-debugN
1436  crash          ~/.pine-crash
1437  newsrc#        ~/.newsrc
1438  signature#     &lt;pinerc dir&gt;/.signature
1439  addressbook#   &lt;pinerc dir&gt;/.addressbook
1440  postponed#     ~/mail/postponed-msgs
1441  sentmail#      ~/mail/sent-mail
1442  mailcap#       ~/.mailcap + /etc/mailcap
1443                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1444  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1446  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1447  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1448  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1449  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1450  password       /etc/passwd
1452 Unix Alpine and PC-Alpine:
1454  .ab*           remote addressbook support files
1455  a[1-9]*        temporary (while Alpine is running) addressbook files
1457 </PRE>
1460 <H2>Mailcap files</H2>
1462 Alpine honors the mailcap configuration system for specifying external
1463 programs for handling attachments.  The mailcap file maps MIME attachment
1464 types to the external programs loaded on your system that can display
1465 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1466 distribution.  It includes comments that explain the syntax you need to
1467 use for mailcap.  With the mailcap file, any program (mail readers,
1468 newsreaders, WWW clients) can use the same configuration for handling
1469 MIME-encoded data.
1472 <H2>MIME-Types files</H2>
1474 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1475 what Content-Type to use for labeling an attached file, based on
1476 the file extension.  That is, this file provides a mapping between
1477 filename extensions and MIME content-types.
1480 <H2>Environment variables</H2>
1482 PC-Alpine uses the following environment variables:
1483 <DL>
1484 <DT>PINERC</DT>
1485 <DD>Optional path to pinerc file.</DD>
1486 <DT>PINERCEX</DT>
1487 <DD>Optional path to personal exceptions configuration file.</DD>
1488 <DT>PINECONF</DT>
1489 <DD>Optional path to global pine config file.</DD>
1490 <DT>HOME</DT>
1491 <DT>TMPDIR, TMP, or TEMP</DT>
1492 <DT>COMSPEC</DT>
1493 <DT>MAILCAPS</DT>
1494 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1495 <DT>USER_DICTIONARY</DT>
1496 <DD>Used to specify the file to contain the user's spell check
1497 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1498 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1499 </DL>
1501 Unix Alpine uses the following environment variables:
1502 <DL>
1503 <DT>TERM</DT>
1504 <DD>Tells Alpine what kind of terminal is being used.</DD>
1505 <DT>DISPLAY</DT>
1506 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1507 <DT>SHELL</DT>
1508 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1509 <DT>TMPDIR, TMP, or TEMP</DT>
1510 <DT>MAILCAPS</DT>
1511 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1512 </DL>
1513 <!--chtml if pinemode="os_windows"-->
1515 <H2>Common PC-Alpine Configuration Problems</H2>
1517 <H3>Configuration settings aren't being saved</H3>
1519 <P>This problem can happen if you run pine from one directory and
1520 then decide to move your pine directory to another location.  PC-Alpine
1521 stores certain variables, including the configuration location, in the
1522 Windows Registry (which you shouldn't ever need to manually edit).  There
1523 are a couple of ways to go about removing or resetting the values in the
1524 registry.
1527 1) Run PC-Alpine's registry value deletion command.  This can be done by
1528 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1529 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1530 value to the above command.
1533 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1534 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1535 option, you can tell PC-Alpine the location of your pinerc.  An example of
1536 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;.
1537 Again, you can use the DOS prompt or the shortcut method explained in (1).
1540 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1541 set registry values to the current setting, and is therefore useful with
1542 the &quot;-p&nbsp;PINERC&quot; option.
1544 <!--chtml endif-->
1546 &lt;End of Configuration Notes&gt;
1547 </BODY>
1548 </HTML>
1549 ====== h_news_legal ======
1550 <html>
1551 <head>
1552 <TITLE>Alpine Legal Notices</TITLE>
1553 </head>
1554 <body>
1556 <H1>Alpine Legal Notices</H1>
1558 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1562 &lt;End of Alpine Legal Notices&gt;
1563 </BODY>
1564 </HTML>
1565 ===== h_info_on_mbox =====
1566 <HTML>
1567 <HEAD>
1568 <TITLE>Information on mbox driver</TITLE>
1569 </HEAD>
1570 <BODY>
1571 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1573 Beginning with Pine 4.00 (Pine came before Alpine)
1574 a new INBOX access method is
1575 available as part of the standard configuration.  It is called the
1576 &quot;mbox&quot; driver and it works like this:<P>
1579 <BLOCKQUOTE>
1580 If the file &quot;mbox&quot; exists in the user's home directory, and
1581 is in Unix mailbox format, then when INBOX is opened this file will be
1582 selected as INBOX instead of the mail spool file.  Messages will be
1583 automatically transferred from the mail spool file into the mbox
1584 file.
1585 </BLOCKQUOTE>
1588 The advantage of this method is that, after new mail has been copied
1589 from the system mail spool, all subsequent access is confined to the
1590 user's home directory, which is desirable on some systems.  However, a
1591 possible disadvantage is that mail tools other than those from the
1592 University of Washington will not know to look for mail in the user's
1593 mbox file.  For example, POP or IMAP servers other than those from the
1594 University of Washington, and many &quot;new mail notification&quot;
1595 programs may not work as expected with this driver enabled.<P>
1597 To disable this behavior, either remove/rename the &quot;mbox&quot;
1598 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1599 option in Setup/Config
1600 and add &quot;mbox&quot; to it:
1602 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1604 &lt;End of help on this topic&gt;
1605 </BODY>
1606 </HTML>
1607 ===== h_info_on_locking =====
1608 <HTML>
1609 <HEAD>
1610 <TITLE>FAQs on Alpine Locking</TITLE>
1611 </HEAD>
1612 <BODY>
1613 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1615 There is an extensive section on locking in the Alpine technical notes;
1616 this information is intended to provide answers to some common questions:<P>
1617 <OL>
1618 <LI> Why did locking change in Pine 4.00?<BR>
1619 The actual locking mechanisms did not change in 4.00.
1620 What changed is that when one particular locking mechanism used by Alpine 
1621 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1622 failure would occur, but no warning was issued.<P>
1624 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1625 Yes.  It means that Alpine was unable to create a lockfile in the
1626 spool directory, generally because of overly restrictive protections on the
1627 spool directory.  The correct permissions on the spool directory for
1628 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1629 with the sticky-bit set, so only owners of a file can delete them.<P>
1631 <LI> Why does Alpine require that the mail spool directory have 1777
1632    protections?<BR>
1633 Alpine was designed to run without special privileges.  This means that in
1634 order to create a lockfile in the spool directory, it is necessary to have
1635 the spool directory permissions be world-writable.<P>
1637 <LI> Can't you create the lockfile somewhere else?<BR>
1638 No.  The lockfile in question must be in the mail spool directory, because
1639 that's where the mail delivery program expects to find it, and the purpose
1640 of the file is to coordinate access between the mail client (Alpine) and the
1641 mail delivery program.<P>
1643 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1644 No.  Remember that the individual mail files in the spool directory are
1645 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1646 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1647 -- means that only the owner of the file (or root) can delete files in the 
1648 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1649 anyone could
1650 create a random file in the spool directory.  If the spool directory is
1651 under quota control along with home directories, there is little incentive
1652 for anyone to do this, and even without quotas a periodic scan for
1653 non-mail files usually takes care of the problem.  <P>
1655 <LI> Why not run Alpine as setgid mail?<BR>
1656 Alpine was never designed to run with privileges, and to do so introduces a
1657 significant security vulnerability.  For example, if a user suspends Alpine,
1658 the resulting shell will have group privileges.  This is one example of
1659 why we strongly recommend against running Alpine as a privileged program.
1660 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1661 users
1662 could not test Alpine versions or other mailers that had not been installed
1663 by the system administrators.<P>
1666 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1667 There are, but they all have different sets of tradeoffs, and not all will
1668 work on all systems.  Some examples:<UL>
1669  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1670    spool is local.   Doesn't work reliably if NFS is used.
1671    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1672    use the same calls.
1673  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1674    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1675 mail tools that always look in the spool directory for the mail.
1676 </UL><P>
1678 <LI> Are these spool directory lock files the only kinds of locks used by
1679    Alpine?<BR>
1680 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1681 mailbox format folders, these are used to coordinate access between
1682 multiple Alpine sessions.  <P>
1684 <LI> What about the 
1685 <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>
1686 This is for people who are content to live dangerously, or who have
1687 specific knowledge that the spool directory lockfiles are superfluous on
1688 their system (because both Alpine and the mail delivery program are using 
1689 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1691 <LI> Where can I find more details on how Alpine locking works?<BR>
1692 See the Alpine Technical Notes.<P>
1694 </OL>
1696 &lt;End of help on this topic&gt;
1697 </BODY>
1698 </HTML>
1699 ===== h_finding_help ====
1700 <HTML>
1701 <HEAD>
1702 <TITLE>Finding more information and requesting help</TITLE>
1703 </HEAD>
1704 <BODY>
1705 <H1>Places to Look for More Answers</H1>
1706 If you have questions about or problems with Alpine that you cannot resolve 
1707 after consulting the program's internal, context-sensitive help screens, here 
1708 are additional information resources that you may find helpful:
1710 <UL>
1711   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1713   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1715   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1716 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1717   since the last version, which may be useful for you to be aware of, 
1718 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1719 a change in the way an aspect of Alpine works.  There, you will also find notes 
1720 on Alpine configuration.<P>
1722   <LI> The main site for Alpine contains information on configuring and solving problems
1723        with Alpine, it can be found at
1725 <CENTER><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></CENTER>  
1727   <LI> The Alpine Information Center (maintained by the University of
1728            Washington) World Wide Web site contains, among other things
1729            <UL>
1730            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
1731            <LI>an overview of the basics for beginning Alpine users
1732            <LI>Technical Notes for systems administrators
1733            <LI>archives (including a searchable index) of the alpine-info 
1734 mailing list, on which matters of interest to systems/email administrators,
1735 developers, trainers, user support personnel, and others involved with Alpine 
1736 messaging on a &quot;technical&quot; level are discussed.
1737 </UL>
1738         The Alpine Information Center can be accessed with a WWW browser at:<P>
1739             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
1740 </UL>
1741 <P><HR WIDTH="75%">
1742 <H1>Requesting help</H1>
1743 If the internal help, the Release Notes, the Alpine Information Center, and your 
1744 local online and print resources do not help you resolve a problem, please
1745 start by contacting your local computer support staff and asking for help.
1747 This is especially true if:
1748 <ul>
1749   <li>You suddenly have trouble sending or receiving mail.
1750   <li>You receive a "disk quota exceeded" message.
1751   <li>You have forgotten your password.
1752   <li>You think your account may have been compromised.
1753   <li>You need help viewing an attachment.
1754   <li>You need to know how to configure your:
1755       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
1756       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
1757       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
1758       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
1759   <li>You want to know what alternative editors or spellcheckers you may be able to use.
1760   <li>You want to block email from a particular person.
1761   <li>You're going on vacation and need to autorespond to incoming mail.
1762   <li>You want to automatically file or filter incoming messages.
1763 </ul>
1765 In all of these cases,
1766 you should contact <B>your</B> support staff, because <B>only they</B> 
1767 will be able to assist you effectively. Your support staff may be, depending on who 
1768 provides you with the email account you use Alpine with, for example:<UL>
1769 <LI> the computing help desk of (a department of) your university, school, 
1770 employer, ... ; or
1771 <LI> the customer service center of your Internet Service Provider; or
1772 <LI> the friendly volunteer helpers of your Freenet; or
1773 <LI> the person who setup your computer and internet connection.
1774 </UL>
1776 Due to the large number of Alpine installations worldwide, and because we
1777 receive no funding for it, the University of Washington <B>cannot provide 
1778 individual support services outside the University of Washington</B>.
1780 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
1781 newsgroup can be a valuable source of information and assistance for Alpine 
1782 user issues.
1784 For systems/email administrators, developers, trainers, user support
1785 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
1786 level, the mailing list alpine-info is available; for information on
1787 subscribing and posting to it, see
1789 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
1792 Regardless of whom you are asking for help with Alpine, remember 
1793 to provide as much detail as you can about the
1794 nature of any problem you are encountering, such as
1795 <UL>
1796 <LI>when it first occurred;
1797 <LI>what, if anything, happened that might have brought it about;
1798 <LI>whether it still persists;
1799 <LI>whether it is reproducible, and if so, how;
1800 <LI>what, if anything, you already tried to solve it.
1801 </UL> 
1802 It may also be helpful if you specify what version of Alpine you are using 
1803 <!--chtml if pinemode="running"-->
1804 -- this is <!--#echo var="ALPINE_VERSION"--> --
1805 <!--chtml endif-->
1806 and on what system, and when the copy of Alpine you are using was created
1807 <!--chtml if pinemode="running"-->
1808 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
1809 <!--chtml endif-->
1811 <!--chtml if pinemode="running"-->
1812 <P>   
1813 When the Alpine program you are currently using was installed, a support
1814 contact email address may have been set up; in that case, you can simply select
1815 this link now to send a message to it:<BR>
1816 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
1817 <!--chtml endif-->
1818 <!--chtml if [ -r PINE_INFO_PATH ]-->
1819 <HR WIDTH="75%">Local Support Contacts:<P>
1820 <!--#include file="PINE_INFO_PATH"-->
1821 <HR WIDTH="75%">
1822 <!--chtml endif-->
1823 <P> 
1824 &lt;End of help on this topic&gt;
1825 </BODY>
1826 </HTML>
1827 ===== new_user_greeting ======
1828 <HTML>
1829 <HEAD>
1830 <TITLE>NEW USER GREETING</TITLE>
1831 </HEAD>
1832 <BODY>
1833 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1834 <BR>
1835 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1836 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
1837 select Setup/Config to see many of the options available to you. Also note
1838 that all screens have context-sensitive help text available.<P>
1839 <!--chtml if pinemode="phone_home"-->
1840 SPECIAL REQUEST:
1841 This software was originally created and maintained as a public
1842 service by the University of Washington until 2009; updates are made 
1843 available as a public service of the Alpine community. It is always 
1844 helpful to have an idea of how many users are using Alpine. Are you 
1845 willing to be counted as an Alpine user? Pressing 
1846 <A HREF="X-Alpine-Phone-Home:">Return</A>
1847 will send an anonymous (meaning, your real email address will not be revealed) 
1848 message to the Alpine developers for purposes of tallying.
1850 <!--To Exit this screen and continue your Alpine session press "E".-->
1851 <!--chtml else-->
1852 To Exit this screen and continue your Alpine session press "Return".
1853 <!--chtml endif-->
1854 </BODY>
1855 </HTML>
1856 ===== new_alpine_user_greeting ======
1857 <HTML>
1858 <HEAD>
1859 <TITLE>NEW ALPINE USER GREETING</TITLE>
1860 </HEAD>
1861 <BODY>
1862 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1863 <BR>
1864 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1865 Your Alpine configuration file indicates that you may have used Pine before
1866 but not Alpine.
1867 If you are familiar with the way Pine works, you should be comfortable
1868 using Alpine.
1869 Your Pine configuration file is automatically used for Alpine.
1870 The Release Notes may be viewed by pressing 
1871 &quot;R&quot; now or while in the MAIN MENU.
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_version_greeting ======
1891 <HTML>
1892 <HEAD>
1893 <TITLE>NEW VERSION 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 version <!--#echo var="ALPINE_VERSION"-->!</H1>
1899 Your Alpine configuration file indicates that you may not have used 
1900 this version of Alpine before.  This version's significant changes are
1901 documented in the Release Notes, which may be viewed by pressing 
1902 &quot;R&quot; now or while in the MAIN MENU.
1904 <!--chtml if pinemode="phone_home"-->
1905 SPECIAL REQUEST:
1906 This software was originally created and maintained as a public
1907 service by the University of Washington until 2009; updates are made 
1908 available as a public service of the Alpine community. It is always 
1909 helpful to have an idea of how many users are using Alpine. Are you 
1910 willing to be counted as an Alpine user? Pressing 
1911 <A HREF="X-Alpine-Phone-Home:">Return</A>
1912 will send an anonymous (meaning, your real email address will not be revealed) 
1913 message to the Alpine developers for purposes of tallying.
1915 <!--To Exit this screen and continue your Alpine session press "E".-->
1916 <!--chtml else-->
1917 To Exit this screen and continue your Alpine session press "Return".
1918 <!--chtml endif-->
1919 </BODY>
1920 </HTML>
1922 ===== main_menu_tx ======
1923 <HTML>
1924 <HEAD>
1925 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
1926 </HEAD>
1927 <BODY>
1928 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
1929 <DIV ALIGN=CENTER>
1930 Version <!--#echo var="ALPINE_VERSION"-->
1931 <!--chtml if pinemode="running"-->
1932 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
1933 <!--chtml endif-->
1934 </DIV>
1935 <CENTER>Copyright 2013-2015 Eduardo Chappa,
1936 <BR>Copyright 2006-2008 University of Washington.
1937 </CENTER>
1940 When you are viewing a help screen, there may be links to
1941 other topics highlighted (in Reverse video) in the text.
1942 Here is an example.
1943 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
1944 highlighted.
1945 If you type carriage return (or V for View Link, see the commands at the
1946 bottom of the screen) you will be taken to a new help screen to view the
1947 Introduction.
1948 The commands at the bottom of the screen should then include
1949 &quot;P Prev Help&quot;.
1950 If you type &quot;P&quot; you will end up back here.
1951 If you type &quot;E&quot; for Exit, you will be back out of help and returned
1952 to the place you were in Alpine when you entered Help.
1953 In this case, you would go back to the MAIN MENU.
1954 There are also other links that are highlighted in bold (or the color used
1955 by your terminal to display bold).
1956 The items after the Introduction in the TABLE OF CONTENTS are all examples
1957 of such links.
1958 In order to view those links, you first have to make the link you want
1959 to view the current link.
1960 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
1961 (see bottom of screen) can do that for you.
1964 <H2>TABLE OF CONTENTS</H2>
1965 <OL>
1966   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
1967   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
1968 <!--chtml if [ -r PINE_INFO_PATH ]-->
1969   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
1970 <!--chtml endif-->
1971   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
1972   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
1973   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
1974   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
1975   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
1976   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
1977   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
1978   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
1979   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
1980   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
1981   <LI> <A HREF="h_mainhelp_folders">Folders</A>
1982   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
1983   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
1984   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
1985   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
1986   <LI> <A HREF="h_mainhelp_roles">Roles</A>
1987   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
1988   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
1989   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
1990   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
1991   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
1992   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
1993   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
1994   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
1995   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
1996 </OL>
1999 &lt;End of help on this topic&gt;
2000 </BODY>
2001 </HTML>
2002 ===== h_mainhelp_intro ======
2003 <HTML>
2004 <HEAD>
2005 <TITLE>Introduction</TITLE>
2006 </HEAD>
2007 <BODY>
2008 <H1>Introduction</H1>
2010 Alpine is an &quot;Alternatively Licensed Program for Internet
2011 News and Email&quot; produced until 2009 by the University of Washington.
2012 It is intended to be an easy-to-use program for
2013 sending, receiving, and filing Internet electronic mail messages and
2014 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2015 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2016 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2017 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2018 Directory Access Protocol).<p>
2020 Although originally designed for inexperienced email users, Alpine has
2021 evolved to support many advanced features.  There are an ever-growing
2022 number of configuration and personal-preference options, though which of
2023 them are available to you is determined by your local system managers. 
2025 <H2>WHAT ALPINE DOES...</H2>
2027 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2028 allows you to
2029 compose and read messages using Internet mail standards.  (Whether you
2030 can correspond with others on the Internet depends on whether or not your
2031 computer is connected to the Internet.)  Alpine also allows reading and
2032 posting messages on the Internet &quot;net news&quot; system, provided
2033 that your site operates a suitable news server.
2035 <H2>WHAT ALPINE DOES NOT DO...</H2>
2037 A &quot;mail user agent&quot; such as Alpine is just one part of a
2038 messaging system. Here are some things that are <B>not</B> done by Alpine,
2039 but require other programs:<P>
2040 <UL>
2041  <LI> Actual relaying of email... which is done by &quot;message transfer 
2042 agents&quot;.
2043  <LI> Vacation messages... automatically responding to incoming messages
2044  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2045 email.
2046  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2047  <LI> List processing... resending one message to a list of recipients.
2048 </UL>
2051 &lt;End of help on this topic&gt;
2052 </BODY>
2053 </HTML>
2055 ===== h_mainhelp_pinehelp ======
2056 <HTML>
2057 <HEAD>
2058 <TITLE>Alpine Help</TITLE>
2059 </HEAD>
2060 <BODY>
2061 <H1>Alpine Help</H1>
2063 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2064 use will have its own help text, explaining the choices available for that
2065 screen. This general help section, on the other hand, attempts to give an 
2066 overall picture of what Alpine is capable of doing, as well as pointers to 
2067 additional help sections about specific topics.<p>
2069 Much of the help text contains links to further help topics, similar to
2070 how the World Wide Web works.
2071 You may choose a link to view using the &quot;NextLink&quot; and
2072 &quot;PrevLink&quot; commands to change the link that is highlighted.
2073 The &quot;View Link&quot; command will then show you the highlighted link.
2074 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2075 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2076 will return you to the location in Alpine before you asked for help.
2077 For example, if you are reading this text in Alpine you may return to the
2078 help table of contents with the &quot;Prev Help&quot; command or you may view the
2079 Release notes link in the next paragraph and then return here with
2080 &quot;Prev Help&quot;.
2083 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2084 on the current Alpine version are also available from the MAIN MENU: Press
2085 <!--chtml if pinemode="function_key"-->
2086 &quot;F9&quot;
2087 <!--chtml else-->
2088 &quot;R&quot;
2089 <!--chtml endif-->
2090 to browse the release notes.  These include changes since the last release,
2091 configuration information, the history of the Alpine
2092 project, credits, and legal notices.
2094 Alpine releases are available via the world wide web at
2096 <CENTER><SAMP><A 
2097 HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP
2098 ></CENTER>
2101 If you would like to print <EM>all</EM> of Alpine's internal help text
2102 (not recommended) for a little light bedtime reading, then press
2103 <!--chtml if pinemode="function_key"-->
2104 &quot;F12&quot;
2105 <!--chtml else-->
2106 &quot;Z&quot;
2107 <!--chtml endif-->
2108 now.  (This assumes that the
2109 copy of Alpine you are using has been properly configured for printing
2110 at your site.)
2112 &lt;End of help on this topic&gt;
2113 </BODY>
2114 </HTML>
2115 ===== h_mainhelp_localsupport ======
2116 <HTML>
2117 <HEAD>
2118 <TITLE>Local Support Contacts</TITLE>
2119 </HEAD>
2120 <BODY>
2121 <H1>Local Support Contacts</H1>
2123 <!--chtml if [ -r PINE_INFO_PATH ]-->
2124 <!--#include file="PINE_INFO_PATH"-->
2125 <!--chtml else-->
2126 No Local Support Contacts configured.
2127 <!--chtml endif-->
2130 &lt;End of help on this topic&gt;
2131 </BODY>
2132 </HTML>
2134 ===== h_mainhelp_cmds ======
2135 <HTML>
2136 <HEAD>
2137 <TITLE>Giving Commands in Alpine</TITLE>
2138 </HEAD>
2139 <BODY>
2140 <H1>Giving Commands in Alpine</H1>
2142 Unless configured otherwise
2143 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2144 the bottom two lines of the screen are always used to list the
2145 commands you can give.  You press the keys that are highlighted to give
2146 the command.  The commands for getting help and going back to the main
2147 menu are always present (except when viewing help as you are now).
2148 <!--chtml if pinemode="function_key"-->
2149 <!--chtml else-->
2151 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2152 you see at the bottom of any screen. In some cases there are 3 or
2153 even 4 different
2154 sets of keys that can be seen by using the O key. <EM>All commands are 
2155 active</EM>, even if they are not currently showing at the bottom of your 
2156 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2157 remind yourself of the proper key to press to perform an operation.
2159 <H2>Control Key Commands</H2>
2160 When composing mail, and in a few other places, in Alpine you
2161 have to use Control keys. This means pressing the Control key (usually labeled 
2162 &quot;Ctrl&quot;) and the
2163 letter indicated at the same time.  Usually, this is shown with a
2164 &quot;^&quot; in front of the letter.  On some systems, certain control
2165 characters are intercepted before they get to Alpine.  As a work-around,
2166 you can press the ESCAPE key twice followed by the desired key.  For
2167 example, if Ctrl-O (^O) does not work on your system, try typing
2168 &quot;ESC ESC O&quot;.
2169 <!--chtml endif-->
2170 <H2>Paging Up and Down</H2>
2171 The &quot;+&quot; and &quot;-&quot; keys are used for
2172 moving to the next or previous page.  The space bar is a synonym for
2173 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2174 up as you do in the message composer.  On screens with a WhereIs (search)
2175 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2176 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2177 of the message or list.
2179 <H2>Return Key</H2>
2180 The return key is usually a synonym for a frequently used
2181 command.  When viewing a message, there is currently not a default
2182 command, so RETURN does nothing; when in the index, it is synonymous with
2183 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2184 enclosed in square brackets [] is the same as the return key.
2186 <H2>Control Keys Not Used By Alpine</H2>
2187 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2188 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2189 at prompts for file/folder names, control keys must be used for editing and 
2190 navigation functions.
2193 Alpine has used nearly all the control keys available.  There are, however,
2194 certain control keys that are reserved by other programs or for technical
2195 reasons.  Alpine does not use any of these keys:
2196 <DL>
2197  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2198  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2199  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2200 </DL>
2202 Note: Ctrl-S and Ctrl-Q can be subject to 
2203 <A HREF="h_special_xon_xoff">special handling</A>.
2205 In addition, while the ESC key alone is not used for command input,
2206 Alpine will recognize two consecutive ESC key presses followed by a letter 
2207 key as a substitute for control key input.  For example, the control key
2208 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2209 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2210 This is useful if the communication program you are using
2211 (e.g. Telnet) has its own, conflicting, idea of what certain control
2212 characters mean.
2215 <H2>Repainting the Screen</H2>
2216 Sometimes what is displayed on the screen will be
2217 incorrect due to noise on the phone line or other causes and you will want
2218 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2219 command to do this.  It never hurts to do it when in doubt.
2222 &lt;End of help on this topic&gt;
2223 </BODY>
2224 </HTML>
2225 ===== h_mainhelp_status ======
2226 <HTML>
2227 <HEAD>
2228 <TITLE>Titlebar Line</TITLE>
2229 </HEAD>
2230 <BODY>
2231 <H1>Titlebar Line</H1>
2233 The top line of the screen is Alpine's titlebar line.  It will always display
2234 the current version of Alpine and will also convey information about the
2235 status of the program.  This is where you look to find out what
2236 collection, folder and message number is active and where you are in Alpine.
2239 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2240 (typically your INBOX) is &quot;locked&quot; by another mail session --
2241 most likely a more recent session of Alpine has taken the INBOX lock.
2244 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2245 access a
2246 folder on a remote mail server, and for some reason, communication with
2247 the mail server has either been lost, or never successfully established.
2248 This can be a result of trying to open a non-existent folder, or one
2249 stored on an invalid or non-operational server, or it can mean that Alpine
2250 has been suspended for more that 30 minutes while accessing a remote mail
2251 server.
2254 &lt;End of help on this topic&gt;
2255 </BODY>
2256 </HTML>
2257 ===== h_mainhelp_mainmenu ======
2258 <HTML>
2259 <HEAD>
2260 <TITLE>Main Menu</TITLE>
2261 </HEAD>
2262 <BODY>
2263 <H1>Main Menu</H1>
2265 The Main Menu lists Alpine's main options.
2266 The key or keys you must type to enter your
2267 choice are to the left of each option or command name.
2268 You can type either uppercase or lowercase letters,
2269 and you should not press &lt;Return&gt; after typing the
2270 letter (unless you are specifically asking for the default,
2271 highlighted command).
2274 From the Main Menu you can choose to read online help, write (compose) and 
2275 send a message, look at an index of your mail messages, open or maintain
2276 your mail folders, update your address book, configure Alpine, and quit Alpine.
2277 There are additional options listed at
2278 the bottom of the screen as well.
2281 The Help command usually returns context-sensitive help information.
2282 However, in the Main Menu you get the most general help, which includes
2283 a Table of Contents.
2284 The last entry in the Table of Contents is an Index of help topics,
2285 so this is a good place to go if you are having trouble finding how
2286 to do something.
2288 <H2>Main Menu Commands</H2>
2289 The Alpine main menu lists the most common Alpine functions. A <a
2290 href="h_main_menu_commands">full list of these
2291 commands</a> and what they do is available.
2293 &lt;End of help on this topic&gt;
2294 </BODY>
2295 </HTML>
2296 ===== h_mainhelp_abooks ======
2297 <HTML>
2298 <HEAD>
2299 <TITLE>Address Books</TITLE>
2300 </HEAD>
2301 <BODY>
2302 <H1>Address Books</H1>
2305 As you use email, you can build a list of your regular email correspondents 
2306 in your Alpine
2307 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2308 screen. Your
2309 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2310 You can use the address book to store email addresses for individuals or
2311 groups, to create easily
2312 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2313 address when you are composing a message.
2315 There are two ways to add addresses to your address book: you can add them 
2316 manually or take them from messages (by pressing T to access the Take command). 
2317 With either method, you specify nicknames for your correspondents. A single 
2318 address book entry (or nickname) can point to just one email address, or, it can
2319 point to more than one. When it points to more than one, it is called a 
2320 distribution list. Each distribution list has a nickname, a full name, and a 
2321 list of addresses. These
2322 addresses may be actual addresses, other nicknames in your address book, or 
2323 other
2324 distribution lists.
2327 Additional information is available in Alpine's online help:
2328 <ul>
2329   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2330 </ul>
2332 &lt;End of help on this topic&gt;
2333 </BODY>
2334 </HTML>
2335 ===== h_mainhelp_ldap ======
2336 <HTML>
2337 <HEAD>
2338 <TITLE>LDAP</TITLE>
2339 </HEAD>
2340 <BODY>
2341 <H1>LDAP</H1>
2343 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2344 an organization's shared
2345 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2346 large address
2347 books, rather like the White Pages provided by the phone company. As an Alpine 
2348 user, it is not
2349 necessary to know much about how this works, only how to use it and how to 
2350 configure
2353 More information on configuring LDAP is available in Alpine's online help:
2354 <ul>
2355   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2356 </ul>
2358 Additional help on using LDAP in Alpine is also available:
2359 <ul>
2360   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2361 </ul>
2363 &lt;End of help on this topic&gt;
2364 </BODY>
2365 </HTML>
2366 ===== h_mainhelp_index ======
2367 <HTML>
2368 <HEAD>
2369 <TITLE>Index of Messages</TITLE>
2370 </HEAD>
2371 <BODY>
2372 <H1>Index of Messages</H1>
2374 In Alpine's message index, the selected message is highlighted. The first 
2375 column on the left is blank, shows a &quot;+&quot; if the message was
2376 sent directly to you (i.e., it is not a
2377 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2379 The second column may be blank, or it may contain:
2380 <ul>
2381   <li>"N" if the message is new (unread), </li>
2382   <li>"A" if you have answered the message (using the Reply command), </li>
2383   <li>"D" if you have marked the message for deletion.</li>
2384 </ul>
2387 Note: If you answer a message as well as mark it deleted (in either order), 
2388 you will only see the &quot;D&quot;.
2391 The rest of the columns in the message line show you the message
2392 number, date sent, sender, size, and subject. For details, press ? (Help).  
2393 The behavior and appearance of the Index screen is highly configurable.
2394 In the Setup/Config screen search (with the WhereIs command) for options
2395 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2396 many of the configuration possibilities.
2397 In particular, the
2398 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2399 option may be used to configure the look of the standard MESSAGE INDEX lines
2400 in many different ways.
2401 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2402 read the help text there for more information.
2404 Most of the commands you need to handle your messages are visible at the
2405 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2406 commands that are available.
2407 You do not need to see these &quot;other commands&quot;
2408 on the screen to use them. That is, you never need to press O as a prefix
2409 for any other command.
2412 Additional information is available in Alpine's online help:
2413 <ul>
2414   <li><a href="h_mail_index">Message Index Commands</a></li>
2415 </ul>
2417 &lt;End of help on this topic&gt;
2418 </BODY>
2419 </HTML>
2420 ===== h_mainhelp_reading ======
2421 <HTML>
2422 <HEAD>
2423 <TITLE>Reading Messages</TITLE>
2424 </HEAD>
2425 <BODY>
2426 <H1>Reading Messages</H1>
2428 The message text screen shows you the text of the message along with
2429 its header. If a message has attachments, those will be listed (but not
2430 displayed) also.  The titlebar line displays information about the currently
2431 open message, folder and collection.  You see the name of the collection
2432 (if there is one) in angle brackets, then the name of the folder, then the
2433 message number and finally the position within the current message (in
2434 percent). If the message is marked for deletion
2435 &quot;DEL&quot; will appear in the
2436 upper right as well.
2439 As with every Alpine screen, the bottom two lines show you the commands 
2440 available.
2442 <P>Additional information is available in Alpine's online help:
2443 <ul>
2444   <li><a href="h_mail_view">Message Text Screen</a></li>
2445   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2446   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2447 </ul>
2449 &lt;End of help on this topic&gt;
2450 </BODY>
2451 </HTML>
2452 ===== h_mainhelp_composing ======
2453 <HTML>
2454 <HEAD>
2455 <TITLE>Composing Messages</TITLE>
2456 </HEAD>
2457 <BODY>
2458 <H1>Composing Messages</H1>
2460 To write a message, press C (Compose). You see the Compose Message
2461 screen, which is divided into two parts: the header area and the message
2462 text area. The header area is where information on the recipient (the To:
2463 field) and the subject line go, while the message text area contains the
2464 actual text of the email message. Different commands are available to you
2465 when your cursor is in different areas on this screen. To see additional
2466 help on commands in either the message text or header area, type
2467 <Control>G (Get help).
2470 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2471 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2473 <P>The following information from Alpine's online help may prove useful:
2474 <ul>
2475   <li><a href="h_composer_to">Message Header Commands</a></li>
2476   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2477   <li><a href="h_composer">Composer Commands</a></li>
2478   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2479   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2480   <li><a href="h_compose_send">Send Command</a></li>
2481   <li><a href="h_compose_spell">Spell Check Command</a></li>
2482 </ul>
2484 &lt;End of help on this topic&gt;
2485 </BODY>
2486 </HTML>
2487 ===== h_mainhelp_collections ======
2488 <HTML>
2489 <HEAD>
2490 <TITLE>Collection Lists</TITLE>
2491 </HEAD>
2492 <BODY>
2493 <H1>Collection Lists</H1>
2495 Collection lists are Alpine's way of organizing groups of folders. Each
2496 "collection" can reside on a different server, for example, and contain a
2497 different group of mail folders.
2500 For more information on this, see:
2501 <ul>
2502   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2503 </ul>
2505 Additional information relating to collection lists is also available in 
2506 Alpine's online
2507 help:
2508 <ul>
2509   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2510   <li><a href="h_collection_screen">Collection List Screen</a></li>
2511 </ul>
2513 &lt;End of help on this topic&gt;
2514 </BODY>
2515 </HTML>
2516 ===== h_mainhelp_folders ======
2517 <HTML>
2518 <HEAD>
2519 <TITLE>Folders</TITLE>
2520 </HEAD>
2521 <BODY>
2522 <H1>Folders</H1>
2524 Messages can quickly accumulate in your INBOX folder. If you use email
2525 often, you soon could have hundreds. You need to delete messages you do
2526 not want, and you can use folders to organize messages you wish to save. A
2527 folder is a collection of one or more messages that are stored (just like
2528 the messages in your INBOX) so you can access and manage them.
2531 You can organize your email messages into different folders by topic,
2532 correspondent, date, or any other category that is meaningful to you. You
2533 can create your own folders, and Alpine automatically provides three:
2534 <ul>
2535   <li>The INBOX folder: messages sent to you are listed in this folder.
2536       When you first start Alpine and go to the Message Index screen, you are
2537 looking at the list of messages in your INBOX folder. Every incoming
2538 message remains in your INBOX until you delete it or save it in another
2539 folder. </li>
2540   <li>The sent-mail folder: copies of messages you send are stored in this 
2541 folder. This is
2542 convenient if you cannot remember whether you actually sent a message and want 
2543 to check, or
2544 if you want to send a message again.</li>
2545   <li>The saved-messages folder: copies of messages you save are stored in this 
2546 folder
2547 unless you choose to save them to other folders you create yourself.</li>
2548 </ul>
2551 More information about folders is available in Alpine's online help:
2552 <ul>
2553   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2554   <li><a href="h_folder_maint">Help for Folder List</a></li>
2555   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2556   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2557 Explained</a></li>
2558   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2559 </ul>
2561 &lt;End of help on this topic&gt;
2562 </BODY>
2563 </HTML>
2564 ===== h_mainhelp_color ======
2565 <HTML>
2566 <HEAD>
2567 <TITLE>Color</TITLE>
2568 </HEAD>
2569 <BODY>
2570 <H1>Color</H1>
2572 If the terminal emulator you are using is capable of displaying color or if
2573 you are using PC-Alpine, then it is possible to set up Alpine so that various
2574 parts of the display will be shown in colors you configure. This is done
2575 using the Setup Color screen, available from the MAIN MENU by selecting
2576 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2577 stands for Config in this context).
2580 For example, you may color things like the titlebar, the current item,
2581 the keymenu, and the status messages.
2582 You may also color lines in the index, and headers and quoted text in the
2583 MESSAGE TEXT screen.
2584 You use the Color Setup screen for configuring most of this, but you must
2585 use the IndexColor setup for coloring whole index lines.
2586 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2589 The following entries in Alpine's online help provide additional information 
2590 about how to use color:
2591 <UL>
2592   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2593   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2594   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2595   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2596 </UL>
2598 &lt;End of help on this topic&gt;
2599 </BODY>
2600 </HTML>
2601 ===== h_mainhelp_mouse ======
2602 <HTML>
2603 <HEAD>
2604 <TITLE>Using a Mouse</TITLE>
2605 </HEAD>
2606 <BODY>
2607 <H1>Using a Mouse</H1>
2609 If you are using PC-Alpine mouse support is turned on automatically.
2610 If you are using UNIX Alpine within an X terminal window or within
2611 a terminal emulator that supports an xterm-style mouse, then you may
2612 turn on support for the mouse with the feature
2613 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2614 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2616 PC-Alpine offers considerable mouse support.  You can view what is
2617 &quot;clickable&quot; by dragging your mouse over any screen; when the
2618 arrow cursor changes into a hand, you found something. Mouse-click
2619 possibilities include navigating between screens and folders and
2620 double-clicking on hyperlinks to open your Web browser.
2621 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2622 screen.  Examples of right-click options include &quot;copy&quot; after
2623 selecting text to copy and &quot;View in New Window&quot; when you click
2624 on a particular message in the Message Index. The menu choices available
2625 to you will vary based upon what screen is open, where on the screen your
2626 cursor is located, and even what action you have already taken.
2627 Within a folder, you may set the &quot;Important&quot; flag on any
2628 message.
2630 X terminal mouse support is more limited but still quite powerful.
2631 As with PC-Alpine, clicking on any of the commands in the keymenu at
2632 the bottom of the screen will execute that command as if you typed it.
2633 Double-clicking on a link, for example the link to the
2634 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2635 will take you to that link.
2636 Double-clicking on an index line will view the message, and so on.
2638 &lt;End of help on this topic&gt;
2639 </BODY>
2640 </HTML>
2641 ===== h_mainhelp_keywords ======
2642 <HTML>
2643 <HEAD>
2644 <TITLE>Keywords</TITLE>
2645 </HEAD>
2646 <BODY>
2647 <H1>Keywords</H1>
2649 Within a folder, you may set the &quot;Important&quot; flag on any
2650 message.
2651 This doesn't have any system-defined meaning and is only called
2652 the Important flag because many users use it to signify that a message
2653 is important to them in some way.
2655 You may also define your own set of keywords.
2656 You might know these as user defined flags or as labels.
2657 These are similar to the Important flag but you choose the names for yourself.
2659 Alpine will only display keywords that
2660 have been added by you in the Flag Details screen or
2661 that have been configured by you using the Setup/Config option
2662 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2663 Keywords set by other means (for example, by another email client) will not
2664 show up in Alpine unless you configure Alpine to know about them.
2665 They will show up in the Flag Details screen, but will not show up, for example,
2666 in the index line.
2669 The following entries in Alpine's online help provide additional information 
2670 about how to use keywords:
2671 <ul>
2672   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2673   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2674 </ul>
2676 &lt;End of help on this topic&gt;
2677 </BODY>
2678 </HTML>
2679 ===== h_mainhelp_roles ======
2680 <HTML>
2681 <HEAD>
2682 <TITLE>Roles</TITLE>
2683 </HEAD>
2684 <BODY>
2685 <H1>Roles</H1>
2687 You may play different roles depending on who you are replying to. For
2688 example, if you are replying to a message addressed to help-desk you may
2689 be acting as a Help Desk Worker. That role may require that you use a
2690 different return address and/or a different signature.
2693 To configure roles, go to the MAIN MENU and use the Setup command
2694 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2695 The following entries in Alpine's online help provide additional information 
2696 about how to
2697 use roles:
2698 <ul>
2699   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2700   <li><a href="h_role_select">Roles Screen</a></li>
2701 </ul>
2703 &lt;End of help on this topic&gt;
2704 </BODY>
2705 </HTML>
2706 ===== h_mainhelp_filtering ======
2707 <HTML>
2708 <HEAD>
2709 <TITLE>Filtering</TITLE>
2710 </HEAD>
2711 <BODY>
2712 <H1>Filtering</H1>
2714 The software that actually delivers mail (the stuff that happens
2715 before Alpine is involved) for you is in a better position to do mail filtering
2716 than Alpine itself.
2717 If possible, you may want to look into using that sort of mail filtering to
2718 deliver mail to different folders, delete it, or forward it.
2719 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
2722 Filtering is a way to automatically move certain messages from one folder
2723 to another or to automatically delete messages.
2724 You may also automatically set the state (Important, New, Deleted, Answered) of messages
2725 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
2726 Alpine doesn't have the ability to forward mail to another address or
2727 to deliver vacation messages.
2730 To configure filtering, go to the MAIN MENU and use the Setup command
2731 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
2732 The following entries in Alpine's online help provide additional information 
2733 about how to use filtering:
2734 <UL>
2735   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
2736 </UL>
2738 &lt;End of help on this topic&gt;
2739 </BODY>
2740 </HTML>
2741 ===== h_mainhelp_patterns ======
2742 <HTML>
2743 <HEAD>
2744 <TITLE>Patterns</TITLE>
2745 </HEAD>
2746 <BODY>
2747 <H1>Patterns</H1>
2749 Patterns are used with Roles, Filtering, Index Coloring,
2750 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
2751 The following entries in Alpine's online help provide information 
2752 about using Patterns:
2753 <UL>
2754   <LI> <A HREF="h_rule_patterns">Patterns</A>
2755 </UL>
2757 &lt;End of help on this topic&gt;
2758 </BODY>
2759 </HTML>
2760 ===== h_mainhelp_cmdlineopts ======
2761 <HTML>
2762 <HEAD>
2763 <TITLE>Command Line Options</TITLE>
2764 </HEAD>
2765 <BODY>
2766 <H1>Command Line Options</H1>
2768 Alpine accepts a number of command line arguments, allowing you, for
2769 example, to start Alpine and immediately access a particular folder.
2770 Many of these arguments overlap with options in the Alpine configuration file.
2771 If there is a difference, then an option set on the command line takes
2772 precedence.
2773 Alpine expects command line arguments (other than addresses) to be
2774 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
2775 A <a href="h_command_line_options">full list</a> of command line
2776 possibilities is available.
2778 &lt;End of help on this topic&gt;
2779 </BODY>
2780 </HTML>
2781 ===== h_mainhelp_config ======
2782 <HTML>
2783 <HEAD>
2784 <TITLE>Alpine Configuration</TITLE>
2785 </HEAD>
2786 <BODY>
2787 <H1>Alpine Configuration</H1>
2789 Unless it has been administratively disabled, the Setup command on the
2790 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
2791 The possible subcommands are for general Configuration settings,
2792 Printer settings, Changing your Password, Signature setup,
2793 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
2794 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
2795 and Color configuration.
2796 In particular, the &quot;Config&quot; subcommand has many features you may
2797 set or unset and many other configuration variables that may be set to change
2798 the way Alpine works.
2799 Every one of the hundreds of options available in that configuration settings
2800 screen has help text associated with it.
2801 You may read that text by moving the cursor to highlight the option and then
2802 typing the Help command.
2804 These settings are stored in your personal
2805 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
2806 <A HREF="h_config_remote_config">remotely</A>),
2807 but on shared systems these settings
2808 may be over-ridden by a system-wide control file (due to local site
2809 security or support policies).  A global pine configuration file can also
2810 be used to set default values for all Alpine users on a particular system.
2811 Power users may be interested in splitting their personal configuration
2812 data into two pieces, a generic piece and
2813 <A HREF="h_config_exceptions">exceptions</A> which apply to
2814 a particular platform.
2815 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
2816 General Alpine configuration information can be found
2817 <A HREF="h_news_config">here</A>.
2819 &lt;End of help on this topic&gt;
2820 </BODY>
2821 </HTML>
2822 ===== h_mainhelp_aggops ======
2823 <HTML>
2824 <HEAD>
2825 <TITLE>Aggregate Operations</TITLE>
2826 </HEAD>
2827 <BODY>
2828 <H1>Aggregate Operations</H1>
2830 When you are in the MESSAGE INDEX, the available commands
2831 (for example, Delete, Undelete, Save, Reply, and so on)
2832 normally act on a single message.
2833 So, for example, if you press the Delete command, the currently highlighted
2834 message is marked Deleted.
2835 These commands that normally act on a single message may be applied to
2836 several messages at once instead.
2838 By default this feature is turned on, but it could be administratively turned
2839 off to reduce complexity.
2840 The feature
2841 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
2842 in the Setup/Config screen is used to turn it off or on.
2843 When this feature is turned on, the four commands &quot;Select&quot;,
2844 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
2845 are available.
2846 The two selection commands allow you to mark a set of
2847 messages as being &quot;selected&quot;.
2848 The &quot;ZoomMode&quot; command will toggle between
2849 displaying only the selected messages and displaying all the messages.
2850 The &quot;Apply&quot; command allows you to
2851 apply one of the regular MESSAGE INDEX commands to all of the selected
2852 messages instead of to only the highlighted message.
2854 An example aggregate operation would be to catch up when reading
2855 a news group.
2856 That is, get rid of all the messages in the news group so that you can
2857 start fresh.
2858 The easiest way to do this in Alpine is to use aggregate operations.
2859 You want to Delete all of the messages in the group.
2860 You could start at the top and type &quot;D&quot; once for every message.
2861 A much faster method is to first Select all of the messages in the group,
2862 and then Delete all of them.
2863 This would take four keystrokes:
2865 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
2866 <BR>
2867 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
2869 Another use of Select is to use it for searching for a particular message
2870 or set of messages in a large folder.
2871 You may know that the message was From a certain user.
2872 You could select all messages from that user to start, and use Zoom to
2873 look at only those messages.
2874 If there were still too many messages to look at you could Narrow the
2875 set of messages further by selecting from all of those messages only
2876 the ones that were after a certain date, or contained a particular phrase
2877 in the Subject, or were too a particular address, and so on.
2878 That may be the end of what you are doing, or you may want to use Apply to
2879 Save or Forward or Print all of the selected messages.
2881 Some related help topics are
2882 <UL>
2883 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
2884 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
2885 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
2886 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
2887 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
2888 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
2889 </UL>
2891 &lt;End of help on this topic&gt;
2892 </BODY>
2893 </HTML>
2894 ===== h_mainhelp_readingnews ======
2895 <HTML>
2896 <HEAD>
2897 <TITLE>Reading News</TITLE>
2898 </HEAD>
2899 <BODY>
2900 <H1>Reading News</H1>
2902 <H2>Background</H2>
2903 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
2904 commands as for mail. Similar to mailing lists but existing on a larger scale, 
2905 Usenet newsgroups allow groups of people with common interests to discuss 
2906 particular topics. You might find newsgroups related to your career, or you 
2907 might wish to check out the online discussion among the fans of your favorite 
2908 television show. 
2910 <H2>Configuring Alpine for Reading News</H2>
2911 Alpine often arrives
2912 pre-configured by your system administrator to automatically access the
2913 newsgroups offered by your organization, Internet Service Provider, or
2914 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
2915 need additional details on <a href="h_configuring_news">how to
2916 configure Alpine to read news</a>.
2918 <H2>Accessing Newsgroups</H2>
2919 The first step in reading news is to access the newsgroups collections
2920 screen from Alpine. If everything is configured properly, you should be able
2921 to do this by first typing L (folder List), then selecting the folder
2922 collection listed as "News." The actual name of this collection may differ
2923 from system to system.
2925 <H2>Subscribing to Newsgroups</H2>
2927 Once you have accessed the news collection, you need to subscribe to a
2928 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
2929 will keep a record of the newsgroups in which you are interested and which
2930 articles in those newsgroups have been read.
2932 <H2>Using Newsgroups</H2> 
2933 Alpine uses the similar commands to read news as to read mail. For example,
2934 the D command marks messages as Deleted (or "Dismissed," if you prefer),
2935 and the R command Replies to a news posting. Basically, Alpine allows you to
2936 read news as if it were mail, so you don't need to change the way you
2937 interact with Alpine.
2939 There is also additional Alpine help available on 
2940 <A HREF="h_reading_news">how to use Alpine to read news</A>.
2942 &lt;End of help on this topic&gt;
2943 </BODY>
2944 </HTML>
2945 ===== h_mainhelp_securing ======
2946 <HTML>
2947 <HEAD>
2948 <TITLE>Securing your Alpine Session</TITLE>
2949 </HEAD>
2950 <BODY>
2951 <H1>Securing your Alpine Session</H1>
2953 By default, Alpine will attempt to connect to an IMAP server on the normal
2954 IMAP service port (143).
2955 If the Alpine you are using has been built to
2956 support &quot;Transport Layer Security&quot; (TLS)
2957 and &quot;Secure Sockets Layer&quot; (SSL) 
2958 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
2959 and the server offers the STARTTLS capability, then a secure (encrypted)
2960 session will be established.
2962 When you are connected to a remote folder the titlebar will contain a plus sign
2963 in the far right column if the connection is encrypted using TLS or SSL.
2964 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
2965 if the connection is encrypted.
2967 <H2>More Information on Alpine with SSL and TLS</H2>
2968 <UL>
2969 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
2970 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
2971 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
2972 <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>
2973 </UL>
2974 <H2>Here are some other security-related features and options</H2>
2976 <UL>
2977 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
2978 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
2979 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
2980 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
2981 </UL>
2983 &lt;End of help on this topic&gt;
2984 </BODY>
2985 </HTML>
2986 ===== h_mainhelp_problems ======
2987 <HTML>
2988 <HEAD>
2989 <TITLE>Reporting Problems</TITLE>
2990 </HEAD>
2991 <BODY>
2992 <H1>Reporting Problems</H1>
2994 We ask that you first read the relevant help screens and then seek
2995 assistance from your own local support staff.  Once you are sure that your
2996 difficulty is not a local configuration problem, you might look at the
2997 help section explaining where to look for
2998 <A HREF="h_finding_help">more information</A> and where to 
2999 get assistance.
3002 <ADDRESS>
3003    Eduardo Chappa &lt;chappa@gmx.com&gt;
3004 </ADDRESS>
3007 &lt;End of help on this topic&gt;
3008 </BODY>
3009 </HTML>
3010 ===== h_main_menu_commands ======
3011 <HTML>
3012 <HEAD>
3013 <TITLE>MAIN MENU COMMANDS</TITLE>
3014 </HEAD>
3015 <BODY>
3016 <H1>MAIN MENU COMMANDS</H1>
3018 <!--chtml if pinemode="function_key"-->
3019 &nbsp;Available&nbsp;Commands&nbsp;--
3020 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3021 &nbsp;------------------------------
3022 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3023 ----------<BR>
3024 &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>
3025 &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>
3026 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3027 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3028 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3029 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3030 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3031 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3032 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3033 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3034 &nbsp;F7&nbsp;&nbsp;<A 
3035 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3036 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3037 &nbsp;F8&nbsp;&nbsp;<A 
3038 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3039 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3040 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 
3041 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3042 &nbsp;F10&nbsp;<A 
3043 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 
3044 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3045 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3046 &nbsp;F11&nbsp;<A 
3047 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3048 <!--chtml else-->
3049 &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>
3050 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3051 &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>
3052 &nbsp;C&nbsp;&nbsp;<A 
3053 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>
3054 &nbsp;I&nbsp;&nbsp;<A 
3055 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>
3056 &nbsp;L&nbsp;&nbsp;<A 
3057 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>
3058 &nbsp;A&nbsp;&nbsp;<A 
3059 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3060 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3061 &nbsp;S&nbsp;&nbsp;<A 
3062 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 
3063 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3064 &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>
3065 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
3066 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3067 <!--chtml endif-->
3070 NOTE:
3071 <OL>
3072  <LI>For help on a particular command, highlight the bold text associated
3073 with it above and hit Return.
3074  <LI> The availability of certain commands (e.g. some of the options under
3075 SETUP) is determined by Alpine configuration files and system capabilities.
3076 At some sites, certain commands may not be available due to security or
3077 support concerns.
3078 </OL>
3080 &lt;End of help on this topic&gt;
3081 </BODY>
3082 </HTML>
3084 ===== h_command_line_options ======
3085 <HTML>
3086 <HEAD>
3087 <TITLE>COMMAND LINE OPTIONS</TITLE>
3088 </HEAD>
3089 <BODY>
3090 <H1>COMMAND LINE OPTIONS</H1>
3091 Possible starting arguments for Alpine:
3093 <DL COMPACT>
3095 <DT> <EM>[addresses]</EM>
3097 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3098 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3099 <EM>Alpine</EM> will startup in
3100 the composer with a message started to the addresses specified.
3101 Once the message is sent, the <EM>Alpine</EM> session closes.
3102 Standard input redirection is allowed.
3103 Separate multiple addresses with a space between them.
3104 Addresses are placed in the &quot;To&quot; field only.
3107 <DT> &lt; <EM>file</EM>
3109 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3110 into the body of the message.
3111 Once the message is sent, the <EM>Alpine</EM> session closes. 
3114 <DT> -attach <EM>file</EM>
3116 <DD> Go directly into composer with given file attached.
3119 <DT> -attachlist <EM>file-list</EM>
3121 <DD> Go directly into composer with given files attached.
3122 This must be the last option on the command line.
3125 <DT> -attach_and_delete <EM>file</EM>
3127 <DD> Go directly into composer with given file attached, delete when finished.
3130 <DT> -aux <EM>local_directory</EM>
3132 <DD> <EM>PC-Alpine</EM> only.
3133 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3134 files, like debug files, address books, and signature files.  The pinerc may 
3135 be local or remote.
3138 <DT> -bail
3140 <DD> If the personal configuration file doesn't already exist, exit.
3141 This might be useful if the configuration file is accessed using some
3142 remote filesystem protocol. If the remote mount is missing this will cause
3143 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3146 <DT> -c <EM>n</EM>
3148 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3149 This is used when there are multiple folder collections (contexts) and you 
3150 want to open a folder not in the primary collection.
3153 <DT> -conf
3155 <DD> Configuration: Prints a sample system configuration file to the
3156 screen or standard output. To generate an initial system configuration 
3157 file, execute
3159 <PRE><CODE>
3160                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3161 </CODE></PRE>
3164 To generate a system configuration file using settings from an old
3165 system configuration file, execute
3167 <PRE><CODE>
3168                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3169 </CODE></PRE>
3171 A system configuration file is not required.
3174 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3176 <DD> Copy an address book file to a remote address book folder.
3177 If the remote folder doesn't exist, it will be created.
3178 If it exists but the first message in the folder isn't a remote address
3179 book header message, the copy will be aborted.
3180 This flag will not usually be used by a user.
3181 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3182 and copy entries from the local address book by using aggregate Save in
3183 the address book screen.
3186 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3188 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3189 If the remote folder doesn't exist, it will be created.
3190 If it exists but the first message in the folder isn't a remote pinerc
3191 header message, the copy will be aborted.
3192 This flag may be useful to users who already have a local pinerc file and
3193 would like to convert it to a remote pinerc folder and use that instead.
3194 This gives a way to bootstrap that conversion without having to manually
3195 reset all of the variables in the remote pinerc folder.
3198 <DT> -d <EM>debug-level</EM>
3200 <DD> Debug Level:  Sets the level of debugging information written by
3201 <EM>Alpine</EM>.
3202 <EM>debug-level</EM> can be set to any integer 0-9.
3203 A debug level of 0 turns off debugging for the session.
3204 (Actually there are some levels higher than 9, but you probably don't
3205 want to see them.)
3208 <DT> -d <EM>keywords</EM>
3210 <DD> You may use a more detailed version of the debugging flag to set
3211 the debug level in separate parts of <EM>Alpine</EM>.
3212 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3213 verbose=0..9.
3214 <EM>Flush</EM> causes debugging information to be flushed immediately to
3215 the debug file as it is written.
3216 <EM>Verbose</EM> is the general debugging verbosity level.
3217 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3218 is useful when you are trying to figure out what is responsible for delays.
3219 <EM>Numfiles</EM> sets the number of debug files saved.
3220 <EM>Imap</EM> sets the debug level for the debugging statements related
3221 to the conversation with the IMAP server, and more generally, for the
3222 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3223 <EM>Tcp</EM> turns on some TCP/IP debugging.
3226 <DT> -f <EM>folder</EM>
3228 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3229 of the standard INBOX.
3232 <DT> -F <EM>file</EM>
3234 <DD> Open named text file for viewing and forwarding.
3237 <DT> -h
3239 <DD> Help:  Prints the list of available command-line arguments to the
3240 screen.
3243 <DT> -i
3245 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3246 screen instead of the MAIN MENU.
3249 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3252 <DT> -I <EM>a,b,c,...</EM>
3254 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3255 sequence of commands upon startup.
3256 This allows users to get <EM>Alpine</EM> to start in any
3257 of its menus/screens.
3258 You cannot include any input to the composer in the initial keystrokes.
3259 The key &lt;Return&gt; is represented by a ``CR'' in
3260 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3261 Control keys are two character sequences beginning with ``^'', such as
3262 ``^I''.
3263 A tab character is ``TAB''.
3264 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3265 ``DOWN'', ``LEFT'', and ``RIGHT''.
3266 A restriction is that you can't mix function keys and character keys in this
3267 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3268 A user can always use only <EM>character</EM> keys in the startup list even
3269 if he or she is using <EM>function</EM> keys normally, or vice versa.
3270 If an element in this list is a string of characters surrounded by double
3271 quotes (&quot;) then it will be expanded into the individual characters in
3272 the string, excluding the double quotes.
3275 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3278 <DT> -install
3280 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3281 some basic information to help with getting properly set up.
3284 <DT> -k
3286 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3287 the input of commands to be function-keys.
3288 Otherwise, commands are linked to the regular character keys.
3291 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3292 <EM>Feature-List</EM>.
3295 <DT> -n <EM>n</EM>
3297 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3298 FOLDER INDEX screen with the current message being the specified
3299 message number.
3302 <DT> -nosplash
3304 <DD> <EM>PC-Alpine</EM> only.
3305 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3306 This may be helpful for certain troubleshooting or terminal server scenarios.
3309 <DT> -o <EM>folder</EM>
3311 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3314 <DT> -p <EM>pinerc</EM>
3316 <DD> Uses the named file as the personal configuration file instead of
3317 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3318 Alpinerc may be either a local file or a remote configuration folder.
3321 <DT> -P <EM>pinerc</EM>
3323 <DD> Uses the named file as the system wide configuration file instead of
3324 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3325 Alpinerc may be either a local file or a remote configuration folder.
3328 <DT> -passfile <EM>passfile</EM>
3330 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3331 This should be a fully-qualified filename.
3334 <DT> -pinerc <EM>file</EM>
3336 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3337 settings of variables that the user has made.
3338 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3341 <DT> -r
3343 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3344 <EM>Alpine</EM> in restricted mode can only send email to itself.
3345 Save and export are limited.
3348 <DT> -registry <EM>cmd</EM>
3350 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3351 <EM>Alpine</EM>'s registry entries.
3352 Possible values for <EM>cmd</EM> are set, clear, and dump.
3353 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3354 entries according to its current settings.
3355 <EM>Clear</EM> will clear the registry values.
3356 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3357 <EM>Dump</EM> will display the values of current registry settings.
3358 Note that the dump command is currently disabled.
3359 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3360 the registry only if there currently aren't any values set.
3363 <DT> -sort <EM>key</EM>
3365 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3366 FOLDER INDEX screen.
3367 <EM>Key</EM> can have the following values: 
3368 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3369 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3370 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3371 The default value is &quot;arrival&quot;.
3372 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3375 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3378 <DT> -uninstall
3380 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3381 in Windows settings.  The registry settings are removed and
3382 the password cache is cleared.
3385 <DT> -url <EM>url</EM>
3387 <DD> Open the given URL.
3390 <DT> -v
3392 <DD> Version:  Print version information to the screen.
3395 <DT> -x <EM>exceptions_config</EM>
3397 <DD> Configuration settings in the exceptions configuration override your normal
3398 default settings.
3399 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3402 <DT> -z
3404 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3405 will suspend the <EM>Alpine</EM> session.
3408 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3409 <EM>Feature-List</EM>.
3412 <DT> -<EM>option</EM>=<EM>value</EM>
3414 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3415 For example, <EM>-signature-file=sig1</EM> or
3416 <EM>-Feature-List=signature-at-bottom</EM>.
3417 Note:  Feature-List values are
3418 additive and features may be preceded with no- to turn them off.
3419 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3420 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3421 <EM>-Feature-List=signature-at-bottom</EM>.
3424 </DL>
3426 &lt;End of help on this topic&gt;
3427 </BODY>
3428 </HTML>
3429 ===== h_configuring_news ======
3430 <HTML>
3431 <HEAD>
3432 <TITLE>CONFIGURING NEWS</TITLE>
3433 </HEAD>
3434 <BODY>
3435 <H1>CONFIGURING NEWS</H1>
3436 Alpine can access news folders in any one of three different ways:
3437 <DL>
3438 <DT>REMOTE NNTP</DT>
3439 <DD>Using the Network News Transport Protocol (NNTP) to
3440 access news on a remote news server.  In this case the newsrc file is
3441 stored on the machine where Alpine is running.
3444 To specify a remote news-collection accessed via NNTP use the
3445 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3446 Server: value to the NNTP server's hostname appended with the
3447 communication method &quot;/service=NNTP&quot;, and set the Path:
3448 value to the &quot;#news.&quot; namespace (without the quotes).  See
3449 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3450 help text for a more complete explanation of access method, and the
3451 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3452 text for a more complete explanation of &quot;namespace&quot;.
3454 Instead of specifying a news-collection, you may simply set the
3455 <A HREF="h_config_nntp_server">NNTP Server</A>
3456 option, which will cause Alpine to create a default news-collection for you.
3457 Another NNTP option that may be of interest is
3458 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3460 <DT>REMOTE IMAP</DT>
3461 <DD>Using the Internet Message Access Protocol (IMAP) to
3462 access news on a remote news server.  In this case, your newsrc file is
3463 stored on the news server, in your home directory, so you must have an
3464 account on the news server, but you would be running Alpine on a different
3465 machine.  The news server must be running an IMAPd server process. 
3468 To specify a remote news-collection accessed via IMAP use the
3469 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3470 Server: value to the IMAP server's hostname, and set the Path: value
3471 to the &quot;#news.&quot; namespace (without the quotes).  See the
3472 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3473 text for a more complete explanation of &quot;namespace&quot;.
3475 </DD>
3477 <DT>LOCAL</DT>
3478 <DD>Using local file access to the news database.  In this
3479 case, your newsrc file is stored on the news server, in your home
3480 directory, so you must have an account on the news server, and you would
3481 be running Alpine on the same machine.
3484 To specify a local news-collection use the SETUP/collectionList
3485 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3486 set the Path: value to the &quot;#news.&quot; namespace (without the
3487 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3488 field's help text for a more complete explanation of &quot;namespace&quot;.
3490 </DD>
3491 </DL>
3495 NOTE: Should no news-collection be defined as above, Alpine will
3496 automatically create one using the Setup/Config screen's
3497 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3498 will be created as a &quot;Remote NNTP&quot; as described above.
3502 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3503 possible.  If you don't have an account on the news server, or if the news
3504 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3505 sure, ask your service provider, university, or company for help.)  In
3506 this case, your Unix .newsrc file can be transferred to your PC.  A good
3507 place to put it would be in the same directory as your PINERC file, under
3508 the name NEWSRC, but you can 
3509 <A HREF="h_config_newsrc_path">specify a different location</A>
3510 via Alpine's Setup/Config screen.
3513 Other configuration features related to news are
3514 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3515 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3516 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3517 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3518 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3519 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3520 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3521 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3524 &lt;End of help on this topic&gt;
3525 </BODY>
3526 </HTML>
3527 ===== h_reading_news ======
3528 <HTML>
3529 <HEAD>
3530 <TITLE>READING NEWS</TITLE>
3531 </HEAD>
3532 <BODY>
3533 <H1>READING NEWS</H1>
3535 Alpine uses almost the same commands for manipulating news folders as for
3536 mail folders.  This means, for example, that when you are done with a
3537 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3538 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3539 most newsreaders, wherein a message is implicitly dismissed after you have
3540 looked at it once. We strongly believe that Alpine should offer as much
3541 consistency as possible between mail and news, so the mail paradigm --
3542 wherein a message does not magically disappear without explicit action by
3543 the user -- is used for news as well. <P>
3545 If you answer a message in a news folder, the index view will show the
3546 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3547 keep track of what news as been read has no way of storing this flag, so
3548 it will not be preserved across sessions.  The Deleted flag is the only
3549 one that is preserved when you leave and then return to a newsgroup.  As an
3550 additional note on replies, when you Reply to a newsgroup message and say
3551 you want to reply to all recipients, Alpine will ask if you want to post the
3552 message to all the newsgroups listed in the original message. <P>
3554 If you would like Alpine to mark more-or-less recent news messages as
3555 &quot;New&quot;, then set the
3556 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3557 feature (which is set by default).  This will cause messages after the last one you have marked as
3558 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3559 &quot;N&quot; status often makes it easier to distinguish later news
3560 articles from those you've previously seen, but not yet disposed of via
3561 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3562 record of which messages you have not seen.
3565 A frequent operation in news-reading is &quot;catching up&quot; -- that
3566 is, getting rid of all the messages in the newsgroup so that you can
3567 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3568 Select command.  You would enter the following four keystrokes:
3569 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3570 dismiss) command to all of them.
3573 There are also additional details on 
3574 <A HREF="h_configuring_news">configuring news</a>.
3577 &lt;End of help on this topic&gt;
3578 </BODY>
3579 </HTML>
3580 ====== h_help_index ======
3581 <HTML>
3582 <HEAD>
3583 <TITLE>Help Index</TITLE>
3584 </HEAD>
3585 <BODY>
3586 <H1>Help Index</H1>
3587 <ul>
3588 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3589 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3590 <li><a href="h_main_addrbook">Address Book Command</a>
3591 <li><a href="h_abook_view">Address Book View Explained</a>
3592 <li><a href="h_compose_addrcomplete">Address Completion</a>
3593 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3594 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3595 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3596 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3597 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3598 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3599 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3600 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3601 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3602 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3603 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3604 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3605 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3606 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3607 <li><a href="h_news_legal">Alpine Legal Notices</a>
3608 <li><a href="h_compose_alted">Alt Editor Command</a>
3609 <li><a href="h_index_cmd_apply">Apply Command</a>
3610 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3611 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3612 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3613 <li><a href="h_composer_browse">BROWSER</a>
3614 <li><a href="h_common_bounce">Bounce Command</a>
3615 <li><a href="h_compose_cancel">Cancel Command</a>
3616 <li><a href="h_config_change_your_from">Changing your From Address</a>
3617 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3618 <li><a href="h_mainhelp_color">Color</a>
3619 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3620 <li><a href="h_composer">COMPOSER COMMANDS</a>
3621 <li><a href="h_mainhelp_composing">Composing Messages</a>
3622 <li><a href="h_mainhelp_collections">Collection Lists</a>
3623 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3624 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3625 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3626 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3627 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3628 <li><a href="h_common_compose">Compose Command</a>
3629 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3630 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3631 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3632 <li><a href="h_mainhelp_config">Configuration</a>
3633 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3634 <li><a href="h_config_dflt_color">Default Color</a>
3635 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3636 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3637 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3638 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3639 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3640 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3641 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3642 <li><a href="h_ge_export">Export File Selection</a>
3643 <li><a href="h_ge_allparts">Export Message File Selection</a>
3644 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3645 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3646 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3647 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3648 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3649 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3650 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3651 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3652 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3653 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3654 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3655 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3656 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3657 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3658 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3659 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3660 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3661 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3662 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3663 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3664 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3665 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3666 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3667 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3668 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3669 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3670 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3671 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3672 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3673 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3674 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3675 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3676 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3677 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3678 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3679 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3680 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3681 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3682 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3683 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3684 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3685 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3686 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3687 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3688 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3689 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3690 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3691 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3692 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3693 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3694 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3695 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3696 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3697 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3698 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3699 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3700 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3701 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3702 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3703 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3704 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3705 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3706 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3707 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3708 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3709 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3710 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3711 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3712 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3713 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3714 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3715 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3716 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3717 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3718 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3719 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
3720 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
3721 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
3722 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
3723 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
3724 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
3725 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
3726 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
3727 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
3728 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
3729 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
3730 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
3731 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
3732 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
3733 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
3734 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
3735 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
3736 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
3737 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
3738 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
3739 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
3740 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
3741 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
3742 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
3743 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
3744 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
3745 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
3746 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
3747 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
3748 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
3749 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
3750 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
3751 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
3752 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
3753 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
3754 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
3755 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
3756 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
3757 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
3758 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
3759 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
3760 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
3761 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
3762 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
3763 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
3764 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
3765 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
3766 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
3767 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
3768 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
3769 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
3770 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
3771 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
3772 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
3773 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
3774 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
3775 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
3776 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
3777 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
3778 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
3779 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
3780 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
3781 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
3782 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
3783 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
3784 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
3785 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
3786 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
3787 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
3788 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
3789 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
3790 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
3791 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
3792 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
3793 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
3794 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
3795 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
3796 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
3797 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
3798 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
3799 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
3800 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
3801 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
3802 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
3803 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
3804 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
3805 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
3806 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
3807 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
3808 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
3809 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
3810 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
3811 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
3812 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
3813 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
3814 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
3815 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
3816 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
3817 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
3818 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
3819 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
3820 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
3821 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
3822 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
3823 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
3824 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
3825 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
3826 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
3827 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
3828 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
3829 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
3830 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
3831 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
3832 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
3833 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
3834 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
3835 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
3836 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
3837 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
3838 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
3839 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
3840 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
3841 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
3842 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
3843 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
3844 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
3845 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
3846 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
3847 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
3848 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
3849 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
3850 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
3851 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
3852 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
3853 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
3854 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
3855 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
3856 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
3857 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
3858 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
3859 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
3860 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
3861 <li><a href="h_mainhelp_filtering">Filtering</a>
3862 <li><a href="h_finding_help">Finding more information and requesting help</a>
3863 <li><a href="h_common_flag">Flag Command</a>
3864 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
3865 <li><a href="h_mainhelp_folders">Folders</a>
3866 <li><a href="h_what_are_collections">Folder Collections Explained</a>
3867 <li><a href="h_common_folders">Folder List Command</a>
3868 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
3869 <li><a href="h_folder_save">Folder Select for Save Explained</a>
3870 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
3871 <li><a href="h_config_change_your_from">From Address, Changing</a>
3872 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
3873 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
3874 <li><a href="h_common_goto">Goto Command</a>
3875 <li><a href="h_common_hdrmode">HdrMode Command</a>
3876 <li><a href="h_mainhelp_pinehelp">Help</a>
3877 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
3878 <li><a href="h_folder_maint">Help for Folder List</a>
3879 <li><a href="h_valid_folder_names">IMAP</a>
3880 <li><a href="h_ge_import">Import File Selection</a>
3881 <li><a href="h_mainhelp_index">Index of Messages</a>
3882 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
3883 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
3884 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
3885 <li><a href="h_info_on_mbox">Information on mbox driver</a>
3886 <li><a href="h_mainhelp_intro">Introduction</a>
3887 <li><a href="h_main_journal">Journal Command</a>
3888 <li><a href="h_common_jump">Jump Command</a>
3889 <li><a href="h_compose_justify">Justify Command</a>
3890 <li><a href="h_main_kblock">Keyboard Lock Command</a>
3891 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
3892 <li><a href="h_mainhelp_ldap">LDAP</a>
3893 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
3894 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
3895 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
3896 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
3897 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
3898 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
3899 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
3900 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
3901 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
3902 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
3903 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
3904 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
3905 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
3906 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
3907 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
3908 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
3909 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
3910 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
3911 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
3912 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
3913 <li><a href="h_ldap_view">LDAP Response View Explained</a>
3914 <li><a href="h_maildrop">Mail Drop: What is it?</a>
3915 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
3916 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
3917 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
3918 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
3919 <li><a href="h_common_index">Message Index Command</a>
3920 <li><a href="h_mainhelp_mouse">Mouse</a>
3921 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
3922 <li><a href="new_user_greeting">NEW USER GREETING</a>
3923 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
3924 <li><a href="h_mainhelp_readingnews">News Reading</a>
3925 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
3926 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
3927 <li><a href="h_common_nextnew">NextNew Command</a>
3928 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
3929 <li><a href="h_mainhelp_readingnews">NNTP</a>
3930 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
3931 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
3932 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
3933 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
3934 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
3935 <li><a href="h_config_color_style">OPTION: Color Style</a>
3936 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
3937 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
3938 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
3939 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
3940 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
3941 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
3942 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
3943 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
3944 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
3945 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
3946 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
3947 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
3948 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
3949 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
3950 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
3951 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
3952 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
3953 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
3954 <li><a href="h_config_file_dir">OPTION: File Directory</a>
3955 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
3956 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
3957 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
3958 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
3959 <li><a href="h_config_font_name">OPTION: Font Name</a>
3960 <li><a href="h_config_font_size">OPTION: Font Size</a>
3961 <li><a href="h_config_font_style">OPTION: Font Style</a>
3962 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
3963 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
3964 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
3965 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
3966 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
3967 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
3968 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
3969 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
3970 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
3971 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
3972 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
3973 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
3974 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
3975 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
3976 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
3977 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
3978 <li><a href="h_config_index_color">OPTION: Index Colors</a>
3979 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
3980 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
3981 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
3982 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
3983 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
3984 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
3985 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
3986 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
3987 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
3988 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
3989 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
3990 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
3991 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
3992 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
3993 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
3994 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
3995 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
3996 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
3997 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
3998 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
3999 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4000 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4001 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4002 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4003 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4004 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4005 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4006 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4007 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4008 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4009 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4010 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4011 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4012 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4013 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4014 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4015 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4016 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4017 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4018 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4019 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4020 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4021 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4022 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4023 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4024 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4025 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4026 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4027 <li><a href="h_config_printer">OPTION: Printer</a>
4028 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4029 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4030 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4031 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4032 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4033 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4034 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4035 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4036 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4037 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4038 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4039 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4040 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4041 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4042 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4043 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4044 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4045 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4046 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4047 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4048 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4049 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4050 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4051 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4052 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4053 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4054 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4055 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4056 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4057 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4058 <li><a href="h_config_status_color">OPTION: Status Color</a>
4059 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4060 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4061 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4062 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4063 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4064 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4065 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4066 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4067 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4068 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4069 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4070 <li><a href="h_config_title_color">OPTION: Title Color</a>
4071 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4072 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4073 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4074 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4075 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4076 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4077 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4078 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4079 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4080 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4081 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4082 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4083 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4084 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4085 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4086 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4087 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4088 <li><a href="h_mainhelp_patterns">Patterns</a>
4089 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4090 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4091 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4092 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4093 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4094 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4095 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4096 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4097 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4098 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4099 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4100 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4101 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4102 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4103 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4104 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4105 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4106 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4107 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4108 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4109 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4110 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4111 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4112 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4113 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4114 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4115 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4116 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4117 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4118 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4119 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4120 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4121 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4122 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4123 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4124 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4125 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4126 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4127 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4128 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4129 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4130 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4131 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4132 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4133 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4134 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4135 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4136 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4137 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4138 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4139 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4140 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4141 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4142 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4143 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4144 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4145 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4146 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4147 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4148 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4149 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4150 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4151 <li><a href="h_common_pipe">Pipe Command</a>
4152 <li><a href="h_valid_folder_names">POP</a>
4153 <li><a href="h_common_postpone">Postpone Command</a>
4154 <li><a href="h_common_print">Print Command</a>
4155 <li><a href="h_mainhelp_readingnews">Reading News</a>
4156 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4157 <li><a href="h_mainhelp_roles">Roles</a>
4158 <li><a href="h_role_select">ROLES SCREEN</a>
4159 <li><a href="h_compose_readfile">Read File Command</a>
4160 <li><a href="h_mainhelp_reading">Reading Messages</a>
4161 <li><a href="h_main_release_notes">Release Notes Command</a>
4162 <li><a href="h_common_reply">Reply and Forward Commands</a>
4163 <li><a href="h_compose_richhdr">Rich Header Command</a>
4164 <li><a href="h_common_role">Role Command</a>
4165 <li><a href="h_mainhelp_smime">S/MIME</a>
4166 <li><a href="h_index_cmd_select">Searching for Messages</a>
4167 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4168 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4169 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4170 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4171 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4172 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4173 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4174 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4175 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4176 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4177 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4178 <li><a href="h_common_save">Save and Export Commands</a>
4179 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4180 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4181 <li><a href="h_compose_send">Send Command</a>
4182 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4183 <li><a href="h_main_setup">Setup Command</a>
4184 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4185 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4186 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4187 <li><a href="h_mainhelp_smime">S/MIME</a>
4188 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4189 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4190 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4191 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4192 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4193 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4194 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4195 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4196 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4197 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4198 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4199 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4200 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4201 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4202 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4203 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4204 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4205 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4206 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4207 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4208 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4209 <li><a href="h_index_cmd_sort">Sort Command</a>
4210 <li><a href="h_compose_spell">Spell Check Command</a>
4211 <li><a href="h_common_suspend">Suspend Command</a>
4212 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4213 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4214 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4215 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4216 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4217 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4218 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4219 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4220 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4221 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4222 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4223 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4224 <li><a href="h_common_take">TakeAddr Command</a>
4225 <li><a href="h_mainhelp_status">Titlebar Line</a>
4226 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4227 <li><a href="h_config_usenone_color">Use None Color</a>
4228 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4229 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4230 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4231 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4232 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4233 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4234 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4235 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4236 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4237 </UL>
4240 &lt;End of Help Index&gt;
4241 </BODY>
4242 </HTML>
4245 ============== h_config_remote_config =============
4246 <HTML>
4247 <HEAD>
4248 <TITLE>Remote Configuration</TITLE>
4249 </HEAD>
4250 <BODY>
4251 <H1>Remote Configuration</H1>
4253 You may use the command line argument &quot;-p pinerc&quot; to tell
4254 Alpine to use a non-default configuration file.
4255 There are two types of storage for configuration information.
4256 <EM>Local</EM> configuration files are used by default.
4257 These are just regular files on the UNIX system or on the PC.
4258 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4259 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4260 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4261 The advantage of using a remote configuration is that the same information
4262 may be accessed from multiple platforms.
4263 For example, if you use one computer at work and another at home, the same
4264 configuration could be used from both places.
4265 A configuration change from one place would be seen in both places.
4266 To use a remote configuration you simply give a
4267 <A HREF="h_valid_folder_names">remote folder name</A>
4268 as the argument to the &quot;-p&quot; command line option.
4269 The command line might look something like:
4271 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4273 If there are special characters in the command shell you use, you may need to
4274 quote the last argument (to protect the curly braces from the shell).
4275 The command might look like:
4277 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4279 You should choose a folder name for a folder that does not yet exist.
4280 It will be created containing an empty configuration.
4281 Do not use a folder that you wish to store regular mail messages in.
4283 The Setup/RemoteConfigSetup command will help you convert from a local
4284 configuration to a remote configuration.
4285 It will create a remote configuration for you and copy your current local
4286 configuration to it.
4287 It will also help you convert local address books into remote address books
4288 and local signature files into literal signatures contained in the
4289 remote configuration file.
4291 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4292 may copy a local pinerc file to a remote configuration folder by hand
4293 by using the command line option &quot;-copy_pinerc&quot;.
4295 Another command line option, which is somewhat related to remote
4296 configuration, is the option &quot;-x exceptions_config&quot;.
4297 The configuration settings in the exceptions configuration override
4298 your default settings.
4299 It may be useful to store the default configuration (the -p argument) remotely
4300 and to have the exceptions configuration stored in a local file.
4301 You might put generic configuration information in the remote configuration
4302 and platform-specific configuration on each platform in the exceptions
4303 configuration.
4304 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4305 can be either remote folders or local files.
4307 There is another command line argument that works only with PC-Alpine and
4308 which may prove useful when using a remote configuration.
4309 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4310 to store your local auxiliary files.
4311 This only has an effect if your configuration file is remote.
4312 Some examples of auxiliary files are debug files, address book files, and
4313 signature files.
4315 &lt;End of help on this topic&gt;
4316 </BODY>
4317 </HTML>
4318 ============== h_config_exceptions =============
4319 <HTML>
4320 <HEAD>
4321 <TITLE>Generic and Exceptional Configuration</TITLE>
4322 </HEAD>
4323 <BODY>
4324 <H1>Generic and Exceptional Configuration</H1>
4326 If you use Alpine from more than one platform it may be convenient
4327 to split your configuration information into two pieces, a generic piece
4328 and exceptions that apply to a particular platform.
4329 For example, suppose you use Alpine from home and from work.
4330 Most of your configuration settings are probably the
4331 same in both locations, so those settings belong in the generic settings
4332 configuration.
4333 However, you may use a different SMTP server and INBOX
4334 from home than you do from work.
4336 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4338 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4339 options could be
4340 part of your exceptional configuration so that they could be different in the
4341 two places.
4343 The command line option &quot;-x exceptions_config&quot;
4344 may be used to split your configuration into generic and exceptional pieces.
4345 &quot;Exceptions_config&quot; may be either local or remote.
4346 The regular Alpine configuration file will contain the generic data, and
4347 &quot;exceptions_config&quot; will contain the exceptional data.
4349 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4350 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4351 in the same local directory that the regular config file is located in (usually
4352 the Unix home directory).
4353 If the regular config file is remote (because the command line option
4354 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4355 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4356 If the file does not already exist then no exceptions will be used.
4357 You can force exceptions to be used by using the &quot;-x&quot; option or
4358 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4360 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4361 PC-Alpine will use the value of the
4362 environment variable <CODE>$PINERCEX</CODE>.
4363 If that is not set, PC-Alpine will look for
4364 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4365 in the same local directory that the regular config file is located in.
4366 If the regular config file is remote (because the command line option
4367 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4368 local directory specified by the &quot;-aux local_directory&quot; command
4369 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4370 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4372 When you have an exception configuration there is a new command
4373 in the Alpine Setup screen, Setup/eXceptions.
4374 It toggles between exceptions and the regular configuration.
4375 This is the usual way to make changes in your exceptional configuration data.
4376 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4377 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4378 for Config or &quot;K&quot; for Kolor.
4380 For most people, splitting the configuration information into two pieces is
4381 going to be most useful if the generic information is accessed
4382 <A HREF="h_config_remote_config">remotely</A>).
4383 That data will be the same no matter where you access it from and if you
4384 change it that change will show up everywhere.
4385 The exceptional data will most commonly be in a local file, so that the
4386 contents may easily be different on each computing platform used.
4388 If you already have a local configuration file with settings you like
4389 you may find that the command Setup/RemoteConfigSetup is useful
4390 in helping you convert to a remote configuration.
4391 The command line flag &quot;-copy_pinerc&quot;
4392 may also be useful.
4394 &lt;End of help on this topic&gt;
4395 </BODY>
4396 </HTML>
4397 ============== h_config_inheritance =============
4398 <HTML>
4399 <HEAD>
4400 <TITLE>Configuration Inheritance</TITLE>
4401 </HEAD>
4402 <BODY>
4403 <H1>Configuration Inheritance</H1>
4405 Configuration inheritance is a power user feature.
4406 It is confusing and not completely supported by the configuration
4407 user interface.
4408 We start with an explanation of how configuration works in hopes of making
4409 it easier to describe how inheritance works.
4411 Alpine uses a hierarchy of configuration values from different locations.
4412 There are five ways in which each configuration option (configuration
4413 variable) can be set.
4414 In increasing order of precedence they are:
4416 <OL>
4417 <LI> the system-wide configuration file.
4419 <LI> the personal configuration file
4421 <LI> the personal exceptions file
4423 <LI> a command line argument
4425 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4426 </OL>
4428 The fixed configuration file is normally
4429 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4431 The system-wide configuration file is normally
4432 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4433 set for PC-Alpine.
4434 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4435 is used for the system-wide configuration.
4436 This location can be set or changed on the command line with the -P flag.
4437 The system-wide configuration file can be either a local file or a
4438 remote configuration folder.
4440 For Unix Alpine, the personal configuration file is normally the file
4441 <CODE>.pinerc</CODE> in the user's home directory.
4442 This can be changed with the -p command line flag.
4443 For PC-Alpine, the personal configuration file is in
4444 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4445 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4446 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4447 This can be changed with the -p command line flag.
4448 If -p is used, the configuration data may be in a local file or a remote config
4449 folder.
4451 For Unix Alpine, the personal exceptions configuration file is named
4452 <CODE>.pinercex</CODE> and is in the same directory as the personal
4453 configuration file, if that configuration file is not remote, and is in
4454 the home directory if the personal configuration file is remote.
4455 If the file exists, then exceptions are turned on.
4456 If it doesn't, then you are not using exceptions.
4457 Alternatively, you may change the location of the exceptions configuration
4458 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4459 Like the personal configuration data, exceptions_config may be
4460 either local or remote.
4462 For PC-Alpine, the personal exceptions configuration file is named
4463 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4464 configuration file unless the personal configuration file is remote.
4465 In that case, it is in the local directory specfied by the
4466 &quot;-aux local_directory&quot; command line argument.
4467 (In the case that the personal configuration is remote and there is no
4468 &quot;-aux&quot; command line argument, Alpine searches for
4469 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4470 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4471 If the file exists, then exceptions are turned on.
4472 If it doesn't, then you are not using exceptions.
4473 You may change the location of the exceptions configuration
4474 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4475 or with the
4476 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4477 option).
4479 To reiterate, the value of a configuration option is taken from the
4480 last location in the list above in which it is set.
4481 Or, thinking about it slightly differently, a default value for an option
4482 is established in the system-wide configuration file (or internally by Alpine
4483 if there is no value in the system-wide file).
4484 That default remains in effect until and unless it is overridden by a value in a
4485 location further down the list, in which case a new &quot;default&quot;
4486 value is established.
4487 As we continue down the list of locations we either retain the
4488 value at each step or establish a new value.
4489 The value that is still set after going through the whole list of
4490 configuration locations is the one that is used.
4492 So, for example, if an option is set in the system-wide configuration
4493 file and in the personal configuration file, but is not set in the
4494 exceptions, on the command line, or in the fixed file; then the value
4495 from the personal configuration file is the one that is used.
4496 Or, if it is set in the system-wide config, in the personal config, not
4497 in the exceptions, but is set on the command line; then the value
4498 on the command line is used.
4500 Finally we get to inheritance.
4501 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4502 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4503 the inheritance mechanism makes it possible to <EM>combine</EM>
4504 the values from different locations instead of <EM>replacing</EM> the value.
4505 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4506 for which you may already set whatever you want at
4507 any configuration location (by using the &quot;no-&quot; prefix if
4508 necessary).
4510 To use inheritance, set the first item in a configuration list to the
4511 token &quot;INHERIT&quot;, without the quotes.
4512 If the first item is &quot;INHERIT&quot;,
4513 then instead of replacing the default value established so far, the rest of
4514 the list is appended to the default value established so far and that is
4515 the new value.
4517 Here is an example which may make it clearer. Suppose we have:
4519 <PRE>
4520  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4521  Personal config    :   smtp-server = INHERIT, mysmtp.home
4522  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4523  Command line       :   smtp-server = &lt;No Value Set&gt;
4524  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4525 </PRE>
4528 This would result in an effective smtp-server option of
4530 <PRE>
4531  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4532 </PRE>
4534 The &quot;INHERIT&quot; token can be used in any of the configuration files
4535 and the effect cascades.
4536 For example, if we change the above example to:
4538 <PRE>
4539  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4540  Personal config    :   smtp-server = INHERIT, mysmtp.home
4541  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4542  Command line       :   smtp-server = &lt;No Value Set&gt;
4543  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4544 </PRE>
4547 This would result in:
4549 <PRE>
4550  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4551 </PRE>
4553 Unset variables are skipped over (the default value is carried forward) so
4554 that, for example:
4556 <PRE>
4557  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4558  Personal config    :   smtp-server = &lt;No Value Set&gt;
4559  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4560  Command line       :   smtp-server = &lt;No Value Set&gt;
4561  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4562 </PRE>
4565 produces:
4567 <PRE>
4568  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4569 </PRE>
4572 If any later configuration location has a value set (for a particular list
4573 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4574 then that value replaces whatever value has been defined up to that point.
4575 In other words, that cancels out any previous inheritance.
4577 <PRE>
4578  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4579  Personal config    :   smtp-server = INHERIT, mysmtp.org
4580  Exceptions config  :   smtp-server = yoursmtp.org
4581  Command line       :   smtp-server = &lt;No Value Set&gt;
4582  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4583 </PRE>
4586 results in:
4588 <PRE>
4589  smtp-server = yoursmtp.org
4590 </PRE>
4593 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4594 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4595 difficult to insert the value &quot;INHERIT&quot; into the list of values
4596 for the option using the normal Setup tools.
4597 In other words, the color setting screen (for example) does not
4598 provide a way to input the text &quot;INHERIT&quot; as the first
4599 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4600 The way to do this is to either edit the pinerc file directly and manually
4601 insert it, or turn
4602 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4603 feature and insert it using the Setup/Config screen.
4605 &lt;End of help on this topic&gt;
4606 </BODY>
4607 </HTML>
4608 ============== h_special_xon_xoff =============
4609 <HTML>
4610 <HEAD>
4611 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4612 </HEAD>
4613 <BODY>
4614 <H1>XOFF/XON Handling within Alpine</H1>
4616 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4617 and XON) as normal characters, even though Alpine does not use them.
4618 However, the printer, modem, or communication software you are using may
4619 be configured for &quot;software flow control,&quot; which means that
4620 XON/XOFF must be treated as special characters by the operating system.
4621 If you see messages such as &quot;^S not defined for this screen&quot;,
4622 then your system is probably using software flow control. In this case
4623 you will need to set the
4624 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4625 feature.
4627 If you <EM>do</EM> set this
4628 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4629 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4630 and see if that puts things right.  Printing via the
4631 &quot;attached-to-ansi&quot; or 
4632 &quot;attached-to-wyse&quot;
4633 option will automatically enable software
4634 flow-control handling for the duration of the printing.
4636 &lt;End of help on this topic&gt;
4637 </BODY>
4638 </HTML>
4639 ============= h_special_help_nav =============
4640 <HTML>
4641 <HEAD>
4642 <TITLE>Help Text Navigation Explained</TITLE>
4643 </HEAD>
4644 <BODY>
4645 <H1>Help Text Navigation Explained</H1>
4647 Alpine contains extensive context-sensitive help text.   At any point, 
4648 pressing the &quot;?&quot; key will bring up a page of help text
4649 explaining the options available to you.  You can leave the help
4650 text screen and return to normal Alpine operation by pressing
4652 <!--chtml if pinemode="function_key"-->
4653 F3 function
4654 <!--chtml else-->
4655 &quot;E&quot;
4656 <!--chtml endif-->
4657 key to Exit Help at any time.
4660 Within the help screen you might find a word or phrase displayed in 
4661 inverse text and others displayed in bold typeface.  Such words and
4662 phrases are used to tell you Alpine has more information available on
4663 the topic they describe.
4664 The inverted text is the &quot;selected&quot; topic.  
4665 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4666 displayed in bold type
4667 is &quot;selected&quot;.
4668 Hit the Return key to display the information Alpine has available on that
4669 topic.  While viewing such additional information, the 
4670 <!--chtml if pinemode="function_key"-->
4671 F3 function
4672 <!--chtml else-->
4673 &quot;P&quot;
4674 <!--chtml endif-->
4675 key will return you to the previous help screen, and the
4676 <!--chtml if pinemode="function_key"-->
4677 F2 function
4678 <!--chtml else-->
4679 &quot;E&quot;
4680 <!--chtml endif-->
4681 key will Exit the Help system altogether.
4684 The "N" command will tell you the internal name of the help text you are 
4685 reading each time, so that you can send this name in the text of a message 
4686 and create a direct link to that internal help using the x-pine-help URL 
4687 scheme. For example, the direct link to this item is 
4688 x-pine-help:h_special_help_nav. If you add this text to a message, then
4689 a person using Pine to read such message would have a direct link to this
4690 help text.
4693 When you are finished reading this help text, you can press the
4694 <!--chtml if pinemode="function_key"-->
4695 F3 function
4696 <!--chtml else-->
4697 &quot;P&quot;
4698 <!--chtml endif-->
4699 key to return to the previously displayed help text.
4702 &lt;End of help on this topic&gt;
4703 </BODY>
4704 </HTML>
4705 ============= h_special_list_commands =============
4706 <HTML>
4707 <HEAD>
4708 <TITLE>Email List Commands Explained</TITLE>
4709 </HEAD>
4710 <BODY>
4711 <H1>Email List Commands Explained</H1>
4713 Electonic mail lists provide a way for like-minded users to join in
4714 discussions on topics of interest.  The email list itself is 
4715 represented by a
4716 single address that participants send messages to when they have
4717 something of interest to share with other members of the list.  The
4718 receiving computer then, either automatically or after review by the
4719 list's owner (or moderator), sends a copy of that message to each
4720 member of the list.
4723 Usually, subscribing and unsubscribing is done by sending requests in
4724 an email message to a special address setup to handle managing list
4725 membership.  Often this is the name of the list followed by
4726 <I>-request</I>.  This address is almost <EM>never</EM> the same as
4727 the address used to send messages to the list.
4730 Unfortunately, email list participation commands are more a matter
4731 of convention than standard, and thus may vary from list to list.
4732 Increasingly, list management software is adding information to
4733 the copy of the postings as they're copied to the list members that
4734 explains how to do the various list management functions.
4737 Alpine will recognize this information and offer the management commands
4738 they represent in a simple display. One or more of the following
4739 operations will be made available:
4741 <DL>
4742 <DT>Help</DT>
4743 <DD>
4744 A method to get help on subscribing, unsubscribing, 
4745 an explanation of what the list is about, or special instructions
4746 for participation.  This may be in the form of a reply in response
4747 to an email message, or instructions on how to connect to a Web site.
4748 </DD>
4750 <DT>Unsubscribe</DT>
4751 <DD>
4752 A method to get your email addressed removed from the list of
4753 recipients of the email list.
4754 </DD>
4756 <DT>Subscribe</DT>
4757 <DD>
4758 A method to get your email address added to the list of recipients
4759 of the email list.  It may be in the form of a message sent to 
4760 a special address or you may be connected to a web site.
4761 <DD>
4762 </DD>
4764 <DT>Post</DT>
4765 <DD>
4766 A method used to post to the email list.  However, it might also 
4767 indicate that no posting is allowed directly to the list.
4768 </DD>
4770 <DT>Owner</DT>
4771 <DD>
4772 A method to contact the list owner for special questions you might
4773 have regarding the list.
4774 </DD>
4776 <DT>Archive</DT>
4777 <DD>
4778 A method to view an archive of previous messages posted to the list.
4779 This may be in the form of a mail folder on a remote computer, an
4780 IMAP mailbox or even a Web site.
4781 </DD>
4782 </DL>
4785 &lt;End of help on this topic&gt;
4786 </BODY>
4787 </HTML>
4788 ============= h_quota_command =============
4789 <HTML>
4790 <HEAD>
4791 <TITLE>Quota Screen Explained</TITLE>
4792 </HEAD>
4793 <BODY>
4794 <H1>Quota Screen Explained</H1>
4796 <P> This screen summarizes the quota report for this mailbox in the
4797 IMAP server. For each resource that you have a quota, this reports summarizes
4798 its use and limit.
4800 <P> Your IMAP server administrator may have set a quota based either on 
4801 the total size of your mailbox (STORAGE), or the number of messages in 
4802 your mailbox (MESSAGES), or some other criteria. This will be reported
4803 to you indicating the type of quota, its total use and its limit.
4805 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
4806 1024 bytes. Each of the characters that you see in this help text is one 
4807 byte, and this help text is about 1 kibibyte in size. Small messages sent 
4808 by Alpine are normally less than 4 kibibytes in size (which includes 
4809 headers and text). Other email programs may send messages with bigger 
4810 sizes when they send messages, since they send plain text and an 
4811 alternative part in HTML.
4813 <P> A convenient way to save space for the STORAGE type of quota is by 
4814 deleting attachments. This is done on each individual message by pressing 
4815 the &quot;V&quot; command while reading the message text, then moving the cursor 
4816 to the position of the attachment that is to be deleted, then pressing
4817 &quot;D&quot; to delete such attachment, going back to reading the 
4818 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
4819 save the message in the same folder you are reading from. The saved 
4820 message will not have the attachment that was marked deleted. Now you
4821 can delete and expunge the message with the unwanted attachment.
4824 &lt;End of help on this topic&gt;
4825 </BODY>
4826 </HTML>
4827 ============= h_mail_thread_index =============
4828 <HTML>
4829 <HEAD>
4830 <TITLE>THREAD INDEX COMMANDS</TITLE>
4831 </HEAD>
4832 <BODY>                 
4833 <H1>THREAD INDEX COMMANDS</H1>
4834 <!--chtml if pinemode="function_key"-->
4835 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>
4836 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4837 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>
4838 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>
4839 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>
4840 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>
4841 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>
4842 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>
4843 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>
4844 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>
4845 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>
4846 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>
4847 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>
4848 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>
4849 <BR>
4850 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4851 -----------------------------<BR>
4852 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>
4853 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>
4854 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>
4855 <BR>
4856 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4857 -----------------------------<BR>
4858 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
4859 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
4860 <BR>
4861 <!--chtml else-->
4862 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>
4863 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4864 &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>
4865 &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>
4866 &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>
4867 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>
4868 &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>
4869 &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>
4870 &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>
4871 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>
4872 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4873 <BR>
4874 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
4875 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
4876 &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>
4877 &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>
4878 &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>
4879 &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>
4880 &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>
4881 &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>
4882 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
4883 <!--chtml endif-->
4886 NOTE:
4887 <OL>
4888  <LI>For help on a particular command, highlight the bold text associated
4889 with it above and hit Return.
4890  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4891 </OL>
4893 <H2>Description of the THREAD INDEX Screen</H2>
4895 The THREAD INDEX displays summary information from each
4896 thread (conversation) in the current folder.
4897 This is useful if you want to quickly
4898 scan new threads, or find a particular thread without having to go
4899 through the text of each message, or to quickly get rid of junk
4900 threads, etc.
4901 The current thread is always highlighted.
4902 Each line of the THREAD INDEX contains the following columns: <P>
4903 <DL>
4904  <DT>STATUS:</DT>
4905  <DD> The markings on the left side of the thread tell you about its
4906 status.  You may see one or more of the following codes on any given
4907 thread:
4908 <UL>
4909   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
4910   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
4911   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
4912   <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.
4913   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4914         message in the thread was sent to you as a cc:. This symbol will only show up if
4915         the feature
4916         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4917   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
4918         &quot;select&quot; command.  (Some systems may optionally allow selected
4919         messages to be denoted by the index line being displayed in bold
4920         type instead.)
4921   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4922       to mark at least one message in this thread as &quot;important&quot;.
4923 </UL></DD><P>
4925  <DT>THREAD NUMBER:</DT>
4926  <DD>Threads in a folder are numbered, from one through the number
4927 of threads in the folder, to help you know where you are in the folder.
4928 </DD><P>
4930  <DT>DATE STARTED:</DT>
4931  <DD>The date the thread was started. This is actually from the Date header
4932 of the first message in the thread. It doesn't take different time zones
4933 into account.</DD><P>
4935  <DT>WHO STARTED THE THREAD:</DT>
4936  <DD>This is usually the name of the sender of the first message in the thread, taken from
4937 the From header of the message.
4938 If there is no personal name given in that
4939 address, then the email address is used instead.
4940 If the message is from you (or from one of your
4941 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4942 then the recipient's name is shown here instead, with the characters
4943 &quot;To: &quot; inserted before the name.
4944 (The idea of this is that if you started the thread you would rather see who
4945 the mail was sent to instead of that the mail was from you.)
4946 In Newsgroups, if you are
4947 the sender and there are no email recipients, the newsgroup name will be
4948 listed after the &quot;To: &quot;.
4949 </DD><P>
4951  <DT>SIZE:</DT>
4952  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
4954  <DT>SUBJECT:</DT>
4955  <DD>As much of the thread's subject line as will fit on the screen.
4956 This is the subject of the first message in the thread.</DD>
4957 </DL>
4959 <P><UL>
4960 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4961 </UL>
4963 &lt;End of help on this topic&gt;
4964 </BODY>
4965 </HTML>
4966 ============= h_mail_index =============
4967 <HTML>
4968 <HEAD>
4969 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
4970 </HEAD>
4971 <BODY>                 
4972 <H1>MESSAGE INDEX COMMANDS</H1>
4973 <!--chtml if pinemode="function_key"-->
4974 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>
4975 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4976 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>
4977 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>
4978 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>
4979 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>
4980 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>
4981 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>
4982 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>
4983 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>
4984 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>
4985 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>
4986 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>
4987 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>
4988 <BR>
4989 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4990 -----------------------------<BR>
4991 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>
4992 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>
4993 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>
4994 <BR>
4995 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4996 -----------------------------<BR>
4997 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
4998 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>
4999 <BR>
5000 <!--chtml else-->
5001 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>
5002 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5003 &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>
5004 &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>
5005 &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>
5006 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>
5007 &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>
5008 &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>
5009 &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>
5010 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>
5011 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5012 Miscellaneous&nbsp;Operations<BR>
5013 ------------------------<BR>
5014 &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>
5015 &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>
5016 &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>
5017 &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>
5018 &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>
5019 &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>
5020 &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>
5021 &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>
5022 <!--chtml endif-->
5025 NOTE:
5026 <OL>
5027  <LI>For help on a particular command, highlight the bold text associated
5028 with it above and hit Return.
5029  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5030 </OL>
5032 <H2>Description of the MESSAGE INDEX Screen</H2>
5034 The MESSAGE INDEX displays summary information from each
5035 message in the current folder.
5036 This is useful if you want to quickly
5037 scan new messages, or find a particular message without having to go
5038 through the text of each message, or to quickly get rid of junk
5039 messages, etc.
5041 The current message is always highlighted
5042 and many commands operate on the current message.
5043 For example, the Delete command will delete the current message.
5044 If the folder is sorted by either Threads or OrderedSubject, then, depending
5045 on some of your configuration settings, a single line in the index may
5046 refer to an entire thread or to a subthread.
5047 If that is the case, then the commands that normally operate on the current
5048 message will operate on the thread or subthread instead.
5049 For example, the Delete command will delete the whole collapsed thread
5050 instead of just a single message.
5052 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5053 you can change this with the 
5054 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5055 in the SETUP CONFIGURATION screen): <P>
5056 <DL>
5057  <DT>STATUS:</DT>
5058  <DD> The markings on the left side of the message tell you about its
5059 status.  You may see one or more of the following codes on any given
5060 message:
5061 <UL>
5062   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5063          yet eXpunged the folder.
5064   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5065   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5066          to be answered.
5067   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5068          forward a message.
5069   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5070         directly to your account, your copy is not part of a cc: or a
5071         mailing list.
5072   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5073         message was sent to you as a cc:. This symbol will only show up if
5074         the feature
5075         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5076   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5077         &quot;select&quot; command.  (Some systems may optionally allow selected
5078         messages to be denoted by the index line being displayed in bold
5079         type.)
5080   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5081       to mark this message as &quot;important&quot;.
5082 </UL></DD><P>
5084  <DT>MESSAGE NUMBER:</DT>
5085  <DD>Messages in a folder are numbered, from one through the number
5086 of messages in the folder, to help you know where you are in the folder.
5087 These numbers are always in increasing order, even if you sort the folder
5088 in a different way.</DD><P>
5090  <DT>DATE SENT:</DT>
5091  <DD>The date the message was sent.  By default, messages are
5092 ordered by arrival time, not by date sent.  Most of the time, arrival time
5093 and date sent (effectively departure time) are similar.  Sometimes,
5094 however, the index will appear to be out of order because a message took a
5095 long time in delivery or because the sender is in a different time
5096 zone than you are. This date is just the date from the Date header
5097 field in the message.</DD><P>
5099  <DT>WHO SENT THE MESSAGE:</DT>
5100  <DD>This is usually the name of the sender of the message, taken from
5101 the From header of the message.
5102 If there is no personal name given in that
5103 address, then the email address is used instead.
5104 If the message is from you (or from one of your
5105 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5106 then the recipient's name is shown here instead, with the characters
5107 &quot;To: &quot; inserted before the name.
5108 (The idea of this is that if you sent the mail you would rather see who
5109 the mail was sent to instead of that the mail was from you.
5110 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5111 above.
5112 In particular, use the FROM token or the FROMORTONOTNEWS token
5113 in place of the FROMORTO token.)
5114 In Newsgroups, if you are
5115 the sender and there are no email recipients, the newsgroup name will be
5116 listed after the &quot;To: &quot;. </DD><P>
5118  <DT>SIZE:</DT>
5119  <DD>The number in parentheses is the number of characters in the message.
5120 It may have a suffix of K, M, or G which means the number should be
5121 multiplied by one thousand, one million, or one billion to get the
5122 size of the message.</DD><P>
5124  <DT>SUBJECT:</DT>
5125  <DD>As much of the message's subject line as will fit on the screen.</DD>
5126 </DL>
5128 <P><UL>
5129 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5130 </UL>
5132 &lt;End of help on this topic&gt;
5133 </BODY>
5134 </HTML>
5135 ============= h_mail_view ========================
5136 <HTML>
5137 <HEAD>
5138 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5139 </HEAD>
5140 <BODY>
5141 <H1>MESSAGE TEXT SCREEN</H1>
5142 <!--chtml if pinemode="function_key"-->
5143 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>
5144 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5145 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>
5146 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>
5147 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>
5148 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>
5149 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>
5150 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>
5151 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>
5152 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>
5153 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>
5154 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>
5155 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>
5156 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>
5157 <BR>
5158 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5159 ------------------------------<BR>
5160 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5161 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5162 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5163 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5164 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5165 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5166 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5167 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5168 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5169 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5170 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5171 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5172 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5173 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5174 <!--chtml else-->
5175 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5176 ---------------------------------<BR>
5177 <BR>
5178 &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>
5179 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>
5180 &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>
5181 &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>
5182 &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>
5183 &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>
5184 &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>
5185 &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>
5186 &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>
5187 <BR>
5188 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5189 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5190 &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>
5191 &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>
5192 &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>
5193 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>
5194 <BR>
5195 General&nbsp;Alpine&nbsp;Commands<BR>
5196 ---------------------<BR>
5197 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5198 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5199 &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>
5200 &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>
5201 &nbsp;&nbsp;&nbsp;&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>
5202 <!--chtml endif-->
5205 NOTE:
5206 <OL>
5207  <LI>For help on a particular command, highlight the bold text associated
5208 with it above and hit Return.
5209  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5210 </OL>
5212 <H2>Description of the MESSAGE TEXT Screen</H2>
5214 The top line of the view message screen displays status
5215 information about the currently open collection and folder and about the
5216 current message.  It shows the name of the collection in angle brackets
5217 and then the name of the folder.  The line also displays the number
5218 of messages in the folder, the number of the current message and the
5219 percentage of the current message that has been displayed on the screen.
5220 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5221 right corner.
5222 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5223 in the corner.
5226 NOTE: to rapidly move to the end of a message, hit the
5227 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5228 (or Ctrl-W) key followed
5229 by Ctrl-V.  Similarly,
5230 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5231 followed by Ctrl-Y will take you to the beginning of
5232 a message.
5234 <H2>Explanation of Alternate Character Sets</H2>
5236 Alpine attempts to stay out of the way so that it won't prevent you from
5237 viewing mail in any character set.  It will simply send the message to
5238 your display device.  If the device is capable of displaying the
5239 message as it was written it will do so.  If not, the display may be
5240 partially or totally incorrect.
5241 If the message contains characters that are not representable in your 
5242 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5243 variable in your configuration, then a warning message will be printed
5244 to your screen at the beginning of the message display.
5245 It is probably best to use UNIX Alpine in a terminal emulator
5246 capable of displaying UTF-8 characters.
5247 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5248 more information about character set settings.
5250 <P><UL>
5251 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5252 </UL>
5254 &lt;End of help on this topic&gt;
5255 </BODY>
5256 </HTML>
5257 ======= h_index_cmd_select =======
5258 <HTML>
5259 <HEAD>
5260 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5261 </HEAD>
5262 <BODY>
5263 <H1>Selecting: Select and WhereIs/Select</H1>
5265 Aggregate operations give you the ability to process a group of messages
5266 at once.  Acting on multiple messages requires two steps: (1) selecting a
5267 set of messages and then; (2) applying a command to that set. The first
5268 part is handled by the select command.  Select allows you to
5269 select messages based on their status (read, answered, etc.), contents,
5270 date, size, or keywords.
5271 You may also select based on one of your Rules or based on threads,
5272 and there are quick options to select a specific message or range of messages,
5273 to select the current message, or to select all messages.
5276 We describe the various selection criteria briefly:
5279 <DL>
5280 <DT>select All</DT>
5281 <DD> Marks all the messages in the folder as selected.
5282 </DD>
5284 <DT>select Cur</DT>
5285 <DD> Selects the currently highlighted message or currently highlighted
5286 set of messages if in a threaded view.
5287 </DD>
5289 <DT>select by Number</DT>
5290 <DD> Select by message number. This may be a comma-separated list instead or
5291 a single entry.
5292 Each element in the list may be either a single message number or a range
5293 of numbers with a dash between the lowest and highest member of the range.
5294 Some examples are 7 to select only message number 7; 2-5 to select messages
5295 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5296 The word &quot;end&quot; may be used as a substitute for the highest numbered
5297 message in the folder.
5298 If in a separate thread index where the numbers refer to threads instead of
5299 to messages, then you will be selecting all of the messages in the
5300 referenced threads instead of selecting by message number.
5301 </DD>
5303 <DT>select by Date</DT>
5304 <DD> Select by either the date stored in the Date headers of each message,
5305 or by the date when the messages arrived.
5306 This does not adjust for different time zones, but just checks to see what
5307 day the message was sent on.
5308 You may type in a date. If you do, the date should be in the form
5309 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5310 For example,
5311 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5313 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5314 If the date you want is close to the current date, it is probably
5315 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5316 is displayed, instead of typing in the date yourself.
5317 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5318 the date of the currently highlighted message. 
5320 There are six possible settings that are selected using the
5321 &quot;^W&nbsp;Toggle When&quot; command.
5322 Three of them select messages based on the Date headers.
5323 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5324 and &quot;SENT ON&quot;.
5325 SINCE is all messages with the selected date or later.
5326 BEFORE is all messages earlier than the selected date (not including the day
5327 itself).
5328 ON is all messages sent on the selected date.
5329 The other three select messages in the same way but they use the arrival
5330 times of the messages instead of the Date headers included in the messages.
5331 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5332 and &quot;ARRIVED ON&quot;.
5333 When you save a message from one folder to another the arrival time is
5334 preserved.
5335 </DD>
5337 <DT>select by Text</DT>
5338 <DD> Selects messages based on the message contents.
5339 This allows you to select a set of messages based on whether or not the
5340 message headers or message body contain specified text.
5341 You may look for text in the Subject, the From header,
5342 the To header, or the Cc header.
5343 You may also choose Recipient, which searches for the text in
5344 either the To or the Cc header;
5345 or Participant, which means To or Cc or From.
5346 Besides those specific header searches, you may also search the entire
5347 header and text of the message with &quot;All Text&quot;, or just the
5348 body of the message.
5350 To search for the absence of text, first type the &quot;! Not&quot; command
5351 before typing the specific type of text search.
5352 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5353 search for all messages that do not contain a particular word in their
5354 Subjects.
5356 If you choose a Subject search, you may use the subject from the current
5357 message by typing the &quot;^X Cur Subject&quot; command.
5358 You may then edit it further if you wish.
5359 For example, you might select the subject of a reply and edit the
5360 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5361 the original message being replied to.
5362 All of the other header searches allow you to use addresses from the
5363 headers of the current message if you want to.
5364 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5365 &quot;^W Cur Cc&quot;.
5366 In each case, if there is more than one address, only the first is offered.
5367 </DD>
5369 <DT>select by Status</DT>
5370 <DD> Selects messages based on their status.
5371 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5372 messages.
5373 Or, if you first type the &quot;! Not&quot; command, you get not New,
5374 or not Important, and so on.
5375 If you select Deleted messages, you will get all messages with their
5376 Deleted flag set.
5377 Likewise for Important messages, all messages that you have flagged as
5378 being Important with the
5379 <A HREF="h_common_flag">Flag</A> command.
5380 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5381 because they try to match what you see on the screen by default.
5382 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5383 and Unanswered.
5384 If you have looked at the message, or deleted it, or answered it; then it
5385 is not considered &quot;New &quot;.
5386 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5388 &quot;Answered&quot; is another one that is a little different.
5389 It means that the message has been Answered <EM>and</EM> is not deleted.
5390 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5391 the opposite of &quot;Answered&quot;!
5392 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5393 both Unanswered <EM>and</EM> not deleted.
5395 The other two types were added later because the special nature of the
5396 New flag was not what was wanted by all users.
5397 New does match what you see in the index by default, but if you use
5398 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5399 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5400 be exactly what you want.
5401 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5402 they are deleted or answered, and
5403 &quot;Recent&quot; selects all of the messages that have been added to
5404 the folder since you started this Alpine session.
5405 (That's not technically quite true. If there are multiple mail clients
5406 reading an IMAP mailbox, each message will be marked as Recent in only
5407 one of the client's sessions.)
5408 </DD>
5410 <DT>select by siZe</DT>
5411 <DD> Selects messages based on their size being smaller than or larger
5412 than the size you specify.
5413 The size is the number of bytes.
5414 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5415 the number.
5416 For example, 7K is the same as 7000.
5417 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5418 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5419 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5420 and Larger.
5421 </DD>
5423 <DT>select by Keyword</DT>
5424 <DD> Selects messages that either have or do not have
5425 (using the &quot;!&nbsp;Not&quot; command)
5426 a particular <A HREF="h_config_keywords">Keyword</A> set.
5427 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5428 command to select one from your list of keywords.
5430 <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.
5431 </DD>
5433 <DT>select by Rule</DT>
5434 <DD> Selects messages that either match or don't match
5435 (using the &quot;!&nbsp;Not&quot; command)
5436 one of the Rules you have defined.
5437 The most likely method of filling in the Rule is to use the
5438 &quot;^T&nbsp;To&nbsp;List&quot;
5439 command to select one of your Rules.
5440 All of the Rules you have defined will be in the list, including
5441 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5442 They may not all make sense for this purpose, but they are all there for
5443 flexibility.
5444 You might find it useful to define some rules solely for the purpose
5445 of being used by the Select command.
5446 There is a special category for such Rules. They are called Search Rules.
5448 Unfortunately, Alpine does not allow all possible Rules to be defined.
5449 For example, there is no logical OR operation.
5450 OR is accomplished in the Filter Rules or the other types of Rules by
5451 simply defining two rules, one that matches the first part of the OR
5452 and another that matches the second part.
5453 But you can't do that here, since you only have a single Rule to work with.
5454 Likewise, the order of Rules is usually important.
5455 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5456 a message, then that stops the search for a further match.
5457 This means that you may be confused if you try to use Select by Rule to
5458 check your Filter rules because the order is important when filtering but
5459 is not considered here.
5460 </DD>
5462 <DT>select by tHread</DT>
5463 <DD> Selects all of the messages in the current thread.
5464 </DD>
5465 </DL>
5467 After you have an initial selection, the next and subsequent selection
5468 commands modify the selection.
5469 The select command changes. It first gives
5470 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5471 &quot;unselect Current&quot;,
5472 &quot;Broaden selection&quot; (implements a logical OR), and
5473 &quot;Narrow selection&quot; (implements a logical AND).
5474 After you choose either Broaden or Narrow, you then choose one of the
5475 selection criteria listed above (by Text or Number or ...).
5476 You may use select as many times as you wish to get the selected set right.
5479 The WhereIs command has a feature (Ctrl-X) to
5480 select all the messages that match the WhereIs search. WhereIs searches
5481 through just the text that appears on the MESSAGE INDEX screen.
5482 This method is often slower than using the select command itself, unless the
5483 line you are looking for is not too far away in the index.
5486 The availability of the aggregate operations commands is determined by the
5487 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5488 Feature-List option in your Alpine
5489 configuration, which defaults to set.
5490 The features
5491 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5493 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5494 affect the behavior of the Select command.
5497 &lt;End of help on this topic&gt;
5498 </BODY>
5499 </HTML>
5500 ======= h_select_rule =======
5501 <HTML>
5502 <HEAD>
5503 <TITLE>Select: Rule</TITLE>
5504 </HEAD>
5505 <BODY>
5506 <H1>Select: Rule</H1>
5508 You are selecting messages that either match or don't match
5509 one of the Rules you have defined.
5510 You may either type the nickname of the Rule at the prompt, or use the
5511 &quot;^T&nbsp;To&nbsp;List&quot;
5512 command to select one of your Rules.
5513 All of the Rules you have defined will be in the list, including
5514 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5515 They may not all make sense for this purpose, but they are all there for
5516 flexibility.
5517 Rules may be added by using the Setup/Rules screen off of the main Alpine
5518 menu.
5520 Unfortunately, Alpine does not allow all possible Rules to be defined.
5521 For example, there is no logical OR operation.
5522 OR is accomplished in the Filter Rules or the other types of Rules by
5523 simply defining two rules, one that matches the first part of the OR
5524 and another that matches the second part.
5525 But you can't do that here, since you only have a single Rule to work with.
5526 Likewise, the order of Rules is usually important.
5527 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5528 a message, then that stops the search for a further match.
5529 This means that you may be confused if you try to use Select by Rule to
5530 check your Filter rules because the order is important when filtering but
5531 is not considered here.
5534 &lt;End of help on this topic&gt;
5535 </BODY>
5536 </HTML>
5537 ======= h_select_text =======
5538 <HTML>
5539 <HEAD>
5540 <TITLE>Select: Text</TITLE>
5541 </HEAD>
5542 <BODY>
5543 <H1>Select: Text</H1>
5545 You are selecting messages based on the contents of the message.
5546 This allows you to select a set of messages based on whether or not the
5547 message headers or message body contain specified text.
5548 You may look for text in the Subject, the From header,
5549 the To header, or the Cc header.
5550 You may also choose Recipient, which searches for the text in
5551 either the To or the Cc header;
5552 or Participant, which means either the To header, or the Cc header,
5553 or the From header.
5554 Besides those specific header searches, you may also search the entire
5555 header and text of the message with &quot;All Text&quot;, or just the
5556 body of the message with &quot;Body&quot;.
5558 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5559 before typing the specific type of text search.
5560 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5561 search for all messages that do not contain a particular word in their
5562 Subjects.
5564 If you choose a Subject search, you may use the subject from the current
5565 message by typing the &quot;^X Cur Subject&quot; command.
5566 You may then edit it further if you wish.
5567 For example, you might select the subject of a reply and edit the
5568 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5569 the original message being replied to.
5570 All of the other header searches allow you to use addresses from the
5571 headers of the current message if you want to.
5572 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5573 &quot;^W Cur Cc&quot;.
5574 In each case, if there is more than one address, only the first is offered.
5577 &lt;End of help on this topic&gt;
5578 </BODY>
5579 </HTML>
5580 ======= h_select_status =======
5581 <HTML>
5582 <HEAD>
5583 <TITLE>Select: Status</TITLE>
5584 </HEAD>
5585 <BODY>
5586 <H1>Select: Status</H1>
5588 You are selecting messages based on the status of the message.
5589 For example, whether or not the message has been marked Deleted or Important,
5590 or whether or not it has been Answered or is New.
5591 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5592 opposite: not Deleted, not Important, and so on.
5594 If you select Deleted messages, you will get all messages with their
5595 Deleted flag set.
5596 Likewise for Important messages, all messages that you have flagged as
5597 being Important with the
5598 <A HREF="h_common_flag">Flag</A> command.
5599 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5600 because they try to match what you see on the screen by default.
5601 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5602 and Unanswered.
5603 If you have looked at the message, or deleted it, or answered it; then it
5604 is not considered &quot;New &quot;.
5605 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5607 &quot;Answered&quot; is another one that is a little different.
5608 It means that the message has been Answered <EM>and</EM> is not deleted.
5609 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5610 the opposite of &quot;Answered&quot;!
5611 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5612 both Unanswered <EM>and</EM> not deleted.
5614 (The New and Answered options may seem counter-intuitive.
5615 The reason it is done this way is
5616 because, by default, a Deleted message will show up with the &quot;D&quot;
5617 symbol in the MAIL INDEX screen even if it is New or Answered.
5618 The Delete symbol overrides the New and Answered symbols, because you
5619 usually don't care about the message anymore once you've deleted it.
5620 Similarly, you usually only care about whether a message is Answered or
5621 not if it is not Deleted.
5622 Once it is Deleted you've put it out of your mind.)
5624 The other two options were added later because the special nature of the
5625 New flag was not what was wanted by all users.
5626 New does match what you see in the index by default, but if you use
5627 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5628 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5629 be exactly what you expect.
5630 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5631 they are deleted or answered, and
5632 &quot;Recent&quot; selects all of the messages that have been added to
5633 the folder since you started this Alpine session.
5634 (That's not technically quite true. If there are multiple mail clients
5635 reading an IMAP mailbox, each message will be marked as Recent in only
5636 one of the client's sessions.
5637 That behavior can be convenienent for some purposes, like filtering, but
5638 it isn't usually what you expect when selecting.)
5641 &lt;End of help on this topic&gt;
5642 </BODY>
5643 </HTML>
5644 ======= h_index_cmd_apply =======
5645 <HTML>
5646 <HEAD>
5647 <TITLE>Apply Command</TITLE>
5648 </HEAD>
5649 <BODY>
5650 <H1>Apply Command</H1>
5652 Apply
5653 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5654 is the second step of most aggregate operations.  Apply
5655 becomes active any time there is a defined set of selected messages.  The
5656 following commands can be applied to a selected message set: delete,
5657 undelete, reply, forward,
5658 <!--chtml if pinemode="os_windows"-->
5659 <!--chtml else--> 
5660 pipe,
5661 <!--chtml endif-->
5662 print, take address, save, export, bounce, and flag.
5665 The behavior of some of these commands in an aggregate sense is not easy to
5666 explain.  Try them out to see what they do.
5667 The feature
5668 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5669 affects the behavior of the Apply command, as does the feature
5670 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5673 &lt;End of help on this topic&gt;
5674 </BODY>
5675 </HTML>
5676 ======= h_index_cmd_zoom =======
5677 <HTML>
5678 <HEAD>
5679 <TITLE>ZoomMode Command</TITLE>
5680 </HEAD>
5681 <BODY>
5682 <H1>ZoomMode Command</H1>
5684 Another action you might want to take on a set of selected messages is to
5685 zoom in on them.  Like apply, zoom only becomes active when messages have
5686 been selected.
5687 ZoomMode
5688 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5689 is a toggle command that allows you to
5690 zoom-in (and only see the selected messages) and zoom-out (to see all
5691 messages in the folder).  Neither apply nor zoom removes the markings that
5692 define the selected set; you need to use a select command in order
5693 to do that.
5696 &lt;End of help on this topic&gt;
5697 </BODY>
5698 </HTML>
5699 ======= h_index_collapse_expand =======
5700 <HTML>
5701 <HEAD>
5702 <TITLE>Collapse/Expand Command</TITLE>
5703 </HEAD>
5704 <BODY>
5705 <H1>Collapse/Expand Command</H1>
5707 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5708 the folder is sorted by either Threads or OrderedSubject, and the
5709 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5710 is set to something other than &quot;none&quot;.
5711 By default, this command collapses or expands the subthread that starts at
5712 the currently highlighted message, if any.
5713 If the subthread is already collapsed, then this command expands it.
5714 If the subthread is expanded, then this command collapses it.
5715 If there are no more messages below the current message in the
5716 thread tree (that is, there are no replies to the current message) then
5717 this command does nothing.
5720 The behavior of this command is affected by the option
5721 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
5722 Normally, this command Collapses or Expands the subthread that
5723 starts at the currently highlighted message.
5724 If the above option is set, then this command Collapses or Expands the
5725 entire current thread instead of just the subthread.
5726 The current thread is simply the top-level thread that contains the
5727 current message.
5730 &lt;End of help on this topic&gt;
5731 </BODY>
5732 </HTML>
5733 ======= h_index_cmd_sort =======
5734 <HTML>
5735 <HEAD>
5736 <TITLE>Sort Command</TITLE>
5737 </HEAD>
5738 <BODY>
5739 <H1>Sort Command</H1>
5741 In Alpine's generic configuration, messages are presented in the order in
5742 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
5743 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
5744 You can also re-sort the folder on demand with the sort
5745 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
5746 command.
5747 Your sorting options are:
5749 <UL>
5750  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
5751  <LI> <A HREF="h_index_sort_date">D</A>ate
5752  <LI> <A HREF="h_index_sort_subj">S</A>ubject
5753  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
5754  <LI> t<A HREF="h_index_sort_thread">H</A>read
5755  <LI> <A HREF="h_index_sort_from">F</A>rom
5756  <LI> si<A HREF="h_index_sort_size">Z</A>e
5757  <LI> scor<A HREF="h_index_sort_score">E</A>,
5758  <LI> <A HREF="h_index_sort_to">T</A>o
5759  <LI> <A HREF="h_index_sort_cc">C</A>c
5760 </UL>
5763 The Reverse option will toggle the order the index is currently
5764 sorted by, but will not change the relative sort order.
5767 Sorting a folder does not actually rearrange the way the folder is saved,
5768 it just re-arranges how the messages are presented to you.  This means
5769 that Alpine has to do the work of sorting every time you change sort order.
5770 Sometimes, especially with PC-Alpine or with large folders, this could take
5771 a while.
5774 &lt;End of help on this topic&gt;
5775 </BODY>
5776 </HTML>
5777 ======= h_index_sort_default =======
5778 <HTML>
5779 <HEAD>
5780 <TITLE>SORT OPTION: Default</TITLE>
5781 </HEAD>
5782 <BODY>
5783 <H1>SORT OPTION: Default</H1>
5785 The <EM>Default</EM> sort option just means to use the default sort order
5786 set in the
5787 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
5788 option in Setup/Config.
5791 &lt;End of help on this topic&gt;
5792 </BODY>
5793 </HTML>
5794 ======= h_index_sort_arrival =======
5795 <HTML>
5796 <HEAD>
5797 <TITLE>SORT OPTION: Arrival</TITLE>
5798 </HEAD>
5799 <BODY>
5800 <H1>SORT OPTION: Arrival</H1>
5802 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5803 in the order that they exist in the folder.  This is usually the same as the
5804 order in which they arrived.  This option is comparable to not sorting
5805 the messages at all.
5808 &lt;End of help on this topic&gt;
5809 </BODY>
5810 </HTML>
5811 ======= h_index_sort_date =======
5812 <HTML>
5813 <HEAD>
5814 <TITLE>SORT OPTION: Date</TITLE>
5815 </HEAD>
5816 <BODY>
5817 <H1>SORT OPTION: Date</H1>
5819 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5820 according to the date and time they were
5821 sent.
5824 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
5825 identical to sorting by &quot;Arrival&quot;.
5828 &lt;End of help on this topic&gt;
5829 </BODY>
5830 </HTML>
5831 ======= h_index_sort_subj =======
5832 <HTML>
5833 <HEAD>
5834 <TITLE>SORT OPTION: Subject</TITLE>
5835 </HEAD>
5836 <BODY>
5837 <H1>SORT OPTION: Subject</H1>
5839 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5840 by subject. 
5843 Messages with the same subject are
5844 first grouped together, and then the groups of like-subject messages
5845 are arranged alphabetically.
5848 Alpine ignores leading &quot;Re:&quot; and
5849 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
5850 likeness and alphabetical order of subject lines.
5853 &lt;End of help on this topic&gt;
5854 </BODY>
5855 </HTML>
5856 ======= h_index_sort_ordsubj =======
5857 <HTML>
5858 <HEAD>
5859 <TITLE>SORT OPTION: OrderedSubject</TITLE>
5860 </HEAD>
5861 <BODY>
5862 <H1>SORT OPTION: OrderedSubject</H1>
5864 The <EM>OrderedSubject</EM> sort option arranges messages in the
5865 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
5866 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
5869 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
5870 messages by the date of the oldest message in the group.
5873 This sort method provides for pseudo threading of conversations within
5874 a folder.
5875 You may want to try sorting by Thread instead.
5878 &lt;End of help on this topic&gt;
5879 </BODY>
5880 </HTML>
5881 ======= h_index_sort_thread =======
5882 <HTML>
5883 <HEAD>
5884 <TITLE>SORT OPTION: Thread</TITLE>
5885 </HEAD>
5886 <BODY>
5887 <H1>SORT OPTION: Thread</H1>
5889 The <EM>Thread</EM> sort option arranges messages in the
5890 MESSAGE&nbsp;INDEX by grouping all messages that indicate
5891 they are part of a conversation (discussion thread) taking
5892 place within a mailbox or newsgroup.  This indication is
5893 based on information in the message's header -- specifically
5894 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
5897 &lt;End of help on this topic&gt;
5898 </BODY>
5899 </HTML>
5900 ======= h_index_sort_from =======
5901 <HTML>
5902 <HEAD>
5903 <TITLE>SORT OPTION: From</TITLE>
5904 </HEAD>
5905 <BODY>
5906 <H1>SORT OPTION: From</H1>
5908 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5909 by the name of the author of the message.
5912 Messages with the same author are grouped together. Groups of
5913 messages are then put into alphabetical order according to message
5914 author.
5917 &lt;End of help on this topic&gt;
5918 </BODY>
5919 </HTML>
5920 ======= h_index_sort_size =======
5921 <HTML>
5922 <HEAD>
5923 <TITLE>SORT OPTION: Size</TITLE>
5924 </HEAD>
5925 <BODY>
5926 <H1>SORT OPTION: Size</H1>
5928 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5929 by their relative sizes.
5932 &lt;End of help on this topic&gt;
5933 </BODY>
5934 </HTML>
5935 ======= h_index_sort_score =======
5936 <HTML>
5937 <HEAD>
5938 <TITLE>SORT OPTION: Score</TITLE>
5939 </HEAD>
5940 <BODY>
5941 <H1>SORT OPTION: Score</H1>
5943 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5944 by their scores.
5947 Messages with the same score are sorted in arrival order.
5948 Scores are something you create using the
5949 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
5952 &lt;End of help on this topic&gt;
5953 </BODY>
5954 </HTML>
5955 ======= h_index_sort_to =======
5956 <HTML>
5957 <HEAD>
5958 <TITLE>SORT OPTION: To</TITLE>
5959 </HEAD>
5960 <BODY>
5961 <H1>SORT OPTION: To</H1>
5963 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
5964 by the names of the recipients of the message.
5967 Messages with the same recipients are grouped together. Groups of
5968 messages are then put into alphabetical order according to message
5969 recipients.
5972 &lt;End of help on this topic&gt;
5973 </BODY>
5974 </HTML>
5975 ======= h_index_sort_cc =======
5976 <HTML>
5977 <HEAD>
5978 <TITLE>SORT OPTION: Cc</TITLE>
5979 </HEAD>
5980 <BODY>
5981 <H1>SORT OPTION: Cc</H1>
5983 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
5984 the names of the carbon copy addresses of the message.
5987 &lt;End of help on this topic&gt;
5988 </BODY>
5989 </HTML>
5990 ======= h_index_cmd_whereis =======
5991 <HTML>
5992 <HEAD>
5993 <TITLE>WhereIs Command</TITLE>
5994 </HEAD>
5995 <BODY>
5996 <H1>WhereIs Command</H1>
5998 The WhereIs
5999 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6000 command lets you search the MESSAGE INDEX for a word.
6001 It scans through whatever you see, usually the name of the author
6002 and the Subject line.
6003 WhereIs has special subcommands to let you find the beginning of the
6004 index (Ctrl-Y -- first message)
6005 or the end of the index (Ctrl-V -- last message).
6007 Note that WhereIs only searches through the visible text on the screen.
6008 For example, if only part of the Subject of a message is shown because it
6009 is long, then only the visible portion of the Subject is searched.
6010 Also note that WhereIs does not &quot;see&quot; the 
6011 &quot;X&quot; in column one of Index entries for selected messages
6012 so it can't be used to search for
6013 selected messages (use &quot;Zoom&quot; instead).
6015 If the feature
6016 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6017 is turned on,
6018 WhereIs can also be used as a quick way to select messages that match the
6019 string being searched for.
6020 Instead of typing carriage return to search for the next match, type
6021 Ctrl-X to select all matches.
6022 Once again, this only selects matches that are (or would be if the right
6023 index line was on the screen) visible.
6024 Truncated From lines or Subjects will cause matches to be missed.
6025 Although WhereIs is sometimes convenient for quick matching, the Select
6026 command is usually more powerful and usually faster.
6029 &lt;End of help on this topic&gt;
6030 </BODY>
6031 </HTML>
6032 ======= h_view_cmd_whereis =======
6033 <HTML>
6034 <HEAD>
6035 <TITLE>WhereIs Command</TITLE>
6036 </HEAD>
6037 <BODY>
6038 <H1>WhereIs Command</H1>
6040 The WhereIs
6041 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6042 command does a &quot;find in current message&quot; operation.  You
6043 type in text and Alpine will try to find it in the message you are
6044 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6045 or end (Ctrl-V) of the message.
6046 That is, to rapidly move to the end of a message, hit the 
6047 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6048 (or Ctrl-W) key followed
6049 by Ctrl-V.  Similarly,
6050 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6051 followed by Ctrl-Y will take you to the beginning of a message.
6054 &lt;End of help on this topic&gt;
6055 </BODY>
6056 </HTML>
6057 ======= h_view_cmd_hilite =======
6058 <HTML>
6059 <HEAD>
6060 <TITLE>View Hilite and Next item/Previous item</TITLE>
6061 </HEAD>
6062 <BODY>
6063 <H1>View Hilite and Next item/Previous item</H1>
6065 Sometimes messages may be in the form of formatted HTML text
6066 or they may contain URLs or Web server hostnames.
6067 When any of the features
6068 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6069 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6070 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6072 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6073 are enabled, Alpine will represent such selectable items in the text
6074 in bold typeface.  One of the selectable items will be displayed in
6075 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6076 Press the Return key to view the currently selected item.
6079 The Up and Down Arrows keys can be used to change the selected item
6080 (also see the feature
6081 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6082 If there are no selectable items in the direction of the arrow you
6083 pressed, Alpine will scroll the display in that direction until one
6084 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6085 items in the message text, use the Previous and Next item commands,
6086 <!--chtml if pinemode="function_key"-->F5 and F6
6087 <!--chtml else-->^B and ^F<!--chtml endif-->.
6090 &lt;End of help on this topic&gt;
6091 </BODY>
6092 </HTML>
6093 ======= h_view_cmd_viewattch =======
6094 <HTML>
6095 <HEAD>
6096 <TITLE>ViewAttch Command</TITLE>
6097 </HEAD>
6098 <BODY>
6099 <H1>ViewAttch Command</H1>
6102 The View/Save Attachment
6103 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6104 command allows you to handle MIME attachments to a message you have
6105 received.  Alpine shows you a list of the message attachments -- you just
6106 choose the attachment you want.  You may either view or save the
6107 selected attachment.
6110 Because many attachments require external programs for display, there
6111 is some system configuration that has to happen before you can
6112 actually display attachments.  Hopefully much of that will have been
6113 done already by your system administrator.  MIME configuration is
6114 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6115 on configuration in the
6116 <A HREF="h_news">release notes</A> for more information.)
6119 &lt;End of help on this topic&gt;
6120 </BODY>
6121 </HTML>
6122 ======= h_index_cmd_expunge =======
6123 <HTML>
6124 <HEAD>
6125 <TITLE>Expunge/Exclude Command</TITLE>
6126 </HEAD>
6127 <BODY>
6128 <H1>Expunge/Exclude Command</H1>
6130 Expunge/Exclude
6131 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6132 is the command Alpine uses to actually remove all messages
6133 marked for deletion.  With regular email files, expunge literally deletes
6134 the text from the current folder.  With newsgroups or shared mailboxes,
6135 you don't have permission to actually remove the message, so it is an
6136 exclude -- Alpine removes the message from your view of the folder even
6137 though it is not technically gone.
6139 <P> A selective expunge command is available in IMAP folders that support 
6140 the UID EXPUNGE extension in <A 
6141 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6142 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6143 as a subcommand of the apply command. If some selected messages are marked 
6144 deleted, then the apply command will offer the eXpunge command, which when 
6145 executed will only expunge those messages that are selected and deleted.
6147 <P> 
6148 Observe that the expunge command (when not used from the apply command) 
6149 will expunge/exclude all deleted messages from the folder, and so all 
6150 messages marked deleted will be expunged, regardless of if they are 
6151 selected or not. In other words, there is no protection against 
6152 potentially expunging more messages than only those that have been 
6153 selected and deleted.
6156 The configuration features
6157 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6159 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6160 affect the behavior of the Expunge command.
6163 &lt;End of help on this topic&gt;
6164 </BODY>
6165 </HTML>
6166 ======= h_common_compose =======
6167 <HTML>
6168 <HEAD>
6169 <TITLE>Compose Command</TITLE>
6170 </HEAD>
6171 <BODY>
6172 <H1>Compose Command</H1>
6174 The Compose command takes you into the Alpine message composer where you
6175 can start a new message for sending.  This is where you type in the
6176 message's text and specify its recipient list (the &quot;To:&quot;
6177 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6178 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6179 be attached to the message.
6182 When you type this command, Alpine will also automatically check for any
6183 interrupted (i.e., a message that was being composed when your modem
6184 or network connection was broken) or previously postponed messages and
6185 offer you a chance to continue working on those.
6188 <UL>   
6189 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6190 </UL><P>
6191 &lt;End of help on this topic&gt;
6192 </BODY>
6193 </HTML>
6194 ======= h_common_index =======
6195 <HTML>
6196 <HEAD>
6197 <TITLE>Message Index Command</TITLE>
6198 </HEAD>
6199 <BODY>
6200 <H1>Message Index Command</H1>
6202 The Index command takes you to the MESSAGE INDEX screen that displays a
6203 summary caption for each message in the currently-open folder. One
6204 message will be highlighted; this is the &quot;Current&quot; message.
6205 The message commands available from this screen (e.g. View, Reply,
6206 Forward, Delete, Print, Save, etc) apply to the current message.
6209 &lt;End of help on this topic&gt;
6210 </BODY>
6211 </HTML>
6212 ======= h_common_folders =======
6213 <HTML>
6214 <HEAD>
6215 <TITLE>Folder List Command</TITLE>
6216 </HEAD>
6217 <BODY>
6218 <H1>Folder List Command</H1>
6220 This Folder List command takes you to the FOLDER LIST screen that displays
6221 the names of all your message folders and allows you to view, rename,
6222 delete, and add folders.  You can open (view) a different folder than the
6223 one currently open by highlighting the desired one (using the arrow keys
6224 or their control-key equivalents) and pressing RETURN.
6227 If you have multiple folder collections defined (see the Help text for
6228 the FOLDER LIST screen to learn more about Collections), you may need
6229 to press Return to expand the collection and display all of the
6230 folders in it.
6233 &lt;End of help on this topic&gt;
6234 </BODY>
6235 </HTML>
6236 ======= h_main_addrbook =======
6237 <HTML>
6238 <HEAD>
6239 <TITLE>Address Book Command</TITLE>
6240 </HEAD>
6241 <BODY>
6242 <H1>Address Book Command</H1>
6244 This command, available only from the MAIN MENU, takes you
6245 to the ADDRESS BOOK management screen.  From here, your personal address
6246 book(s) may be updated.
6249 &lt;End of help on this topic&gt;
6250 </BODY>
6251 </HTML>
6252 ======= h_main_setup =======
6253 <HTML>
6254 <HEAD>
6255 <TITLE>Setup Command</TITLE>
6256 </HEAD>
6257 <BODY>
6258 <H1>Setup Command</H1>
6260 The Setup command, available only from the MAIN MENU, prompts you for
6261 one of several configuration screens, including the SETUP CONFIGURATION 
6262 screen, by which you may activate optional Alpine features.
6265 &lt;End of help on this topic&gt;
6266 </BODY>
6267 </HTML>
6268 ======= h_main_release_notes =======
6269 <HTML>
6270 <HEAD>
6271 <TITLE>Release Notes Command</TITLE>
6272 </HEAD>
6273 <BODY>
6274 <H1>Release Notes Command</H1>
6276 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6277 as well as pointers to further information such as history and legal notes.
6280 &lt;End of help on this topic&gt;
6281 </BODY>
6282 </HTML>
6283 ======= h_main_kblock =======
6284 <HTML>
6285 <HEAD>
6286 <TITLE>Keyboard Lock Command</TITLE>
6287 </HEAD>
6288 <BODY>
6289 <H1>Keyboard Lock Command</H1>
6291 This command allows your Alpine session to be protected
6292 during a temporary absence from your terminal.
6295 &lt;End of help on this topic&gt;
6296 </BODY>
6297 </HTML>
6298 ======= h_main_journal =======
6299 <HTML>
6300 <HEAD>
6301 <TITLE>Journal Command</TITLE>
6302 </HEAD>
6303 <BODY>
6304 <H1>Journal Command</H1>
6306 This command displays a list of all the status messages Alpine has
6307 displayed (on the third line from the bottom of the screen). This may
6308 be useful if a message disappeared before you had a chance to read it.
6311 &lt;End of help on this topic&gt;
6312 </BODY>
6313 </HTML>
6314 ======= h_common_role =======
6315 <HTML>
6316 <HEAD>
6317 <TITLE>Role Command</TITLE>
6318 </HEAD>
6319 <BODY>
6320 <H1>Role Command</H1>
6322 The Role command is similar to the Compose command except that it starts
6323 off by letting you select a <A HREF="h_rules_roles">role</A>
6324 to be used for the composition.
6325 You may set up alternate roles by using Setup/Rules/Roles.
6328 &lt;End of help on this topic&gt;
6329 </BODY>
6330 </HTML>
6331 ======= h_common_conditional_cmds =======
6332 <HTML>
6333 <HEAD>
6334 <TITLE>Conditional Commands</TITLE>
6335 </HEAD>
6336 <BODY>
6337 <H1>Conditional Commands</H1>
6339 The presence or absence of certain commands, particularly in the
6340 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6341 whether or not specific features are set in your Alpine configuration.  
6342 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6343 Alpine's MAIN MENU.)  To see if a desired command's availability is
6344 conditioned on a feature setting, see the command's help text (highlight
6345 the phrase associated with the command and hit Return).
6348 Also note that some
6349 commands may be administratively disabled by your system manager;
6350 if they don't work, please check with your local help desk.
6353 <UL>   
6354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6355 </UL><P>
6356 &lt;End of help on this topic&gt;
6357 </BODY>
6358 </HTML>
6359 ======= h_common_pipe =======
6360 <HTML>
6361 <HEAD>
6362 <TITLE>Pipe Command</TITLE>
6363 </HEAD>
6364 <BODY>
6365 <H1>Pipe Command</H1>
6367 Pipe
6368 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6369 allows you to send a message to a specified Unix command for external
6370 processing.
6371 This command's availability is controlled by the
6372 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6373 feature.
6374 By default, the processed text of the message is sent to the command
6375 you specify and the output is captured by Alpine and shown to you.
6376 When you run the pipe command, there are some sub-commands which may be
6377 used to alter this behavior.
6378 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6381 &lt;End of help on this topic&gt;
6382 </BODY>
6383 </HTML>
6384 ======= h_common_goto =======
6385 <HTML>
6386 <HEAD>
6387 <TITLE>Goto Command</TITLE>
6388 </HEAD>
6389 <BODY>
6390 <H1>Goto Command</H1>
6392 Goto
6393 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6394 is the command that lets you bypass Alpine's folder selection screens
6395 and jump directly to a new folder.  You can select any folder in the
6396 world: one in your current collection, one in a different collection or
6397 one in a collection you've never even used before.
6400 Alpine will help you as much as possible to narrow in on the folder you want.
6401 However, if the folder is outside of your defined collections, you are
6402 going to have to enter the exact folder location using the correct
6403 <A HREF="h_valid_folder_names">syntax</A>
6404 for a remote folder and/or fully-qualified path name.
6407 &lt;End of help on this topic&gt;
6408 </BODY>
6409 </HTML>
6410 ======= h_common_nextnew =======
6411 <HTML>
6412 <HEAD>
6413 <TITLE>NextNew Command</TITLE>
6414 </HEAD>
6415 <BODY>
6416 <H1>NextNew Command</H1>
6418 When you press the TAB key, Alpine advances to the next
6419 &quot;interesting&quot; message.
6420 This will be the next message you have not seen before, or the next message
6421 you have flagged Important, whichever comes first.
6422 Unread messages that have been deleted are not considered interesting.
6423 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6424 articles after you have read them if you want to remove them from future
6425 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6426 more information.)
6429 The NextNew command is affected by the feature
6430 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6431 which causes Alpine to only consider Unread messages interesting, not messages
6432 flagged Important.
6435 This command behaves a little differently when it finds there are no more
6436 interesting messages left in the current folder.
6437 If the current folder is one of your Incoming Message Folders
6438 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6439 or it is a newsgroup, then Alpine will try to find the next folder or
6440 newsgroup that contains <EM>Recent</EM> messages and will ask you
6441 if you want to open that folder.
6442 This behavior may be modified by using the
6443 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6444 feature that causes Alpine to look for Unseen messages instead of Recent
6445 messages.
6446 The NextNew command's behavior is also affected by the configuration features
6447 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6449 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6452 &lt;End of help on this topic&gt;
6453 </BODY>
6454 </HTML>
6455 ======= h_common_jump =======
6456 <HTML>
6457 <HEAD>
6458 <TITLE>Jump Command</TITLE>
6459 </HEAD>
6460 <BODY>
6461 <H1>Jump Command</H1>
6463 This is Alpine's way of allowing you to go straight to a specific message.
6464 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6465 configured such that typing in any number automatically jumps you to that
6466 message 
6467 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6468 in the SETUP CONFIGURATION).
6471 &lt;End of help on this topic&gt;
6472 </BODY>
6473 </HTML>
6474 ======= h_common_flag =======
6475 <HTML>
6476 <HEAD>
6477 <TITLE>Flag Command</TITLE>
6478 </HEAD>
6479 <BODY>
6480 <H1>Flag Command</H1>
6482 Flag
6483 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6484 is the command that allows users to manipulate the status flags that
6485 appear on the left side of the MESSAGE INDEX screen.  The most common
6486 use of this is to mark a message as important. This is something of a
6487 note to yourself to get back to that message.  You may also use the
6488 flag command to set (or unset) the flags that indicate that a message
6489 is new, answered, deleted, or forwarded.<P>
6491 Provided the mail server supports it,
6492 you may also manipulate user-defined keywords
6493 for a message using the flag command.
6494 These keywords will be available if you use the Flag Details screen that you
6495 can get to after typing the
6496 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6497 command.
6498 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6499 which are always present.
6500 You may add new keywords by using the Add KW command from the Flag Details screen
6501 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6503 The availability of the flag command is determined by the
6504 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6505 feature in your Alpine configuration. Also, it is possible that Flag could be
6506 administratively disabled by your system manager; if it doesn't work,
6507 please check with your local help desk before reporting a bug.
6508 The behavior of the flag command may be modified by the
6509 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6510 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6513 &lt;End of help on this topic&gt;
6514 </BODY>
6515 </HTML>
6516 ======= h_common_hdrmode =======
6517 <HTML>
6518 <HEAD>
6519 <TITLE>HdrMode Command</TITLE>
6520 </HEAD>
6521 <BODY>
6522 <H1>HdrMode Command</H1>
6524 Every email message comes with some header lines that you normally
6525 don't see (and don't want to see).
6526 These include anywhere from 3-20 lines (or more) added by the
6527 Internet mail transport system to record the route your message took,
6528 for diagnostic purposes.
6529 These are normally of no import and simply
6530 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6531 This also includes other non-standard headers the message may contain.
6532 If you want to see these headers, there is a way to reveal them.
6535 The Header Mode
6536 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6537 command is a toggle that controls Alpine's handling of these header
6538 lines.  Normally, full headers is &quot;off&quot; and you only see a
6539 few lines about who a message is to and who it is from.  When you
6540 press
6541 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6542 to turn full headers on, Alpine will show you
6543 the normal header lines as well as delivery headers, comment headers,
6544 MIME headers, and any other headers present.
6547 Several different Alpine commands honor the header mode -- it affects how
6548 messages are displayed, how they appear in forward and reply email, how
6549 they are printed, how they are saved, and how they are exported.
6550 <!--chtml if pinemode="os_windows"-->
6551 <!--chtml else--> 
6552 The pipe command is also affected.
6553 <!--chtml endif-->
6556 The presence or absence of the Header Mode command is determined by the
6557 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6558 Feature-List option in your Alpine configuration.
6561 If you have also turned on the
6562 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6563 option then the HdrMode command actually rotates through three states
6564 instead of just two.
6565 The first is the normal view with long quotes suppressed.
6566 The second is the normal view but with the long quotes included.
6567 The last enables the display of all headers in the message.
6568 When using Export, Pipe, Print, Forward, or Reply the quotes are
6569 never suppressed, so the first two states are identical.
6572 The behavior of the Header Mode command may be altered slightly by
6573 turning on the
6574 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6575 Feature-List option in your Alpine configuration.
6576 In particular, it will cause the Header Mode to be persistent when moving
6577 from message to message instead of resetting to the default for each message.
6580 <UL>   
6581 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6582 </UL><P>
6583 &lt;End of help on this topic&gt;
6584 </BODY>
6585 </HTML>
6586 ======= h_common_print =======
6587 <HTML>
6588 <HEAD>
6589 <TITLE>Print Command</TITLE>
6590 </HEAD>
6591 <BODY>
6592 <H1>Print Command</H1>
6594 The Print
6595 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6596 command allows you to print a copy of a message.
6597 There are many SETUP CONFIGURATION features that affect the
6598 Print command, including
6599 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6600 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6601 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6602 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6603 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6604 You set up for printing by using the Printer option of the Setup command
6605 on the MAIN MENU.
6609 &lt;End of help on this topic&gt;
6610 </BODY>
6611 </HTML>
6612 ======= h_common_take =======
6613 <HTML>
6614 <HEAD>
6615 <TITLE>TakeAddr Command</TITLE>
6616 </HEAD>
6617 <BODY>
6618 <H1>TakeAddr Command</H1>
6621 With the Take Address
6622 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6623 command, you can extract email addresses from an
6624 incoming message and save them in an address book.  This is an easy way
6625 to add to your address book and avoid having to remember the email
6626 addresses of the people who write to you.
6629 If the message is just to you individually, then you will only need to
6630 provide a nickname.  If the message contains more than one email address,
6631 then you will see an address
6632 selection screen that lets you choose the address you want to save into
6633 your address book, or lets you choose several of them add to a
6634 personal distribution list.
6637 Once you've added an entry to your address book, you can use it from the
6638 message composer by typing the nickname of the entry into one of the
6639 header fields (for example, into the To: field), or you can use ^T from
6640 the header field to select the entry from your address book.
6643 If the configuration feature
6644 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6645 is set, the behavior of the Take command is altered slightly.
6648 &lt;End of help on this topic&gt;
6649 </BODY>
6650 </HTML>
6651 ======= h_ge_import =======
6652 <HTML>
6653 <HEAD>
6654 <TITLE>Import File Selection</TITLE>
6655 </HEAD>
6656 <BODY>
6657 <H1>Import File Selection</H1>
6659 You are importing a file that you previously
6660 exported from Alpine.
6661 You are now being asked for the name of that file.
6662 The easiest way to select a file is probably with the &quot;^T&quot;
6663 &quot;To Files&quot; command.
6664 Alternatively, you may type in a file name.
6665 It may be an absolute pathname.
6666 Otherwise, it is a file located in your home directory
6667 or current working directory
6668 <!--chtml if pinemode="running"-->
6669 (which, at least for your current Alpine &quot;session,&quot; 
6670 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6671 <!--chtml endif-->, depending on the
6672 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6673 In any case, you finish by typing a carriage return to accept the
6674 file name that is displayed.
6675 When the feature
6676 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6677 is turned on you may use TAB to complete partially typed in names.
6679 You may cancel the import operation by typing &quot;^C&quot; after exiting
6680 this help.
6682 &lt;End of help on this topic&gt;
6683 </BODY>
6684 </HTML>
6685 ======= h_ge_allparts =======
6686 <HTML>
6687 <HEAD>
6688 <TITLE>Export Message File Selection</TITLE>
6689 </HEAD>
6690 <BODY>
6691 <H1>Export Message File Selection</H1>
6693 You are Exporting a message from an Alpine mail folder
6694 to a plain text file.
6695 You also have the option of exporting all of the attachments associated
6696 with the message.
6697 You are now being asked for the name of the file to export <EM>to</EM>.
6698 The easiest way to select a file is probably with the &quot;^T&quot;
6699 &quot;To Files&quot; subcommand.
6700 After returning from that subcommand you will still be allowed to
6701 edit the name you have selected.
6702 Alternatively, you may type in a file name.
6703 It may be an absolute pathname.
6704 Otherwise, it is a file located in your home directory
6705 or current working directory
6706 <!--chtml if pinemode="running"-->
6707 (which, at least for your current Alpine &quot;session,&quot; 
6708 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6709 <!--chtml endif-->, depending on the
6710 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6711 In any case, you finish by typing a carriage return to accept the
6712 file name that is displayed.
6713 When the feature
6714 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6715 is turned on you may use TAB to complete partially typed in names.
6717 The message you are exporting appears to have some attachments.
6718 If you wish to save <EM>all</EM> of the attachments at once,
6719 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
6720 saving of the attachments.
6721 You may turn it back off by typing &quot;^P&quot; again, which will now
6722 be labeled &quot;NoAllParts&quot; instead.
6723 If you want to save the parts the command displayed should be
6724 &quot;NoAllParts&quot;!
6725 When you choose to save attachments like this, the attachments will be saved
6726 in a newly created directory.
6727 That directory will have the same name as the file name you choose here,
6728 with the letters &quot;.d&quot; appended.
6729 If that directory already exists, then the letters &quot;.d_1&quot; will
6730 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
6731 is found.
6732 For example, if you select the file name
6734 <CENTER><SAMP>filename</SAMP></CENTER>
6736 to export the message to, then the directory used for the attachments will be
6738 <CENTER><SAMP>filename.d</SAMP></CENTER>
6740 or perhaps
6742 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
6744 The attachments will then be put into files inside that directory.
6745 The names for the attachment files will be derived from the attachments
6746 if possible.
6747 This is done in the same way as the default values are derived if you
6748 save them one at a time.
6749 (The &quot;filename&quot; parameter from the Content-Disposition header
6750 is the first choice. If that doesn't exist, the &quot;name&quot;
6751 parameter from the Content-Type header is used.)
6752 If a name for a particular attachment is not available, then the
6753 part number of the attachment is used, with the characters &quot;part_&quot;
6754 prepended.
6755 An example of that would be
6757 <CENTER><SAMP>part_2.1</SAMP></CENTER>
6759 If you want to save only some of the attachments or if you want more control
6760 over the directory and filename where an attachment is saved you may
6761 cancel out of this command and View the attachment list.
6762 From there you can save each attachment individually.
6764 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6765 this help.
6767 &lt;End of help on this topic&gt;
6768 </BODY>
6769 </HTML>
6770 ======= h_ge_export =======
6771 <HTML>
6772 <HEAD>
6773 <TITLE>Export File Selection</TITLE>
6774 </HEAD>
6775 <BODY>
6776 <H1>Export File Selection</H1>
6778 You are Exporting or Saving something from within the Alpine world
6779 (a message, an attachment, etc.)
6780 to a plain text file.
6781 You are now being asked for the name of the file to export <EM>to</EM>.
6782 The easiest way to select a file is probably with the &quot;^T&quot;
6783 &quot;To Files&quot; subcommand.
6784 After returning from that subcommand you will still be allowed to
6785 edit the name you have selected.
6786 Alternatively, you may type in a file name.
6787 It may be an absolute pathname.
6788 Otherwise, it is a file located in your home directory
6789 or current working directory
6790 <!--chtml if pinemode="running"-->
6791 (which, at least for your current Alpine &quot;session,&quot; 
6792 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6793 <!--chtml endif-->, depending on the
6794 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6795 In any case, you finish by typing a carriage return to accept the
6796 file name that is displayed.
6797 When the feature
6798 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6799 is turned on you may use TAB to complete partially typed in names.
6801 If the object you are exporting is a message with some attachments,
6802 you may wish to save all of the attachments by typing the &quot;^P&quot;
6803 &quot;AllParts&quot; command to turn on saving of the attachments.
6804 This subcommand will only be visible if the message actually has attachments.
6805 You may also View the attachment list and save individual attachments from
6806 there.
6808 If you are SAVING a text part (text/plain, text/html, etc.) you can use
6809 the Control-R subcommand to toggle if saving will be done in binary mode,
6810 meaning that the attachment will be decoded, but will not be transformed
6811 to UTF-8 for further processing (either in internal filters, or user
6812 supplied filters.) This is useful in case you either want to preserve
6813 the text as it was encoded originally to you, or the attachment was
6814 incorrectly attached (the attachment is not of text type) and you need
6815 the original text to process the attachment.
6817 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6818 this help.
6820 &lt;End of help on this topic&gt;
6821 </BODY>
6822 </HTML>
6823 ======= h_common_save =======
6824 <HTML>
6825 <HEAD>
6826 <TITLE>Save and Export Commands</TITLE>
6827 </HEAD>
6828 <BODY>
6829 <H1>Save and Export Commands</H1>
6831 Save
6832 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
6833 and Export
6834 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
6835 are the two alternatives Alpine gives you to keep a copy of the message
6836 you are reading. If you want to keep the message within Alpine's email
6837 world, use &quot;Save&quot;; if you want to use the message in another
6838 program, use &quot;Export&quot;.
6841 When you Save a message, it is put into an existing folder or into a new
6842 folder in one of your existing folder collections.  The message stays in
6843 email format and can be read by Alpine again.  Alpine may use a special format
6844 for its mail folders -- never edit an Alpine folder by hand or with any
6845 program other than Alpine.  The exact behavior of the Save command can be
6846 configured with the
6847 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
6848 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
6849 and 
6850 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
6851 feature list settings.
6852 The name of the folder offered as a default is controlled by the option
6853 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
6856 When you use Export, the message is placed in a plain text file in your
6857 home directory 
6858 <!--chtml if pinemode="running"-->
6859 (which, in the present configuration of your system, is
6860  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6861 <!--chtml endif-->
6862 or current working directory
6863 <!--chtml if pinemode="running"-->
6864 (which, at least for your current Alpine &quot;session,&quot; 
6865 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6866 <!--chtml endif-->, depending on the
6867 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
6868 configuration setting.  In the normal case, only minimal
6869 headers are exported with the message; however, if the full header mode 
6870 (whose availability may be disabled  by setting the feature 
6871 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6872 in SETUP CONFIGURATION) is
6873 toggled on, then complete headers are exported along with the message
6874 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
6875 defined, they may affect the contents of the exported file.)
6878 &lt;End of help on this topic&gt;
6879 </BODY>
6880 </HTML>
6881 ======= h_common_bounce =======
6882 <HTML>
6883 <HEAD>
6884 <TITLE>Bounce Command</TITLE>
6885 </HEAD>
6886 <BODY>
6887 <H1>Bounce Command</H1>
6889 The Bounce 
6890 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
6891 command allows you to re-send, or &quot;remail&quot;, a
6892 message, as if you were never in the loop.  It is analogous to crossing
6893 out your address on a postal letter, writing a different address on the
6894 envelope, and putting it into the mailbox. Bounce is used primarily to
6895 redirect email that was sent to you in error.
6896 Also, some owners of email
6897 lists need the bounce command to handle list traffic.
6898 Bounce is not anonymous.
6899 A ReSent-From header is added to the message so that the recipient may
6900 tell that you Bounced it to them.
6903 The presence or absence of the Bounce command is determined by the
6904 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
6905 feature in your Alpine configuration.
6906 The feature
6907 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
6908 affects the behavior of the Bounce command.
6909 Also, it is possible that Bounce could be
6910 administratively disabled by your system manager; if it doesn't work,
6911 please check with your local help desk before reporting a bug.
6914 &lt;End of help on this topic&gt;
6915 </BODY>
6916 </HTML>
6917 ======= h_common_reply =======
6918 <HTML>
6919 <HEAD>
6920 <TITLE>Reply and Forward Commands</TITLE>
6921 </HEAD>
6922 <BODY>
6924 <H1>Reply and Forward Commands</H1>
6926 Replying 
6927 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
6928 and Forwarding 
6929 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
6930 are your two alternatives for following up on the
6931 message you are reading.  You would use reply if you want to get email
6932 back to the author of the message and/or the other people who have
6933 already seen it.  You use forward if you want somebody new to see the
6934 message.
6937 In the normal case, the only thing that you must supply when forwarding a
6938 message is the name/email address of the new recipient.
6939 Alpine will include the text of the forwarded message.
6940 Alpine will also include any attachments to the message.
6941 There is space above the forwarded text for you to include additional comments.
6944 When replying, you usually have to answer some questions.
6945 If the message is to multiple people and/or specified with a Reply-To: header,
6946 then you will have to decide who should get the reply.
6947 You also need to decide whether or not to include the previous
6948 message in your reply.
6949 Some of this is configurable.
6950 Specifically, see the
6951 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
6952 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
6953 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
6955 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
6956 configuration features.
6959 Both the Reply and Forward commands react to the full header mode toggle.
6960 If the full header mode is on, then all the header and delivery lines are
6961 included with the text of the message in your reply/forward.
6964 Other configuration features that affect the Reply command are
6965 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
6966 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
6967 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
6970 &lt;End of help on this topic&gt;
6971 </BODY>
6972 </HTML>
6973 ======= h_common_delete =======
6974 <HTML>
6975 <HEAD>
6976 <TITLE>Delete and Undelete Commands</TITLE>
6977 </HEAD>
6978 <BODY>
6979 <H1>Delete and Undelete Commands</H1>
6981 Delete 
6982 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
6983 and Undelete 
6984 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
6985 allow you to change the Deleted flag for the current message.
6986 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
6987 removes the mark.
6988 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
6989 at the left hand edge of the index line.
6990 When viewing a deleted message, the letters &quot;DEL&quot; will be present
6991 in the upper right hand corner of the screen.
6992 Delete simply <EM>marks</EM> a message Deleted, it does not actually
6993 get rid of the message.
6994 The eXpunge command (available from the MESSAGE INDEX screen) actually
6995 removes all of the deleted messages in a folder.
6996 Once a message is eXpunged, it can't be retrieved.
6999 The Delete command is affected by the setting of the configuration feature
7000 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7003 &lt;End of help on this topic&gt;
7004 </BODY>
7005 </HTML>
7006 ======= h_common_postpone =======
7007 <HTML>
7008 <HEAD>
7009 <TITLE>Postpone Command</TITLE>
7010 </HEAD>
7011 <BODY>
7012 <H1>Postpone Command</H1>
7014 The postpone
7015 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7016 command allows you to temporarily stop working on the current
7017 message so you may read
7018 other messages or compose another message.  When you want to resume a
7019 message later, start to compose and answer &quot;yes&quot; to the
7020 &quot;Continue postponed composition?&quot; question.  You may
7021 postpone as many messages as you like.
7024 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7025 in the Setup/Config screen, then the Postpone command will prompt you for
7026 the folder in which to store your outgoing message.
7029 &lt;End of help on this topic&gt;
7030 </BODY>
7031 </HTML>
7032 ======= h_compose_cancel =======
7033 <HTML>
7034 <HEAD>
7035 <TITLE>Cancel Command</TITLE>
7036 </HEAD>
7037 <BODY>
7038 <H1>Cancel Command</H1>
7040 Cancel
7041 <!--chtml if pinemode="function_key"-->
7042 (F2)
7043 <!--chtml else-->
7044 (^C) 
7045 <!--chtml endif-->
7047 The Cancel command returns you to Alpine's normal mail processing and
7048 causes the message currently under composition to be thrown out.
7049 The message text <EM>will be lost</EM>.
7052 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
7053 will be preserved in the file named
7054 <!--chtml if pinemode="os_windows"-->
7055 &quot;DEADLETR&quot;.
7056 <!--chtml else-->
7057 &quot;dead.letter&quot; in your home directory.
7058 <!--chtml endif-->
7059 If you unintentionally cancel a message, look there for its text.
7062 &lt;End of help on this topic&gt;
7063 </BODY>
7064 </HTML>
7065 ======= h_compose_addrcomplete =======
7066 <HTML>
7067 <HEAD>
7068 <TITLE>Address Completion</TITLE>
7069 </HEAD>
7070 <BODY>
7071 <H1>Address Completion</H1>
7073 When entering addresses in the address fields of the composer (To, Cc, etc.)
7074 the TAB key may be used to help complete the address.
7075 Type a partial nickname and tap the TAB key to complete the typing.
7076 The unambiguous part of the name will be filled in automatically.
7077 Typing TAB twice in succession will bring up a selection list of possibilities,
7078 making it easy to find and choose the correct address.
7081 The matching algorithm is rather ad hoc.
7082 The search starts with a search of your address book.
7083 It counts as a match if the nickname, address, or fullname field of an
7084 entry begins with the text typed in so far. It is also a match if
7085 a later word in the fullname (for example, the middle name or last name)
7086 begins with the entered text.
7088 Next comes an LDAP search.
7089 The search will happen for any servers that have the
7090 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7091 feature set. You can set or unset the feature for each server independently
7092 in the Setup/Directory screen.
7094 Finally, if you are replying to or forwarding a message, that message is
7095 searched for likely candidate addresses that match the typed-in text.
7098 &lt;End of help on this topic&gt;
7099 </BODY>
7100 </HTML>
7101 ======= h_compose_richhdr =======
7102 <HTML>
7103 <HEAD>
7104 <TITLE>Rich Header Command</TITLE>
7105 </HEAD>
7106 <BODY>
7107 <H1>Rich Header Command</H1>
7109 The Rich Header command allows you to toggle between the list of 
7110 all message headers available for editing and those that are most
7111 common.
7114 Use this toggle to expose headers that are not normally visible by
7115 default.
7116 This set usually includes the
7117 &quot;Bcc:&quot;,
7118 &quot;Fcc:&quot;,
7119 &quot;Lcc:&quot;,
7120 and &quot;Newsgroups&quot;
7121 headers.
7122 If you are posting to a newsgroup the set of defaults is a little different.
7123 Obviously, in that case, the Newsgroups header is of interest so is not
7124 hidden.
7125 For news posting the hidden set includes the
7126 &quot;To:&quot;,
7127 &quot;Cc:&quot;,
7128 &quot;Bcc:&quot;,
7129 &quot;Fcc:&quot;,
7130 and &quot;Lcc:&quot;
7131 headers.
7132 You won't normally want to edit these, which is why they are hidden,
7133 but it is sometimes useful to be able to set them manually.
7136 The default sets of headers listed above can be altered.
7137 Any header that you have added to the
7138 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7139 option, but not to the
7140 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7141 option will appear when you use the Rich Headers command to
7142 make the Rich Headers visible.
7143 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7144 even without toggling the Rich Headers command.)
7147 &lt;End of help on this topic&gt;
7148 </BODY>
7149 </HTML>
7150 ======= h_compose_send =======
7151 <HTML>
7152 <HEAD>
7153 <TITLE>Send Command</TITLE>
7154 </HEAD>
7155 <BODY>
7156 <H1>Send Command</H1>
7158 The Send command
7159 <!--chtml if pinemode="function_key"-->
7160 (F3)
7161 <!--chtml else-->
7162 (^X) 
7163 <!--chtml endif-->
7164 tells Alpine you are finished composing.
7165 Before actually sending it, though, Alpine will ask you to confirm 
7166 your intention, and, at the same time, redisplayed the message text
7167 with the recipients at the top of the screen to give you the opportunity
7168 to review and verify that the message is addressed to the people
7169 you intended.
7171 If the feature
7172 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7173 then this confirmation prompt and any options it allows are skipped.
7176 This confirmation prompt may also offer, depending
7177 on your particular Setup/Config, options allowing you to set
7178 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7179 include attachments in the &quot;Fcc&quot; (if you had previously
7180 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7181 observe details of the
7182 <A HREF="h_config_verbose_post">message submission process</A>,
7183 choose the filter through which the
7184 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7185 or turn of flowed text generation.
7188 &lt;End of help on this topic&gt;
7189 </BODY>
7190 </HTML>
7191 ======= h_compose_markcutpaste =======
7192 <HTML>
7193 <HEAD>
7194 <TITLE>Mark, Cut and Paste Commands</TITLE>
7195 </HEAD>
7196 <BODY>
7197 <H1>Mark, Cut and Paste Commands</H1>
7199 You can define a &quot;block&quot; of text, which can subsequently
7200  be deleted or
7201 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7202 then moving the cursor to the end of the desired text block.  You can then
7203 &quot;cut&quot; the block out 
7204 <!--chtml if pinemode="function_key"-->
7205 &quot;F9&quot;,
7206 <!--chtml else-->
7207 &quot;Ctrl-K&quot;,
7208 <!--chtml endif-->
7209 move the cursor, and &quot;paste&quot; it
7210 <!--chtml if pinemode="function_key"-->
7211 &quot;F10&quot;,
7212 <!--chtml else-->
7213 &quot;Ctrl-U&quot;,
7214 <!--chtml endif-->
7215 in the new location.  Also, you can paste more than once, allowing you
7216 to use this feature to copy a block of text.<P>
7218 If you press 
7219 <!--chtml if pinemode="function_key"-->
7220 &quot;F9&quot;
7221 <!--chtml else-->
7222 &quot;^K&quot;
7223 <!--chtml endif-->
7224 without having marked anything, Alpine will delete
7225 a single line.  If you delete a group of lines together, Alpine keeps them
7226 in the same buffer, so 
7227 <!--chtml if pinemode="function_key"-->
7229 <!--chtml else-->
7231 <!--chtml endif-->
7232 will restore them as a block.  About
7233 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7234 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7235 &quot;type the character ^&quot;.
7238 &lt;End of help on this topic&gt;
7239 </BODY>
7240 </HTML>
7241 ======= h_compose_justify =======
7242 <HTML>
7243 <HEAD>
7244 <TITLE>Justify Command</TITLE>
7245 </HEAD>
7246 <BODY>
7247 <H1>Justify Command</H1>
7249 The Justify
7250 <!--chtml if pinemode="function_key"-->
7251 (F4)
7252 <!--chtml else-->
7253 (^J) 
7254 <!--chtml endif-->
7255 command reformats the text in the paragraph the cursor is in.
7256 Paragraphs are separated by one blank line or a line beginning with a space.
7257 This is useful when you have been editing a paragraph and the lines become
7258 uneven.  The text is left aligned or justified and the right is ragged.  If
7259 the text is already justified as typed with auto-wrap, no justification will
7260 be done.
7263 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7264 block of text, the Justify command is modified.
7265 Instead of automatically justifying the current paragraph you will be
7266 asked if you want to justify the paragraph, justify the selected region,
7267 or adjust the quote level of the selected region.
7268 Adjusting the quote level only works if you are using standard
7269 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7270 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7273 When composing a reply containing included text, the justify command
7274 will reformat text to the right of the 
7275 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7276 adding or removing indented lines as needed.  Paragraphs are separated
7277 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7278 line containing the indent string and one or more blank spaces.
7279 Included text that was previously indented (or &quot;quoted&quot;) is
7280 not preserved.
7283 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7284 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7285 use the standard
7286 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7289 &lt;End of help on this topic&gt;
7290 </BODY>
7291 </HTML>
7292 ======= h_compose_spell =======
7293 <HTML>
7294 <HEAD>
7295 <TITLE>Spell Check Command</TITLE>
7296 </HEAD>
7297 <BODY>
7298 <H1>Spell Check Command</H1>
7300 The &quot;To Spell&quot;
7301 <!--chtml if pinemode="function_key"-->
7302 (F12)
7303 <!--chtml else-->
7304 (^T) 
7305 <!--chtml endif-->
7306 command calls an external spell checking program to look over the
7307 message you are composing.  By default, Alpine uses
7309 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7311 if it knows where to find &quot;aspell&quot;.
7312 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7313 then the command used is
7315 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7317 Otherwise, the ancient &quot;spell&quot; command is used.
7319 For PC-Alpine, you must install the aspell library code that you
7320 may get from
7321 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7324 &lt;End of help on this topic&gt;
7325 </BODY>
7326 </HTML>
7327 ======= h_compose_alted =======
7328 <HTML>
7329 <HEAD>
7330 <TITLE>Alt Editor Command</TITLE>
7331 </HEAD>
7332 <BODY>
7333 <H1>Alt Editor Command</H1>
7335 The &quot;Alt Editor&quot; command's availability depends on the
7336 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7339 When the variable specifies a valid editor on your system, this
7340 command will launch it with the current text of your message
7341 already filled in.
7344 &lt;End of help on this topic&gt;
7345 </BODY>
7346 </HTML>
7347 ======= h_compose_readfile =======
7348 <HTML>
7349 <HEAD>
7350 <TITLE>Read File Command</TITLE>
7351 </HEAD>
7352 <BODY>
7353 <H1>Read File Command</H1>
7355 The &quot;Read File&quot;
7356 <!--chtml if pinemode="function_key"-->
7357 (F5)
7358 <!--chtml else-->
7359 (^R) 
7360 <!--chtml endif-->
7361 command allows you to copy in text from an existing file. You will be
7362 prompted for the name of a file to be inserted into the message.  The file
7363 name is relative to your home directory 
7364 <!--chtml if pinemode="running"-->
7365 (which, in the present configuration of your system, is
7366  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7367 <!--chtml endif-->
7368 or current working directory
7369 <!--chtml if pinemode="running"-->
7370 (which, at least for your current Alpine &quot;session,&quot; 
7371 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7372 <!--chtml endif-->, depending on the
7373 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7374 configuration setting; or, the file name must be specified as a full path name 
7375 <!--chtml if pinemode="os_windows"-->
7376 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7377 <!--chtml else-->
7378 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7379 <!--chtml endif-->
7380 (without the quotation marks).
7383 The file will be inserted where the cursor is located.  <B>The
7384 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7385 Unix machine but have files on a PC or Mac, the files must be transferred
7386 to the system Alpine is running on before they can be read.  Please ask your
7387 local computer support people about the correct way to transfer a file to 
7388 your Alpine system.
7391 &lt;End of help on this topic&gt;
7392 </BODY>
7393 </HTML>
7394 ======= h_config_tray_icon =======
7395 <HTML>
7396 <HEAD>
7397 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7398 </HEAD>
7399 <BODY>
7400 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7402 PC-Alpine only.
7404 This option restores a behavior of previous versions of PC-Alpine.
7405 These
7406 versions, when started, installed a PC-Alpine icon in the notification 
7407 tray of Window's Taskbar.  The primary use of this icon was to indicate
7408 new mail arrival by turning red (while the Taskbar icon remained green).
7409 Additionally, the icon now changes to yellow to signify that a mail folder
7410 has been closed unexpectedly.
7413 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7414 color its Taskbar entry's icon red (as well as the icon in the Window
7415 Title).  This feature is only provided for backwards compatibility.
7418 &lt;End of help on this topic&gt;
7419 </BODY>
7420 </HTML>
7421 ======= h_common_suspend =======
7422 <HTML>
7423 <HEAD>
7424 <TITLE>Suspend Command</TITLE>
7425 </HEAD>
7426 <BODY>
7427 <H1>Suspend Command</H1>
7429 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7430 enabled, you can, at almost any time, temporarily halt your Alpine session,
7431 <!--chtml if pinemode="os_windows"-->
7432 minimizing it into an icon.
7433 <!--chtml else-->
7434 and return to your system prompt.
7435 <!--chtml endif-->
7438 &lt;End of help on this topic&gt;
7439 </BODY>
7440 </HTML>
7441 ======= h_pipe_command =======
7442 <HTML>
7443 <HEAD>
7444 <TITLE>Pipe Command SubOptions</TITLE>
7445 </HEAD>
7446 <BODY>
7447 <H1>Pipe Command SubOptions</H1>
7449 By default, when you use the Pipe command, the processed text of the
7450 message is sent to the Unix command
7451 you specify and the output is captured by Alpine and shown to you.
7452 (This command is available in PC-Alpine, as well, but there aren't many
7453 Windows commands that work well with piping.)
7454 There are some sub-commands that may be used to alter this behavior.
7455 These are toggles that switch the behavior between two possibilities.
7456 They can be combined in any way you wish.
7458 By default, the prompt at the bottom of the screen looks like
7460 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7464 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7466 if you are piping more than one message.
7468 The sub-command options are:
7469 <DL>
7470    <DT>Shown Text or Raw Text</DT>
7471    <DD>This option toggles between sending the shown (processed) text
7472 of the message to the Unix command, and sending the
7473 raw (unprocessed) text of the message to the Unix command.
7474 The default is to send the shown text.
7475 The raw version of the message will contain all of the headers and any
7476 MIME encoding that the message contains.
7477 If you've selected the Raw Text then the prompt will have the additional word
7478 &quot;RAW&quot; in it, like
7480 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7482 You can experiment with this option by piping to something simple like the
7483 Unix &quot;cat&quot; command.
7484    </DD>
7485    <DT>Captured Output or Free Output</DT>
7486    <DD>This option toggles between having Alpine capture the output of
7487 the Unix pipe command for display, and not capturing it.
7488 If the command you are piping to is a filter that will produce output
7489 you want to view, then you want to capture that output
7490 for display (the default).
7491 If the Unix command doesn't produce output or handles the display itself,
7492 then you want free output.
7493 When you've selected the Free Output option the prompt will change to
7495 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7497    </DD>
7498    <DT>No Delimiter or With Delimiter</DT>
7499    <DD>This option controls whether or not a Unix mailbox style delimiter
7500 will come before the text of the message.
7501 This is the delimiter used in the common Unix mailbox format.
7502 It's the single line that begins with the five characters
7503 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7504 You'll usually only want to include this if the Unix command requires
7505 input in the format of a traditional Unix mailbox file.
7506 When you've selected the With Delimiter option the prompt will change to
7508 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7510    </DD>
7511    <DT>To Same Pipe or To Individual Pipes</DT>
7512    <DD>This option only shows up if you are running an aggregate
7513 pipe command.
7514 That is, the command was Apply Pipe, not just Pipe.
7515 You have the option of piping all of the selected messages through a
7516 single pipe to a single instance of the Unix command,
7517 or piping each individual message through a separate pipe to separate
7518 instances of the Unix command.
7519 The default is that all of the output will go through a single pipe
7520 to a single instance of the command.
7521 You can try this option with a command like &quot;less&quot;, with Free
7522 Output enabled.
7523 When you've selected the Individual Pipes option the prompt will change to
7525 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7527    </DD>
7528 </DL>
7531 As mentioned earlier, the options can be combined in any way you wish.
7532 You may leave them all off, turn them all on, or turn some of them on
7533 and some of them off.
7534 If you use the pipe command a second time in the same session the default
7535 options will be what you used the last time.
7538 &lt;End of help on this topic&gt;
7539 </BODY>
7540 </HTML>
7541 ========== h_emptydir_subfolder_name =========
7542 <HTML>
7543 <HEAD>
7544 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7545 </HEAD>
7546 <BODY>
7547 <H1>Enter Subfolder Name</H1>
7549 <P> 
7550 This is the name of a new subfolder in the directory you are creating.
7551 Because empty directories are hidden and therefore not useful, you must also
7552 create a subfolder in the directory you are creating in order that the
7553 directory remains visible.
7555 Alternatively, you may turn off the configuration feature
7556 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7557 so that empty directories remain visible.
7558 If you do that, you will not be required to create the subfolder when you
7559 create a directory.
7562 &lt;End of help on this topic&gt;
7563 </BODY>
7564 </HTML>
7565 ========== h_incoming_add_folder_name =========
7566 <HTML>
7567 <HEAD>
7568 <TITLE>ENTER FOLDER NAME</TITLE>
7569 </HEAD>
7570 <BODY>
7571 <H1>Enter Folder Name</H1>
7573 <P> 
7574 This is the name of the folder on the previously specified server.
7575 By default the folder name is interpreted as defining a section of your personal
7576 folder area.  This area and how you specify it are defined by the
7577 server, if one is specified.
7580 To define a folder outside the default area, prefix
7581 the path with the namespace to use when interpreting the
7582 given path.  If a namespace is specified, the folder name begins with the
7583 sharp (#) character followed by the name of the namespace
7584 and then the namespace's path-element-delimiter.  Aside from the
7585 name's format, namespaces can also imply access rights, content
7586 policy, audience, location, and, occasionally, access methods.
7589 Each server exports its own set (possibly of size one) of 
7590 namespaces.
7591 For a more detailed explanation read about
7592 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7595 To specify the default for INBOX on the server you can usually just enter
7596 &quot;INBOX&quot;, and the server will understand the special meaning of
7597 that word.
7600 &lt;End of help on this topic&gt;
7601 </BODY>
7602 </HTML>
7603 ========== h_incoming_add_folder_host =========
7604 <HTML>
7605 <HEAD>
7606 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7607 </HEAD>
7608 <BODY>
7609 <H1>Enter Incoming Folder Server</H1>
7611 You are being asked for the name of the server for use with this incoming
7612 folder.
7613 If the folder is on the machine where Alpine is running, then just enter
7614 RETURN without typing a server name.
7617 If the folder is on an IMAP server then type the server's name followed
7618 by RETURN.
7619 You may use the ^X command if the server is the same as the server that
7620 the INBOX is on.
7623 You may have to add optional extra information to the server name.
7624 For example, if the IMAP server is using a non-standard port number you
7625 would specify that by appending a colon (:) followed by the port number
7626 to the server name
7629 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7632 or you may need to specify a different protocol if the server is not an
7633 IMAP server. For example:
7636 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7639 for a POP server or
7642 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7645 for an NNTP news server.
7646 For an explanation of all of the possibilities, see
7647 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7648 for folders.
7651 There is a special command (^W) if you want to set up a folder that gets its
7652 mail from a
7653 <A HREF="h_maildrop">Mail Drop</A>.
7654 If you type that command, you will be prompted for the information for
7655 both the Mail Drop folder and the destination folder.
7658 &lt;End of help on this topic&gt;
7659 </BODY>
7660 </HTML>
7661 ========== h_incoming_add_inbox =========
7662 <HTML>
7663 <HEAD>
7664 <TITLE>ENTER INBOX SERVER</TITLE>
7665 </HEAD>
7666 <BODY>
7667 <H1>Enter INBOX Server</H1>
7669 You are being asked for the name of the server for use with
7670 the INBOX folder.
7671 Type the server's name followed by RETURN.
7674 You may have to add optional extra information to the server name.
7675 For example, if the server is using a non-standard port number you
7676 would specify that by appending a colon (:) followed by the port number
7677 to the server name
7680 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7683 or you may need to specify a different protocol if the server is not an
7684 IMAP server. For example:
7687 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7690 for a POP server.
7693 For an explanation of all of the possibilities, see
7694 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7695 for folders.
7698 If the INBOX folder is on the machine where Alpine is running, then just enter
7699 RETURN without typing a server name.
7702 There is a special command (^W) if you want to set up a folder that gets its
7703 mail from a
7704 <A HREF="h_maildrop">Mail Drop</A>.
7705 If you type that command, you will be prompted for the information for
7706 both the Mail Drop folder and the destination folder, which will be used
7707 as your INBOX folder.
7710 &lt;End of help on this topic&gt;
7711 </BODY>
7712 </HTML>
7713 ========== h_incoming_add_maildrop_destn =========
7714 <HTML>
7715 <HEAD>
7716 <TITLE>ENTER DESTINATION SERVER</TITLE>
7717 </HEAD>
7718 <BODY>
7719 <H1>Enter Destination Server</H1>
7721 You are being asked for the name of the server where the destination
7722 folder is for use with this Mail Drop incoming folder.
7723 That is, you are using a Mail Drop for this incoming folder and
7724 you've already entered
7725 the server and folder name for the Mail Drop.
7726 Now you need to enter the server for the destination folder
7727 where the mail should be copied to.
7728 Mail will come from the Mail Drop and be copied to the destination folder.
7731 Type the server's name followed by RETURN.
7732 If the folder is local to this computer, just type RETURN without entering
7733 a server name.
7736 You may have to add optional extra information to the server name.
7737 For example, if the server is using a non-standard port number you
7738 would specify that by appending a colon (:) followed by the port number
7739 to the server name
7742 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7745 For an explanation of all of the possibilities, see
7746 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7747 for folders.
7750 &lt;End of help on this topic&gt;
7751 </BODY>
7752 </HTML>
7753 ========== h_inbox_add_maildrop_destn =========
7754 <HTML>
7755 <HEAD>
7756 <TITLE>ENTER DESTINATION SERVER</TITLE>
7757 </HEAD>
7758 <BODY>
7759 <H1>Enter Destination Server</H1>
7761 You are being asked for the name of the server where the destination
7762 folder is for use with your Mail Drop INBOX.
7763 That is, you are using a Mail Drop for your INBOX and you've already entered
7764 the server and folder name for the Mail Drop.
7765 Now you need to enter the server for the destination folder
7766 where the mail should be copied to.
7767 Mail will come from the Mail Drop and be copied to the destination folder.
7770 Type the server's name followed by RETURN.
7771 If the folder is local to this computer, just type RETURN without entering
7772 a server name.
7775 You may have to add optional extra information to the server name.
7776 For example, if the server is using a non-standard port number you
7777 would specify that by appending a colon (:) followed by the port number
7778 to the server name
7781 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7784 For an explanation of all of the possibilities, see
7785 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7786 for folders.
7789 &lt;End of help on this topic&gt;
7790 </BODY>
7791 </HTML>
7792 ========== h_inbox_add_maildrop =========
7793 <HTML>
7794 <HEAD>
7795 <TITLE>ENTER MAILDROP SERVER</TITLE>
7796 </HEAD>
7797 <BODY>
7798 <H1>Enter Mail Drop Server</H1>
7800 You are being asked for the name of the Mail Drop server for use with
7801 your INBOX.
7804 Type the server's name followed by RETURN.
7807 You may have to add optional extra information to the server name.
7808 For example, if the server is using a non-standard port number you
7809 would specify that by appending a colon (:) followed by the port number
7810 to the server name
7813 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7816 or you may need to specify a different protocol if the server is not an
7817 IMAP server. For example:
7820 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7823 for a POP server or
7826 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7829 for an NNTP news server.
7830 For an explanation of all of the possibilities, see
7831 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7832 for folders.
7835 &lt;End of help on this topic&gt;
7836 </BODY>
7837 </HTML>
7838 ========== h_incoming_add_maildrop =========
7839 <HTML>
7840 <HEAD>
7841 <TITLE>ENTER MAILDROP SERVER</TITLE>
7842 </HEAD>
7843 <BODY>
7844 <H1>Enter Mail Drop Server</H1>
7846 You are being asked for the name of the Mail Drop server for use with
7847 this incoming folder.
7850 Type the server's name followed by RETURN.
7851 You may use the ^X command if the server is the same as the server that
7852 the INBOX is on.
7855 You may have to add optional extra information to the server name.
7856 For example, if the server is using a non-standard port number you
7857 would specify that by appending a colon (:) followed by the port number
7858 to the server name
7861 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7864 or you may need to specify a different protocol if the server is not an
7865 IMAP server. For example:
7868 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7871 for a POP server or
7874 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7877 for an NNTP news server.
7878 For an explanation of all of the possibilities, see
7879 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7880 for folders.
7883 If the Mail Drop folder is on the machine where Alpine is running, then just enter
7884 RETURN without typing a server name.
7887 &lt;End of help on this topic&gt;
7888 </BODY>
7889 </HTML>
7890 ========== h_maildrop =========
7891 <HTML>
7892 <HEAD>
7893 <TITLE>WHAT IS A MAIL DROP?</TITLE>
7894 </HEAD>
7895 <BODY>
7896 <H1>What is a Mail Drop?</H1>
7898 In some situaions it may make sense to have your mail delivered to one
7899 folder (the Mail Drop) and then when you want to read mail that has been
7900 delivered to the Mail Drop folder Alpine will move it to another
7901 destination folder.
7902 Often the Mail Drop will be a remote folder and messages will be moved from
7903 there to a local destination folder.
7906 One example where this might make sense is if the Mail Drop folder is accessible
7907 only with the POP protocol.
7908 You could designate your POP inbox as the Mail Drop folder and have Alpine move
7909 mail from there to a local (on the same machine Alpine is running on)
7910 destination folder, where you'll read it.
7913 A Mail Drop may only be used as your Inbox or as an
7914 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
7917 There is no attempt to synchronize the contents of the destination folder
7918 with the contents of the Mail Drop folder.
7919 All that happens is that all of the messages in the Mail Drop folder are
7920 copied to the destination folder and then they are deleted and expunged (if possible)
7921 from the Mail Drop folder.
7922 The next time a check for new mail is made, any messages in the Mail 
7923 Drop folder are once again copied to the destination folder and deleted
7924 and expunged from the Mail Drop folder.
7925 (If the Mail Drop folder is a news group, then the messages can't be
7926 expunged from the newsgroup. Instead, only Recent messages are copied from
7927 the newsgroup to the destination folder.)
7930 Configuration of a Mail Drop is a little different from configuration of
7931 a folder that does not use a Mail Drop because you have to specify two
7932 folder names instead of one.
7933 The two folders may be any types of folders that Alpine can normally use.
7934 They don't have to be a remote folder and a local folder, that is
7935 simply the most common usage.
7936 When you use a Mail Drop folder Alpine will periodically re-open the Mail
7937 Drop to check for new mail.
7938 The new-mail checks will happen at the frequency set with the
7939 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
7940 but with a minimum time
7941 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
7942 between checks.
7943 Because of this minimum you may notice that new mail does not
7944 appear promptly when you expect it.
7945 The reason for this is to protect the server from over-zealous opening and
7946 closing of the Mail Drop folder.
7947 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
7948 the end of the folder index, then the check will happen, regardless of how
7949 long it has been since the previous check.
7951 If there is new mail, that mail will be copied to the destination folder
7952 and then will be deleted from the Mail Drop.
7953 Note that using a Mail Drop with a local destination folder does not make
7954 sense if you read mail from more than one machine, because the mail is
7955 downloaded to the destination folder (which is accessible from only one
7956 machine) and deleted from the Mail Drop.
7958 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
7961 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
7964 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
7966 The brackets are not literal.
7968 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
7970 is a single character that does not appear in the MailDropFolder name.
7971 If the name doesn't contain spaces then it can be a space character.
7972 The two folder names are full technical
7973 <A HREF="h_valid_folder_names">folder names</A>
7974 as used by Alpine.
7975 Here are a couple examples to give you an idea what is being talked about:
7978 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
7980 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
7983 A #move folder may only be used as an
7984 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
7985 an Inbox.
7986 When you are in the FOLDER LIST of Incoming Message Folders (after turning
7987 on the
7988 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
7989 option)
7990 the Add command has a subcommand &quot;Use Mail Drop&quot;
7991 which may be helpful for defining the folder in your Alpine configuration.
7992 The same is true when you edit the
7993 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
7994 option in Setup/Config.
7995 Each of these configuration methods will also create the DestinationFolder
7996 if it doesn't already exist.
7997 If you are having problems, make sure the DestinationFolder exists.
8000 &lt;End of help on this topic&gt;
8001 </BODY>
8002 </HTML>
8003 ========== h_save =========
8004 <HTML>
8005 <HEAD>
8006 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8007 </HEAD>
8008 <BODY>
8009 <H1>Choose a Folder to Save Into</H1>
8011 After Exiting from this help text,
8012 type the name of the folder you want to save into and press RETURN.
8014 Press ^T to get a list of your folders to choose from.
8015 Press ^C to cancel the Save.
8017 If you have Folder Collections defined you may use
8018 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8019 the collection being saved to.
8021 If Tab Completion is enabled (it is enabled by default)
8022 you may type a Tab character to have Alpine complete the folder name for you.
8024 If Partial Match Lists is enabled (it is enabled by default) you may type
8025 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8027 If the Ctrl-R subcommand is present that means you can decide to Delete or
8028 not Delete the message you are saving after you save it.
8029 The label on that key gives the action to switch to.
8030 If it says Delete and you type Ctrl-R the label displayed will change to
8031 No Delete and the source message will be deleted after the save. If it
8032 says No Delete and you type Ctrl-R the label displayed will change to
8033 Delete and the message will not be deleted.
8034 You can control the default for the Delete parameter with the
8035 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8037 Similarly, if the Ctrl-W subcommand is present that means you can decide
8038 to Preserve the order of the messages being saved or not.
8039 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8040 will be in the same order as you see them in the source folder now.
8041 The opposite action (which is usually the default) is that you don't care
8042 about the order.
8043 The Saved messages may or may not be in the same order in the destination folder.
8044 There may be a performance penalty for choosing to save the messages in order.
8045 You can control the default for the Preserve Order parameter with the
8046 configuration feature
8047 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8050 If you haven't disabled the Save Input History and you've already done a
8051 Save earlier in this session then you may use the Up and Down arrows to retrieve
8052 a folder name used in a previous Save.
8055 &lt;End of help on this topic&gt;
8056 </BODY>
8057 </HTML>
8058 ============= h_simple_index ========================
8059 <HTML>
8060 <HEAD>
8061 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8062 </HEAD>
8063 <BODY>
8064 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8065 <!--chtml if pinemode="function_key"-->
8066 <PRE>
8067 Navigating the List of Messages               General Alpine Commands
8068 -------------------------------               -----------------------
8069  F5   Move to previous message                 F1   Show this help text
8070  F6   Move to next message
8071  F7   Show previous screen of messages
8072  F8   Show next screen of messages
8074 Message Selection Commands
8075 --------------------------
8076  F3   Exit the Message Select menu (canceling Send command)
8077  F4   Select the currently highlighted message
8078  F9   Mark the currently highlighted message as deleted
8079  F10  Undelete (remove deletion mark from) the highlighted message
8080 </PRE>
8081 <!--chtml else-->
8082 <PRE>
8083 Navigating the List of Messages               General Alpine Commands
8084 -------------------------------               -----------------------
8085   P  Move to previous message                  ?  Show this help text
8086   N  Move to next message
8087   -  Show previous screen of messages
8088  Spc (space bar) Show next screen of messages
8090 Message Selection Commands
8091 --------------------------
8092   E  Exit the Message Select menu (canceling Send command)
8093   S  Select the currently highlighted message
8094   D  Mark the currently highlighted message as deleted
8095   U  Undelete (remove deletion mark from) the highlighted message
8096 </PRE>
8097 <!--chtml endif-->
8099 <H2>Description of the Select Postponed Message Screen</H2>
8101 This screen allows you to select one of several previously postponed
8102 messages in order to continue composition.  Your options are very limited
8103 -- the screen is not meant to let you manipulate these messages.  However,
8104 you may now delete messages from this list.  Once you choose a message,
8105 Alpine reads it in and puts you into the regular message composer.
8108 Messages do not stay in this postponed state automatically.  If you select
8109 a message and then want to postpone it again, use the normal postpone
8110 (Ctrl-O) command in the composer.
8113 If you exit this screen without selecting a message, the Compose command
8114 that got you here is canceled.  Other than messages explicitly marked
8115 &quot;Deleted&quot;, no messages will be removed.
8118 &lt;End of help on this topic&gt;
8119 </BODY>
8120 </HTML>
8121 ============= h_collection_screen ========================
8122 <HTML>
8123 <HEAD>
8124 <TITLE>COLLECTION LIST screen</TITLE>
8125 </HEAD>
8126 <BODY>
8127 <H1>COLLECTION LIST screen</H1>
8129 The COLLECTION LIST screen is used to select one of your  
8130 collection definitions to display the folders they contain.  See
8131 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8132 detailed explanation of collections.<P>
8134 To manage your collection definitions (Add, Change, Delete, etc.), use
8135 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8136 MAIN MENU.
8139 &lt;End of help on this topic&gt;
8140 </BODY>
8141 </HTML>
8142 ============= h_collection_maint ========================
8143 <HTML>
8144 <HEAD>
8145 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8146 </HEAD>
8147 <BODY>
8148 <H1>SETUP COLLECTION LIST screen</H1>
8150 The SETUP COLLECTION LIST screen lets you manage your collection
8151 definitions.  See 
8152 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8153 for detailed explanation of collections.<P>
8155 Maintenance commands include:
8156 <DL>
8157 <DT>Change
8158 <!--chtml if pinemode="function_key"-->
8159 (F4)
8160 <!--chtml else-->
8162 <!--chtml endif-->
8163 </DT>
8165 <DD>Modify attributes of the selected collection definition.
8167 <DT>Add Cltn
8168 <!--chtml if pinemode="function_key"-->
8169 (F9)
8170 <!--chtml else-->
8172 <!--chtml endif-->
8173 </DT>
8175 <DD>Create a new collection definition.
8176 </DD>
8178 <DT>Del Cltn
8179 <!--chtml if pinemode="function_key"-->
8180 (F10)
8181 <!--chtml else-->
8183 <!--chtml endif-->
8184 </DT>
8186 <DD>Delete the selected collection definition.<BR>
8187 NOTE: The folders and directories referred to by the
8188 collection definition are <EM>NOT</EM> deleted.  Folders must
8189 be deleted, if that's what you wish to do, from the 
8190 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8191 individual folders in a collection.
8192 </DD>
8194 <DT>Shuffle
8195 <!--chtml if pinemode="function_key"-->
8196 (F11)
8197 <!--chtml else-->
8199 <!--chtml endif-->
8200 </DT>
8202 <DD>Change the order of the displayed collections.  Alpine will offer
8203 to move the currently selected collection one position UP
8204 or DOWN.
8205 </DD>
8206 </DL>
8209 &lt;End of help on this topic&gt;
8210 </BODY>
8211 </HTML>
8212 ============ h_what_are_collections ==========
8213 <HTML>
8214 <HEAD>
8215 <TITLE>Folder Collections Explained</TITLE>
8216 </HEAD>
8217 <BODY>
8218 <H1>Folder Collections Explained</H1>
8221 Those of you with simple mail configurations will just see a list of all the
8222 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8223 The special folders for INBOX, sent mail and saved messages
8224 will appear at the top of the list.  All others are in alphabetical order.
8226 If you
8227 or your system administrator have defined more than one collection or if
8228 you have a collection (for newsgroups or email folders) defined on your 
8229 system, then you will see the COLLECTION LIST screen first when choosing 
8230 FOLDER LIST from Alpine's MAIN MENU.
8232 <H2>Why have multiple folder collections?</H2>
8234 For Alpine users who only maintain email folders (and not too many) on one host, 
8235 a single folder collection is probably sufficient.<P>
8237 However, people who have more than one email account - for example, one 
8238 at their university, and one with their personal Internet Service Provider - 
8239 will have different sets of folders on different hosts, and they may want to
8240 access them all from the same installation of Alpine, rather than use different 
8241 software and/or log into other hosts to manipulate messages in different 
8242 accounts.  (If in doubt whether one of your email accounts can be accessed 
8243 with Alpine, contact the technical support people for that account.)  Even people
8244 who have only one email account on one host, but have dozens or
8245 hundreds of email folders, may want to arrange these folders together in a 
8246 meaningful way.<BR>
8247 That is where multiple collections come in.
8249 <H2>Types of Collections</H2>
8250 <DL>
8251 <DT>INCOMING FOLDERS</DT>
8252 <DD>&quot;Incoming Message Folders&quot; 
8253 is a special collection typically used to supplement your single INBOX.  
8254 All the folders here are meant to be ones that receive incoming messages, 
8255 which you intend to check more or less frequently.  
8256 You may have multiple folders like this because you or your systems 
8257 administrator have set up an external program or you may have set up
8258 Alpine to filter incoming 
8259 messages into different folders, based on certain criteria such as 
8260 sender, recipient, or subject; or because you have multiple accounts and 
8261 wish to check their INBOXes easily.  This collection is established by 
8262 setting the 
8263 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8264 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8265 MAIN MENU.
8266 </DD>
8268 <DT>NEWS</DT>
8269 <DD>You can also define a collection specifically for
8270 newsgroups.  Alpine does this for you implicitly when you 
8271 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8272 in your Alpine configuration.  The news collection appears last in the 
8273 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8274 and Alpine knows not to save messages there.
8275 </DD>
8277 <DT>DEFAULT COLLECTION</DT>
8278 <DD>This is the default collection for your saved and sent messages folders.
8279 </DD>
8280 </DL>
8284 <H2>Defining Collections</H2>
8286 In the absence of any folder-collection definitions, Alpine will assume a
8287 single default folder collection.
8288 <!--chtml if pinemode="os_windows"-->
8289 <!--chtml else-->
8290 If necessary, Alpine will create the directory
8291 &quot;mail&quot; in your Unix home directory 
8292 to hold your folders.
8293 <!--chtml endif-->
8295 You can use the 
8296 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8297 the MAIN MENU, to manage your collection list.  
8299 &lt;End of help on this topic&gt;
8300 </BODY>
8301 </HTML>
8302 ===== h_select_address_screen =====
8303 <HTML>
8304 <HEAD>
8305 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8306 </HEAD>
8307 <BODY>
8308 <H1>SELECT AN ADDRESS SCREEN</H1>
8309 <H2>COMMANDS</H2>
8310 <!--chtml if pinemode="function_key"-->
8311 <PRE>
8312 Available  Commands                        
8313 -------------------------------            
8314 F1  Show Help Text
8315 F3  Exit without selecting anything
8316 F4  Select the highlighted address
8317 F5  Move highlight to previous address
8318 F6  Move highlight to next address
8319 F7  Previous page of addresses
8320 F8  Next page of addresses
8321 F11 Print
8322 F12 WhereIs
8323 </PRE>
8324 <!--chtml else-->
8325 <PRE>
8326 Navigation                     General Alpine Commands
8327 -------------------------      -----------------------
8328  P  Prev Address                ?  Display this help text
8329  N  Next Address                E  Exit without selecting anything
8330  -  Previous page               %  Print
8331 Spc (space bar) Next page
8332  W  WhereIs
8334 Select Command
8335 ------------------------------------------------
8336  S  Select the highlighted address
8337 </PRE>
8338 <!--chtml endif-->
8340 <H2>Description of the Select Address Screen</H2>
8342 This screen gives you an easy way to select an address from all of
8343 the address book entries that match the prefix typed so far.
8345 <P><UL>
8346 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8347 </UL>
8349 &lt;End of help on this topic&gt;
8350 </BODY>
8351 </HTML>
8352 ===== h_select_rule_screen =====
8353 <HTML>
8354 <HEAD>
8355 <TITLE>SELECT A RULE SCREEN</TITLE>
8356 </HEAD>
8357 <BODY>
8358 <H1>SELECT A RULE SCREEN</H1>
8359 <H2>COMMANDS</H2>
8360 <!--chtml if pinemode="function_key"-->
8361 <PRE>
8362 Available  Commands                        
8363 -------------------------------            
8364 F1  Show Help Text
8365 F3  Exit without selecting anything
8366 F4  Select the highlighted rule
8367 F5  Move highlight to previous rule
8368 F6  Move highlight to next rule
8369 F7  Previous page of rules
8370 F8  Next page of rules
8371 F11 Print
8372 F12 WhereIs
8373 </PRE>
8374 <!--chtml else-->
8375 <PRE>
8376 Navigation                     General Alpine Commands
8377 -------------------------      -----------------------
8378  P  Prev Rule                   ?  Display this help text
8379  N  Next Rule                   E  Exit without selecting anything
8380  -  Previous page               %  Print
8381 Spc (space bar) Next page
8382  W  WhereIs
8384 Select Command
8385 ------------------------------------------------
8386  S  Select the highlighted rule
8387 </PRE>
8388 <!--chtml endif-->
8390 <H2>Description of the Select Rule Screen</H2>
8392 This screen just gives you an easy way to select a rule from all of your
8393 defined rules.
8394 The list of rules presented is the list of nicknames of all of the rules
8395 defined using Setup/Rules.
8396 For selecting messages, it is likely that the Indexcolor rules and possibly
8397 the Roles rules will be most useful.
8398 The others are there also, in case you find a use for them.
8400 In order for this to be useful for selecting messages, the nicknames of
8401 the rules have to be different.
8402 Alpine actually just gets the nickname of the rule that you select and then
8403 looks up that rule using the nickname.
8404 So if there are duplicate nicknames, the first rule that has that
8405 nickname will be used.
8407 <P><UL>
8408 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8409 </UL>
8411 &lt;End of help on this topic&gt;
8412 </BODY>
8413 </HTML>
8414 ===== h_select_priority_screen =====
8415 <HTML>
8416 <HEAD>
8417 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8418 </HEAD>
8419 <BODY>
8420 <H1>SELECT A PRIORITY SCREEN</H1>
8421 <H2>COMMANDS</H2>
8422 <!--chtml if pinemode="function_key"-->
8423 <PRE>
8424 Available  Commands                        
8425 -------------------------------            
8426 F1  Show Help Text
8427 F3  Exit without selecting anything
8428 F4  Select the highlighted priority
8429 F5  Move highlight to previous priority
8430 F6  Move highlight to next priority
8431 F7  Previous page of priorities
8432 F8  Next page of priorities
8433 F11 Print
8434 F12 WhereIs
8435 </PRE>
8436 <!--chtml else-->
8437 <PRE>
8438 Navigation                     General Alpine Commands
8439 -------------------------      -----------------------
8440  P  Prev Priority               ?  Display this help text
8441  N  Next Priority               E  Exit without selecting anything
8442  -  Previous page               %  Print
8443 Spc (space bar) Next page
8444  W  WhereIs
8446 Select Command
8447 ------------------------------------------------
8448  S  Select the highlighted priority
8449 </PRE>
8450 <!--chtml endif-->
8452 <H2>Description of the Select Priority Screen</H2>
8454 This screen gives you a way to select a priority for the message you are sending.
8455 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8456 Some mail programs will display an indication of the priority level to
8457 the recipient of the message, some will ignore it.
8458 Even in cases where the mail programs of both the sender and the recipient
8459 agree on the meaning of this header, keep in mind that it is
8460 something that the sender sets so it is only an indication
8461 of the priority that the sender attaches to the mail.
8462 Alpine can be made to display an indication of this priority in incoming
8463 messages by use of one of the tokens
8464 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8465 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8466 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8468 <P><UL>
8469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8470 </UL>
8472 &lt;End of help on this topic&gt;
8473 </BODY>
8474 </HTML>
8475 ===== h_select_keyword_screen =====
8476 <HTML>
8477 <HEAD>
8478 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8479 </HEAD>
8480 <BODY>
8481 <H1>SELECT A KEYWORD SCREEN</H1>
8482 <H2>COMMANDS</H2>
8483 <!--chtml if pinemode="function_key"-->
8484 <PRE>
8485 Available  Commands                        
8486 -------------------------------            
8487 F1  Show Help Text
8488 F3  Exit without selecting anything
8489 F4  Select the highlighted keyword
8490 F5  Move highlight to previous keyword
8491 F6  Move highlight to next keyword
8492 F7  Previous page of keywords
8493 F8  Next page of keywords
8494 F11 Print
8495 F12 WhereIs
8496 </PRE>
8497 <!--chtml else-->
8498 <PRE>
8499 Navigation                     General Alpine Commands
8500 -------------------------      -----------------------
8501  P  Prev Keyword                ?  Display this help text
8502  N  Next Keyword                E  Exit without selecting anything
8503  -  Previous page               %  Print
8504 Spc (space bar) Next page
8505  W  WhereIs
8507 Select Command
8508 ------------------------------------------------
8509  S  Select the highlighted keyword
8510 </PRE>
8511 <!--chtml endif-->
8513 <H2>Description of the Select Keyword Screen</H2>
8515 This screen just gives you an easy way to select a keyword.
8516 The list of keywords presented is the list of all keywords defined in your 
8517 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8518 If you have given a keyword a nickname, that nickname is displayed
8519 instead of the actual keyword.
8521 <P><UL>
8522 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8523 </UL>
8525 &lt;End of help on this topic&gt;
8526 </BODY>
8527 </HTML>
8528 ===== h_select_charset_screen =====
8529 <HTML>
8530 <HEAD>
8531 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8532 </HEAD>
8533 <BODY>
8534 <H1>SELECT A CHARACTER SET SCREEN</H1>
8535 <H2>COMMANDS</H2>
8536 <!--chtml if pinemode="function_key"-->
8537 <PRE>
8538 Available  Commands                        
8539 -------------------------------            
8540 F1  Show Help Text
8541 F3  Exit without selecting anything
8542 F4  Select the highlighted character set
8543 F5  Move highlight to previous character set
8544 F6  Move highlight to next character set
8545 F7  Previous page of character sets
8546 F8  Next page of character sets
8547 F11 Print
8548 F12 WhereIs
8549 </PRE>
8550 <!--chtml else-->
8551 <PRE>
8552 Navigation                     General Alpine Commands
8553 -------------------------      -----------------------
8554  P  Prev Character Set          ?  Display this help text
8555  N  Next Character Set          E  Exit without selecting anything
8556  -  Previous page               %  Print
8557 Spc (space bar) Next page
8558  W  WhereIs
8560 Select Command
8561 ------------------------------------------------
8562  S  Select the highlighted character set
8563 </PRE>
8564 <!--chtml endif-->
8566 <H2>Description of the Select A Character Set Screen</H2>
8568 This screen just gives you an easy way to select a character set from the
8569 set of character sets Alpine knows about.
8570 The list presented will vary slightly depending on what option you are
8571 selecting the character set for.
8573 <P><UL>
8574 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8575 </UL>
8577 &lt;End of help on this topic&gt;
8578 </BODY>
8579 </HTML>
8580 ===== h_select_multcharsets_screen =====
8581 <HTML>
8582 <HEAD>
8583 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8584 </HEAD>
8585 <BODY>
8586 <H1>SELECT CHARACTER SETS SCREEN</H1>
8587 <H2>COMMANDS</H2>
8588 <!--chtml if pinemode="function_key"-->
8589 <PRE>
8590 Available  Commands
8591 -------------------------------            
8592 F1  Show Help Text
8593 F3  Exit without selecting anything
8594 F4  Select the highlighted charset (or chosen charsets in ListMode)
8595 F5  Move highlight to previous charset
8596 F6  Move highlight to next charset
8597 F7  Previous page of charsets
8598 F8  Next page of charsets
8599 F9  Toggle choices when using ListMode
8600 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8601 F11 Print
8602 F12 WhereIs
8603 </PRE>
8604 <!--chtml else-->
8605 <PRE>
8606 Navigation                     General Alpine Commands
8607 -------------------------      -----------------------
8608  P  Prev Charset                ?  Display this help text
8609  N  Next Charset                E  Exit without selecting anything
8610  -  Previous page               %  Print
8611 Spc (space bar) Next page
8612  W  WhereIs
8614 Select Command
8615 ------------------------------------------------
8616  S  Select the highlighted charset (or chosen charsets in ListMode)
8617  L  Turn on ListMode (makes it easy to choose multiple charsets)
8618  1  Turn off ListMode
8619  X  Toggle choices when using ListMode
8620 </PRE>
8621 <!--chtml endif-->
8623 <H2>Description of the Select Character Set Screen</H2>
8625 This screen just gives you an easy way to select a character set or a list of
8626 character sets.
8627 The list of character sets presented is the list of all character sets known to
8628 Alpine.
8629 You may select other character sets by typing them in directly.
8631 <P><UL>
8632 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8633 </UL>
8635 &lt;End of help on this topic&gt;
8636 </BODY>
8637 </HTML>
8638 ===== h_select_multkeyword_screen =====
8639 <HTML>
8640 <HEAD>
8641 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8642 </HEAD>
8643 <BODY>
8644 <H1>SELECT KEYWORDS SCREEN</H1>
8645 <H2>COMMANDS</H2>
8646 <!--chtml if pinemode="function_key"-->
8647 <PRE>
8648 Available  Commands
8649 -------------------------------            
8650 F1  Show Help Text
8651 F3  Exit without selecting anything
8652 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8653 F5  Move highlight to previous keyword
8654 F6  Move highlight to next keyword
8655 F7  Previous page of keywords
8656 F8  Next page of keywords
8657 F9  Toggle choices when using ListMode
8658 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8659 F11 Print
8660 F12 WhereIs
8661 </PRE>
8662 <!--chtml else-->
8663 <PRE>
8664 Navigation                     General Alpine Commands
8665 -------------------------      -----------------------
8666  P  Prev Keyword                ?  Display this help text
8667  N  Next Keyword                E  Exit without selecting anything
8668  -  Previous page               %  Print
8669 Spc (space bar) Next page
8670  W  WhereIs
8672 Select Command
8673 ------------------------------------------------
8674  S  Select the highlighted keyword (or chosen keywords in ListMode)
8675  L  Turn on ListMode (makes it easy to choose multiple keywords)
8676  1  Turn off ListMode
8677  X  Toggle choices when using ListMode
8678 </PRE>
8679 <!--chtml endif-->
8681 <H2>Description of the Select Keyword Screen</H2>
8683 This screen just gives you an easy way to select a keyword or a list of
8684 keywords.
8685 The list of keywords presented is the list of all keywords defined in your 
8686 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8687 If you have given a keyword a nickname, that nickname is displayed
8688 instead of the actual keyword.
8690 <P><UL>
8691 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8692 </UL>
8694 &lt;End of help on this topic&gt;
8695 </BODY>
8696 </HTML>
8697 ===== h_select_incoming_to_monitor =====
8698 <HTML>
8699 <HEAD>
8700 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8701 </HEAD>
8702 <BODY>
8703 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8704 <H2>COMMANDS</H2>
8705 <!--chtml if pinemode="function_key"-->
8706 <PRE>
8707 Available  Commands
8708 -------------------------------            
8709 F1  Show Help Text
8710 F3  Exit without selecting anything
8711 F4  Select the marked folders
8712 F5  Move highlight to previous folder
8713 F6  Move highlight to next folder
8714 F7  Previous page of folders
8715 F8  Next page of folders
8716 F9  Toggle choices on or off
8717 F11 Print
8718 F12 WhereIs
8719 </PRE>
8720 <!--chtml else-->
8721 <PRE>
8722 Navigation                     General Alpine Commands
8723 -------------------------      -----------------------
8724  P  Prev Folder                 ?  Display this help text
8725  N  Next Folder                ^C  exit without changing anything
8726  -  Previous page               %  Print
8727 Spc (space bar) Next page
8728  W  WhereIs
8730 Select Command
8731 ------------------------------------------------
8732  S  Select the marked folders
8733  X  Toggle choices on or off
8734 </PRE>
8735 <!--chtml endif-->
8737 <H2>Description of the Select Folders to Check Screen</H2>
8739 This screen is only useful if the feature
8740 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
8741 is set.
8742 By default, when you set that feature all of your incoming folders
8743 will be checked periodically for Unseen messages.
8744 By using this screen, you may restrict the set of monitored folders to
8745 a subset of all of the incoming folders.
8747 Mark the folders you want to monitor for Unseen messages with
8748 an &quot;X&quot;.
8749 When you've finished marking all your selections use the Select
8750 command to register your choices.
8751 To return to the default of checking all incoming folders
8752 delete all folders or unmark all folders.
8754 <P><UL>
8755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8756 </UL>
8758 &lt;End of help on this topic&gt;
8759 </BODY>
8760 </HTML>
8761 ===== h_role_select =====
8762 <HTML>
8763 <HEAD>
8764 <TITLE>ROLES SCREEN</TITLE>
8765 </HEAD>
8766 <BODY>
8767 <H1>ROLES SCREEN</H1>
8768 <H2>ROLES COMMANDS</H2>
8769 <!--chtml if pinemode="function_key"-->
8770 <PRE>
8771 Available  Commands                        
8772 -------------------------------            
8773 F1  Show Help Text
8774 F3  Exit without a selection
8775 F4  Select a role to use in composition
8776 F5  Move to previous role
8777 F6  Move to next role
8778 F7  Previous page of roles
8779 F8  Next page of roles
8780 F11 Change Default Role
8781 F12 Whereis (search role nicknames)
8782 </PRE>
8783 <!--chtml else-->
8784 <PRE>
8785 Navigation                     General Alpine Commands
8786 -------------------------      -----------------------
8787  P  Prev Role                     ?  Display this help text
8788  N  Next Role                     E  Exit without a selection
8789  -  Previous page
8790 Spc (space bar) Next page
8791  W  WhereIs (search for word in role nicknames)
8793 Select Role Commands
8794 ------------------------------------------------
8795  [Return]  Select highlighted role
8796  D         Change Default Role
8797 </PRE>
8798 <!--chtml endif-->
8800 <H2>Description of the Roles Screen</H2>
8802 With this screen you select a role to be used in the composition of a
8803 message.
8804 Use the Previous and Next commands to highlight the role you wish to
8805 use.
8806 When you type carriage return you will be placed in the composer using the highlighted role.
8808 You don't have any non-default <A HREF="h_rules_roles">roles</A>
8809 available unless you set them up.
8810 You may do so by using the Setup/Rules command on the MAIN MENU.
8812 By using the D command, you may set a default role that will persist until
8813 you change it or until you exit Alpine.
8814 The D command toggles through three states: set the default role, unset the
8815 default role, and leave the default role as it is.
8816 <P><UL>
8817 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8818 </UL>
8820 &lt;End of help on this topic&gt;
8821 </BODY>
8822 </HTML>
8823 ===== h_role_abook_select =====
8824 <HTML>
8825 <HEAD>
8826 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
8827 </HEAD>
8828 <BODY>
8829 <H1>SELECT ADDRESS BOOK SCREEN</H1>
8830 <H2>COMMANDS</H2>
8831 <!--chtml if pinemode="function_key"-->
8832 <PRE>
8833 Available  Commands                        
8834 -------------------------------            
8835 F1  Show Help Text
8836 F3  Exit screen without selecting anything
8837 F4  Select highlighted address book
8838 F5  Move to previous address book
8839 F6  Move to next address book
8840 F7  Previous page of address books
8841 F8  Next page of address books
8842 F12 Whereis
8843 </PRE>
8844 <!--chtml else-->
8845 <PRE>
8846 Navigation                     General Alpine Commands
8847 -------------------------      -----------------------
8848  P  Previous addrbook          ?  Display this help text
8849  N  Next addrbook
8850  -  Previous page
8851 Spc (space bar) Next page
8852  W  WhereIs
8854 Select Role Commands
8855 ------------------------------------------------
8856  S  Select highlighted address book
8857  E  Exit screen without selecting anything
8858 </PRE>
8859 <!--chtml endif-->
8861 <H2>Description of the Select Address Book Screen</H2>
8863 This screen helps you select one of your address books.
8864 Use the Previous and Next commands to highlight the address book you wish to
8865 select.
8866 <P><UL>
8867 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8868 </UL>
8870 &lt;End of help on this topic&gt;
8871 </BODY>
8872 </HTML>
8873 ======== h_rule_patterns =============
8874 <HTML>
8875 <HEAD>
8876 <TITLE>PATTERNS</TITLE>
8877 </HEAD>
8878 <BODY>
8879 <H1>PATTERNS</H1>
8880 Patterns are used with Roles, Filtering, Index Coloring,
8881 Scoring, Other Rules, and Search Rules.
8882 Patterns are compared with a message to see if there is a match.
8883 For Filtering, the messages being checked are all the messages in the
8884 folder, one at a time.
8885 For Index Line Coloring, each message that is visible on the screen is
8886 checked for matches with the Index Coloring Patterns.
8887 Roles are used with the Reply, Forward, and Compose commands.
8888 For Reply, the message used to compare the Pattern with is the message
8889 being replied to;
8890 for Forward, the message used to compare the Pattern with is the message
8891 being forwarded;
8892 and for Compose, there is no message, so the parts of the Pattern that depend
8893 on a message (everything other than Current Folder Type and the
8894 Beginning of Month and Year)
8895 are not used.
8896 Only the Current Folder Type matters for Compose (plus the Beginning of
8897 Month or Year, which you wouldn't usually use for a Role).
8898 For Scoring, the message being scored is compared with all of the Score
8899 Patterns, and the Score Values from the ones that match are added together to 
8900 get the message's score.
8901 For Other Rules, there is no message. Only the Current Folder Type is checked
8902 for Other Rules.
8904 Each Pattern has several possible parts, all of which are optional.
8905 In order for there to be a match, <EM>ALL</EM> of the
8906 <EM>defined</EM> parts of the Pattern must match the message.
8907 If a part is not defined it is considered a match, but note that a filtering
8908 Pattern must have at least one defined part or it will be ignored.
8909 For example, if the To pattern is not defined it will be
8910 displayed as
8912 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
8914 That is considered a match because it is not defined.
8915 This means that the Pattern with nothing defined is a match if the
8916 Current Folder Type matches, but there is an exception that was mentioned
8917 in the previous paragraph.
8918 Because filtering is a potentially destructive action, filtering Patterns
8919 with nothing other than Current Folder Type defined are ignored.
8920 If you really want a filtering Pattern to match all messages (subject to
8921 Current Folder Type) the best way to do it is to define a Score interval
8922 that includes all possible scores.
8923 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
8924 This can be used even if you haven't defined any rules to Set Scores.
8926 There are six predefined header patterns called the To, From, Sender, Cc, News,
8927 and Subject patterns.
8928 Besides those six predefined header patterns, you may add
8929 additional header patterns with header fieldnames of your choosing.
8930 You add an extra header pattern by placing the cursor on one of the
8931 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
8932 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
8933 and the Partic pattern is a header pattern that stands for
8934 Participant (From OR To OR Cc).
8935 (Defining the Recip pattern does not have the same effect as defining both
8936 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
8937 Similar to the header patterns are the AllText pattern and the BodyText pattern.
8938 Instead of comparing this pattern's text against only the contents of
8939 a particular header field, the text for the AllText pattern is compared
8940 with text anywhere in the message's header or body, and the text for the
8941 BodyText pattern is compared with text anywhere in the message's body.
8943 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
8944 &quot;!&quot; &quot;toggle NOT&quot; command.
8945 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8946 &quot;!&quot; at the beginning of the pattern line.
8947 When the &quot;!&quot; is present, it reverses the meaning of the match.
8948 That is, if the pattern matches then it is considered to NOT be a match, and
8949 if it does not match it is considered to be a match.
8951 Don't make the mistake of putting the &quot;!&quot; in the data field for
8952 a pattern.
8953 For example, if you type the characters &quot;!urgent&quot; into the Subject
8954 pattern, the pattern will look like:
8956 <PRE>
8957  Subject pattern = !urgent
8958 </PRE>
8960 This means you want to match the 7 character sequence &quot;!urgent&quot;.
8961 In order to match messages that do not have &quot;urgent&quot; in
8962 their Subject field, first type the characters &quot;urgent&quot; followed
8963 by carriage return for the value of the Subject pattern, then negate it
8964 by typing the &quot;!&quot; command.
8965 It should look like
8967 <PRE>
8968  ! Subject pattern = urgent
8969 </PRE>
8971 The contents of each of these header patterns (or the AllText or BodyText patterns) may
8972 be a complete email address, part of an address, or a random set of
8973 characters to match against.
8974 It may also be a list of such patterns, which means you
8975 are looking for a match against the first pattern in the list <EM>OR</EM>
8976 the second pattern <EM>OR</EM> the third and so on.
8977 For example, a Subject pattern equal to
8979 <PRE>
8980  Subject pattern = urgent
8981                    emergency
8982                    alert
8983 </PRE>
8985 would match all messages with a subject that contained at least one
8986 of those words.
8987 It would also match subjects containing the words &quot;alerts&quot; or
8988 &quot;Urgently&quot;.
8990 The same example with &quot;NOT&quot; turned on would be
8992 <PRE>
8993  ! Subject pattern = urgent
8994                      emergency
8995                      alert
8996 </PRE>
8998 which would match all messages with a subject that did <EM>NOT</EM> contain any of
8999 those words.
9000 You can use the &quot;Add Value&quot; command to add new words to the list,
9001 or you can enter them as a comma-separated list.
9003 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9004 present for a match.
9005 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9006 pattern2 must be present,
9007 and that is exactly what using a list does.)
9009 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9010 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9011 when checking for matches for Scoring.
9012 There are five similar settings that relate to the status of the message.
9013 These settings rely on the message being New or not, Deleted or not,
9014 Answered or not, Important or not, and Recent or not.
9015 There are also some other miscellaneous settings.
9016 The first is the Age of the message in days.
9017 Another is the Size of the message, in bytes.
9018 The third is a setting that detects whether or not the Subject of a
9019 message contains raw 8-bit characters (unencoded characters with the most
9020 significant bit set).
9021 There is a setting that detects whether or not this is the first time
9022 Alpine has been run this month (doesn't depend on individual messages),
9023 and another that detects whether or not this is the first time Alpine has
9024 been run this year.
9025 Other parts of the Pattern detect whether or not the From address of a
9026 message appears in your address book, whether or not certain keywords
9027 are set for a message, and whether or not certain character sets are
9028 used in a message.
9030 <H2>Parts of a Pattern</H2>
9032 <H3>Header patterns</H3>
9034 A header pattern is simply text that is searched for in the corresponding
9035 header field.
9036 For example, if a Pattern has a From header pattern with the value
9037 &quot;@company.com&quot;, then only messages that have a From header
9038 that contains the text &quot;@company.com&quot; will be possible
9039 matches.
9040 Matches don't have to be exact.
9041 For example, if the relevant field of a message contains the text
9042 &quot;mailbox@domain&quot; somewhere
9043 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9044 &quot;mailbox@domain&quot; are all matches.
9046 All parts of the Pattern must match so, for example,
9047 if a message matches a defined
9048 From pattern, it still must be checked against the other parts of the
9049 Pattern that have been defined.
9050 The To header pattern is a slightly special case.
9051 If the message being checked has a Resent-To header
9052 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9053 there are used in place of the addresses in the To header.
9054 This is only true for the To header.
9055 Resent-cc and Resent-From headers are never used unless you add them
9056 with the eXtraHdrs command.
9058 The meaning of a header pattern may be negated with the
9059 &quot;!&quot; &quot;toggle NOT&quot; command.
9060 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9061 &quot;!&quot; at the beginning of the pattern line.
9062 It would look something like
9064 <PRE>
9065  ! From pattern = susan@example.com
9066 </PRE>
9068 When the &quot;!&quot; is present, it reverses the meaning of the match.
9070 If you want to check for the presence of a header field but don't care
9071 about its value, then
9072 the empty pattern that you get by entering a pair of
9073 double quotes (&quot;&quot;) should match any message that
9074 has the corresponding header field.
9076 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9078 AllText patterns are just like header patterns except that the text is
9079 searched for anywhere in the message's headers or body, not just in the
9080 contents of a particular header field.
9083 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9085 BodyText patterns are just like header patterns except that the text is
9086 searched for anywhere in the message's body, not just in the
9087 contents of a particular header field.
9090 If there is more than one header pattern or AllText pattern or BodyText pattern
9091 for which you want to take the
9092 same action there is a shorthand notation that may be used.
9093 Any of these patterns may be a list of patterns instead of
9094 just a single pattern.
9095 If any one of the patterns in the list matches the message
9096 then it is considered a match.
9097 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9098 you to use the same role when replying to messages, you might have
9099 a To pattern that looks like
9101 <PRE>
9102  To pattern = company1.com
9103               company2.com
9104 </PRE>
9106 This means that if the mail you are replying to was addressed to
9107 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9108 then this Pattern is a match and the same actions will be taken.
9110 The meaning of an AllText or BodyText pattern may be negated with the
9111 &quot;!&quot; &quot;toggle NOT&quot; command.
9112 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9113 &quot;!&quot; at the beginning of the pattern line.
9114 When the &quot;!&quot; is present, it reverses the meaning of the match.
9116 A technicality: Since comma is the character used to separate multiple values
9117 in any of the fields that may have multiple values (such as header patterns,
9118 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9119 you must escape comma with a
9120 backslash (&#92;) if you want to include a literal comma in one of those fields.
9121 In other words, if you type a backslash followed by a comma it will
9122 be interpreted as a comma by Alpine, instead of as a separator between
9123 pattern values.
9124 All other backslashes (those not followed by a comma) are literal
9125 backslashes and should not be escaped.
9126 It's unlikely you'll ever need to enter a literal comma or backslash in
9127 any of the patterns.
9129 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9131 The &quot;Current Folder Type&quot; may be set to one of four different
9132 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9133 &quot;Specific&quot;.
9134 If the value is set to &quot;News&quot;, then the
9135 Pattern will only match if the currently open folder is a newsgroup.
9136 The value &quot;Email&quot; only matches if the current folder is not news and
9137 the value &quot;Any&quot; causes any folder to match.
9138 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9139 then you must fill in a value for &quot;Folder&quot;, which is on the line
9140 below the &quot;Specific&quot; line.
9141 In this case you will only get a match if the currently open folder is
9142 the specific folder you list.
9143 You may give a list of folders instead of just a single
9144 folder name, in which case the Pattern will match if the open folder is
9145 any one of the folders in the list.
9146 The name of each folder in the list may be either &quot;INBOX&quot;,
9147 the technical specification
9148 of the folder (like what appears in your configuration file) or, if the
9149 folder is one of your incoming folders, it may be the nickname you've given
9150 the folder.
9151 Here are some samples of specific folder names:
9153 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9155 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9157 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9159 The easiest way to fill in the &quot;Folder&quot; field is to use
9160 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9161 highlighted, or to use the &quot;Take&quot; command with the configuration
9162 feature
9163 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9164 turned on.
9166 When reading a newsgroup, there may be a performance penalty
9167 incurred when collecting the information necessary to check whether
9168 or not a Pattern matches a message.
9169 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9170 If you have Patterns with a Current Folder Type of either
9171 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9172 Index Line Coloring or Scoring, you may experience
9173 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9175 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9177 The &quot;Age Interval&quot; may be set to an interval of message
9178 ages that should be considered a match.
9179 Like the other parts of the Pattern, if it is unset it will be ignored.
9180 The Age Interval looks like
9182 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9184 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9185 than or equal to zero.
9186 The special value &quot;INF&quot; may be used for
9187 the max value. It represents infinity.
9189 Actually, this option may be defined as a list of intervals instead
9190 of just a single interval.
9191 The list is separated by commas.
9192 It can look like
9194 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9196 When there is an Age Interval defined, it is a match if the age, in days, of
9197 the message is contained in any of the intervals.
9198 The intervals include both endpoints.
9200 Even though this option is called Age, it isn't actually
9201 the <EM>age</EM> of the message.
9202 Instead, it is how many days ago the message arrived in one of your folders.
9203 If the current time is a little past midnight, then a message that arrived
9204 just before midnight arrived yesterday, even though the message is only
9205 a few minutes old.
9206 By default, the date being used is not the date in the Date
9207 header of the message.
9208 It is the date that the message arrived in one of your folders.
9209 When you Save a message from one folder to another that arrival date
9210 is preserved.
9211 If you would like to use the date in the Date header that is possible.
9212 Turn on the option
9213 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9214 near the bottom of the rule definition.
9215 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9217 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9219 The &quot;Size Interval&quot; may be set to an interval of message
9220 sizes that should be considered a match.
9221 Like the other parts of the Pattern, if it is unset it will be ignored.
9222 The Size Interval looks like
9224 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9226 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9227 than or equal to zero.
9228 The special value &quot;INF&quot; may be used for
9229 the max value. It represents infinity.
9231 Actually, this option may be defined as a list of intervals instead
9232 of just a single interval.
9233 The list is separated by commas.
9234 It can look like
9236 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9238 When there is a Size Interval defined, it is a match if the size, in bytes, of
9239 the message is contained in any of the intervals.
9240 The intervals include both endpoints.
9242 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9244 The &quot;Score Interval&quot; may be set to an interval of message
9245 scores that should be considered a match.
9246 Like the other parts of the Pattern, if it is unset it will be ignored.
9247 The Score Interval looks like
9249 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9251 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9252 negative integers, with min_score less than or equal to max_score.
9253 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9254 the min and max values to represent negative and positive infinity.
9256 Actually, a list of intervals may be used if you wish.
9257 A list would look like
9259 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9261 When there is a Score Interval defined, it is a match if the score for
9262 the message is contained in any of the intervals in the list.
9263 The intervals include the endpoints.
9264 The score for a message is calculated by looking at every Score rule defined and
9265 adding up the Score Values for the ones that match the message.
9266 When deciding whether or not a Pattern matches a message for purposes of
9267 calculating the score, the Score Interval is ignored.
9269 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9271 There are five separate message status settings.
9272 By default, all five are set to the value &quot;Don't care&quot;, which
9273 will match any message.
9274 The value &quot;Yes&quot; means that the particular status must be true
9275 for a match, and the value &quot;No&quot; means that the particular
9276 status must not be true for a match.
9277 For example, one of the five Message Status settings is whether a message
9278 is marked Important or not.
9279 A &quot;Yes&quot; means that the message must be Important to be
9280 considered a match and &quot;No&quot; means that the message must not be
9281 Important to be considered a match.
9282 The same is true of the other four message status settings that depend
9283 on whether or not the message is New; whether the message has 
9284 been Answered or not; whether the message has been Deleted or not, and
9285 whether the message is Recent or not. 
9287 The nomenclature for New and Recent is a bit confusing:
9289 New means that the message is Unseen.
9290 It could have been in your mailbox for a long time but if you haven't looked
9291 at it, it is still considered New.
9292 That matches the default Alpine index display that shows an N for such a
9293 message.
9295 Recent means that the message was added to this folder since the last time
9296 you opened the folder.
9297 Alpine also shows an N by default for these types of messages.
9298 If you were to run two copies of Alpine that opened a folder one right after
9299 the other, a message would only show up as Recent in (at most) the first
9300 Alpine session.
9302 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9304 Keywords are similar to Message Status, but they are chosen by the user.
9305 Provided the mail server allows for it, you may add a set of possible keywords
9306 to a folder and then you may set those keywords or not for each message
9307 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9308 The syntax of this part of the Pattern is similar to the header patterns.
9309 It is a list of keywords.
9310 The Keyword part of the Pattern is a match if the message has any of
9311 the keywords in the list set.
9312 Like other parts of the Pattern, if this is unset it will be ignored.
9314 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9316 A message may use one or more character sets.
9317 This part of the Pattern matches messages that make use of one or more of
9318 the character sets specified in the pattern.
9319 It will be considered a match if a message uses any of the character
9320 sets in the list you give here.
9323 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9324 GB2312) you may also use some shorthand names that Alpine provides.
9325 These names are more understandable shorthand names for sets of 
9326 character set names.
9327 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9328 Selecting one of these shorthand names is equivalent to selecting all of
9329 the character sets that make up the set.
9330 You can see all of these shorthand names and the lists of character sets
9331 they stand for by typing the &quot;T&quot; command with the Character
9332 Set pattern highlighted.
9333 The syntax of this part of the Pattern is similar to the header patterns
9334 and the Message Keywords pattern.
9335 It is a list of character sets (or shorthand names).
9336 The Character Set part of the Pattern is a match if the message uses any
9337 of the character sets in the list.
9338 Like other parts of the Pattern, if this is unset it will be ignored.
9340 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9342 It seems that lots of unwanted email contains unencoded 8-bit characters
9343 in the Subject.
9344 Normally, characters with the 8th bit set are not allowed in the Subject
9345 header unless they are MIME-encoded.
9346 This option gives you a way to match messages that have Subjects that
9347 contain unencoded 8-bit characters.
9348 By default, the value of this option is &quot;Don't care&quot;, which
9349 will match any message.
9350 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9351 the Subject of the message in order for there to be a match,
9352 and the value &quot;No&quot; is the opposite.
9353 Setting this option will affect performance in large folders because the
9354 subject of each message in the folder has to be checked.
9356 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9358 This option gives you a way to take some action once per month.
9359 By default, the value of this option is &quot;Don't care&quot;, which
9360 will always match.
9361 The value &quot;Yes&quot; means that this must be the first time Alpine has
9362 been run this month in order to count as a match,
9363 and the value &quot;No&quot; is the opposite.
9365 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9367 This option gives you a way to take some action once per year.
9368 By default, the value of this option is &quot;Don't care&quot;, which
9369 will always match.
9370 The value &quot;Yes&quot; means that this must be the first time Alpine has
9371 been run this year in order to count as a match,
9372 and the value &quot;No&quot; is the opposite.
9374 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9376 This option gives you a way to match messages that have an address
9377 that is in one of your address books.
9378 Only the simple entries in your address books are searched.
9379 Address book distribution lists are ignored!
9380 By default, the value of this option is &quot;Don't care&quot;, which
9381 will match any message.
9382 The value &quot;Yes, in any address book&quot; means the address
9383 from the message must be in at least one of your
9384 address books in order to be a match.
9385 The value &quot;No, not in any address book&quot;
9386 means none of the addresses may
9387 be in any of your address books in order to be a match.
9388 The values &quot;Yes, in specific address books&quot; and
9389 &quot;No, not in any of specific address books&quot; are similar but instead
9390 of depending on all address books you are allowed to give a list of address
9391 books to look in.
9392 The addresses from the message that are checked for are determined by the
9393 setting you have for &quot;Types of addresses to check for in address book&quot;.
9394 If you set this to &quot;From&quot; the From address from the message will
9395 be looked up in the address book.
9396 If you set it to only &quot;To&quot; then the To addresses will be used.
9397 If any of the To addresses are in the address book then it is considered
9398 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9399 You could set it to both From and To, in which case all of the From and To
9400 addresses are used.
9401 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9402 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9403 exists or the From address if there is no Reply-To address.
9404 Same for the Sender address.
9405 Setting this option may affect performance in large folders because the
9406 From and Reply-To of each message in the folder have to be checked.
9408 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9410 This is a command that is run with its standard input set to the message
9411 being checked and its standard output discarded.
9412 The full directory path should be specified.
9413 The command will be run and then its exit status will be checked against
9414 the Exit Status Interval, which defaults to just the value zero.
9415 If the exit status of the command falls in the interval, it is considered
9416 a match, otherwise it is not a match.
9419 This option may actually be a list of commands.
9420 The first one that exists and is executable is used.
9421 That makes it possible to use the same configuration with Unix Alpine and
9422 PC-Alpine.
9425 If none of the commands in the list exists and is executable then the rule
9426 is <EM>not</EM> a match.
9427 If it is possible that the command may not exist, you should be careful
9428 to structure your rules so that nothing destructive
9429 happens when the command does not exist.
9430 For example, you might have a filter that filters away spam when there is
9431 a match but does nothing when there is not a match.
9432 That would continue to work correctly if the command didn't exist.
9433 However, if you have a filter that filters away spam when there is not
9434 a match and keeps it when there is a match, that would filter everything
9435 if the categorizer command didn't exist.
9437 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9438 setup for the bogofilter filter.
9441 &lt;End of help on this topic&gt;
9442 </BODY>
9443 </HTML>
9444 ===== h_rules_roles =====
9445 <HTML>
9446 <HEAD>
9447 <TITLE>SETUP ROLES SCREEN</TITLE>
9448 </HEAD>
9449 <BODY>
9450 <H1>SETUP ROLES SCREEN</H1>
9451 <H2>SETUP ROLES COMMANDS</H2>
9452 <!--chtml if pinemode="function_key"-->
9453 <PRE>
9454 Available  Commands -- Group 1         Available Commands -- Group 2   
9455 -------------------------------        ------------------------------  
9456 F1  Show Help Text                      F1  Show Help Text             
9457 F2  See commands in next group          F2  See commands in next group
9458 F3  Back to MAIN Alpine menu
9459 F4  Change configuration for role
9460 F5  Move to previous role               F5  Include file in role config
9461 F6  Move to next role                   F6  Exclude file from config
9462 F7  Previous page of roles
9463 F8  Next page of roles
9464 F9  Add new role                        F9  Replicate existing role
9465 F10 Delete existing role
9466 F11 Shuffle the order of roles
9467 F12 Whereis (search role nicknames)
9468 </PRE>
9469 <!--chtml else-->
9470 <PRE>
9471 Navigation                     General Alpine Commands
9472 -------------------------      -----------------------
9473  P  Prev Role                     ?  Display this help text
9474  N  Next Role                     E  Back to MAIN Alpine menu
9475  -  Previous page
9476 Spc (space bar) Next page
9477  W  WhereIs (search for word in role nicknames)
9479 Setup Roles Commands
9480 ------------------------------------------------
9481  A  Add new role                  $  Shuffle the order of roles
9482  D  Delete existing role          C  Change configuration for highlighted role
9483  R  Replicate existing role
9484  I  Include file in role config   X  Exclude file from role config
9485 </PRE>
9486 <!--chtml endif-->
9488 <H2>Description of the Setup Roles Screen</H2>
9490 This screen lets you add, delete, modify, or change the order of the rules
9491 that determine the role you are playing when composing a message.
9493 You may play different roles depending on who you are replying to.
9494 For example, if you are replying to a message addressed to help-desk you
9495 may be acting as a Help Desk Worker.
9496 That role may require that you use a different return address and/or
9497 a different signature.
9499 Roles are optional.
9500 If you set up roles they work like this:  Each role has a set of
9501 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9502 considered for a particular use; a &quot;Pattern&quot;,
9503 which is used to decide which of the eligible roles is used; and a set
9504 of &quot;Actions&quot;, which are taken when that role is used.
9505 When you reply to a message, the message you are replying to is compared
9506 with the Patterns of the roles marked as eligible for use when replying.
9507 The comparisons start with the first eligible role and keep going until there
9508 is a match.
9509 If a match is found, the matching role's Actions are taken.
9511 It is also possible to set a default role and to change that role during
9512 your Alpine session.
9513 When you start Alpine no default role will be set.
9514 You may set or change the current default role by using the &quot;D&quot;
9515 command in the role selection screen.
9516 You'll see that screen while composing a message and being asked to select
9517 a role.
9518 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9519 compose a message.
9520 You may find a default role useful if you normally perform the duties of one
9521 of your roles for a while, then you switch to another role and stay in the
9522 new role for another period of time.
9523 It may be easier than using the Role Command to select the role each time you
9524 compose a message.
9526 <H2>Role Uses</H2>
9528 There are three types of use to be configured;
9529 one for Replying, one for Forwarding, and one for Composing.
9530 These indicate whether or not you want a role to be considered when you
9531 type the Reply, Forward, or Compose commands.
9532 (The Role command is an alternate form of the Compose command, and it is
9533 not affected by these settings.)
9534 Each of these Use types has three possible values.
9535 The value &quot;Never&quot;
9536 means that the role will never be considered as a candidate for use with
9537 the corresponding command.
9538 For example, if you set a role's Reply Use to Never, then when you Reply to
9539 a message, that role won't even be considered.
9540 (That isn't quite true. If the message you are replying to matches some other
9541 role that requires confirmation,
9542 then there will be a ^T command available which allows you to select a role
9543 from all of your roles, not just the reply-eligible roles.)
9546 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9547 both mean that you do want to consider this role when using the corresponding
9548 command.
9549 For either of these settings the role's Pattern will
9550 be checked to see if it matches the message.
9551 For Reply Use, the message used to compare the Pattern with is the message
9552 being replied to.
9553 For Forward Use, the message used to compare the Pattern with is the message
9554 being forwarded.
9555 For Compose Use, there is no message, so the parts of the Pattern that depend
9556 on a message (everything other than Current Folder Type) are ignored.
9557 In all cases, the Current Folder Type is checked if defined.
9558 If there is a match then this role will either be used without confirmation
9559 or will be the default when confirmation is asked for, depending on
9560 which of the two options is selected.
9561 If confirmation is requested, you will have a chance to
9562 choose No Role instead of the offered role, or to
9563 change the role to any one of your other roles (with the ^T command).
9565 <H2>Role Patterns</H2>
9567 In order to determine whether or not a message matches a role the message is
9568 compared with the Role's Pattern.
9569 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9570 Scoring, Other Rules, and Search Rules, so are described in only one place,
9571 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9573 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9574 a role that has all header patterns unset, the AllText pattern unset,
9575 the BodyText pattern unset,
9576 the Score Interval unset, and the Current Folder Type set to
9577 &quot;Any&quot; may be used as a default role.
9578 It should be put last in the list of roles since the matching
9579 starts at the beginning and proceeds until one of the roles is a match.
9580 If no roles at all match, then Alpine will
9581 use its regular methods of defining the role.
9582 If you wanted to, you could define a different &quot;default&quot; role
9583 for Replying, Forwarding, and Composing by setting the
9584 &quot;Use&quot; fields appropriately.
9586 <H2>Role Actions</H2>
9588 Once a role match is found, the role's Actions are taken.
9589 For each role there are several possible actions that may be defined.
9590 They are actions to set the From address, the Reply-To address,
9591 the Fcc, the Signature, the Template file, and Other Headers.
9593 <H3>Set From</H3>
9595 The From address is the address used on the From line of the message
9596 you are sending.
9598 <H3>Set Reply-To</H3>
9600 The Reply-To address is the address used on the Reply-To line of the message
9601 you are sending.
9602 You don't need a Reply-To address unless it is different from the From address.
9604 <H3>Set Other Headers</H3>
9606 If you want to set the value of the From or Reply-To headers, use
9607 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9608 If you want to set the values of other headers, use this field.
9609 This field is similar to the
9610 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9611 Each header you specify here must include the header tag
9612 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9613 and may optionally include a value for that header.
9614 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9615 for a header here will replace any value that already exists.
9616 For example, if you are Replying to a message there will be at least one
9617 address in the To header (the address you are Replying to).
9618 However, if you Reply using a role that sets the To header, that role's
9619 To header value will be used instead.
9621 <H3>Set Fcc</H3>
9623 The Fcc is used as the Fcc for the message you are sending.
9625 <H3>Set Signature or Set LiteralSig</H3>
9627 The Signature is the name of a file to be used as the signature file when
9628 this role is being used.
9629 If the name of the file has a vertical bar following it (|)
9630 then it is assumed that the file is a program that should be run to
9631 produce the signature.
9632 If the LiteralSig is set, then it is used instead of the signature file.
9633 LiteralSig is just a different way to store the signature.
9634 It is stored in the pine configuration file instead of in a separate
9635 signature file.
9636 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9637 either in the role or as the default signature in the Setup/Config screen,
9638 then the signature file is ignored.
9640 <H3>Set Template</H3>
9642 A Template is the name of a file to be included in the message when this
9643 role is being used.
9644 If the name of the file has a vertical bar following it (|)
9645 then it is assumed that the file is a program that should be run to
9646 produce the template.
9649 Both signature files and template files may be stored remotely on an IMAP
9650 server.
9651 In order to do that you just give the file a remote name.
9652 This works just like the regular
9653 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9654 option that is configured from the Setup/Configuration screen.
9655 A remote signature file name might look like:
9657 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9659 Once you have named the remote signature or template file you create its
9660 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9661 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9662 line of the role editor.
9665 Both signature files and template files (or the output of signature programs
9666 and template file programs) may contain special tokens
9667 that are replaced with contents
9668 that depend on the message being replied to or forwarded.
9669 See the help for the individual fields inside the role editor for more
9670 information on tokens.
9672 <H3>Use SMTP Server</H3>
9674 If this field has a value, then it will be used as the SMTP server
9675 to send mail when this role is being used (unless the SMTP server variable
9676 is set in the system-wide fixed configuration file).
9677 It has the same semantics as the
9678 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9679 variable in the Setup/Config screen.
9680 When you postpone the composition this SMTP server list will be saved
9681 with the postponed composition and it cannot be changed later.
9682 Because of that, you may want to make this a list of SMTP servers
9683 with the preferred server at the front of the list and alternate servers
9684 later in the list.
9687 If any of the actions are left unset, then the action depends on what
9688 is present in the &quot;Initialize settings using role&quot; field.
9689 If you've listed the nickname of another one of your roles there, then the
9690 corresponding action from that role will be used here.
9691 If that action is also blank, or if there is no nickname specified,
9692 then Alpine will do whatever it normally does to set these actions.
9693 This depends on other configuration options and features you've set.
9695 <H2>Command Descriptions</H2>
9697 <H3>Add</H3>
9699 The Add command is used to add a new role definition to your set of
9700 roles.
9701 The new role will be added after the highlighted role.
9703 <H3>Delete</H3>
9705 The Delete command deletes the currently highlighted role.
9707 <H3>Change</H3>
9709 The Change command lets you edit the nickname, Uses, Pattern,
9710 and Actions of the currently highlighted role.
9712 <H3>Shuffle</H3>
9714 The Shuffle command allows you to change the order of the roles.
9715 You may move the currently highlighted role up or down in the list.
9716 The order of the roles is important since the roles are tested for a
9717 match starting with the first role and continuing until a match is found.
9718 You should place the roles with more specific Patterns near the beginning
9719 of the list, and those with more general Patterns near the end so that
9720 the more specific matches will happen when appropriate.
9722 <H3>Replicate</H3>
9724 The Replicate command is used to copy an existing role and modify it.
9725 The new role will be added after the highlighted role.
9727 <H3>IncludeFile</H3>
9729 The IncludeFile command allows you to add a roles file to your configuration.
9730 Usually, your roles will be contained in your Alpine configuration file.
9731 If you wish, some or all of your roles may be stored in a separate file.
9732 If a roles file already exists (maybe it was made by somebody else using
9733 Alpine), you may insert it before the currently highlighted role.
9734 You may also insert an empty file or a file that does not yet exist.
9735 Once you have an empty roles file in your configuration, you may use
9736 the Shuffle command to move roles into it.
9737 In fact, that's the only way to get the initial role into the file.
9739 <H3>eXcludeFile</H3>
9741 The eXcludeFile command removes a roles file from your roles configuration.
9742 A limitation of the program is that in order to exclude a roles file
9743 that file must have at least one role
9744 in it, otherwise you won't be able to highlight a line in the file.
9745 So you may have to add a dummy role to the file in order to exclude the file.
9746 <P><UL>
9747 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9748 </UL>
9750 &lt;End of help on this topic&gt;
9751 </BODY>
9752 </HTML>
9753 ===== h_rules_other =====
9754 <HTML>
9755 <HEAD>
9756 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
9757 </HEAD>
9758 <BODY>
9759 <H1>SETUP OTHER RULES SCREEN</H1>
9760 <H2>SETUP OTHER RULES COMMANDS</H2>
9761 <!--chtml if pinemode="function_key"-->
9762 <PRE>
9763 Available  Commands -- Group 1         Available Commands -- Group 2   
9764 -------------------------------        ------------------------------  
9765 F1  Show Help Text                      F1  Show Help Text             
9766 F2  See commands in next group          F2  See commands in next group
9767 F3  Back to MAIN Alpine menu
9768 F4  Change configuration for rule
9769 F5  Move to previous rule               F5  Include file in rule config
9770 F6  Move to next rule                   F6  Exclude file from config
9771 F7  Previous page of rules
9772 F8  Next page of rules
9773 F9  Add new rule                        F9  Replicate existing rule
9774 F10 Delete existing rule
9775 F11 Shuffle the order of rules
9776 F12 Whereis (search rule nicknames)
9777 </PRE>
9778 <!--chtml else-->
9779 <PRE>
9780 Navigation                     General Alpine Commands
9781 -------------------------      -----------------------
9782  P  Prev rule                     ?  Display this help text
9783  N  Next rule                     E  Back to MAIN Alpine menu
9784  -  Previous page
9785 Spc (space bar) Next page
9786  W  WhereIs (search for word in rule nicknames)
9788 Setup Other Rules Commands
9789 ------------------------------------------------
9790  A  Add new rule                  $  Shuffle the order of rules
9791  D  Delete existing rule          C  Change configuration for highlighted rule
9792  R  Replicate existing rule
9793  I  Include file in rule config   X  Exclude file from rule config
9794 </PRE>
9795 <!--chtml endif-->
9797 <H2>Description of the Setup Other Rules Screen</H2>
9799 This is where you may set various actions that do not fit well into the
9800 other Rules categories.
9802 <H2>Patterns</H2>
9804 Other Rules are a little different from the rest of the Rules because
9805 they depend only on the current folder, and not on a particular message.
9806 In order to determine whether or not a rule's actions should be applied
9807 the current folder is compared with the rule's Pattern, which consists
9808 of only the Current Folder Type.
9809 Current Folder Type works the same for Other Rules as it does for Roles,
9810 Filtering, Index Coloring, and Scoring.
9811 Keep in mind that the only part of the Pattern that applies to Other
9812 Rules is the Current Folder Type when looking at the description of
9813 Patterns given
9814 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9816 <H2>The Actions</H2>
9818 <H3>Set Sort Order</H3>
9820 When you enter a new folder, these rules will be checked to see if you
9821 have set a sort order that is different from your default sort order.
9822 The default is set in the Setup/Config screen with
9823 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
9824 If the Sort Order action is set, then the folder will be displayed sorted in
9825 that sort order instead of in the default order.
9827 A possible point of confusion arises when you change the configuration
9828 of the Sort Order for the currently open folder.
9829 The folder will normally be re-sorted when you go back to viewing the
9830 index.
9831 However, if you have manually sorted the folder with the
9832 Sort
9833 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
9834 command, then it will not be re-sorted until the next time it is opened.
9836 <H3>Set Index Format</H3>
9838 When you enter a new folder, these rules will be checked to see if you
9839 have set an Index Format that is different from your default Index Format,
9840 which is set with the
9841 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
9842 If so, the index will be displayed with this format instead of the default.
9844 <H3>Set Startup Rule</H3>
9846 When you enter a new folder, these rules will be checked to see if you
9847 have set a startup rule that is different from the default startup rule.
9848 The default for incoming folders is set in the Setup/Config screen with
9849 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
9850 The default for folders other than INBOX that are not part of your
9851 incoming collection
9852 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
9853 is to start with the last message in the folder.
9854 If the Startup Rule is set to something other than &quot;default&quot;,
9855 then the rule will determine which message will be the current message when
9856 the folder is first opened.
9858 The various startup rule possibilities work the same here as they do in
9859 the incoming collection, so check
9860 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
9861 for more help.
9863 <H2>Command Descriptions</H2>
9865 <H3>Add</H3>
9867 The Add command is used to add a new rule definition to your set of
9868 rules.
9869 The new rule will be added after the highlighted rule.
9871 <H3>Delete</H3>
9873 The Delete command deletes the currently highlighted rule.
9875 <H3>Change</H3>
9877 The Change command lets you edit the nickname, Pattern,
9878 and Action of the currently highlighted rule.
9880 <H3>Shuffle</H3>
9882 The Shuffle command allows you to change the order of the rules.
9883 You may move the currently highlighted rule up or down in the list.
9884 The order of the rules is important since the rules are tested for a
9885 match starting with the first rule and continuing until a match is found.
9886 You should place the rules with more specific Patterns near the beginning
9887 of the list, and those with more general Patterns near the end so that
9888 the more specific matches will happen when appropriate.
9890 <H3>Replicate</H3>
9892 The Replicate command is used to copy an existing rule definition and modify it.
9893 The new rule will be added after the highlighted rule.
9895 <H3>IncludeFile</H3>
9897 The IncludeFile command allows you to add a rules file to your configuration.
9898 Usually, your rules will be contained in your Alpine configuration file.
9899 If you wish, some or all of your rules may be stored in a separate file.
9900 If a rules file already exists (maybe it was made by somebody else using
9901 Alpine), you may insert it before the currently highlighted rule.
9902 You may also insert an empty file or a file that does not yet exist.
9903 Once you have an empty rules file in your configuration, you may use
9904 the Shuffle command to move rules into it.
9905 In fact, that's the only way to get the initial rule into the file.
9907 <H3>eXcludeFile</H3>
9909 The eXcludeFile command removes a rules file from your rules configuration.
9910 A limitation of the program is that in order to exclude a rules file
9911 that file must have at least one rule
9912 in it, otherwise you won't be able to highlight a line in the file.
9913 So you may have to add a dummy rule to the file in order to exclude the file.
9914 <P><UL>
9915 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9916 </UL>
9918 &lt;End of help on this topic&gt;
9919 </BODY>
9920 </HTML>
9921 ===== h_rules_srch =====
9922 <HTML>
9923 <HEAD>
9924 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
9925 </HEAD>
9926 <BODY>
9927 <H1>SETUP SEARCH RULES SCREEN</H1>
9928 <H2>SETUP SEARCH RULES COMMANDS</H2>
9929 <!--chtml if pinemode="function_key"-->
9930 <PRE>
9931 Available  Commands -- Group 1         Available Commands -- Group 2   
9932 -------------------------------        ------------------------------  
9933 F1  Show Help Text                      F1  Show Help Text             
9934 F2  See commands in next group          F2  See commands in next group
9935 F3  Back to MAIN Alpine menu
9936 F4  Change configuration for rule
9937 F5  Move to previous rule               F5  Include file in rule config
9938 F6  Move to next rule                   F6  Exclude file from config
9939 F7  Previous page of rules
9940 F8  Next page of rules
9941 F9  Add new rule                        F9  Replicate existing rule
9942 F10 Delete existing rule
9943 F11 Shuffle the order of rules
9944 F12 Whereis (search rule nicknames)
9945 </PRE>
9946 <!--chtml else-->
9947 <PRE>
9948 Navigation                     General Alpine Commands
9949 -------------------------      -----------------------
9950  P  Prev rule                     ?  Display this help text
9951  N  Next rule                     E  Back to MAIN Alpine menu
9952  -  Previous page
9953 Spc (space bar) Next page
9954  W  WhereIs (search for word in rule nicknames)
9956 Setup Search Rules Commands
9957 ------------------------------------------------
9958  A  Add new rule                  $  Shuffle the order of rules
9959  D  Delete existing rule          C  Change configuration for highlighted rule
9960  R  Replicate existing rule
9961  I  Include file in rule config   X  Exclude file from rule config
9962 </PRE>
9963 <!--chtml endif-->
9965 <H2>Description of the Setup Search Rules Screen</H2>
9967 One of the commands that becomes available when that feature is turned on
9968 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
9969 screen to select a set of messages.
9970 One way of selecting messages is to use a Rule.
9971 All of the messages that match (or don't match if you wish)
9972 a Rule's Pattern will be selected.
9974 Any of your Rules may be used for this purpose.
9975 You might already have Rules set up for filtering, index line color, scores, or roles;
9976 and you may use any of those Rules with the Select command.
9977 However, you might find it more convenient to set up a separate set of Rules
9978 just for this purpose without having to worry about what other effects
9979 they may cause.
9980 That is the purpose of these Select Rules.
9983 Each rule has a &quot;Pattern&quot;
9984 that is used to decide which messages are selected when you use it with
9985 the Select command.
9987 <H2>Patterns</H2>
9989 In order to determine whether or not a message should be selected
9990 the message is compared with the rule's Pattern.
9991 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9992 Scoring, Other Rules, and Search Rules, so are described in only one place,
9993 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9995 <H2>Command Descriptions</H2>
9997 <H3>Add</H3>
9999 The Add command is used to add a new rule definition to your set of
10000 rules.
10001 The new rule will be added after the highlighted rule.
10003 <H3>Delete</H3>
10005 The Delete command deletes the currently highlighted rule.
10007 <H3>Change</H3>
10009 The Change command lets you edit the nickname and Pattern
10010 of the currently highlighted rule.
10012 <H3>Shuffle</H3>
10014 The Shuffle command allows you to change the order of the rules.
10015 This affects only the order they are presented in when you use the
10016 ^T subcommand of the Select by Rule command.
10017 You may move the currently highlighted rule up or down in the list.
10019 <H3>Replicate</H3>
10021 The Replicate command is used to copy an existing rule definition and modify it.
10022 The new rule will be added after the highlighted rule.
10024 <H3>IncludeFile</H3>
10026 The IncludeFile command allows you to add a rules file to your configuration.
10027 Usually, your rules will be contained in your Alpine configuration file.
10028 If you wish, some or all of your rules may be stored in a separate file.
10029 If a rules file already exists (maybe it was made by somebody else using
10030 Alpine), you may insert it before the currently highlighted rule.
10031 You may also insert an empty file or a file that does not yet exist.
10032 Once you have an empty rules file in your configuration, you may use
10033 the Shuffle command to move rules into it.
10034 In fact, that's the only way to get the initial rule into the file.
10036 <H3>eXcludeFile</H3>
10038 The eXcludeFile command removes a rules file from your rules configuration.
10039 A limitation of the program is that in order to exclude a rules file
10040 that file must have at least one rule
10041 in it, otherwise you won't be able to highlight a line in the file.
10042 So you may have to add a dummy rule to the file in order to exclude the file.
10043 <P><UL>
10044 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10045 </UL>
10047 &lt;End of help on this topic&gt;
10048 </BODY>
10049 </HTML>
10050 ===== h_rules_incols =====
10051 <HTML>
10052 <HEAD>
10053 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10054 </HEAD>
10055 <BODY>
10056 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10057 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10058 <!--chtml if pinemode="function_key"-->
10059 <PRE>
10060 Available  Commands -- Group 1         Available Commands -- Group 2   
10061 -------------------------------        ------------------------------  
10062 F1  Show Help Text                      F1  Show Help Text             
10063 F2  See commands in next group          F2  See commands in next group
10064 F3  Back to MAIN Alpine menu
10065 F4  Change configuration for rule
10066 F5  Move to previous rule               F5  Include file in rule config
10067 F6  Move to next rule                   F6  Exclude file from config
10068 F7  Previous page of rules
10069 F8  Next page of rules
10070 F9  Add new rule                        F9  Replicate existing rule
10071 F10 Delete existing rule
10072 F11 Shuffle the order of rules
10073 F12 Whereis (search rule nicknames)
10074 </PRE>
10075 <!--chtml else-->
10076 <PRE>
10077 Navigation                     General Alpine Commands
10078 -------------------------      -----------------------
10079  P  Prev rule                     ?  Display this help text
10080  N  Next rule                     E  Back to MAIN Alpine menu
10081  -  Previous page
10082 Spc (space bar) Next page
10083  W  WhereIs (search for word in rule nicknames)
10085 Setup Index Color Commands
10086 ------------------------------------------------
10087  A  Add new rule                  $  Shuffle the order of rules
10088  D  Delete existing rule          C  Change configuration for highlighted rule
10089  R  Replicate existing rule
10090  I  Include file in rule config   X  Exclude file from rule config
10091 </PRE>
10092 <!--chtml endif-->
10094 <H2>Description of the Setup Index Line Colors Screen</H2>
10096 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10097 This action is only available if your terminal is capable of displaying
10098 color and color display has been enabled with the
10099 <A HREF="h_config_color_style">Color Style</A> option within the
10100 Setup Color screen.
10101 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10102 This screen lets you add, delete, modify, or change the order of the rules
10103 that cause the lines in the MESSAGE INDEX to be displayed in different
10104 colors.
10106 Each rule has a &quot;Pattern&quot;,
10107 which is used to decide which of the rules is used; and the color that
10108 is used if the Pattern matches a particular message.
10110 <H2>Index Color Patterns</H2>
10112 In order to determine whether or not a message matches an Index Color Rule
10113 the message is compared with the rule's Pattern.
10114 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10115 Scoring, Other Rules, and Search Rules, so are described in only one place,
10116 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10119 If none of the Index Color rules is a match for a particular index line,
10120 then the color used is set using
10121 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10123 <H2>Index Line Color</H2>
10125 This is the color that index lines are colored when there is a matching
10126 Pattern.
10127 This colors the whole index line, except possibly the status letters,
10128 which may be colored separately using
10129 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10131 <H2>Command Descriptions</H2>
10133 <H3>Add</H3>
10135 The Add command is used to add a new rule definition to your set of
10136 rules.
10137 The new rule will be added after the highlighted rule.
10139 <H3>Delete</H3>
10141 The Delete command deletes the currently highlighted rule.
10143 <H3>Change</H3>
10145 The Change command lets you edit the nickname, Pattern,
10146 and Index Line Color of the currently highlighted rule.
10148 <H3>Shuffle</H3>
10150 The Shuffle command allows you to change the order of the rules.
10151 You may move the currently highlighted rule up or down in the list.
10152 The order of the rules is important since the rules are tested for a
10153 match starting with the first rule and continuing until a match is found.
10154 You should place the rules with more specific Patterns near the beginning
10155 of the list, and those with more general Patterns near the end so that
10156 the more specific matches will happen when appropriate.
10158 <H3>Replicate</H3>
10160 The Replicate command is used to copy an existing rule definition and modify it.
10161 The new rule will be added after the highlighted rule.
10163 <H3>IncludeFile</H3>
10165 The IncludeFile command allows you to add a rules file to your configuration.
10166 Usually, your rules will be contained in your Alpine configuration file.
10167 If you wish, some or all of your rules may be stored in a separate file.
10168 If a rules file already exists (maybe it was made by somebody else using
10169 Alpine), you may insert it before the currently highlighted rule.
10170 You may also insert an empty file or a file that does not yet exist.
10171 Once you have an empty rules file in your configuration, you may use
10172 the Shuffle command to move rules into it.
10173 In fact, that's the only way to get the initial rule into the file.
10175 <H3>eXcludeFile</H3>
10177 The eXcludeFile command removes a rules file from your rules configuration.
10178 A limitation of the program is that in order to exclude a rules file
10179 that file must have at least one rule
10180 in it, otherwise you won't be able to highlight a line in the file.
10181 So you may have to add a dummy rule to the file in order to exclude the file.
10182 <P><UL>
10183 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10184 </UL>
10186 &lt;End of help on this topic&gt;
10187 </BODY>
10188 </HTML>
10189 ===== h_rules_filter =====
10190 <HTML>
10191 <HEAD>
10192 <TITLE>SETUP FILTERING SCREEN</TITLE>
10193 </HEAD>
10194 <BODY>
10195 <H1>SETUP FILTERING SCREEN</H1>
10196 <H2>SETUP FILTERING COMMANDS</H2>
10197 <!--chtml if pinemode="function_key"-->
10198 <PRE>
10199 Available  Commands -- Group 1         Available Commands -- Group 2   
10200 -------------------------------        ------------------------------  
10201 F1  Show Help Text                      F1  Show Help Text             
10202 F2  See commands in next group          F2  See commands in next group
10203 F3  Back to MAIN Alpine menu
10204 F4  Change configuration for filter
10205 F5  Move to previous filter             F5  Include file in filter config
10206 F6  Move to next filter                 F6  Exclude file from config
10207 F7  Previous page of filters
10208 F8  Next page of filters
10209 F9  Add new filter                      F9  Replicate existing filter
10210 F10 Delete existing filter
10211 F11 Shuffle the order of filters
10212 F12 Whereis (search filter nicknames)
10213 </PRE>
10214 <!--chtml else-->
10215 <PRE>
10216 Navigation                     General Alpine Commands
10217 -------------------------      -----------------------
10218  P  Prev Filter                   ?  Display this help text
10219  N  Next Filter                   E  Back to MAIN Alpine menu
10220  -  Previous page
10221 Spc (space bar) Next page
10222  W  WhereIs (search for word in filter nicknames)
10224 Setup Filters Commands
10225 ------------------------------------------------
10226  A  Add new filter                $  Shuffle the order of filters
10227  D  Delete existing filter        C  Change configuration for highlighted filter
10228  R  Replicate existing filter
10229  I  Include file in filter config X  Exclude file from filter config
10230 </PRE>
10231 <!--chtml endif-->
10233 <H2>Description of the Setup Filtering Screen</H2>
10235 This screen lets you add, delete, modify, or change the order of the rules
10236 that determine the filtering Alpine does on folders you view.
10238 The software that actually delivers mail (the stuff that happens
10239 before Alpine is involved) for you is in a better position to do mail filtering
10240 than Alpine itself.
10241 If possible, you may want to look into using that sort of mail filtering to
10242 deliver mail to different folders, delete it, or forward it.
10243 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10245 Filtering is a way to automatically move certain messages from one folder
10246 to another or to delete messages.
10247 It can also be used to set message status (Important, Deleted, New,
10248 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10249 Alpine doesn't have the ability to forward mail to another address or
10250 to deliver vacation messages.
10252 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10253 When a folder is opened, when new mail arrives in an open folder, or
10254 when mail is Expunged from a folder; each
10255 message is compared with the Patterns of your filtering rules.
10256 The comparisons start with the first rule and keep going until there
10257 is a match.
10258 If a match is found, the message may be deleted or moved, depending on
10259 the setting of the Filter Action.
10260 If the message is not deleted, it may have its status altered.
10263 <EM>NOTE:</EM>
10264 When setting up a Pattern used to delete messages,
10265 it is recommended that you test the Pattern first with a &quot;Move&quot;
10266 folder specified in
10267 case unintended matches occur.  Messages that are deleted will be removed 
10268 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10269 next Expunge command or once the folder being filtered has been closed.
10271 <H2>Filter Patterns</H2>
10273 In order to determine whether or not a message matches a filter the message is
10274 compared with the Filter's Pattern.
10275 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10276 Scoring, Other Rules, and Search Rules, so are described in only one place,
10277 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10279 Since filtering is a potentially destructive action, if you have a filtering
10280 Pattern with nothing other than Current Folder Type set, that filtering
10281 rule is ignored.
10283 <H2>Filter Actions</H2>
10285 Once a filter match is found for a particular message, there are some actions
10286 that may be taken.
10287 First, the message may have its status changed.
10288 This is the same message status that you can manipulate manually using the
10289 <a href="h_common_flag">Flag Command</a>.
10290 There are always four elements of message status that you can control.
10291 You can set or clear the Important status, the New status, the Deleted
10292 status, and the Answered status.
10293 Of course, if the filter is going to delete the message,
10294 then there is no point in setting message status.
10295 You may also be able to set user-defined keywords for a message.
10296 Read a little about keywords in the help text for the
10297 <A HREF="h_common_flag">Flag</A> command.
10299 Second, the filter may delete or move the message.
10300 Deleting the message marks it Deleted and removes it from view.
10301 It is effectively gone forever (though it technically is still there until
10302 the next expunge command, which may happen implicitly).
10303 Moving the message moves it from the open folder into the folder
10304 listed on the &quot;Folder List&quot; line of the filter configuration.
10305 If you list more than one folder name (separated by commas) then the message
10306 will be copied to each of those folders.
10307 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10308 message is removed from the current folder.
10309 If you just want to set the messages status without deleting it from
10310 the folder, then set the filter action to
10311 &quot;Just Set Message Status&quot;.
10313 (There is no way to do a Copy instead of a Move, due to the difficulties
10314 involved in keeping track of whether or not a message has
10315 already been copied.)
10317 <H2>Command Descriptions</H2>
10319 <H3>Add</H3>
10321 The Add command is used to add a new filter definition to your set of
10322 filters.
10323 The new filter will be added after the highlighted filter.
10325 <H3>Delete</H3>
10327 The Delete command deletes the currently highlighted filter.
10329 <H3>Change</H3>
10331 The Change command lets you edit the nickname, Pattern,
10332 and Folder of the currently highlighted filter.
10334 <H3>Shuffle</H3>
10336 The Shuffle command allows you to change the order of the filters.
10337 You may move the currently highlighted filter up or down in the list.
10338 The order of the filters is important since the filters are tested for a
10339 match starting with the first filter and continuing until a match is found.
10340 You should place the filters with more specific Patterns near the beginning
10341 of the list, and those with more general Patterns near the end so that
10342 the more specific matches will happen when appropriate.
10344 <H3>Replicate</H3>
10346 The Replicate command is used to copy an existing filter and modify it.
10347 The new filter will be added after the highlighted filter.
10349 <H3>IncludeFile</H3>
10351 The IncludeFile command allows you to add a filters file to your configuration.
10352 Usually, your filters will be contained in your Alpine configuration file.
10353 If you wish, some or all of your filters may be stored in a separate file.
10354 If a filters file already exists (maybe it was made by somebody else using
10355 Alpine), you may insert it before the currently highlighted filter.
10356 You may also insert an empty file or a file that does not yet exist.
10357 Once you have an empty filters file in your configuration, you may use
10358 the Shuffle command to move filters into it.
10359 In fact, that's the only way to get the initial filter into the file.
10361 <H3>eXcludeFile</H3>
10363 The eXcludeFile command removes a filters file from your filters configuration.
10364 A limitation of the program is that in order to exclude a filters file
10365 that file must have at least one filter
10366 in it, otherwise you won't be able to highlight a line in the file.
10367 So you may have to add a dummy filter to the file in order to exclude the file.
10368 <P><UL>
10369 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10370 </UL>
10372 <H3>Performance Considerations</H3>
10373 The number and type of patterns being tested can 
10374 adversely effect performance.  Issues to be aware
10375 of include:
10377 <UL>
10378   <LI> The more filters you have defined the longer it will take to run down
10379 the list.  Deleting unused filters is a good idea.
10380   <LI> Filtering in newsgroups served by an NNTP server will be slow
10381 if your patterns include tests other than &quot;From:&quot;
10382 or &quot;Subject:&quot;.
10383 </UL>
10385 &lt;End of help on this topic&gt;
10386 </BODY>
10387 </HTML>
10388 ===== h_rules_score =====
10389 <HTML>
10390 <HEAD>
10391 <TITLE>SETUP SCORING SCREEN</TITLE>
10392 </HEAD>
10393 <BODY>
10394 <H1>SETUP SCORING SCREEN</H1>
10395 <H2>SETUP SCORING COMMANDS</H2>
10396 <!--chtml if pinemode="function_key"-->
10397 <PRE>
10398 Available  Commands -- Group 1         Available Commands -- Group 2   
10399 -------------------------------        ------------------------------  
10400 F1  Show Help Text                      F1  Show Help Text             
10401 F2  See commands in next group          F2  See commands in next group
10402 F3  Back to MAIN Alpine menu
10403 F4  Change configuration for rule
10404 F5  Move to previous rule               F5  Include file in rule config
10405 F6  Move to next rule                   F6  Exclude file from config
10406 F7  Previous page of rules
10407 F8  Next page of rules
10408 F9  Add new rule                        F9  Replicate existing rule
10409 F10 Delete existing rule
10410 F11 Shuffle the order of rules
10411 F12 Whereis (search rule nicknames)
10412 </PRE>
10413 <!--chtml else-->
10414 <PRE>
10415 Navigation                     General Alpine Commands
10416 -------------------------      -----------------------
10417  P  Prev rule                     ?  Display this help text
10418  N  Next rule                     E  Back to MAIN Alpine menu
10419  -  Previous page
10420 Spc (space bar) Next page
10421  W  WhereIs (search for word in rule nicknames)
10423 Setup Scoring Commands
10424 ------------------------------------------------
10425  A  Add new rule                  $  Shuffle the order of rules
10426  D  Delete existing rule          C  Change configuration for highlighted rule
10427  R  Replicate existing rule
10428  I  Include file in rule config   X  Exclude file from rule config
10429 </PRE>
10430 <!--chtml endif-->
10432 <H2>Description of the Setup Scoring Screen</H2>
10434 Most people will not use scores at all, but if you do use them, here's how
10435 they work in Alpine.
10436 Using this screen, you may define Scoring rules.
10437 The score for a message is calculated by looking at every Score rule defined
10438 and adding up the Score Values for the ones that match the message.
10439 If there are no matches for a message, it has a score of zero.
10440 Message scores may be used a couple of ways in Alpine.
10442 <H3>Sorting by Score</H3>
10444 One of the methods you may use to sort message indexes is to sort by
10445 score.
10446 The scores of all the messages in a folder will be calculated and then
10447 the index will be ordered by placing the messages in order of ascending or
10448 descending score.
10450 <H3>Scores for use in Patterns</H3>
10452 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10453 category labeled &quot;Score Interval&quot;.
10454 When a message is being compared with a Pattern to check for a match, if
10455 the Score Interval is set only messages that have a score somewhere in
10456 the interval are a match.
10458 <H2>Scoring Rule Patterns</H2>
10460 In order to determine whether or not a message matches a scoring rule
10461 the message is compared with the rule's Pattern.
10462 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10463 Scoring, Other Rules, and Search Rules, so are described in only one place,
10464 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10467 Actually, Scoring rule Patterns are slightly different from the other types of
10468 Patterns because Scoring rule Patterns don't contain a Score Interval.
10469 In other words, when calculating the score for a message, which is done
10470 by looking at the Scoring rule Patterns, scores aren't used.
10472 <H2>Score Value</H2>
10474 This is the value that will be added to the score for a message if the
10475 rule's Pattern is a match.
10476 Each individual Score Value is an integer between -100 and 100, and the
10477 values from matching rules are added together to get a message's score.
10478 There is also a way to extract the value from a particular header of each
10479 message. See the help text for Score Value for further information.
10481 <H2>Command Descriptions</H2>
10483 <H3>Add</H3>
10485 The Add command is used to add a new scoring rule definition.
10486 The new rule will be added after the highlighted rule.
10488 <H3>Delete</H3>
10490 The Delete command deletes the currently highlighted scoring rule.
10492 <H3>Change</H3>
10494 The Change command lets you edit the nickname, Pattern,
10495 and Score Value of the currently highlighted scoring rule.
10497 <H3>Shuffle</H3>
10499 The Shuffle command allows you to change the order of the scoring rules.
10500 You may move the currently highlighted rule up or down in the list.
10501 The order of the rules is important since the rules are tested for a
10502 match starting with the first rule and continuing until a match is found.
10503 You should place the rules with more specific Patterns near the beginning
10504 of the list, and those with more general Patterns near the end so that
10505 the more specific matches will happen when appropriate.
10507 <H3>Replicate</H3>
10509 The Replicate command is used to copy an existing rule and modify it.
10510 The new rule will be added after the highlighted rule.
10512 <H3>IncludeFile</H3>
10514 The IncludeFile command allows you to add a rules file to your configuration.
10515 Usually, your rules will be contained in your Alpine configuration file.
10516 If you wish, some or all of your rules may be stored in a separate file.
10517 If a rules file already exists (maybe it was made by somebody else using
10518 Alpine), you may insert it before the currently highlighted rule.
10519 You may also insert an empty file or a file that does not yet exist.
10520 Once you have an empty rules file in your configuration, you may use
10521 the Shuffle command to move rules into it.
10522 In fact, that's the only way to get the initial rule into the file.
10524 <H3>eXcludeFile</H3>
10526 The eXcludeFile command removes a rules file from your rules configuration.
10527 A limitation of the program is that in order to exclude a rules file
10528 that file must have at least one rule
10529 in it, otherwise you won't be able to highlight a line in the file.
10530 So you may have to add a dummy rule to the file in order to exclude the file.
10531 <P><UL>
10532 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10533 </UL>
10535 &lt;End of help on this topic&gt;
10536 </BODY>
10537 </HTML>
10538 ===== h_direct_config =====
10539 <HTML>
10540 <HEAD>
10541 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10542 </HEAD>
10543 <BODY>
10544 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10545 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10546 <!--chtml if pinemode="function_key"-->
10547 <PRE>
10548 Available  Commands                        
10549 -------------------------------            
10550 F1  Show Help Text                         
10551 F3  Back to MAIN Alpine menu                 
10552 F4  Change configuration for directory server  
10553 F5  Move to previous directory server          
10554 F6  Move to next directory server              
10555 F7  Previous page of directory servers         
10556 F8  Next page of directory servers
10557 F9  Add new directory server
10558 F10 Delete existing directory server
10559 F11 Shuffle the order of directory servers
10560 F12 Whereis (search directory server titles)   
10561 </PRE>
10562 <!--chtml else-->
10563 <PRE>
10564 Navigation                     General Alpine Commands
10565 -------------------------      -----------------------
10566  P  Prev Directory Server         ?  Display this help text
10567  N  Next Directory Server         E  Back to MAIN Alpine menu
10568  -  Previous page
10569 Spc (space bar) Next page
10570  W  WhereIs (search for word in directory server titles)
10572 Setup LDAP Directory Server Commands
10573 ------------------------------------------------
10574  A  Add new directory server      $  Shuffle the order of directory servers
10575  D  Delete existing dir server    C  Change configuration for highlighted server
10576 </PRE>
10577 <!--chtml endif-->
10579 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10581 This screen lets you add, delete, modify, or change the order of your
10582 directory servers. You may also set some optional behavior for each server.
10583 The &quot;Add Dir&quot; command brings up a blank form to 
10584 fill in. You will have to supply at least the name of the LDAP server.
10585 You will often have to supply a search base to be used with that server,
10586 as well. Once the form has been brought up on your screen, there is help
10587 available for each of the options you may set.
10589 The &quot;Del Dir&quot; command allows you to remove a directory server
10590 from your configuration.
10592 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10593 The difference is that instead of bringing up a form for a new server
10594 configuration, you are changing the configuration of an existing entry.
10595 For example, you might want to correct a typing error, change a
10596 nickname, or change one of the options set for that server.
10598 The &quot;Shuffle&quot; command is used to change the order of directory
10599 servers.
10600 <P><UL>
10601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10602 </UL>
10604 &lt;End of help on this topic&gt;
10605 </BODY>
10606 </HTML>
10607 ============= h_address_display ========================
10608 <HTML>
10609 <HEAD>
10610 <TITLE>SEARCH RESULTS INDEX</TITLE>
10611 </HEAD>
10612 <BODY>
10613 <H1>SEARCH RESULTS INDEX</H1>
10614 This screen shows the results, if any, of your Directory Server search.  
10615 Commands (besides those for screen navigation) are:
10616 <DL>
10617 <DT>View
10618 <!--chtml if pinemode="function_key"-->
10619 (F4)
10620 <!--chtml else-->
10622 <!--chtml endif-->
10623 </DT>
10624 <DD>See the full information for the selected entry.
10626 <DT>Compose
10627 <!--chtml if pinemode="function_key"-->
10628 (F9)
10629 <!--chtml else-->
10631 <!--chtml endif--></DT>
10632 <DD>Compose a message with the selected entry as the recipient.
10634 <DT>Role
10635 <!--chtml if pinemode="function_key"-->
10636 (F2)
10637 <!--chtml else-->
10639 <!--chtml endif--></DT>
10640 <DD>Compose a message with the selected entry as the recipient. This differs
10641 from Compose in that you may select a role before beginning your composition.
10643 <DT>Forward
10644 <!--chtml if pinemode="function_key"-->
10645 (F10)
10646 <!--chtml else-->
10648 <!--chtml endif--></DT>
10649 <DD>Send the full information for the selected entry as an 
10650 email message to someone else.
10652 <DT>Save
10653 <!--chtml if pinemode="function_key"-->
10654 (F11)
10655 <!--chtml else-->
10657 <!--chtml endif-->
10658 </DT>
10659 <DD>Save to your address book:
10660 <UL>
10661 <LI>the result of the search (as just found through your query) for the 
10662 selected entry; or 
10663 <LI>the selected entry for repeated Directory Server searching when used 
10664 in the future.
10665 </UL>
10666 or<BR>
10667 Export to a file (external to Alpine):
10668 <UL>
10669 <LI>the full information for the selected entry; or
10670 <LI>the email address from the selected entry; or
10671 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10672 </UL>
10673 <DT>WhereIs
10674 <!--chtml if pinemode="function_key"-->
10675 (F12)
10676 <!--chtml else-->
10678 <!--chtml endif-->
10679 </DT>
10680 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10681 displayed text, not the full records for each entry.)  
10682 </DL>
10683 &lt;End of help on this topic&gt;
10684 </BODY>
10685 </HTML>
10686 ============= h_address_select ========================
10687 <HTML>
10688 <HEAD>
10689 <TITLE>SEARCH RESULTS INDEX</TITLE>
10690 </HEAD>
10691 <BODY>
10692 <H1>SEARCH RESULTS INDEX</H1>
10693 This screen shows the results, if any, of your Directory Server search.  
10694 Commands (besides those for screen navigation) are:
10695 <DL>
10696 <DT>Select
10697 </DT>
10698 <DD>Select this entry for use.
10700 <DT>ExitSelect
10701 <DD>Exit without selecting any of the entries.
10703 <DT>WhereIs
10704 </DT>
10705 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10706 displayed text, not the full records for each entry.)  
10707 </DL>
10708 &lt;End of help on this topic&gt;
10709 </BODY>
10710 </HTML>
10711 ===== h_folder_maint =====
10712 <HTML>
10713 <HEAD>
10714 <TITLE>Help for Folder List</TITLE>
10715 </HEAD>
10716 <BODY>
10717 <H1>FOLDER LIST COMMANDS</H1>
10718 <!--chtml if pinemode="function_key"-->
10719 <PRE>
10720 Available Commands -- Group 1        Available Commands -- Group 2
10721 -------------------------------      ------------------------------
10722 F1  Show Help Text                    F1  Show Help Text               
10723 F2  See commands in next group        F2  See commands in next group  
10724 F3  MAIN MENU Screen                  F3  Quit Alpine                    
10725 F4  Select folder and view it         F4  MAIN MENU Screen
10726 F5  Move to previous folder
10727 F6  Move to next folder               F6  Specify a folder to go to
10728 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
10729 F8  Show next screen of listing       F8  Compose a message
10730 F9  Add a new folder                  F9  Print folder listing
10731 F10 Delete selected folder
10732 F11 Rename selected folder
10733 F12 Whereis (search folder names)
10735 Available Commands -- Group 3
10736 F1  Show Help Text
10737 F2  See commands in next group
10738 F5  Go to next new message
10739     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
10740 F8  Compose a message using roles
10741 F9  Export folder to a file
10742 F10 Import the file back to a folder
10743 </PRE>
10744 <!--chtml else-->
10745 <PRE>
10746 Navigating the Folder Screen            Operations on the Selected Folder
10747 ----------------------------            ---------------------------------
10748  P   Move to previous folder              V  View Index of selected folder
10749  N   Move to next folder                  D  Delete
10750  -   Show previous page of listing        R  Rename
10751 Spc  (space bar) Show next page           E  Export to file
10752                                           U  Import from file to folder
10754 FOLDER LIST Screen Commands              General Alpine Command
10755 ---------------------------              -----------------------
10756  A  Add a folder                          O  Show all other available commands
10757  G  Specify a folder to go to             ?  Show Help text
10758  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
10759  W  Whereis (search folder names)         Q  Quit Alpine
10760  %  Print folder listing                  C  Compose a message
10761                                           #  Compose a message using roles
10762 </PRE>
10763 <!--chtml endif-->
10765 These commands are only available in the FOLDER LIST screen when the 
10766 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
10767 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
10768 <DT>Select:</DT>
10769 <DD>Select folders by certain criteria:<UL>
10770 <LI>All: of limited use, since there is no Apply command.
10771 <LI>by Property: <UL>
10772         <LI>folder contains messages not yet seen 
10773         <LI>folder contains new messages
10774         <LI>folder contains exactly as many, more, or fewer messages 
10775 than a given number
10776         </UL>
10777 <LI>by Text: <UL>
10778         <LI>contained in name of folder (Name Select)
10779         <LI>contained in messages in folder (Content Select)
10780         </UL>
10781 </UL></DD>
10783 <DT>Select current:</DT>
10784 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
10785 add one or more folders to a set created with the Select command described 
10786 above.)</DD>
10787 <DT>Zoom mode:</DT>
10788 <DD>Toggles display of only selected folders or all folders on and off.</DD>
10789 </DL>
10791 If the feature
10792 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
10793 is set then the TAB key will display the number of recent messages and
10794 the total number of messages in the highlighted folder.
10796 The &quot;Export&quot; command causes the lowest common denominator style
10797 mailbox to be written to a file.
10798 If the file already exists, you are asked if you want to delete it.
10799 If you say No, then the operation is aborted.
10800 Export might be a reasonable way to store a backup or an archival copy of
10801 a folder.
10802 The exported-to file is a local file on the system where you are running Alpine.
10803 The &quot;Import&quot; command is the opposite of the Export command.
10804 It reads a file created by Export and asks where it should save it in your
10805 folders.
10806 This could be a new folder or an existing folder.
10807 If the folder already exists, the messages from the exported file will be
10808 appended to the folder.
10810 <CENTER>Description of the FOLDER LIST Screen</CENTER>
10812 The purpose of the FOLDER LIST screen is to help you browse and manage
10813 the folders and directories (also known as &quot;hierarchy&quot;)
10814 contained within a collection.
10817 Folders and directories are arranged alphabetically across lines of
10818 the screen.  Directories, if present, are denoted by a special
10819 character at the end of the name known as the hierarchy delimiter
10820 (typically, &quot;/&quot;).  By default, folders and directories are
10821 mixed together.  The
10822 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
10823 configuration option can be used to group directories toward the 
10824 beginning or end of the list.
10827 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
10828 commands change the &quot;selected&quot; (i.e., highlighted) folder or
10829 directory, and the View Fldr/Dir commands will &quot;open&quot; the
10830 selected item.  Folder and directory management is provided via the
10831 Rename, Delete and Add commands.
10833 <P><CENTER>About Folders</CENTER>
10834 What are Folders?<P>
10836 Folders are simply files where messages are kept.  Every message has to be
10837 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
10838 folder for sent mail and a folder for saved messages.<P>
10840 You may create as many other folders as you wish.  They must be given
10841 names that can be filenames on the filesystem.  
10844 You can move messages from one folder to another by opening the original
10845 folder and saving messages into the other folder just as you can save
10846 message from your INBOX to any other folder.<P>
10848 Folders are typically just files in the filesystem.  However, the files
10849 that are
10850 folders have some special formatting in them (so that Alpine knows where one
10851 message ends and another begins) and should <EM>not</EM> be edited outside of
10852 Alpine.  If you want copies of your messages in text files that you can edit
10853 or otherwise manipulate, use the Export command to copy them from Alpine into
10854 your regular file area.
10857 FOR MORE INFORMATION: See the section on
10858 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10860 <CENTER>About Directories</CENTER>
10862 A directory is simply a container used to group folders within a
10863 folder list.  You can create as many directories as you like.  And 
10864 directories can even contain directories themselves.
10867 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
10868 to note that not all IMAP servers support directories.  If you find that
10869 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
10870 then it's likely that directories are not supported by the server serving
10871 in that collection.
10874 Similarly, servers that do provide for directories may not do so in
10875 the same way.  On some servers, for example, each folder name you
10876 create is at the same time capable of being a directory.  When this
10877 happens, Alpine will display both the folder name and the name of the
10878 directory (with trailing hierarchy delimiter) in the folder list.
10881 Another issue with IMAP access, though with a much smaller set of servers,
10882 is that not all servers accept the request to list out the available
10883 folders and directories in the same way.  If you find yourself having
10884 trouble viewing folders on your server, you might investigate the
10885 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
10886 feature.
10888 <UL>
10889 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10890 </UL>
10892 &lt;End of help on this topic&gt;
10893 </BODY>
10894 </HTML>
10895 ========= h_valid_folder_names ========
10896 <HTML>
10897 <HEAD>
10898 <TITLE>Explanation of Valid Folder Names</TITLE>
10899 </HEAD>
10900 <BODY>
10901 <H1>Folder Name Syntax Explained</H1>
10903 Once your folder collections are defined, you can usually refer to
10904 folders by their simple (unqualified) name, or pick from a FOLDER LIST
10905 display.  However, understanding the complete syntax for folder names,
10906 both local and remote, is handy when using the Goto command and when
10907 you are adding new folder collections via the Setups/collectionList screen.
10909 An Alpine folder name looks like
10912 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
10915 The square brackets ([]) mean that the part is optional.
10918 If there is no remote-specification, then the folder name is interpreted
10919 locally on the computer running Alpine.
10920 Local folder names depend on the operating system used by the computer 
10921 running Alpine, as well as the configuration of that system.  For example,
10922 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
10923 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
10924 system running Unix.
10927 Alpine users have the option of using folders that are stored on some other
10928 computer.  Alpine accesses remote folders via IMAP (the Internet Message
10929 Access Protocol), or in the case of news, via NNTP (the Network News
10930 Transport Protocol).  To be able to access remote folders in Alpine, the
10931 remote host must be running the appropriate server software (imapd or
10932 nntpd) and you must correctly specify the name of the folder to Alpine,
10933 including the domain name of the remote machine. For example,
10935 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
10937 could be a remote folder specification, and so could
10939 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
10942 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
10944 Note that in the case of remote folders, the directory/file path in the specification is 
10945 determined by the operating system of the remote computer, <B>not</B> by
10946 the operating system of the computer on which you are running Alpine.
10948 As you can tell, the name of the computer is in &#123;} brackets
10949 followed immediately by the name of the folder.  (In each of these cases the
10950 optional namespace is missing.)  If, as in these
10951 examples, there is no remote access protocol specified, then IMAP is
10952 assumed.  Check
10953 <A HREF="h_folder_server_syntax">here</A>
10954 for a more detailed look at what options can be placed between the brackets.
10955 If there are no brackets at all, then the folder name is interpreted locally
10956 on the computer on which you are running Alpine.
10959 To the right of the brackets when a server name is present, or at the
10960 start of the foldername if no server is present, the sharp sign,
10961 &quot;#&quot;, holds special meaning.  It indicates a folder name
10962 outside the area reserved for your personal folders.  In fact, it's
10963 used to indicate both the name of the folder, and a special phrase
10964 telling Alpine how to interpret the name that follows.
10967 So, for example, Alpine can be used to access a newsgroup that might be 
10968 available on your computer using:
10970 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
10972 The sharp sign indicates the folder name is outside your personal
10973 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
10974 interpret the remainder of the name as a newsgroup.
10977 Similarly, to access a newsgroup on your IMAP server, you might
10978 use something like:
10980 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
10983 There are a number of such special phrases (or &quot;namespaces&quot;)
10984 available.  For a more detailed explanation read about
10985 <A HREF="h_folder_name_namespaces">Namespaces</A>.
10988 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
10989 names.  The name INBOX refers to your &quot;principal incoming
10990 message folder&quot; and will be mapped to the actual file name used for your
10991 INBOX on any given host.  Therefore, a name like
10992 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
10993 store incoming mail for you on that particular host.
10996 &lt;End of help on this topic&gt;
10997 </BODY>
10998 </HTML>
10999 ======= h_folder_name_namespaces =======
11000 <HTML>
11001 <HEAD>
11002 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11003 </HEAD>
11004 <BODY>
11005 <H1>Folder Name Namespaces Explained</H1>
11007 An Alpine folder name looks like
11010 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11013 The local part of a folder name has an optional &quot;Namespace&quot; which
11014 tells Alpine how to interpret the rest of the name.
11016 <P> 
11017 By default the folder name is interpreted as defining a section of your personal
11018 folder area.  This area and how you specify it are defined by the
11019 server, if one is specified, or, typically, the home
11020 directory, if no server is defined.
11023 If a namespace is specified, it begins with the
11024 sharp, &quot;#&quot;, character followed by the name of the namespace
11025 and then the namespace's path-element-delimiter.  Aside from the
11026 path's format, namespaces can also imply access rights, content
11027 policy, audience, location, and, occasionally, access methods.
11030 Each server exports its own set (possibly of size one) of 
11031 namespaces.  Hence, it's likely communication with your server's
11032 administrator will be required for specific configurations.  Some of
11033 the more common namespaces, however, include:
11035 <DL>
11036 <DT>#news.</DT>
11037 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11038 names are hierarchically defined with each level delimited by a period.
11040 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11042 </DD>
11043 <DT>#public/</DT>
11044 <DD>This specifies a folder area that the server may export to the general
11045 public.
11046 </DD>
11047 <DT>#shared/</DT>
11048 <DD>This specifies a folder area that the server may export to groups
11049 of users.
11050 </DD>
11051 <DT>#ftp/</DT>
11052 <DD>This specifies a folder area that is the same as that it may have 
11053 exported via the &quot;File Transfer Protocol&quot;.
11054 </DD>
11055 <DT>#mh/</DT>
11056 <DD>This specifies the personal folder area associated with folders
11057 and directories that were created using the MH message handling system.
11058 </DD>
11059 <DT>#move/</DT>
11060 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11062 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11064 The #move namespace is followed by two folder names separated by a delimiter
11065 character.
11066 The delimiter character may be any character that does not appear in
11067 the MailDropFolder name.
11068 The meaning of #move is that mail will be copied from the MailDropFolder to
11069 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11070 Periodic checks at frequency
11071 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11072 time between checks set by
11073 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11074 are made for new mail arriving in the MailDropFolder.
11075 An example that copies mail from a POP inbox to a local folder follows
11077 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11079 To you it appears that mail is being delivered to the local folder when it
11080 is copied from the MailDropFolder, and you read mail from the local folder.
11082 Note that if the DestinationFolder does not exist then the messages are not
11083 copied from the MailDropFolder.
11084 A #move folder may only be used as an
11085 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11086 an Inbox.
11087 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11088 on the
11089 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11090 option)
11091 the Add command has a subcommand &quot;Use Mail Drop&quot;
11092 which may be helpful for defining the folder in your Alpine configuration.
11093 The same is true when you edit the
11094 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11095 option in Setup/Config.
11096 Each of these configuration methods will also create the DestinationFolder
11097 if it doesn't already exist.
11098 If you are having problems, make sure the DestinationFolder exists.
11099 You may find some more useful information about Mail Drops at
11100 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11101 </DD>
11102 </DL>
11105 In addition, the server may support access to other user's folders,
11106 provided you have suitable permissions.  Common methods use a prefix
11107 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11108 indicate the root of the other user's folder area.
11111 No, nothing's simple.
11114 &lt;End of help on this topic&gt;
11115 </BODY>
11116 </HTML>
11117 ============= h_whatis_vcard ========================
11118 <HTML>
11119 <HEAD>
11120 <TITLE>VCARD EXPLAINED</TITLE>
11121 </HEAD>
11122 <BODY>
11123 <H1>What is the vCard format?</H1>
11124 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11125 information about and among people and organizations electronically.  
11126 More information about vCard can be found (as of May 1998) on the WWW site 
11127 of the Internet Mail Consortium at the URL:
11129 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11131 &lt;End of help on this topic&gt;
11132 </BODY>
11133 </HTML>
11134 ===== h_folder_open =====
11135 <HTML>
11136 <HEAD>
11137 <TITLE>Explanation of Folder Selection</TITLE>
11138 </HEAD>
11139 <BODY>
11140 <BR>
11141 <BR>
11142 This screen is designed to allow you to quickly and easily survey your
11143 folders and select one to open.
11144 <!--chtml if pinemode="function_key"-->
11145 <PRE>
11146 Navigating the List of Folders             General Alpine Commands
11147 ------------------------------             -----------------------
11148  P   Move to previous folder               ?   Show this help text
11149  N   Move to next folder
11150  -   Show previous screen of folders
11151 Spc  (space bar) Show next screen
11152  W   WhereIs (search folder names)
11154 Folder Selection Commands
11155 -------------------------
11156  E   Exit the Folder Select menu (without selecting a folder)
11157  S   Select the currently highlighted folder
11158 </PRE>
11159 <!--chtml else-->
11160 <PRE>
11161 Navigating the List of Folders             General Alpine Commands
11162 ------------------------------             -----------------------
11163 F5   Move to previous folder               F1  Show this help text
11164 F6   Move to next folder
11165 F7   Show previous screen of folders
11166 F8   Show next screen of folders
11167 F12  WhereIs (search folder names)
11169 Folder Selection Commands
11170 -------------------------
11171 F3   Exit the Folder Select menu (without selecting a folder)
11172 F4   Select the currently highlighted folder
11173 </PRE>
11174 <!--chtml endif-->
11176 FOR MORE INFORMATION: See the section on
11177 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11179 &lt;End of help on this topic&gt;
11180 </BODY>
11181 </HTML>
11182 ===== h_folder_subscribe =====
11183 <HTML>
11184 <HEAD>
11185 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11186 </HEAD>
11187 <BODY>
11188 <H1>FOLDER SUBSCRIBE HELP</H1>
11190 This screen is designed to help you subscribe to newsgroups you are
11191 not currently subscribed to.  The screen display is a list of all
11192 available newsgroups (or possibly a partial list if you specified a
11193 partial name when entering the screen).  Groups you have already
11194 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11195 select a single new group to subscribe to by moving the cursor to that
11196 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11197 you may change into ListMode with the &quot;ListMode&quot; command.
11198 The display will change slightly so that each group has a checkbox in
11199 front of it.  Use the cursor and the Set/Unset command to place an
11200 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11203 When you are finished marking groups, the &quot;Subscribe&quot;
11204 command will subscribe you to those groups you have marked.  Note, you
11205 may not unsubscribe to groups with this command.  Instead of the
11206 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11207 UnSbscrbe command.
11210 <!--chtml if pinemode="function_key"-->
11211 <PRE>
11212 Navigating the List of Newsgroups          General Alpine Commands
11213 ---------------------------------          -----------------------
11214 F5   Move to previous group                F1   Show this help text
11215 F6   Move to next group
11216 F7   Show previous screen of groups
11217 F8   Show next screen of groups
11218 F12  WhereIs (search group names)
11219 F9   Use ListMode
11221 Group Selection Commands
11222 -------------------------
11223 F3  Exit the News Subscribe menu (without selecting any groups)
11224 F4  Subscribe to the currently highlighted newsgroup
11225 </PRE>
11226 <!--chtml else-->
11227 <PRE>
11228 Navigating the List of Newsgroups          General Alpine Commands
11229 ---------------------------------          -----------------------
11230  P   Move to previous group                ?   Show this help text
11231  N   Move to next group
11232  -   Show previous screen of groups
11233 Spc  (space bar) Show next screen
11234  W   WhereIs (search group names)
11235  L   Use ListMode
11237 Group Selection Commands
11238 -------------------------
11239  E   Exit the News Subscribe menu (without selecting any groups)
11240  S   Subscribe to the currently highlighted newsgroup
11241 </PRE>
11242 <!--chtml endif-->
11244 When in ListMode, there is an additional command for marking groups to
11245 subscribe to:
11247 <!--chtml if pinemode="function_key"-->
11248 <PRE>
11249 ListMode Commands
11250 -------------------------
11251 F9  Set or unset the highlighted group
11252 </PRE>
11253 <!--chtml else-->
11254 <PRE>
11255 ListMode Commands
11256 -------------------------
11257 X   Set or unset the highlighted group
11258 </PRE>
11259 <!--chtml endif-->
11261 &lt;End of help on this topic&gt;
11262 </BODY>
11263 </HTML>
11264 ===== h_folder_postnews =====
11265 <HTML>
11266 <HEAD>
11267 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11268 </HEAD>
11269 <BODY>
11270 This screen is designed to allow you to quickly and easily survey
11271 the available newsgroups and select one to post news to.
11273 <!--chtml if pinemode="function_key"-->
11274 <PRE>
11275 Navigating the List of Newsgroups          General Alpine Commands
11276 ---------------------------------          -----------------------
11277 F5   Move to previous group                F1  Show this help text
11278 F6   Move to next group
11279 F7   Show previous screen of groups
11280 F8   Show next screen of groups
11281 F12  WhereIs (search group names)
11283 Group Selection Commands
11284 -------------------------
11285 F3   Exit the Selection menu (without selecting a group)
11286 F4   Select the currently highlighted newsgroup
11287 </PRE>
11288 <!--chtml else-->
11289 <PRE>
11290 Navigating the List of Newsgroups          General Alpine Commands
11291 ---------------------------------          -----------------------
11292  P   Move to previous group                ?  Show this help text
11293  N   Move to next group
11294  -   Show previous screen of groups
11295 Spc  (space bar) Show next screen of groups
11296  W   WhereIs (search group names)
11298 Group Selection Commands
11299 -------------------------
11300  E   Exit the Selection menu (without selecting a group)
11301  S   Select the currently highlighted newsgroup
11302 </PRE>
11303 <!--chtml endif-->
11305 &lt;End of help on this topic&gt;
11306 </BODY>
11307 </HTML>
11308 ===== h_folder_save =====
11309 <HTML>
11310 <HEAD>
11311 <TITLE>Folder Select for Save Explained</TITLE>
11312 </HEAD>
11313 <BODY>
11314 This screen is designed to allow you to quickly and easily survey your
11315 folders and select one to use for saving the current message.
11318 <!--chtml if pinemode="function_key"-->
11319 <PRE>
11320 Navigating the List of Folders             General Alpine Commands
11321 ------------------------------             -----------------------
11322 F5   Move to previous folder               F1  Show this help text
11323 F6   Move to next folder
11324 F7   Show previous screen of folders
11325 F8   Show next screen of folders
11326 F12  WhereIs (search folder names)
11328 Folder Selection Commands
11329 -------------------------
11330 F3   Exit the Folder Select menu (without selecting a folder)
11331 F4   Select the currently highlighted folder
11332 F11  AddNew folder (just like Select, but you type in a new folder name)
11333 </PRE>
11334 <!--chtml else-->
11335 <PRE>
11336 Navigating the List of Folders             General Alpine Commands
11337 ------------------------------             -----------------------
11338  P   Move to previous folder               ?  Show this help text
11339  N   Move to next folder
11340  -   Show previous screen of folders
11341 Spc  (space bar) Show next screen of folders
11342  W   WhereIs (search folder names)
11344 Folder Selection Commands
11345 -------------------------
11346  E   Exit the Folder Select menu (without selecting a folder)
11347  S   Select the currently highlighted folder
11348  A   AddNew folder (just like Select, but you type in a new folder name)
11349 </PRE>
11350 <!--chtml endif-->
11352 FOR MORE INFORMATION: See the section on
11353 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11355 &lt;End of help on this topic&gt;
11356 </BODY>
11357 </HTML>
11358 ===== h_folder_fcc =====
11359 <HTML>
11360 <HEAD>
11361 <TITLE>Folder Select for Fcc Explained</TITLE>
11362 </HEAD>
11363 <BODY>
11364 This screen is designed to allow you to quickly and easily survey your
11365 folders and select one to use as the file carbon copy (fcc) for the
11366 current message.
11369 <!--chtml if pinemode="function_key"-->
11370 <PRE>
11371 Navigating the List of Folders             General Alpine Commands
11372 ------------------------------             -----------------------
11373 F5   Move to previous folder               F1  Show this help text
11374 F6   Move to next folder
11375 F7   Show previous screen of folders
11376 F8   Show next screen of folders
11377 F12  WhereIs (search folder names)
11379 Folder Selection Commands
11380 -------------------------
11381 F3   Exit the Folder Select menu (without selecting a folder)
11382 F4   Select the currently highlighted folder
11383 F11  AddNew folder (just like Select, but you type in a new folder name)
11384 </PRE>
11385 <!--chtml else-->
11386 <PRE>
11387 Navigating the List of Folders             General Alpine Commands
11388 ------------------------------             -----------------------
11389  P   Move to previous folder               ?  Show this help text
11390  N   Move to next folder
11391  -   Show previous screen of folders
11392 Spc  (space bar) Show next screen of folders
11393  W   WhereIs (search folder names)
11395 Folder Selection Commands
11396 -------------------------
11397  E   Exit the Folder Select menu (without selecting a folder)
11398  S   Select the currently highlighted folder
11399  A   AddNew folder (just like Select, but you type in a new folder name)
11400 </PRE>
11401 <!--chtml endif-->
11403 FOR MORE INFORMATION: See the section on
11404 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11406 &lt;End of help on this topic&gt;
11407 </BODY>
11408 </HTML>
11409 ===== h_folder_pattern_roles =====
11410 <HTML>
11411 <HEAD>
11412 <TITLE>Folder Select for Current Folder Explained</TITLE>
11413 </HEAD>
11414 <BODY>
11415 This screen is designed to allow you to quickly and easily survey your
11416 folders and select one to use as the specific Current Folder
11417 in a Pattern.
11420 <!--chtml if pinemode="function_key"-->
11421 <PRE>
11422 Navigating the List of Folders             General Alpine Commands
11423 ------------------------------             -----------------------
11424 F5   Move to previous folder               F1  Show this help text
11425 F6   Move to next folder
11426 F7   Show previous screen of folders
11427 F8   Show next screen of folders
11428 F12  WhereIs (search folder names)
11430 Folder Selection Commands
11431 -------------------------
11432 F3   Exit the Folder Select menu (without selecting a folder)
11433 F4   Select the currently highlighted folder
11434 F11  AddNew folder (just like Select, but you type in a new folder name)
11435 </PRE>
11436 <!--chtml else-->
11437 <PRE>
11438 Navigating the List of Folders             General Alpine Commands
11439 ------------------------------             -----------------------
11440  P   Move to previous folder               ?  Show this help text
11441  N   Move to next folder
11442  -   Show previous screen of folders
11443 Spc  (space bar) Show next screen of folders
11444  W   WhereIs (search folder names)
11446 Folder Selection Commands
11447 -------------------------
11448  E   Exit the Folder Select menu (without selecting a folder)
11449  S   Select the currently highlighted folder
11450  A   AddNew folder (just like Select, but you type in a new folder name)
11451 </PRE>
11452 <!--chtml endif-->
11454 FOR MORE INFORMATION: See the section on
11455 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11457 &lt;End of help on this topic&gt;
11458 </BODY>
11459 </HTML>
11460 ===== h_folder_stayopen_folders =====
11461 <HTML>
11462 <HEAD>
11463 <TITLE>Folder Select Explained</TITLE>
11464 </HEAD>
11465 <BODY>
11466 This screen is designed to allow you to quickly and easily survey your
11467 folders and select one to use as a Stay-Open folder.
11470 <!--chtml if pinemode="function_key"-->
11471 <PRE>
11472 Navigating the List of Folders             General Alpine Commands
11473 ------------------------------             -----------------------
11474 F5   Move to previous folder               F1  Show this help text
11475 F6   Move to next folder
11476 F7   Show previous screen of folders
11477 F8   Show next screen of folders
11478 F12  WhereIs (search folder names)
11480 Folder Selection Commands
11481 -------------------------
11482 F3   Exit the Folder Select menu (without selecting a folder)
11483 F4   Select the currently highlighted folder
11484 F11  AddNew folder (just like Select, but you type in a new folder name)
11485 </PRE>
11486 <!--chtml else-->
11487 <PRE>
11488 Navigating the List of Folders             General Alpine Commands
11489 ------------------------------             -----------------------
11490  P   Move to previous folder               ?  Show this help text
11491  N   Move to next folder
11492  -   Show previous screen of folders
11493 Spc  (space bar) Show next screen of folders
11494  W   WhereIs (search folder names)
11496 Folder Selection Commands
11497 -------------------------
11498  E   Exit the Folder Select menu (without selecting a folder)
11499  S   Select the currently highlighted folder
11500  A   AddNew folder (just like Select, but you type in a new folder name)
11501 </PRE>
11502 <!--chtml endif-->
11504 FOR MORE INFORMATION: See the section on
11505 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11507 &lt;End of help on this topic&gt;
11508 </BODY>
11509 </HTML>
11510 ===== h_folder_action_roles =====
11511 <HTML>
11512 <HEAD>
11513 <TITLE>Folder Select Explained</TITLE>
11514 </HEAD>
11515 <BODY>
11516 This screen is designed to allow you to quickly and easily survey your
11517 folders and select one to use as the folder into which messages
11518 matching this filter will be moved.
11521 <!--chtml if pinemode="function_key"-->
11522 <PRE>
11523 Navigating the List of Folders             General Alpine Commands
11524 ------------------------------             -----------------------
11525 F5   Move to previous folder               F1  Show this help text
11526 F6   Move to next folder
11527 F7   Show previous screen of folders
11528 F8   Show next screen of folders
11529 F12  WhereIs (search folder names)
11531 Folder Selection Commands
11532 -------------------------
11533 F3   Exit the Folder Select menu (without selecting a folder)
11534 F4   Select the currently highlighted folder
11535 F11  AddNew folder (just like Select, but you type in a new folder name)
11536 </PRE>
11537 <!--chtml else-->
11538 <PRE>
11539 Navigating the List of Folders             General Alpine Commands
11540 ------------------------------             -----------------------
11541  P   Move to previous folder               ?  Show this help text
11542  N   Move to next folder
11543  -   Show previous screen of folders
11544 Spc  (space bar) Show next screen of folders
11545  W   WhereIs (search folder names)
11547 Folder Selection Commands
11548 -------------------------
11549  E   Exit the Folder Select menu (without selecting a folder)
11550  S   Select the currently highlighted folder
11551  A   AddNew folder (just like Select, but you type in a new folder name)
11552 </PRE>
11553 <!--chtml endif-->
11555 FOR MORE INFORMATION: See the section on
11556 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11558 &lt;End of help on this topic&gt;
11559 </BODY>
11560 </HTML>
11561 ===== h_abook_config =====
11562 <HTML>
11563 <HEAD>
11564 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11565 </HEAD>
11566 <BODY>
11567 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11568 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11569 <!--chtml if pinemode="function_key"-->
11570 <PRE>
11571 Available  Commands                        
11572 -------------------------------            
11573 F1  Show Help Text                         
11574 F3  Back to MAIN Alpine menu                 
11575 F4  Change configuration for address book  
11576 F5  Move to previous address book          
11577 F6  Move to next address book              
11578 F7  Previous page of address books         
11579 F8  Next page of address books             
11580 F9  Add new address book                   
11581 F10 Delete existing address book           
11582 F11 Shuffle the order of address books     
11583 F12 Whereis (search address book titles)   
11584 </PRE>
11585 <!--chtml else-->
11586 <PRE>
11587 Navigation                     General Alpine Commands
11588 -----------------------        -----------------------
11589  P  Prev Address Book           ?  Display this help text
11590  N  Next Address Book           E  Back to MAIN Alpine menu
11591  -  Previous page
11592 Spc (space bar) Next page
11593  W  WhereIs (search for word in address book titles)
11595 Setup Address Books Commands
11596 ------------------------------------------------
11597  A  Add new address book          $  Shuffle the order of address books
11598  D  Delete existing address book  C  Change configuration for address book
11599 </PRE>
11600 <!--chtml endif-->
11602 <H2>Description of the Setup Address Books Screen</H2>
11604 This screen lets you add, delete, modify, or change the order of your
11605 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11606 fill in.  If you are adding a remote address book on an IMAP server
11607 you should fill in the name of the IMAP server.  Otherwise, leave
11608 that field blank.  (Note that remote IMAP address books are an Alpine
11609 concept and are unlikely to interoperate with other mail clients.)
11610 For a remote address book, fill in the name of the remote folder
11611 in the Folder field.  This should be a folder that is used only for
11612 this one purpose, not a general purpose folder you expect to store
11613 messages in.
11614 <P>If you are adding a local address book, fill in the
11615 Folder Name field with a local file name (e.g., .addressbook).
11617 <B>Please note:</B> Remote address books stored on an IMAP server are 
11618 of an entirely different format (namely, a special-purpose 
11619 &quot;mail folder&quot;) than that of the local addressbook familiar 
11620 to Alpine users.  Therefore, 
11621 you cannot use &quot;add a remote address book&quot; to make an existing 
11622 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11623 Alpine running on a different host.  
11626 The &quot;Del Abook&quot; command allows you to remove an address book
11627 from your configuration.  It will also ask you if you wish to remove
11628 the data for that address book, which would erase all traces of the
11629 address book if you answer Yes.
11632 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11633 The difference is that instead of adding a new address book to your
11634 configuration, you are changing the configuration of an existing entry.
11635 For example, you might want to correct a typing error or change a
11636 nickname.  The &quot;Change&quot; command is not a move command.  If you
11637 change the folder name or server name the data will not be moved for you.
11640 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11641 an address book toward another address book in the same group then
11642 the order of those two address books will be swapped.  If you shuffle
11643 the last Personal address book down towards the Global address book
11644 section, it will become a Global address book.  If you shuffle
11645 the first Global address book up it will become a Personal address
11646 book.  The main difference between Personal and Global address
11647 books is that Global address books are forced read-only.
11648 <P><UL>
11649 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11650 </UL>
11652 &lt;End of help on this topic&gt;
11653 </BODY>
11654 </HTML>
11655 ===== h_abook_top =====
11656 <HTML>
11657 <HEAD>
11658 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11659 </HEAD>
11660 <BODY>
11661 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11662 <!--chtml if pinemode="function_key"-->
11663 <PRE>
11664 Available  Commands -- Group 1         Available Commands -- Group 2
11665 -------------------------------        ------------------------------
11666 F1  Show Help Text                      F1  Show Help Text
11667 F2  See commands in next group          F2  See commands in next group
11668 F3  Exit to MAIN MENU                   F3  Quit Alpine
11669 F4  View/Edit selected address book
11670 F5  Move to previous address book       F5  FOLDER LIST screen
11671 F6  Move to next address book           F6  Specify a folder to go to
11672 F7  Previous page                       F7  MESSAGE INDEX screen
11673 F8  Next page                           F9  Print list of address books
11674 F12 Whereis (search for word)
11675 </PRE>
11676 <!--chtml else-->
11677 <PRE>
11678 Navigation                       General Alpine Commands
11679 -----------------------          -----------------------
11680  P  Previous Entry                ?  Display this help text
11681  N  Next Entry                    O  Show all other available commands
11682  -  Previous page                 &lt;  Back to MAIN Alpine menu
11683 Spc (space bar) Next page         Q  Quit Alpine
11684  W  WhereIs (search for word)     L  FOLDER LIST screen
11685                                   G  Specify a folder to go to
11686 Address Book Commands             I  MESSAGE INDEX screen
11687 ------------------------------------------------
11688  &gt;  View/Edit selected address book
11689               or
11690  &gt;  Search on selected directory server
11692  %  Print list of address books and directory servers
11693 </PRE>
11694 <!--chtml endif-->
11696 <H2>Description of the Address Book List Screen</H2>
11698 From this screen you may choose which address book you wish to view
11699 or edit. For more information on address books, view one of your
11700 address books (with
11701 <!--chtml if pinemode="function_key"-->
11703 <!--chtml else-->
11704 &quot;&gt;&quot;
11705 <!--chtml endif-->)
11706 and see the Help Text there.<P>
11708 You may also choose a directory server on which to search for entries.
11709 You do that by highlighting the directory server line and using
11710 <!--chtml if pinemode="function_key"-->
11712 <!--chtml else-->
11713 &quot;&gt;&quot;
11714 <!--chtml endif-->.<P>
11716 If you wish to define new address books or directory servers go to the Main
11717 menu and choose Setup. You may then either choose to setup AddressBooks or
11718 Directory (among other things). It's possible that the Directory option
11719 will not be there if the Alpine you are using does not contain LDAP directory
11720 lookup functionality.
11722 <P><UL>
11723 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11724 </UL><P>
11725 &lt;End of help on this topic&gt;
11726 </BODY>
11727 </HTML>
11728 ===== h_abook_opened =====
11729 <HTML>
11730 <HEAD>
11731 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
11732 </HEAD>
11733 <BODY>
11734 <H1>THE ALPINE ADDRESS BOOK</H1>
11735 <H2>ADDRESS BOOK COMMANDS</H2>
11736 <PRE>
11737 <!--chtml if pinemode="function_key"-->
11738 Available  Commands -- Group 1         Available Commands -- Group 2   
11739 -------------------------------        ------------------------------  
11740 F1  Show Help Text                      F1  Show Help Text             
11741 F2  See commands in next group          F2  See commands in next group
11742 F3  Exit this screen                    F3  Quit Alpine                  
11743 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
11744 F5  Move to previous entry              F5  FOLDER LIST screen         
11745 F6  Move to next entry                  F6  Specify a folder to go to  
11746 F7  Previous page of address book       F7  MESSAGE INDEX screen        
11747 F8  Next page of address book           F8  Compose to entry using roles
11748 F9  Add new entry to address book       F9  Print address book         
11749 F10 Delete selected entry               F10 TakeAddr to another addrbook
11750 F11 Compose to selected entry           F11 Save or Export addrbook selections
11751 F12 Whereis (search address book)       F12 Forward entry by mail       
11753 Available Commands -- Group 3                                           
11754 ------------------------------                                          
11755 F3  Select                              F6  Zoom (or unZoom)            
11756 F5  Select Current                      F7  Apply Command to Selection  
11757 <!--chtml else-->
11758 Address Book Navigation        General Alpine Commands
11759 -----------------------        -----------------------
11760  P  Prev Address                  ?  Display this help text
11761  N  Next Address                  O  Show all other available commands
11762  -  Previous page of address book M  Back to MAIN MENU
11763 Spc (space bar) Next page         Q  Quit Alpine
11764  W  WhereIs (search for word      C  Compose message to selected addr
11765      or name in address book)     #  Compose to addr using roles
11766  &lt;  To List of Address Books if   L  FOLDER LIST screen
11767      more than one, else to MAIN  G  Specify a folder to go to
11768                                   I  MESSAGE INDEX screen
11770 Address Book Commands
11771 ----------------------------------------------------
11772  &gt;  View/Update selected entry    D  Delete selected entries
11773  %  Print address book            S  Save or Export address book selections
11774  F  Forward entries by mail       @  Add new entry to address book
11776  ;  Select command                Z  Toggle Zoom Mode
11777  :  Select highlighted entry      A  Apply command to selected entries
11779 <!--chtml endif-->
11780 </PRE>
11781 Note:  The presence or absence of the final four commands above is
11782 controlled by the option 
11783 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
11786 <H2>Description of the Address Book Screen</H2>
11788 This screen lets you edit and manage entries in your address book.  It
11789 also acts as a short-cut for composing messages to people in the address
11790 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
11791 message starts &quot;pre-addressed&quot; to whatever address book entry is
11792 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
11793 role to use in your composition.
11795 Alpine's address book helps you keep a list of addresses you send email to so
11796 you do not have to remember addresses that are often complex.  Each entry
11797 in the address book has five fields, all of them optional.  The three
11798 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
11800         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
11801         This is what you type in as you are addressing the message in the
11802         composer.  If there is a matching entry in your address book(s),
11803         Alpine will extract the corresponding FullName and Address fields to
11804         generate the actual address for your message.
11806         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
11807 of the
11808         person or organization.  Usually the full names are put in last
11809         name first so they sort nicely in alphabetical order.  Whatever
11810         you put as the name here will appear on the message when it is
11811         finally delivered.  Examples:<PRE>
11812            Garcia Marquez, Gabriel
11813            Henscheid, Eckhard
11814            Alpine-Info mailing list
11815            Library materials renewal requests
11816            Kim An-guk
11817            &quot;George III, King of Great Britain, 1738-1820&quot;
11818 </PRE>
11819 (In the second-to-last example, no comma is used in the name so that 
11820 the family name appears first in the address book and when the entry is 
11821 used in the composer.
11822 In the last example, retaining the commas is intended; 
11823 double-quotation marks surround the name to 
11824 prevent the transposition of its parts when the entry is used in 
11825 the composer.)
11827         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
11828         a valid Internet address that conforms to the Internet message
11829         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
11831 The two fields that aren't usually visible are:<DL>
11833   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
11834         message to this address to be saved in.  If this field is set, and
11835         this address is the first one in the message's To: header, then
11836         Alpine will use this folder name for the FCC in lieu of the normal
11837         FCC folder name.
11839   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
11840         </DL>
11842 Due to screen width limitations, these last two fields do not show up in
11843 the normal ADDRESS BOOK display.  You may select the 
11844 &quot;View/Update&quot; command to
11845 view or modify them.  You may use the configuration variable
11846 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
11847 to add these fields to your ADDRESS BOOK 
11848 display, or to modify the format of the display.
11850 <H2>Sorting the Address book</H2>
11852 By default, address book entries are sorted alphabetically on the full
11853 name with distribution lists sorted to the end.  Sorting can be changed by
11854 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
11855 --assuming you have &quot;write&quot; permission for the address book file.
11857 Unlike the sorting of folders (which only changes presentation), sorting an
11858 address book actually changes the file as it is kept on the computer.  For
11859 this reason you won't be able to sort a shared or system-wide address
11860 book.
11862 <H2>Adding New Entries</H2>
11864 The easiest way to add new entries to your address book is to use the
11865 &quot;TakeAddr&quot; command when viewing a message.
11866 This command allows you to take addresses from the header and body of the
11867 message and put them into your address book, without having to type
11868 them in.
11871 To manually add a new entry from within the address book screen, use the AddNew
11872 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
11873 Use this command both for adding a simple alias and for adding a
11874 distribution list.
11876 <H2>Distribution Lists</H2>
11878 Address book entries can be simple cases of aliases (a single nickname is linked
11879 to a single email address) or distribution lists (a single nickname
11880 pointing at more than one email address).  Each distribution list has a
11881 nickname, a full name and a list of addresses.  The addresses may be
11882 actual addresses or they may be other nicknames in your address book.
11883 They may even refer to other distribution lists.
11884 There's really no difference between a simple alias and a distribution list,
11885 other than the number of addresses.
11886 Therefore, you can turn a simple alias with one address into a distribution
11887 list simply by adding more addresses.
11888 To add entries to an existing list or alias
11889 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
11890 a single address from the list if the cursor is placed on the address;
11891 it will delete the entire distribution list if the cursor is on the
11892 nickname/fullname line.  View/Update may also be used to delete addresses
11893 from a list.
11895 Address field entries in distribution lists may take any one of three
11896 forms: a nickname existing in any of the defined address books, a normal
11897 address of the form &quot;jsmith@art.example.com&quot;, or a complete
11898 fullname/address combination, e.g. &quot;John Smith
11899 &lt;jsmith@art.example.com&gt;&quot;.
11901 Distribution lists in Alpine address books can only be used by the person or
11902 people who have access to that address book.  They are not usually used to
11903 implement discussion groups, but can be used to facilitate small
11904 discussion groups if all the participants have access to the same shared
11905 address book.
11907 <H2>FCC and Comments</H2>
11909 As mentioned above, each entry in the address book also has two other optional
11910 fields, Fcc and Comments.  The command to look at or change either of these
11911 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
11912 Comments field is just for your own use.  The Fcc field overrides the
11913 default Fcc if this address is the first one on the To line.  The WhereIs
11914 command may be used to search for particular strings in the address book,
11915 including fields that are not visible (like Comment and Fcc by default).
11917 <H2>Aggregate Operations</H2>
11919 If the feature
11920 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
11921 is turned on (the default), then the four commands &quot;Select&quot;,
11922 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
11923 are available.  The two selection commands allow you to mark a set of
11924 address book entries as being selected.  If you have more than one address
11925 book, the selections may be in more than one of those address books.
11926 The &quot;Zoom&quot; command will toggle between displaying only the selected
11927 entries and all of the entries.  The &quot;Apply&quot; command allows you to
11928 apply one of the regular address book commands to all of the selected
11929 entries.  Usually the address book commands apply to only the entry
11930 highlighted by the cursor.  The &quot;Apply&quot; command works with the
11931 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
11932 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
11934 <H2>Exporting and Forwarding Address book entries</H2>
11936 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
11937 address book entry is placed in a plain text file in your home directory
11938 <!--chtml if pinemode="running"-->
11939 (which, in the present configuration of your system, is
11940  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
11941 <!--chtml endif-->
11942 or current working directory
11943 <!--chtml if pinemode="running"-->
11944 (which, at least for your current Alpine &quot;session,&quot; 
11945 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
11946 <!--chtml endif-->, depending on the 
11947 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
11948 configuration setting.  If you have some entries selected and use the
11949 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
11950 placed in the text file.
11952 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
11953 address book entry is placed in a special attachment and you are put into
11954 the composer.  You can fill in some comments in the body of the message,
11955 if you'd like, and send it to somebody else who uses Alpine.  The recipient
11956 may use the TakeAddr command on that message to insert the address book
11957 entry you sent in their own address book.  If you have some entries
11958 selected and use the Apply Forward command all of the selected entries
11959 will be forwarded in a single message.  You may
11960 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.
11961 The recipient must be using Alpine in order to receive this correctly.
11962 One way for the recipient to handle this might be to create an empty
11963 address book and then &quot;Take&quot; your forwarded address book entries into
11964 that empty address book.
11966 <H2>Multiple and/or Site-Wide Address books</H2>
11968 You may have more than one personal address book.  In addition, there may
11969 be one or more global address books.  This capability allows you to have
11970 multiple personal address books (some of which may be shared) and it also
11971 allows system administrators to implement site-wide address books that
11972 contain entries for users on multiple machines within the organization.
11973 <P><DL>
11974 <DT>Searching
11975   <DD> If you enter a nickname when composing a message, your
11976   personal address books will be searched through in order, and then the
11977   global address book(s) searched. If more than one address book has an entry
11978   for the nickname, Alpine uses the first one that it finds, so an entry in
11979   your personal address book would override a global address book entry. If
11980   after searching all the address books there is still no match, (Unix) Alpine
11981   then searches the local host password file on the assumption that you have
11982   entered a local user name rather than an address book nickname.
11983   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
11984   command, but global address books are always searched after personal
11985   address books.
11987   <P><DT>Tab completion
11988   <DD> If the
11989   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
11990   feature is turned on (the default) then the Tab key may be used
11991   in the composer to complete partially typed nicknames in the To
11992   or Cc lines. You type the first few letters of a nickname and then
11993   press the Tab key. It there is only one nickname that matches it will
11994   be filled in by Alpine. If there is more than one the unambiguous part
11995   of the nicknames will be filled in. For example, if your address book or
11996   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
11997   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
11998   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
11999   If you then type a second Tab character you will be presented with a list
12000   of matching nicknames to select from. Alternatively, you could type another
12001   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12002   in the entire &quot;barbecue&quot; entry.
12004   <P><DT>Defining
12005   <DD> You define multiple personal address books in the 
12006   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12007   from the MAIN MENU.  
12008   You may add as many as you like.  Global address books are usually
12009   site-wide address books defined by the System administrator, but
12010   you may define global address books of your own just like you define
12011   personal address books.
12013   <P><DT>Creating and updating
12014   <DD> Personal address books are normally created empty
12015   and populated by explicit additions from within Alpine, e.g. via the
12016   TakeAddr command.  Unlike personal address books, global address books may
12017   not be modified/updated from within Alpine; that is, they are Read-Only.
12018   Thus, global address books are created, populated and updated outside of
12019   Alpine. They might be hand-edited, generated by a program from another
12020   database, or by copying an existing address book.  They might also be
12021   some other user's personal address book, and so be modified normally by
12022   that user but accessed Read-Only by you.  See the Alpine Technical
12023   Notes document (included in the Alpine distribution) for more information on
12024   this.
12026   <P><DT>Accessing
12027   <DD>There are two different types of address books in Alpine.
12028   A local address book is stored in a regular file and the normal file
12029   access permissions apply.  A remote address book is stored on an IMAP
12030   server in a special folder that contains only messages pertaining to
12031   that address book.  The last message in the remote folder contains a
12032   copy of the address book data, and that data is copied to a local cache
12033   file in your home directory.  From there it is accessed just like a local
12034   address book.  The name of the cache file is kept track of in a special
12035   file called the
12036   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12037   the name of which is stored in
12038   your Alpine configuration file the first time you use a remote address book.
12039   Just as local Alpine address books use a format that only Alpine understands,
12040   remote Alpine address books do the same and other mail reading programs
12041   are unlikely to be able to understand them.<P>
12042   While global address books are explicitly intended to be shared, there is
12043   nothing to prevent you from sharing a personal address book with other
12044   Alpine users. This might be useful in the case of a small workgroup.
12045   However, it is recommended that updates to shared personal address books
12046   be done when other Alpine users are not accessing the address book. Alpine
12047   does not do any file-locking to manage concurrent updates to the
12048   addressbook, but it does check to see if the file has been modified before
12049   making any changes.  Consequently, inadvertent concurrent updates will
12050   only cause other Alpine users to have to restart their address book
12051   operation, which will cause Alpine to reopen the updated file.
12053   <P><DT>Converting to Remote
12054   <DD>The easiest way to convert an existing local
12055   address book into a remote address book is to create an empty new remote
12056   personal address book by typing &quot;A&quot; to execute the
12057   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12058   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12059   address book.
12060   After you have added the empty
12061   remote address book, go into the screen for the address book you wish
12062   to copy and &quot;Select&quot; &quot;All&quot;.
12063   This selects every entry in that
12064   address book.  Then type the command &quot;Apply Save&quot;.
12065   You will be asked for the address book to save to.  You may use ^P and ^N
12066   to get to the new empty address book, then hit RETURN and the addresses
12067   will be copied.
12068   At this point you'll probably want to unselect all the entries in the local
12069   address book before proceeding. You do that with
12070   &quot;Select&quot; &quot;unselect All&quot;.
12072 </DL>
12073 <UL>
12074 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12075 </UL>
12076 <P><UL>
12077 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12078 </UL>
12080 &lt;End of help on this topic&gt;
12081 </BODY>
12082 </HTML>
12083 ===== h_abook_select_addr =====
12084 <HTML>
12085 <HEAD>
12086 <TITLE>Addressbook Selection Explained</TITLE>
12087 </HEAD>
12088 <BODY>
12089 <H1>SELECT ADDRESS</H1>
12090 <!--chtml if pinemode="function_key"-->
12091 <PRE>
12092 Navigating the List of Messages               General Alpine Commands
12093 -------------------------------               -----------------------
12094 F5   Move to previous entry                   F1  Show this help text
12095 F6   Move to next entry
12096 F7   Show previous screen of address book
12097 F8   Show next screen of address book
12098 F12  WhereIs (search through address book)
12100 Address Selection Commands
12101 --------------------------
12102 F3   Exit the Address Select screen (without selecting an address)
12103 F4   Select the currently highlighted entry
12104 </PRE>
12105 <!--chtml else-->
12106 <PRE>
12107 Navigating the List of Messages               General Alpine Commands
12108 -------------------------------               -----------------------
12109  P   Move to previous entry                    ?  Show this help text
12110  N   Move to next entry
12111  -   Show previous screen of address book
12112 Spc  (space bar) Show next screen of address book
12113  W   WhereIs (search through address book)
12115 Address Selection Commands
12116 --------------------------
12117  E   Exit the Address Select screen (without selecting an address)
12118  S   Select the currently highlighted entry
12119 </PRE>
12120 <!--chtml endif-->
12123 This screen is designed to let you easily scan your address book(s) in
12124 order to select an entry for the message you are composing.  You cannot
12125 edit your address book in any way at this time, for address book
12126 maintenance, select the address book command when not composing a message.
12129 If you are composing a message and know the nickname of the person/list you
12130 want, you can bypass this screen by simply typing in the nickname on the
12131 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12132 selecting an entry does not cancel your message.
12135 FOR MORE INFORMATION on addressing see
12136 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12137 <A HREF="h_abook_opened">Address Book Screen's</A>
12138 help text.
12140 &lt;End of help on this topic&gt;
12141 </BODY>
12142 </HTML>
12143 ===== h_abook_select_top =====
12144 <HTML>
12145 <HEAD>
12146 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12147 </HEAD>
12148 <BODY>
12149 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12150 <!--chtml if pinemode="function_key"-->
12151 <PRE>
12152 Navigating the List of Address Books       General Alpine Commands
12153 ------------------------------------       -----------------------
12154 F4   View the highlighted address book
12155 F5   Move to previous address book         F1  Show this help text
12156 F6   Move to next address book
12157 F7   Show previous screen of address books
12158 F8   Show next screen of address books
12159 F12  WhereIs (search through address books)
12161 Address Selection Commands
12162 --------------------------
12163 F3   Exit the Address Select screen (without selecting an address)
12164 F4   Select the currently selected entries (if using ListMode)
12165 F9   Change to ListMode
12166 </PRE>
12167 <!--chtml else-->
12168 <PRE>
12169 Navigating the List of Address Books       General Alpine Commands
12170 ------------------------------------       -----------------------
12171  &gt;   View the highlighted address book
12172  P   Move to previous address book         ?  Show this help text
12173  N   Move to next address book
12174  -   Show previous screen of address books
12175 Spc  (space bar) Show next screen of address books
12176  W   WhereIs (search through address books)
12178 Address Selection Commands
12179 --------------------------
12180  E   Exit the Address Select screen (without selecting an address)
12181  S   Select the currently selected entries (if using ListMode)
12182  L   Change to ListMode
12183 </PRE>
12184 <!--chtml endif-->
12187 This screen is designed to let you easily scan your address book(s) in
12188 order to select entries for the message you are composing.  You cannot
12189 edit your address book in any way at this time.  For address book
12190 maintenance, select the address book command when not composing a message.
12193 If you are composing a message and know the nickname of the person/list you
12194 want, you can bypass this screen by simply typing in the nickname on the
12195 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12196 selecting an entry does not cancel your message.
12199 The ListMode command will add a column at the left edge of the screen.
12200 You mark the entries that you wish to select with the &quot;X&quot; command.
12201 This allows you to choose more than one entry at a time.
12204 An alternative method of composing a message to entries in your
12205 address book(s) is to first use the &quot;Select&quot; command from
12206 the address book maintenance screen and then the &quot;Apply&quot;
12207 &quot;ComposeTo&quot; command to start the composer composing to the
12208 selected entries.
12211 FOR MORE INFORMATION on addressing see
12212 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12213 <A HREF="h_abook_opened">Address Book Screen's</A>
12214 help text.
12216 &lt;End of help on this topic&gt;
12217 </BODY>
12218 </HTML>
12219 ===== h_abook_select_listmode =====
12220 <HTML>
12221 <HEAD>
12222 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12223 </HEAD>
12224 <BODY>
12225 <H1>COMPOSER: SELECT ADDRESSES</H1>
12226 <!--chtml if pinemode="function_key"-->
12227 <PRE>
12228 Navigating the List of Messages                 General Alpine Commands
12229 -------------------------------                 -----------------------
12230 F5   Move to previous entry                     F1  Show this help text
12231 F6   Move to next entry
12232 F7   Show previous screen of address book
12233 F8   Show next screen of address book
12234 F12  WhereIs (search through address book)
12236 Address Selection Commands
12237 --------------------------
12238 F3   Exit the Address Select screen (without selecting an address)
12239 F4   Select the currently highlighted entry
12240 F9   Change to ListMode
12241 </PRE>
12242 <!--chtml else-->
12243 <PRE>
12244 Navigating the List of Messages                 General Alpine Commands
12245 -------------------------------                 -----------------------
12246  P   Move to previous entry                     ?  Show this help text
12247  N   Move to next entry
12248  -   Show previous screen of address book
12249 Spc  (space bar) Show next screen of address book
12250  W   WhereIs (search through address book)
12252 Address Selection Commands
12253 --------------------------
12254  E   Exit the Address Select screen (without selecting an address)
12255  S   Select the currently highlighted entry
12256  L   Change to ListMode
12257 </PRE>
12258 <!--chtml endif-->
12261 This screen is designed to let you easily scan your address book(s) in
12262 order to select entries for the message you are composing.  You cannot
12263 edit your address book in any way at this time, for address book
12264 maintenance, select the address book command when not composing a message.
12267 If you are composing a message and know the nickname of the person/list you
12268 want, you can bypass this screen by simply typing in the nickname on the
12269 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12270 selecting an entry does not cancel your message.
12273 The ListMode command will add a column at the left edge of the screen.
12274 You mark the entries that you wish to select with the &quot;X&quot; command.
12275 This allows you to choose more than one entry at a time.
12278 An alternative method of composing a message to entries in your
12279 address book(s) is to first use the &quot;Select&quot; command from
12280 the address book maintenance screen and then the &quot;Apply&quot;
12281 &quot;ComposeTo&quot; command to start the composer composing to the
12282 selected entries.
12285 FOR MORE INFORMATION on addressing see
12286 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12287 <A HREF="h_abook_opened">Address Book Screen's</A>
12288 help text.
12290 &lt;End of help on this topic&gt;
12291 </BODY>
12292 </HTML>
12293 ===== h_abook_select_checks =====
12294 <HTML>
12295 <HEAD>
12296 <TITLE>Address Selection from Composer Explained</TITLE>
12297 </HEAD>
12298 <BODY>
12299 <H1>COMPOSER: SELECT ADDRESSES</H1>
12300 <!--chtml if pinemode="function_key"-->
12301 <PRE>
12302 Navigating the List of Messages                 General Alpine Commands
12303 -------------------------------                 -----------------------
12304 F5   Move to previous entry                     F1  Show this help text
12305 F6   Move to next entry
12306 F7   Show previous screen of address book
12307 F8   Show next screen of address book
12308 F12  WhereIs (search through address book)
12310 Address Selection Commands
12311 --------------------------
12312 F3   Exit the Address Select screen (without selecting an address)
12313 F4   Select the currently highlighted entry
12314 F8   Either Sets or Unsets all entries in this address book
12315 F9   Set or Unset the highlighted entry
12316 </PRE>
12317 <!--chtml else-->
12318 <PRE>
12319 Navigating the List of Messages                 General Alpine Commands
12320 -------------------------------                 -----------------------
12321  P   Move to previous entry                     ?  Show this help text
12322  N   Move to next entry
12323  -   Show previous screen of address book
12324 Spc  (space bar) Show next screen of address book
12325  W   WhereIs (search through address book)
12327 Address Selection Commands
12328 --------------------------
12329  E   Exit the Address Select screen (without selecting an address)
12330  S   Select the currently highlighted entry
12331  X   Set or Unset the highlighted entry
12332  A   Either Sets or Unsets all entries in this address book
12333 </PRE>
12334 <!--chtml endif-->
12337 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12338 command.  Type &quot;S Select&quot; to select all of the entries you
12339 have marked, just as if you had typed them in by hand.
12342 An alternative method of composing a message to entries in your
12343 address book(s) is to first use the &quot;Select&quot; command from
12344 the address book maintenance screen and then the &quot;Apply&quot;
12345 &quot;ComposeTo&quot; command to start the composer composing to the
12346 selected entries.
12349 FOR MORE INFORMATION on addressing see
12350 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12351 <A HREF="h_abook_opened">Address Book Screen's</A>
12352 help text.
12354 &lt;End of help on this topic&gt;
12355 </BODY>
12356 </HTML>
12357 ===== h_abook_select_nicks_take =====
12358 <HTML>
12359 <HEAD>
12360 <TITLE>Take Address Nickname Selection Explained</TITLE>
12361 </HEAD>
12362 <BODY>
12363 <H1>TAKEADDR: SELECT NICKNAME</H1>
12364 <!--chtml if pinemode="function_key"-->
12365 <PRE>
12366 Navigating the List of Messages                 General Alpine Commands
12367 -------------------------------                 -----------------------
12368 F5   Move to previous entry                     F1  Show this help text
12369 F6   Move to next entry
12370 F7   Show previous screen of address book
12371 F8   Show next screen of address book
12372 F12  WhereIs (search through address book)
12374 Message Selection Commands
12375 --------------------------
12376 F3   Exit the Nickname Select screen (without selecting an address)
12377 F4   Select the currently highlighted entry
12378 </PRE>
12379 <!--chtml else-->
12380 <PRE>
12381 Navigating the List of Messages                 General Alpine Commands
12382 -------------------------------                 -----------------------
12383  P   Move to previous entry                     ?  Show this help text
12384  N   Move to next entry
12385  -   Show previous screen of address book
12386 Spc  (space bar) Show next screen of address book
12387  W   WhereIs (search through address book)
12389 Message Selection Commands
12390 --------------------------
12391  E   Exit the Nickname Select screen (without selecting an address)
12392  S   Select the currently highlighted entry
12393 </PRE>
12394 <!--chtml endif-->
12397 This screen is designed to let you modify or add to an existing
12398 address book entry.  You have already selected the name(s) and
12399 address(es) through &quot;Take Address&quot;.  This screen simply lets
12400 you scan your address books and select the nickname to be
12401 changed/augmented.  If you want to add a new entry, then you are in
12402 the wrong place-- Select &quot;Exit&quot; command.
12405 FOR MORE INFORMATION on addressing see
12406 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12407 <A HREF="h_abook_opened">Address Book Screen's</A>
12408 help text.
12410 &lt;End of help on this topic&gt;
12411 </BODY>
12412 </HTML>
12413 ===== h_abook_select_nick =====
12414 <HTML>
12415 <HEAD>
12416 <TITLE>Nickname Selection Explained</TITLE>
12417 </HEAD>
12418 <BODY>
12419 <H1>SELECT NICKNAME</H1>
12420 <!--chtml if pinemode="function_key"-->
12421 <PRE>
12422 Navigating the List of Messages                 General Alpine Commands
12423 -------------------------------                 -----------------------
12424 F5   Move to previous entry                     F1  Show this help text
12425 F6   Move to next entry
12426 F7   Show previous screen of address book
12427 F8   Show next screen of address book
12428 F12  WhereIs (search through address book)
12430 Message Selection Commands
12431 --------------------------
12432 F3   Exit the Nickname Select screen (without selecting an address)
12433 F4   Select the currently highlighted entry
12434 </PRE>
12435 <!--chtml else-->
12436 <PRE>
12437 Navigating the List of Messages                 General Alpine Commands
12438 -------------------------------                 -----------------------
12439  P   Move to previous entry                     ?  Show this help text
12440  N   Move to next entry
12441  -   Show previous screen of address book
12442 Spc  (space bar) Show next screen of address book
12443  W   WhereIs (search through address book)
12445 Message Selection Commands
12446 --------------------------
12447  E   Exit the Nickname Select screen (without selecting an address)
12448  S   Select the currently highlighted entry
12449 </PRE>
12450 <!--chtml endif-->
12453 This screen is designed to let you look at the nicknames in your address
12454 books before choosing a new one.
12457 FOR MORE INFORMATION on addressing see
12458 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12459 <A HREF="h_abook_opened">Address Book Screen's</A>
12460 help text.
12462 &lt;End of help on this topic&gt;
12463 </BODY>
12464 </HTML>
12465 ===== h_takeaddr_screen =====
12466 <HTML>
12467 <HEAD>
12468 <TITLE>Take Address Screen Explained</TITLE>
12469 </HEAD>
12470 <BODY>
12471 <H1>TAKE ADDRESS COMMANDS</H1>
12472 <!--chtml if pinemode="function_key"-->
12473 <PRE>
12474 Navigating the List of Addresses       Address Selection Commands        
12475 --------------------------------       --------------------------        
12476  F5  Move to previous entry            F3  Exit without taking address
12477  F6  Move to next entry                F4  Take current address(es)
12478  F7  Show previous page of address list
12479  F8  Show next page of address list
12480  F2  WhereIs (search list)
12481                                --------------
12482 Mode Toggle            F9  Set/Unset current address
12483 -----------            F10 Set all
12484  F12 Toggle between List and single mode       F11 Unset all
12485 </PRE>
12486 <!--chtml else-->
12487 <PRE>
12488 Navigating the List of Addresses       Address Selection Commands
12489 --------------------------------       --------------------------
12490  P  Move to previous entry              &lt;  Exit without taking address
12491  N  Move to next entry                  T  Take address
12492  -  Show previous page of address list
12493 Spc (space bar) Show next page of address list
12494  W  WhereIs (search list)              List Mode
12495                                        ---------
12496 Single Mode                             X  Set/Unset current address
12497 -----------                             A  Set all addresses
12498  L  Switch to list mode                 U  Unset all addresses
12499                                         S  Switch to single mode
12500 </PRE>
12501 <!--chtml endif-->
12503 <H2>Description of the Take Address Screen</H2>
12505 This screen is designed to let you select one or more address/name
12506 combinations from the current message and put them into your address book.
12507 The cursor is initially placed on the line with the message author.
12508 Other lines include the names of people and/or mailing lists who also
12509 received the message.  Other people &quot;involved&quot; in the
12510 message (e.g. the person named as Reply-To:) are also listed here.
12513 The simple case is adding a new, single entry into your address book. To
12514 do this, simply highlight the correct line and press 
12515 <!--chtml if pinemode="function_key"-->
12517 <!--chtml else-->
12518 &quot;T&quot;.
12519 <!--chtml endif-->
12520 To create a new list or add to an existing list, switch the screen display
12521 into List Mode by pressing
12522 <!--chtml if pinemode="function_key"-->
12523 F12.
12524 <!--chtml else-->
12525 &quot;L&quot;.
12526 <!--chtml endif-->
12527 In List Mode, you select the
12528 group of addresses you wish to manipulate by marking them with an
12529 &quot;X&quot;.
12530 The Set/Unset
12531 <!--chtml if pinemode="function_key"-->
12532 (F9)
12533 <!--chtml else-->
12534 (&quot;X&quot;)
12535 <!--chtml endif-->
12536 command will turn the &quot;X&quot; on for the
12537 highlighted address if it was off or turn it off if it was previously on.
12538 The SetAll command will select all of the addresses, and the UnSetAll
12539 command will turn off all the selections.  Once you've gotten the
12540 selection the way you want it, you may create a new list by pressing
12541 <!--chtml if pinemode="function_key"-->
12543 <!--chtml else-->
12544 &quot;T&quot;.
12545 <!--chtml endif-->
12548 In both the simple and list cases, after choosing to take the address,
12549 you will be asked for the nickname of the entry.  Typing in a new name
12550 creates the new entry/list.  Entering an existing nickname will replace
12551 the entry (simple case) or add to the list (list case).  Alternatively,
12552 you can press Ctrl-T at the nickname prompt and select an existing
12553 nickname from your address book.
12556 You will normally start in Single Mode, unless you used the Apply command
12557 to startup the TakeAddr screen, in which case you will start in List Mode.
12558 You may switch between the two modes at any time.  If you've already
12559 selected several addresses in List Mode, those will be remembered when you
12560 switch to Single Mode and then back to List Mode.  The set of addresses
12561 that are pre-selected when you start in List Mode are the From addresses
12562 of all of the messages you are operating on.  You may, of course, easily
12563 erase those selections with the UnSetAll command.
12566 If you have more than one writable address book, you will be prompted for
12567 the name of the address book you wish to add the new entry to before
12568 anything else. You can use ^N and ^P to choose among the defined address
12569 books, or type in the address book name.
12572 FOR MORE INFORMATION on addressing see
12573 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12574 <A HREF="h_abook_opened">Address Book Screen's</A>
12575 help text.
12577 &lt;End of help on this topic&gt;
12578 </BODY>
12579 </HTML>
12580 ===== h_takeexport_screen =====
12581 <HTML>
12582 <HEAD>
12583 <TITLE>Take Export Screen Explained</TITLE>
12584 </HEAD>
12585 <BODY>
12586 <H1>TAKE EXPORT COMMANDS</H1>
12587 <!--chtml if pinemode="function_key"-->
12588 <PRE>
12589 Navigating the List of Addresses       Address Selection Commands        
12590 --------------------------------       --------------------------        
12591  F5  Move to previous entry            F3  Exit without taking address
12592  F6  Move to next entry                F4  Take current address(es)
12593  F7  Show previous page of address list
12594  F8  Show next page of address list
12595  F2  WhereIs (search list)
12596                                --------------
12597 Mode Toggle            F9  Set/Unset current address
12598 -----------            F10 Set all
12599  F12 Toggle between List and single mode       F11 Unset all
12600 </PRE>
12601 <!--chtml else-->
12602 <PRE>
12603 Navigating the List of Addresses       Address Selection Commands
12604 --------------------------------       --------------------------
12605  P  Move to previous entry              &lt;  Exit without taking address
12606  N  Move to next entry                  T  Take address
12607  -  Show previous page of address list
12608 Spc (space bar) Show next page of address list
12609  W  WhereIs (search list)              List Mode
12610                                        ---------
12611 Single Mode                             X  Set/Unset current address
12612 -----------                             A  Set all addresses
12613  L  Switch to list mode                 U  Unset all addresses
12614                                         S  Switch to single mode
12615 </PRE>
12616 <!--chtml endif-->
12618 <H2>Description of the Take Export Screen</H2>
12620 This screen is designed to let you select one or more addresses
12621 from the current message and put them into a file.
12622 Only the user@domain_name part of each address is put into the file.
12625 To put a single entry into a file simply highlight the correct line and press 
12626 <!--chtml if pinemode="function_key"-->
12628 <!--chtml else-->
12629 &quot;T&quot;.
12630 <!--chtml endif-->
12631 To put more than one entry into a file
12632 switch the screen display
12633 into List Mode by pressing
12634 <!--chtml if pinemode="function_key"-->
12635 F12.
12636 <!--chtml else-->
12637 &quot;L&quot;.
12638 <!--chtml endif-->
12639 In List Mode, you select the
12640 group of addresses you wish to manipulate by marking them with an
12641 &quot;X&quot;.
12642 The Set/Unset
12643 <!--chtml if pinemode="function_key"-->
12644 (F9)
12645 <!--chtml else-->
12646 (&quot;X&quot;)
12647 <!--chtml endif-->
12648 command will turn the &quot;X&quot; on for the
12649 highlighted address if it was off or turn it off if it was previously on.
12650 The SetAll command will select all of the addresses, and the UnSetAll
12651 command will turn off all the selections.  Once you've gotten the
12652 selection the way you want it, you may put the addresses in a file by typing
12653 <!--chtml if pinemode="function_key"-->
12655 <!--chtml else-->
12656 &quot;T&quot;.
12657 <!--chtml endif-->
12660 You will be asked for the name of a file to put the addresses in.
12661 If the file already exists, you will be asked whether you want to Overwrite
12662 (replace) the contents of the file or Append to the contents of the file.
12665 &lt;End of help on this topic&gt;
12666 </BODY>
12667 </HTML>
12668 ============= h_abook_view ========================
12669 <HTML>
12670 <HEAD>
12671 <TITLE>Address Book View Explained</TITLE>
12672 </HEAD>
12673 <BODY>
12674 This function allows you to view the contents of an address book entry. You
12675 can only view one entry at a time.
12677 <DL>
12678 <DT>Help
12679 <!--chtml if pinemode="function_key"-->
12680 (F1)
12681 <!--chtml else-->
12683 <!--chtml endif-->
12684 </DT>
12685 <DD>
12686 Display this help text.
12688 <DT>Abook
12689 <!--chtml if pinemode="function_key"-->
12690 (F3)
12691 <!--chtml else-->
12692 (&lt;)
12693 <!--chtml endif-->
12694 </DT>
12695 <DD>
12696 Go back to index of address book entries.
12698 <DT>Update
12699 <!--chtml if pinemode="function_key"-->
12700 (F4)
12701 <!--chtml else-->
12703 <!--chtml endif-->
12704 </DT>
12705 <DD>
12706 Update (modify) this entry.
12708 <DT>ComposeTo
12709 <!--chtml if pinemode="function_key"-->
12710 (F5)
12711 <!--chtml else-->
12713 <!--chtml endif-->
12714 </DT>
12715 <DD>Compose a message to the address(es) in this entry.
12717 <DT>Role
12718 <!--chtml if pinemode="function_key"-->
12719 (F6)
12720 <!--chtml else-->
12722 <!--chtml endif-->
12723 </DT>
12724 <DD>Compose a message to the address(es) in this entry using roles.
12726 <DT>Prev Page
12727 <!--chtml if pinemode="function_key"-->
12728 (F7)
12729 <!--chtml else-->
12731 <!--chtml endif-->
12732 </DT>
12733 <DD>
12734 Show the previous page of the current entry.
12736 <DT>Next Page
12737 <!--chtml if pinemode="function_key"-->
12738 (F8)
12739 <!--chtml else-->
12740 (Space)
12741 <!--chtml endif-->
12742 </DT>
12743 <DD>
12744 Show the next page of the current entry.
12746 <DT>Print
12747 <!--chtml if pinemode="function_key"-->
12748 (F9)
12749 <!--chtml else-->
12751 <!--chtml endif-->
12752 </DT>
12753 <DD>Print the current entry.  You can select the
12754 printer or the print command via the &quot;Setup&quot; command
12755 on the MAIN MENU.
12757 <DT>WhereIs
12758 <!--chtml if pinemode="function_key"-->
12759 (F10)
12760 <!--chtml else-->
12762 <!--chtml endif-->
12763 </DT>
12764 <DD>Search the entry for a string of letters.  If it is
12765 found, move to it.  The string can be one word or a phrase.
12766 If there are multiple occurrences, the cursor moves to the
12767 first occurrence beyond the current cursor position.
12769 <DT>Fwd Email
12770 <!--chtml if pinemode="function_key"-->
12771 (F11)
12772 <!--chtml else-->
12774 <!--chtml endif-->
12775 </DT>
12776 <DD>Begin composition of a new mail message with the displayed
12777 text already inserted in the message body.
12779 </DL>
12781 &lt;End of help on this topic&gt;
12782 </BODY>
12783 </HTML>
12784 ============= h_ldap_view ========================
12785 <HTML>
12786 <HEAD>
12787 <TITLE>LDAP Response View Explained</TITLE>
12788 </HEAD>
12789 <BODY>
12790 This function allows you to view the contents of a directory entry. You
12791 can only view one entry at a time.
12793 <DL>
12794 <DT>Help
12795 <!--chtml if pinemode="function_key"-->
12796 (F1)
12797 <!--chtml else-->
12799 <!--chtml endif-->
12800 </DT>
12801 <DD>
12802 Display this help text.
12804 <DT>Results Index
12805 <!--chtml if pinemode="function_key"-->
12806 (F3)
12807 <!--chtml else-->
12808 (&lt;)
12809 <!--chtml endif-->
12810 </DT>
12811 <DD>Go back to index of search results.
12813 <DT>ComposeTo
12814 <!--chtml if pinemode="function_key"-->
12815 (F5)
12816 <!--chtml else-->
12818 <!--chtml endif-->
12819 </DT>
12820 <DD>Compose a message to the address(es) in this entry.
12822 <DT>Role
12823 <!--chtml if pinemode="function_key"-->
12824 (F6)
12825 <!--chtml else-->
12827 <!--chtml endif-->
12828 </DT>
12829 <DD>Compose a message to the address(es) in this entry using roles.
12831 <DT>Prev Page
12832 <!--chtml if pinemode="function_key"-->
12833 (F7)
12834 <!--chtml else-->
12836 <!--chtml endif-->
12837 </DT>
12838 <DD>
12839 Show the previous page of the current entry.
12841 <DT>Next Page
12842 <!--chtml if pinemode="function_key"-->
12843 (F8)
12844 <!--chtml else-->
12845 (Space)
12846 <!--chtml endif-->
12847 </DT>
12848 <DD>
12849 Show the next page of the current entry.
12851 <DT>Print
12852 <!--chtml if pinemode="function_key"-->
12853 (F9)
12854 <!--chtml else-->
12856 <!--chtml endif-->
12857 </DT>
12858 <DD>Print the current entry on paper.  You can select the
12859 printer or the print command via the &quot;Setup&quot; command
12860 on the MAIN MENU.
12862 <DT>WhereIs
12863 <!--chtml if pinemode="function_key"-->
12864 (F10)
12865 <!--chtml else-->
12867 <!--chtml endif-->
12868 </DT>
12869 <DD>Search the entry for a string of letters.  If it is
12870 found, move to it.  The string can be one word or a phrase.
12871 If there are multiple occurrences, the cursor moves to the
12872 first occurrence beyond the current cursor position.
12874 <DT>Fwd Email
12875 <!--chtml if pinemode="function_key"-->
12876 (F11)
12877 <!--chtml else-->
12879 <!--chtml endif-->
12880 </DT>
12881 <DD>Begin composition of a new mail message with the displayed
12882 text already inserted in the message body.
12884 <DT>Save
12885 <!--chtml if pinemode="function_key"-->
12886 (F12)
12887 <!--chtml else-->
12889 <!--chtml endif-->
12890 </DT>
12891 <DD>Save the displayed entry to one of your address books or export
12892 it to a file.
12893 </DL>
12895 &lt;End of help on this topic&gt;
12896 </BODY>
12897 </HTML>
12898 ===== h_attachment_screen =====
12899 <HTML>
12900 <HEAD>
12901 <TITLE>Attachment Index Screen Explained</TITLE>
12902 </HEAD>
12903 <BODY>
12904 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
12905 message's attachments, and allows various operations on them.  The
12906 first attachment is usually the message text, but does not include the
12907 header portion of the message.
12909 Available commands include:
12911 <DL>
12913 <DT>Help</DT>
12914 <DD>Show this help text.
12916 <DT>Msg #<I>num</I></DT>
12917 <DD>Leave this screen without displaying or saving any attachments.
12919 <DT>View</DT>
12920 <DD>View the currently selected attachment.
12922 <DT>Prev Attach</DT>
12923 <DD>Move to previous attachment.
12925 <DT>Next Attach</DT>
12926 <DD>Move to next attachment.
12928 <DT>Prev Page</DT>
12929 <DD>Previous page of the listed attachments.
12931 <DT>Next Page</DT>
12932 <DD>Next page of the listed attachments.
12934 <DT>Delete</DT>
12935 <DD>Mark the currently selected attachment for Deletion.
12936 This does not modify the current message by deleting the attachment from
12937 it, but instead the delete flag <EM>only</EM> has an effect when saving
12938 the message to a folder.
12939 Attachments marked for deletion are not copied to the destination folder
12940 along with the rest of the message when it is saved.
12941 It is ok for the destination folder to be the same as the current folder.
12942 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
12944 <DT>Undelete</DT>
12945 <DD>Turn off the Delete flag for the selected attachment.
12947 <DT>Save</DT>
12948 <DD>Save the selected attachment to a file.  If the attachment is of
12949 type &quot;RFC822/Message&quot;, then the attachment will be saved to
12950 the specified mail folder.
12952 <DT>Export</DT>
12953 <DD>If the attachment is of
12954 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12955 copy the message to a file in the same way this command works on 
12956 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12958 <DT>Pipe</DT>
12959 <DD>Pipe the attachment contents into a UNIX command (if enabled).
12960 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
12962 <DT>WhereIs</DT>
12963 <DD>Find a matching string in the attachment list.
12965 <DT>AboutAttch</DT>
12966 <DD>Examine various aspects of the selected attachment.
12968 <DT>Print</DT>
12969 <DD>Print the selected attachment.
12971 <DT>Forward</DT>
12972 <DD>Forward the selected attachment as an attachment.
12973 </DL>
12977 All attachments can be saved or piped into a UNIX command, but some may
12978 not be readily displayed by either Alpine or an external tool.  In such
12979 cases, the reason why the message cannot be displayed is displayed on
12980 Alpine's message line.
12982 &lt;End of help on this topic&gt;
12983 </BODY>
12984 </HTML>
12985 ============= h_mail_text_att_view ========================
12986 <HTML>
12987 <HEAD>
12988 <TITLE>Attachment View Screen Explained</TITLE>
12989 </HEAD>
12990 <BODY>
12991 This function allows you to view the contents of a text attachment. You
12992 can only view one attachment at a time.
12994 Available commands include:
12996 <DL>
12998 <DT>Help</DT>
12999 <DD>Display this help text
13001 <DT>AttchIndex</DT>
13002 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13004 <DT>Prev Page</DT>
13005 <DD>Show the previous page of the current attachment.
13007 <DT>Next Page</DT>
13008 <DD>Show the next page of the current attachment by pressing the space bar.
13010 <DT>Delete</DT>
13011 <DD>Mark the viewed attachment for Deletion.  The delete
13012 flag <EM>only</EM> has affect when saving the message to a folder.
13013 Attachments marked for deletion are exluded from the messsage when
13014 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13015 this Alpine session.
13017 <DT>Undelete</DT>
13018 <DD>Turn off the Delete flag for the selected attachment.
13020 <DT>Save</DT>
13021 <DD>Copy the current attachment to a file.  If you just enter
13022 a filename, the attachment will be saved with that name in
13023 your home directory 
13024 <!--chtml if pinemode="running"-->
13025 (which, in the present configuration of your system, is
13026  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13027 <!--chtml endif-->
13028 or current working directory
13029 <!--chtml if pinemode="running"-->
13030 (which, at least for your current Alpine &quot;session,&quot; 
13031 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13032 <!--chtml endif-->, depending on the
13033 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13034 configuration setting.  You may enter the full
13035 path and filename to save it in another directory instead.
13037 <DT>Export</DT>
13038 <DD>If the attachment is of
13039 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13040 copy the message to a file in the same way this command works on 
13041 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13042 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13043 defined, they may affect the contents of the exported file.)
13045 <DT>Pipe</DT>
13046 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13048 <DT>WhereIs</DT>
13049 <DD>Search the attachment for a string of letters.  If it is
13050 found, move to it.  The string can be one word or a phrase.
13051 If there are multiple occurrences, the cursor moves to the
13052 first occurrence beyond the current cursor position.
13054 <DT>Print</DT>
13055 <DD>Print the current attachment on paper.  You can select the
13056 printer or the print command via the &quot;Setup&quot; command
13057 on the MAIN MENU.
13059 <DT>Forward</DT>
13060 <DD>Forward the selected attachment as an attachment.
13061 </DL>
13063 &lt;End of help on this topic&gt;
13064 </BODY>
13065 </HTML>
13066 ============= h_journal ==============
13067 <HTML>
13068 <HEAD>
13069 <TITLE>Recent Message Journal Explained</TITLE>
13070 </HEAD>
13071 <BODY>
13073 The following commands are available on this screen:
13075 <DL>
13076 <DT>Help</DT>
13077 <DD>Show this help text
13079 <DT>Exit</DT>
13080 <DD>Exit Viewer, and go back to mail processing
13082 <DT>Prev Page</DT>
13083 <DD>Show the previous page text
13085 <DT>Next Page</DT>
13086 <DD>Show the next page of text by pressing the space bar
13088 <DT>Print</DT>
13089 <DD>Print the displayed text on paper.  You can select the
13090 printer or the print command via the &quot;Setup&quot; command
13091 on the MAIN MENU.
13093 <DT>Fwd Email</DT>
13094 <DD>Begin composition of a new mail message with the displayed
13095 text already inserted in the message body.
13097 <DT>Save</DT>
13098 <DD>Copy the displayed text to a file.  If you just enter
13099 a filename, the text will be saved with that name in
13100 your 
13101 home directory 
13102 <!--chtml if pinemode="running"-->
13103 (which, in the present configuration of your system, is
13104  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13105 <!--chtml endif-->
13106 or current working directory
13107 <!--chtml if pinemode="running"-->
13108 (which, at least for your current Alpine &quot;session,&quot; 
13109 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13110 <!--chtml endif-->, depending on the
13111 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13112 configuration setting.   You may enter the full
13113 path and filename to save it in another directory instead.
13115 <DT>WhereIs</DT>
13116 <DD>Search the text for a string of letters.  If it is
13117 found, move to it.  The string can be one word or a phrase.
13118 If there are multiple occurrences, the cursor moves to the
13119 first occurrence beyond the current cursor position.
13120 </DL>
13122 &lt;End of help on this topic&gt;
13123 </BODY>
13124 </HTML>
13125 ============= h_debugjournal ==============
13126 <HTML>
13127 <HEAD>
13128 <TITLE>Debug Journal Explained</TITLE>
13129 </HEAD>
13130 <BODY>
13132 The following commands are available on this screen:
13134 <DL>
13135 <DT>Help</DT>
13136 <DD>Show this help text
13138 <DT>Exit</DT>
13139 <DD>Exit Viewer, and go back to mail processing
13141 <DT>Timestamps</DT>
13142 <DD>Turn on or off timestamps.
13144 <DT>DebugView</DT>
13145 <DD>Set the level of debugging you want to see. The level may be any number
13146 in the range 0-9. Higher numbers show more debugging detail. Note that the
13147 debugging information has already been captured. This setting just causes the
13148 debugging information that you see to be filtered. If you set this to
13149 the number &quot;5&quot; then you will be shown all of the debugging information
13150 at levels 5 and below.
13151 It's actually a bit more complicated than that. A fixed amount of memory
13152 is used to store the debug information.
13153 Since the amount of memory used is limited the debugging information
13154 has to be trimmed back when it gets too large.
13156 <DT>Prev Page</DT>
13157 <DD>Show the previous page text
13159 <DT>Next Page</DT>
13160 <DD>Show the next page of text by pressing the space bar
13162 <DT>Print</DT>
13163 <DD>Print the displayed text on paper.  You can select the
13164 printer or the print command via the &quot;Setup&quot; command
13165 on the MAIN MENU.
13167 <DT>Fwd Email</DT>
13168 <DD>Begin composition of a new mail message with the displayed
13169 text already inserted in the message body.
13171 <DT>Save</DT>
13172 <DD>Copy the displayed text to a file.  If you just enter
13173 a filename, the text will be saved with that name in
13174 your 
13175 home directory 
13176 <!--chtml if pinemode="running"-->
13177 (which, in the present configuration of your system, is
13178  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13179 <!--chtml endif-->
13180 or current working directory
13181 <!--chtml if pinemode="running"-->
13182 (which, at least for your current Alpine &quot;session,&quot; 
13183 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13184 <!--chtml endif-->, depending on the
13185 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13186 configuration setting.   You may enter the full
13187 path and filename to save it in another directory instead.
13189 <DT>WhereIs</DT>
13190 <DD>Search the text for a string of letters.  If it is
13191 found, move to it.  The string can be one word or a phrase.
13192 If there are multiple occurrences, the cursor moves to the
13193 first occurrence beyond the current cursor position.
13194 </DL>
13196 &lt;End of help on this topic&gt;
13197 </BODY>
13198 </HTML>
13199 ============= h_simple_text_view ==============
13200 <HTML>
13201 <HEAD>
13202 <TITLE>Simple Text View Screen Explained</TITLE>
13203 </HEAD>
13204 <BODY>
13206 The following commands are available on this screen:
13208 <DL>
13209 <DT>Help</DT>
13210 <DD>Show this help text
13212 <DT>Exit</DT>
13213 <DD>Exit Viewer, and go back to mail processing
13215 <DT>Prev Page</DT>
13216 <DD>Show the previous page text
13218 <DT>Next Page</DT>
13219 <DD>Show the next page of text by pressing the space bar
13221 <DT>Print</DT>
13222 <DD>Print the displayed text on paper.  You can select the
13223 printer or the print command via the &quot;Setup&quot; command
13224 on the MAIN MENU.
13226 <DT>Fwd Email</DT>
13227 <DD>Begin composition of a new mail message with the displayed
13228 text already inserted in the message body.
13230 <DT>Save</DT>
13231 <DD>Copy the displayed text to a file.  If you just enter
13232 a filename, the attachment will be saved with that name in
13233 your 
13234 home directory 
13235 <!--chtml if pinemode="running"-->
13236 (which, in the present configuration of your system, is
13237  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13238 <!--chtml endif-->
13239 or current working directory
13240 <!--chtml if pinemode="running"-->
13241 (which, at least for your current Alpine &quot;session,&quot; 
13242 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13243 <!--chtml endif-->, depending on the
13244 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13245 configuration setting.   You may enter the full
13246 path and filename to save it in another directory instead.
13248 <DT>WhereIs</DT>
13249 <DD>Search the attachment for a string of letters.  If it is
13250 found, move to it.  The string can be one word or a phrase.
13251 If there are multiple occurrences, the cursor moves to the
13252 first occurrence beyond the current cursor position.
13253 </DL>
13255 &lt;End of help on this topic&gt;
13256 </BODY>
13257 </HTML>
13258 ======= h_pine_for_windows ========
13259 <HTML>
13260 <HEAD>
13261 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13262 </HEAD>
13263 <BODY>
13264 <H1>Getting Help In PC-Alpine</H1>
13267 PC-Alpine offers general and specific help text. From the <A
13268 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13269 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13270 specific help for that screen is available from the toolbar Help menu or
13271 with the 
13272 <!--chtml if pinemode="function_key"-->
13273 &quot;F1&quot; key.
13274 <!--chtml else-->
13275 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13276 typing &quot;?&quot; would be mistaken as entering text.
13277 <!--chtml endif-->
13280 Although this version of Alpine is for Microsoft Windows, it is not
13281 considered a full &quot;Graphical User Interface&quot; application. 
13282 Yet, many of the controls that Windows users are accustomed to seeing, 
13283 such as scrollbars and toolbars, are available.
13286 PC-Alpine offers considerable mouse support.  You can view what is
13287 &quot;click-able&quot; by dragging your mouse over any screen; when the
13288 arrow cursor changes into a hand, you found something. Mouse-click
13289 possibilities include navigating between screens and folders and
13290 double-clicking on hyperlinks to open your Web browser.
13291 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13292 screen.  Examples of right-click options include &quot;copy&quot; after
13293 selecting text to copy and &quot;View in New Window&quot; when you click
13294 on a particular message in the Message Index. The menu choices available
13295 to you will vary based upon what screen is open, where on the screen your
13296 cursor is located, and even what action you have already taken.
13299 &lt;End of help on this topic&gt;
13300 </BODY>
13301 </HTML>
13302 ===== h_composer =====
13303 <HTML>
13304 <HEAD>
13305 <TITLE>COMPOSER COMMANDS</TITLE>
13306 </HEAD>
13307 <BODY>
13308 <H1>COMPOSER COMMANDS</H1>
13310 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>
13311 &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>
13312 &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>
13313 &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>
13314 &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>
13315 &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>
13316 &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>
13317 &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>
13318 &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>
13319 &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>
13320 ---------------------------------------|&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>
13321 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>
13322 &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>
13323 &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>
13324 &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>
13327 NOTE:
13328 <OL>
13329  <LI>For help on a particular command, highlight the bold text associated
13330 with it above and hit Return.
13331  <LI> The availability of certain commands
13332 is determined by Alpine configuration files and system capabilities.
13333 At some sites, certain commands may not be available due to security or
13334 support concerns.
13335  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13336 Ctrl-&#92;, ESC.
13337  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13338 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13339 </OL>
13342 HINT: To move rapidly to the bottom of a message you are composing,
13343 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13344 with the Mark and Cut commands to eliminate large amounts of unwanted
13345 text in a Reply.
13347 <H2>Description of Composer</H2>
13349 Alpine has a built-in editing program that allows you to compose messages
13350 without having to leave Alpine.  The editor is designed to be very simple to
13351 use so that you can get started writing email right away.
13354 Messages are usually just text, about 80 columns wide.  Using upper and
13355 lower case is encouraged.  On some systems the size limit of the message
13356 is about 100,000 characters, which is about 2,000 lines.  You can include
13357 punctuation and special characters found on most keyboards, but you can't
13358 include characters with diacritical marks and certain special symbols.
13361 Text automatically wraps as you type past the end of a line so you do not
13362 have to hit return.  Using the
13363 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13364 you can also reformat text explicitly, perhaps after you have
13365 deleted some text.
13368 You can include other text files with the 
13369 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13370 which will prompt you for the name of the file to insert at the
13371 current cursor postion.
13374 <UL>
13375 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13376 </UL>
13378 &lt;End of help on this topic&gt;
13379 </BODY>
13380 </HTML>
13381 ====== h_composer_browse =====
13382 <HTML>
13383 <HEAD>
13384 <TITLE>BROWSER</TITLE>
13385 </HEAD>
13386 <BODY>
13387 <H1>BROWSER</H1>
13388 This screen lets you browse your files and directories.  To go to another 
13389 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13390 choose &quot;Select&quot; (the default choice on the menu); 
13391 or choose &quot;Goto&quot; and enter the name of the directory.
13392 <!--chtml if pinemode="os_windows"-->
13393 <!--chtml else--> 
13394 In Unix Alpine, you may use 
13395 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13396 to another's home directory.  
13397 <!--chtml endif--><P>
13398 To select a file, move the cursor to it and 
13399 choose &quot;Select&quot; (the default choice on the menu).  
13401 <UL>
13402 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13403 inclusion in the 
13404 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13405 the 
13406 &quot;----- Message Text -----&quot; line
13407 while composing, then &quot;To Files&quot;):  Since the file 
13408 selected will become part of the message text, it must be in a format 
13409 suitable for that (Alpine does not check!), such as a plain text file.
13410 Files of other formats (for example, graphics, databases, software 
13411 programs) should be 
13412 <B>attached</B> to the message instead --
13413 by moving the cursor in the COMPOSE MESSAGE screen into the 
13414 message header area and pressing 
13415 <!--chtml if pinemode="function_key"-->
13417 <!--chtml else-->
13418 Ctrl-J.
13419 <!--chtml endif--> 
13421 <P><LI>
13422 Note <B>if</B> you are currently using the BROWSER for saving a message 
13423 attachment, or exporting a message, to a file: You can use the Add command to 
13424 provide the name for a new file to save/export to, and then select that name 
13425 to use it for the save/export operation.  Back at the prompt 
13426 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13427 either Overwrite or Append (it doesn't make a difference, since the file is 
13428 so far empty).  Note: If you cancel the 
13429 operation at that point, the file created with the Add command will remain 
13430 0 bytes in size.
13432 </UL>
13433 <P><UL>
13434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13435 </UL>
13437 &lt;End of help on this topic&gt;
13438 </BODY>
13439 </HTML>
13440 ====== h_composer_ins =====
13441 <HTML>
13442 <HEAD>
13443 <TITLE>INSERT TEXT FILE</TITLE>
13444 </HEAD>
13445 <BODY>
13446 <H1>INSERT TEXT FILE</H1>
13448 Use this function to insert a text file. The file name
13449 given can be an absolute file path name for your system
13450 <!--chtml if pinemode="os_windows"-->
13451 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13452 with a relative pathname, or simply a file name without
13453 drive or directory specification.  
13454 <!--chtml else-->
13455 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13456 a file in your home directory, or a file path relative to your 
13457 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13458 your home directory or &quot;~user&quot; to refer to another
13459 account's home directory.
13460 <!--chtml endif-->
13462 No wild card characters may be used.  
13463 The file must reside on the system running Alpine.
13465 If the 
13466 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13467 feature is set, names are relative to your current working directory 
13468 <!--chtml if pinemode="running"-->
13469 (which, at least for your current Alpine &quot;session,&quot; 
13470 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13471 <!--chtml endif-->
13472 rather than your home directory
13473 <!--chtml if pinemode="running"-->
13474 (which, in the present configuration of your system, is
13475  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13476 <!--chtml endif-->
13478 <P><UL>
13479 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13480 </UL>
13482 &lt;End of help on this topic&gt;
13483 </BODY>
13484 </HTML>
13485 ====== h_composer_ins_m =====
13486 <HTML>
13487 <HEAD>
13488 <TITLE>INSERT MESSAGE</TITLE>
13489 </HEAD>
13490 <BODY>
13491 <H1>INSERT MESSAGE</H1>
13493 Type in the number of a message in the currently open folder to insert it
13494 into your message.
13495 <P><UL>
13496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13497 </UL>
13499 &lt;End of help on this topic&gt;
13500 </BODY>
13501 </HTML>
13502 ====== h_composer_search =====
13503 <HTML>
13504 <HEAD>
13505 <TITLE>Explanation of Composer Whereis Command </TITLE>
13506 </HEAD>
13507 <BODY>
13508 <H1>Help For Whereis Command</H1>
13510 Whereis is used to search the message for a word or part of a word.
13511 When searching in the composer, only the message part of your mail is
13512 searched, and the cursor is put on the first occurrence appearing
13513 after the location of the cursor.  The search will wrap to the
13514 beginning of the message when it no longer finds matches in the
13515 remainder of the message.
13517 To search for the same string a second time, press 
13518 <!--chtml if pinemode="function_key"-->
13519 &quot;F6&quot;
13520 <!--chtml else-->
13521 &quot;^W&quot;
13522 <!--chtml endif-->
13523 to begin search and then just press RETURN to accept the previous
13524 search string shown in square brackets rather than entering a new
13525 search string.<P>
13527 The &quot;Search&quot; prompt has several sub-command available:
13529 <DL>
13530 <DT>Get Help</DT>
13531 <DD> Takes you to this help page.
13533 <DT>Cancel</DT>
13534 <DD> Cancels the prompt.  No search takes place.
13536 <DT>First Line</DT>
13537 <DD> Takes you back to the composer with the cursor on the first character
13538 of the first line of text.
13540 <DT>Last Line</DT>
13541 <DD> Takes you back to the composer with the cursor on the last character
13542 of the last line of text.
13544 <DT>Replace (Optional)</DT>
13545 <DD> This sub-command is enabled by the 
13546 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13547 feature (which is on by default); see its help screen for details on how replacing works.
13549 </DL>
13551 &lt;End of help on this topic&gt;
13552 </BODY>
13553 </HTML>
13554 ====== h_sigedit_search =====
13555 <HTML>
13556 <HEAD>
13557 <TITLE>Explanation of Whereis Command </TITLE>
13558 </HEAD>
13559 <BODY>
13560 <H1>Help For Whereis Command</H1>
13562 Whereis is used to search for a word or part of a word.
13563 When searching the cursor is put on the first occurrence appearing
13564 after the location of the cursor.  The search will wrap to the
13565 beginning of the signature when it no longer finds matches in the
13566 remainder of the signature.
13568 To search for the same string a second time, press 
13569 <!--chtml if pinemode="function_key"-->
13570 &quot;F6&quot;
13571 <!--chtml else-->
13572 &quot;^W&quot;
13573 <!--chtml endif-->
13574 to begin search and then just press RETURN to accept the previous
13575 search string shown in square brackets rather than entering a new
13576 search string.<P>
13578 The &quot;Search&quot; prompt has several sub-command available:
13580 <DL>
13581 <DT>Get Help</DT>
13582 <DD> Takes you to this help page.
13584 <DT>Cancel</DT>
13585 <DD> Cancels the prompt.  No search takes place.
13587 <DT>First Line</DT>
13588 <DD> Takes you back to the composer with the cursor on the first character
13589 of the first line of text.
13591 <DT>Last Line</DT>
13592 <DD> Takes you back to the composer with the cursor on the last character
13593 of the last line of text.
13595 <DT>Replace (Optional)</DT>
13596 <DD> This sub-command is enabled by the 
13597 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13598 feature (which is on by default); see its help screen for details on how replacing works.
13600 </DL>
13602 &lt;End of help on this topic&gt;
13603 </BODY>
13604 </HTML>
13605 ======= h_composer_to ====
13606 <HTML>
13607 <HEAD>
13608 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13609 </HEAD>
13610 <BODY>
13611 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13613 <H2>The &quot;To:&quot; field</H2>
13614 The address you enter here must be a valid email address that is reachable
13615 from your site. 
13617 <H2>Email Address Format</H2>
13618 You may enter a full name and email address, 
13619 <!--chtml if pinemode="os_windows"-->
13620 <!--chtml else-->
13621 a local (meaning, on the same 
13622 host as the one you are running Alpine on) username that Alpine will
13623 complete for you, 
13624 <!--chtml endif-->
13625 the nickname of someone in a 
13626 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13627 mail alias defined by your system administrator.  When you move the cursor
13628 out of this field, the nicknames will be expanded to the addresses in your
13629 address book, and the local usernames will be expanded to include the 
13630 persons' actual names.  You may enter as many addresses as you wish, but they 
13631 must be separated by commas.  You can move around this and other header fields
13632 with the arrow keys and use many of the usual composer editing keys.
13634 <UL>
13635 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13636 </UL>
13639 <H2>MESSAGE HEADER COMMANDS</H2>
13640 <!--chtml if pinemode="function_key"-->
13641 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13642 ^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>
13643 ^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>
13644 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13645 ^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>
13646 ^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>
13647 ^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>
13648 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>
13649 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>
13650 ^@&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>
13651 ----------------------------------------|<BR>
13652 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13653 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>
13654 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>
13655 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>
13656 <!--chtml else-->
13657 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13658 ^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>
13659 ^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>
13660 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13661 ^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>
13662 ^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>
13663 ^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>
13664 ^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>
13665 ^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>
13666 ^@&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>
13667 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13668 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>
13669 ^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>
13670 ^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>
13671 ^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>
13672 <!--chtml endif-->
13675 NOTE:
13676 <OL>
13677  <LI>For help on a particular command, highlight the bold text associated
13678 with it above and hit Return.
13679  <LI> The availability of certain commands 
13680 is determined by Alpine configuration files and system capabilities.
13681 At some sites, certain commands may not be available due to security or
13682 support concerns.
13683 </OL>
13686 <UL>   
13687 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13688 </UL><P>
13689 &lt;End of help on this topic&gt;
13690 </BODY>
13691 </HTML>
13692 ======= h_composer_cc ====
13693 <HTML>
13694 <HEAD>
13695 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13696 </HEAD>
13697 <BODY>
13698 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13699 The Cc: field is just like the To: field, except it is used for addressees
13700 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13701 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13702 them to see the message.  The only difference the recipients see is that their 
13703 name is in the Cc: field, rather than the To: field.
13705 For help with Cc: field editing
13706 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13708 <UL>
13709 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13710 </UL>
13712 <UL>   
13713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13714 </UL><P>
13715 &lt;End of help on this topic&gt;
13716 </BODY>
13717 </HTML>
13718 ======= h_composer_bcc ====
13719 <HTML>
13720 <HEAD>
13721 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
13722 </HEAD>
13723 <BODY>
13724 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
13725 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
13726 a copy of the message to one or more people whose addresses you do not
13727 wish disclosed, either to reduce clutter or for confidentiality.
13729 The format of the Bcc: field is just the same as the To: and Cc: fields in
13730 the way the addresses are entered.  The recipients listed here will
13731 receive a copy of the message, but --assuming your site's mail transport
13732 software is properly configured-- their addresses will not show up in the
13733 headers of the message, as delivered to all of the recipients.  The To:
13734 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
13736 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
13737 will automatically generate and place in the To: field a pseudo-address of 
13738   &quot;undisclosed-recipients: ;&quot;
13739 or whatever string has been specified in the 
13740 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13741 variable.
13743 The reason for this is to avoid embarrassment caused by some Internet
13744 mail transfer software that interprets a &quot;missing&quot; To: header as 
13745 an error and replaces it with an Apparently-to: header that may contain
13746 the addresses you entered on the Bcc: line.  In addition, it may be
13747 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
13749 You can manipulate what text ends up on the (originally) empty To:
13750 field.  Just remember to put a colon and semicolon at the end of the
13751 field, which is a special notation denoting that it is not a real address.
13753 For information on message header editing
13754 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13756 <UL>
13757 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13758 </UL>
13760 <UL>   
13761 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13762 </UL><P>
13763 &lt;End of help on this topic&gt;
13764 </BODY>
13765 </HTML>
13766 ======= h_composer_lcc ====
13767 <HTML>
13768 <HEAD>
13769 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
13770 </HEAD>
13771 <BODY>
13772 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
13773 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
13774 you wish to send a message to a list of people but avoid having all
13775 of their addresses visible, in order to reduce clutter when the
13776 message is received.
13778 It is similar to the 
13779 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
13780 in that individual
13781 addressees are hidden, but Lcc is designed to work specifically with
13782 distribution lists you have created in your 
13783 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
13784 the nickname of the list on the Lcc line will result in the full name of
13785 your Alpine Address Book list being placed on the To: line of the message,
13786 using a special notation that distinguishes it from a real address. You
13787 must leave the To: line blank for your list name to appear there.
13789 For example, if you have this list entered in your Address Book:<PRE>
13791         largo         Key Largo List       DISTRIBUTION LIST:
13792                                            bogie@mgm.com
13793                                            lauren@mgm.com
13794                                            walter@mgm.com</PRE>
13797 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
13798 the result is:<PRE>
13800         To      : Key Largo List: ;
13801         Cc      :
13802         Bcc     :
13803         Fcc     : sent-mail
13804         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
13805                   lauren@mgm.com,
13806                   walter@mgm.com
13807         Subject :</PRE>
13809 Each recipient listed on the Lcc: line receives a copy of the message
13810 without their address being visible (as though they were listed on the
13811 Bcc: line). The colon-semicolon notation used to put the full-name of the
13812 list on the To: line is a special address format that doesn't specify any
13813 actual addressees, but does give some information to the recipients of the
13814 message.
13816 Note: if after entering an LCC, you delete the list name that is placed
13817 on the To: line, then recipients will see <PRE>
13818        To: undisclosed-recipients: ;</PRE>
13820 (or whatever string is defined in the 
13821 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13822 variable) just as in the BCC case. 
13824 For help with Lcc: field editing
13825 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13827 <UL>
13828 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13829 </UL>
13831 <UL>   
13832 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13833 </UL><P>
13834 &lt;End of help on this topic&gt;
13835 </BODY>
13836 </HTML>
13837 ======= h_composer_from =======
13838 <HTML>
13839 <HEAD>
13840 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
13841 </HEAD>
13842 <BODY>
13843 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
13845 This header carries your return address.  It is the address toward which
13846 replies (and often, future unrelated correspondence) will be directed,
13847 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
13848 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
13849 sure this address is correct.
13851 For help with message header editing
13852 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13854 <UL>
13855 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13856 </UL>
13858 <UL>   
13859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13860 </UL><P>
13861 &lt;End of help on this topic&gt;
13862 </BODY>
13863 </HTML>
13864 ======= h_composer_reply_to =======
13865 <HTML>
13866 <HEAD>
13867 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
13868 </HEAD>
13869 <BODY>
13870 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
13872 Most people should not need this header. The Reply-To: header is used in
13873 cases where you would like replies to your messages to be directed to an
13874 address other than your normal &quot;From:&quot; address.  This is atypical, 
13875 but can happen when you use multiple machines and do not have the same account
13876 name on each one, or when you wish to direct certain replies to accounts
13877 or folders designated for specific classes of correspondence.
13879 For help with message header editing
13880 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13882 <UL>
13883 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13884 </UL>
13887 <UL>   
13888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13889 </UL><P>
13890 &lt;End of help on this topic&gt;
13891 </BODY>
13892 </HTML>
13893 ======= h_composer_custom_addr ====
13894 <HTML>
13895 <HEAD>
13896 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13897 </HEAD>
13898 <BODY>
13899 <H1>CUSTOMIZED HEADER FIELD</H1>
13900 This is a customized header, i.e. not one that is part of Alpine's normal
13901 set of Compose headers.
13903 For help with message header editing
13904 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13906 <UL>
13907 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13908 </UL>
13910 <UL>   
13911 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13912 </UL><P>
13913 &lt;End of help on this topic&gt;
13914 </BODY>
13915 </HTML>
13916 ======= h_composer_custom_free ====
13917 <HTML>
13918 <HEAD>
13919 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13920 </HEAD>
13921 <BODY>
13922 <H1>CUSTOMIZED HEADER FIELD</H1>
13923 This is a customized header, i.e. not one that is part of Alpine's normal
13924 set of Compose headers.
13926 This field consists of arbitrary text.
13928 For help with message header editing
13929 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13931 <UL>   
13932 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13933 </UL><P>
13934 &lt;End of help on this topic&gt;
13935 </BODY>
13936 </HTML>
13937 ====== h_composer_news =====
13938 <HTML>
13939 <HEAD>
13940 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
13941 </HEAD>
13942 <BODY>
13943 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
13944 Use the newsgroups line to specify any and all USENET newsgroups to which
13945 your message should be posted.  When composing a message from scratch, this
13946 line may be hidden.  If so, just press the rich headers command
13947 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
13948 to make it visible.
13950 <EM>Be aware</EM> that when you post to a newsgroup thousands of
13951 people will be reading your message.  Also, you or your system manager
13952 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
13953 in order for you to be able to post.
13955 For help with message header editing
13956 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13957 <P><UL>
13958 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13959 </UL>
13961 &lt;End of help on this topic&gt;
13962 </BODY>
13963 </HTML>
13964 ======= h_composer_fcc ====
13965 <HTML>
13966 <HEADER>
13967 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
13968 </HEADER>
13969 <BODY>
13970 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
13971 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
13972 each outgoing message.  The default value can be configured with the
13973 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
13974 the file carbon copy on any message you send by editing the FCC header.<p>
13976 You may type ^T to get a list of all your folders and select one to use as
13977 the FCC for this message.<P>
13979 For help with message header editing
13980 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13982 <UL>   
13983 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13984 </UL><P>
13985 &lt;End of help on this topic&gt;
13986 </BODY>
13987 </HTML>
13988 ======= h_composer_subject ====
13989 <HTML>
13990 <HEADER>
13991 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
13992 </HEADER>
13993 <BODY>
13994 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
13996 The subject header provides a place to enter a few words that summarize
13997 the topic of the message you are sending.  You may leave this line blank,
13998 but it is considered a courtesy to use a meaningful subject.<p>
14000 For help with message header editing
14001 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14003 <UL>   
14004 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14005 </UL><P>
14006 &lt;End of help on this topic&gt;
14007 </BODY>
14008 </HTML>
14009 ======= h_composer_attachment ====
14010 <HTML>
14011 <HEAD>
14012 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14013 </HEAD>
14014 <BODY>
14015 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14017 The &quot;Attchmnt:&quot; field is where you specify what file or
14018 files you'd like attached to
14019 the message you are composing.  Those files must reside on the machine
14020 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14021 account on a Unix machine, you'll have to transfer it before attaching it.
14022 Contact local computer support people for assistance with transferring.
14025 The file name
14026 given can be an absolute file path name for your system
14027 <!--chtml if pinemode="os_windows"-->
14028 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14029 with a relative pathname, or simply a file name without
14030 drive or directory specification.  
14031 <!--chtml else-->
14032 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14033 a file in your home directory, or a file path relative to your 
14034 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14035 your home directory or &quot;~user&quot; to refer to another
14036 account's home directory.
14037 <!--chtml endif--><P>
14038 No wild card characters may be used.
14039 <P>If the 
14040 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14041 feature is set, names are relative to your current working directory 
14042 <!--chtml if pinemode="running"-->
14043 (which, at least for your current Alpine &quot;session,&quot; 
14044 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14045 <!--chtml endif-->
14046 rather than your home directory
14047 <!--chtml if pinemode="running"-->
14048 (which, in the present configuration of your system, is
14049  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14050 <!--chtml endif-->
14053 Alpine uses MIME encoding for attachments, so binaries and files of any
14054 length can safely be delivered to any MIME-capable mail reading program.
14055 If you send an attachment to someone who does not have a MIME-capable mail
14056 reading program yet, then the main message text will be readable, but
14057 attachments (even attachments that are just plain text) are not.
14060 Typing the filename on the Attchmnt: line achieves the same
14061 result as using the 
14062 <!--chtml if pinemode="function_key"-->
14064 <!--chtml else-->
14065 Ctrl-J
14066 <!--chtml endif--> command.
14069 If you Forward a message with attachments, you may delete them from your
14070 Forwarded message by editing the Attchmnt header line.
14073 For help with message header editing
14074 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14076 <UL>   
14077 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14078 </UL><P>
14079 &lt;End of help on this topic&gt;
14080 </BODY>
14081 </HTML>
14082 ======= h_composer_ctrl_j ====
14083 <HTML>
14084 <HEAD>
14085 <TITLE>COMPOSER ATTACH</TITLE>
14086 </HEAD>
14087 <BODY>
14088 After the
14089 <!--chtml if pinemode="function_key"-->
14091 <!--chtml else-->
14092 Ctrl-J
14093 <!--chtml endif--> command:
14094 At the &quot;File to attach:&quot; prompt, enter the name of the 
14095 existing file to attach to your message.  
14096 When the feature
14097 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14098 is set
14099 you need only enter the beginning of the filename (enough of it to uniquely 
14100 identify the file) and press TAB to complete it.
14102 Or, press ^T to use the BROWSER screen for 
14103 selecting the file.  <P>
14104 For more information on attaching files, see the help screen for the 
14105 composer's 
14106 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14107 but can be revealed using the 
14108 <!--chtml if pinemode="function_key"-->
14110 <!--chtml else-->
14111 Ctrl-R
14112 <!--chtml endif--> 
14113 command with the cursor positioned above the
14114 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14116 &lt;End of help on this topic&gt;
14117 </BODY>
14118 </HTML>
14119 ======= h_edit_nav_cmds =========
14120 <HTML>
14121 <HEAD>
14122 <TITLE>Composer Editing Commands Explained</TITLE>
14123 </HEAD>
14124 <BODY>
14125 <H1>EDITING and NAVIGATION COMMANDS</H1>
14126 <!--chtml if pinemode="function_key"-->
14127 <PRE>
14128 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14129 ^B (Left Arrow)    Back character       | ^D       Delete current character
14130 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14131 ^P (Up Arrow)      Previous line        |
14132 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14133 ^A                 Beginning of line    |            delete current line
14134 ^E                 End of line          | F10      Undelete line(s)
14135 F7                 Previous page        |
14136 F8                 Next page            |-------------------------------------
14137 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14138 ----------------------------------------|
14139 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14140 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14141 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14142 </PRE>
14143 <!--chtml else-->
14144 <PRE>
14145 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14146 ^B (Left Arrow)    Back character       | ^D       Delete current character
14147 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14148 ^P (Up Arrow)      Previous line        |
14149 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14150 ^A                 Beginning of line    |            delete current line
14151 ^E                 End of line          | ^U       Undelete line(s)
14152 ^Y                 Previous page        |
14153 ^V                 Next page            |-------------------------------------
14154 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14155 ----------------------------------------|
14156 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14157 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14158 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14159 </PRE>
14160 <!--chtml endif-->
14161 &lt;End of help on this topic&gt;
14162 </BODY>
14163 </HTML>
14164 ===== h_composer_sigedit =====
14165 <HTML>
14166 <HEAD>
14167 <TITLE>Signature Editor Commands Explained</TITLE>
14168 </HEAD>
14169 <BODY>
14170 <H1>SIGNATURE EDITOR COMMANDS</H1>
14171 <!--chtml if pinemode="function_key"-->
14172 <PRE>
14173 CURSOR MOTION KEYS                     |EDITING KEYS
14174   ^B (Left Arrow)   Back character     | ^D       Delete current character
14175   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14176   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14177   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14178   ^A                Beginning of line  |           delete current line
14179   ^E                End of line        | F10       Paste text, undelete lines
14180   F7                Previous page      |           cut with ^K, or unjustify
14181   F8                Next page          |-------------------------------------
14182   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14183 ---------------------------------------| F6       Whereis (search for string)
14184 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14185  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14186                  |  ^Z    Suspend      | ^L       Redraw Screen
14187  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14188 </PRE>
14189 <!--chtml else-->
14190 <PRE>
14191 CURSOR MOTION KEYS                     |EDITING KEYS
14192   ^B (Left Arrow)   Back character     | ^D       Delete current character
14193   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14194   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14195   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14196   ^A                Beginning of line  |           delete current line
14197   ^E                End of line        | ^U        Paste text, undelete lines
14198   ^Y                Previous page      |           cut with ^K, or unjustify
14199   ^V                Next page          |-------------------------------------
14200   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14201 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14202 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14203  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14204                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14205  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14206 </PRE>
14207 <!--chtml endif-->
14209 NOTE: The presence or absence of the following commands is determined
14210 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14211 some of these commands may be administratively disabled by your system
14212 manager; if they don't work, please check with your local help desk
14213 before reporting a bug.
14215 <UL>
14216  <LI>Suspend (suspends Alpine and gives a system prompt)
14217  <LI>Alternate editor (allows you to compose with your own editor)
14218 </UL>
14221 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14222 Ctrl-&#92;, ESC
14225 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14226 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14228 &lt;End of help on this topic&gt;
14229 </BODY>
14230 </HTML>
14231 ===== h_composer_commentedit =====
14232 <HTML>
14233 <HEAD>
14234 <TITLE>Comment Editor Commands Explained</TITLE>
14235 </HEAD>
14236 <BODY>
14237 <H1>COMMENT EDITOR COMMANDS</H1>
14238 <!--chtml if pinemode="function_key"-->
14239 <PRE>
14240 CURSOR MOTION KEYS                     |EDITING KEYS
14241   ^B (Left Arrow)   Back character     | ^D       Delete current character
14242   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14243   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14244   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14245   ^A                Beginning of line  |           delete current line
14246   ^E                End of line        | F10       Paste text, undelete lines
14247   F7                Previous page      |           cut with ^K, or unjustify
14248   F8                Next page          |-------------------------------------
14249   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14250 ---------------------------------------| F6       Whereis (search for string)
14251 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14252  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14253                  |  ^Z    Suspend      | ^L       Redraw Screen
14254  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14255 </PRE>
14256 <!--chtml else-->
14257 <PRE>
14258 CURSOR MOTION KEYS                     |EDITING KEYS
14259   ^B (Left Arrow)   Back character     | ^D       Delete current character
14260   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14261   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14262   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14263   ^A                Beginning of line  |           delete current line
14264   ^E                End of line        | ^U        Paste text, undelete lines
14265   ^Y                Previous page      |           cut with ^K, or unjustify
14266   ^V                Next page          |-------------------------------------
14267   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14268 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14269 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14270  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14271                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14272  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14273 </PRE>
14274 <!--chtml endif-->
14276 NOTE: The presence or absence of the following commands is determined
14277 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14278 some of these commands may be administratively disabled by your system
14279 manager; if they don't work, please check with your local help desk
14280 before reporting a bug.
14282 <UL>
14283  <LI>Suspend (suspends Alpine and gives a system prompt)
14284  <LI>Alternate editor (allows you to compose with your own editor)
14285 </UL>
14288 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14289 Ctrl-&#92;, ESC
14292 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14293 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14295 &lt;End of help on this topic&gt;
14296 </BODY>
14297 </HTML>
14298 ======= h_composer_abook_nick =======
14299 <HTML>
14300 <HEAD>
14301 <TITLE>Addressbook Nickname Explained</TITLE>
14302 </HEAD>
14303 <BODY>
14304 This is a short nickname for this address book entry.  If it is used in
14305 place of an address from the composer, the composer will fill in the
14306 address(es) for the entry that matches the nickname. 
14309 Look <A HREF="h_edit_nav_cmds">here</A>
14310 to see the available Editing and Navigation commands.
14312 &lt;End of help on this topic&gt;
14313 </BODY>
14314 </HTML>
14315 ======= h_composer_abook_full =======
14316 <HTML>
14317 <HEAD>
14318 <TITLE>Addressbook Fullname Explained</TITLE>
14319 </HEAD>
14320 <BODY>
14321 This is the full name field for this entry.  If this is going to be a
14322 distribution list (more than one address), it should be a descriptive
14323 phrase describing the list.  It will be included in the mail header if you
14324 put the list in the To: or CC: field, or in the To: line if you put the
14325 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14326 leave any of the other fields blank, too). If this address book entry is
14327 going to be a simple entry with just one address, then this field is the
14328 person's name. When you send mail to this entry, this is the field to the
14329 left of the brackets. That is, it is the most readable part of the 
14330 address. For example, in the sample address:
14331 <PRE>
14332        John Doe &lt;jdoe@some.domain&gt;
14333 </PRE>
14334 "John Doe" is the full name field. If you are sorting your address book
14335 with one of the options that uses full names, then it might be useful to
14336 enter the full name as "Last, First", for example:
14337 <PRE>
14338        Doe, John
14339 </PRE>
14340 so that it will be sorted using Doe instead of John. This will be changed
14341 back into John Doe when you use it.
14343 Look <A HREF="h_edit_nav_cmds">here</A>
14344 to see the available Editing and Navigation commands.
14346 &lt;End of help on this topic&gt;
14347 </BODY>
14348 </HTML>
14349 ======= h_composer_abook_fcc =======
14350 <HTML>
14351 <HEAD>
14352 <TITLE>Addressbook Fcc Explained</TITLE>
14353 </HEAD>
14354 <BODY>
14355 If this entry is the first one in the To: line of an outgoing message,
14356 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14357 you would normally get (which depends on which
14358 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14359 you've chosen). 
14361 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14362 that you don't want any Fcc associated with this entry.
14364 Look <A HREF="h_edit_nav_cmds">here</A>
14365 to see the available Editing and Navigation commands.
14367 &lt;End of help on this topic&gt;
14368 </BODY>
14369 </HTML>
14370 ====== h_config_combined_abook_display =====
14371 <HTML>
14372 <HEAD>
14373 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14374 </HEAD>
14375 <BODY>
14376 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14378 This feature affects the address book display screens.
14379 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14380 will cause the remaining address books and directory servers to disappear
14381 from the screen, leaving only the entries of the expanded address book.
14382 If this feature is set, then the other address books will remain on the screen,
14383 so that all of the address books can be present at once.
14386 The way that commands work won't be changed.
14387 For example, the Select All command will select all of the entries in the
14388 current address book, not all of the entries in all of the address books.
14389 The WhereIs command will change a little.
14390 It will search through all of the text on the screen plus all of the entries
14391 from expanded address books.
14394 When this feature is set, the setting of the feature
14395 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14396 has an effect.
14398 &lt;End of help on this topic&gt;
14399 </BODY>
14400 </HTML>
14401 ====== h_config_titlebar_color_style =====
14402 <HTML>
14403 <HEAD>
14404 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14405 </HEAD>
14406 <BODY>
14407 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14409 This option affects the colors used to display the titlebar (the top
14410 line on the screen) when viewing a message.
14413 The available options include:
14416 <DL>
14417 <DT>default</DT>
14418 <DD>The color of the titlebar will be the color you set for the
14419 <A HREF="h_config_title_color">Title Color</A>.
14420 The Title Color may be set by using the
14421 <A HREF="h_color_setup">Setup Kolor</A> screen.
14422 </DD>
14424 <DT>indexline</DT>
14425 <DD>The color of the titlebar will be the same as the color of the
14426 index line corresponding to the message being viewed.
14427 The rules that determine what color the index line will be may be set
14428 up by going to the Setup/Rules/Indexcolor screen.
14429 If the index line for a message is not colored explicitly by the
14430 Indexcolor rules, then the titlebar will be colored the same as for
14431 the &quot;default&quot; option above (which is not the same color that
14432 the index line itself will have).
14433 </DD>
14435 <DT>reverse-indexline</DT>
14436 <DD>This is similar to the &quot;indexline&quot; option except the
14437 foreground and background colors from the corresponding index line will
14438 be reversed.
14439 For example, if the index line color is red letters on a white background,
14440 then the titlebar will be white letters on a red background.
14441 If the index line for a message is not colored explicitly by the
14442 Indexcolor rules, then the titlebar will be colored the same as for
14443 the &quot;default&quot; option above (which is not the same color that
14444 the index line itself will have).
14445 </DD>
14446 </DL>
14450 <UL>   
14451 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14452 </UL><P>
14453 &lt;End of help on this topic&gt;
14454 </BODY>
14455 </HTML>
14456 ====== h_config_index_color_style =====
14457 <HTML>
14458 <HEAD>
14459 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14460 </HEAD>
14461 <BODY>
14462 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14464 This option affects the colors used to display the current line in the
14465 MESSAGE INDEX screen.
14466 If you do not have Index Color Rules defined, then this option will
14467 have no effect in the index.
14468 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14470 If the option
14471 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14472 is turned on and the
14473 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14474 is set to something other than the default, then
14475 this option also affects the color used to display the current folder
14476 in the Incoming FOLDER LIST screen.
14479 The available options include:
14482 <DL>
14483 <DT>flip-colors</DT>
14484 <DD>This is the default.
14485 If an index line is colored because it matches one of your
14486 Index Color Rules, then its colors will be reversed when it is the currently
14487 highlighted line.
14488 For example, if the line is normally red text on a blue background, then
14489 when it is the current line it will be drawn as blue text on a red background.
14491 The rest of the option values all revert to this flip-colors behavior if
14492 there is no Reverse Color defined.
14493 </DD>
14495 <DT>reverse</DT>
14496 <DD>With this option the Reverse color is always used to highlight the
14497 current line.
14498 </DD>
14500 <DT>reverse-fg</DT>
14501 <DD>The foreground part of the Reverse Color is used to highlight
14502 the current line.
14503 If this would cause the text to be unreadable (because the foreground and
14504 background colors are the same) or if it would cause no change in the
14505 color of the index line, then the colors are flipped instead.
14507 Some people think this works particularly well if you use different
14508 background colors to emphasize &quot;interesting&quot; lines,
14509 but always with the same Normal foreground color,
14510 and you use a different foreground color for the Reverse Color.
14511 </DD>
14513 <DT>reverse-fg-no-ambiguity</DT>
14514 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14515 the resulting color will be exactly the same as the regular Reverse
14516 Color.
14517 That can lead to some possible confusion because an
14518 &quot;interesting&quot;
14519 line that is the current line will be displayed exactly the same as a
14520 non-interesting line that is current.
14521 You can't tell whether the line is just a regular current line or if it is
14522 an &quot;interesting&quot; current line by looking at the color.
14523 Setting the option to this value removes that ambiguity.
14524 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14525 interesting current line would look just like a non-interesting current line.
14526 In that case, the interesting line's colors are simply flipped (like in the
14527 default behavior).
14529 As an alternative way to preserve the line's interestingness in this case,
14530 you may find that using both a different foreground and a different
14531 background color for the interesting line will help.
14532 </DD>
14534 <DT>reverse-bg</DT>
14535 <DD>The background part of the Reverse Color is used to highlight
14536 the current line.
14537 If this would cause the text to be unreadable (because the foreground and
14538 background colors are the same) or if it would cause no change in the
14539 color of the index line, then the colors are flipped instead.
14541 Some people think this works particularly well if you use different
14542 foreground colors to emphasize &quot;interesting&quot; lines,
14543 but always with the same Normal background color,
14544 and you use a different background color for the Reverse Color.
14545 </DD>
14547 <DT>reverse-bg-no-ambiguity</DT>
14548 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14549 rule may also result in a color that is exactly the same as the regular
14550 Reverse Color.
14551 Setting the option to this value removes that ambiguity.
14552 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14553 current line has the same color as the Reverse Color.
14554 In that case, the interesting line's colors are simply flipped (like in the
14555 default behavior).
14556 </DD>
14557 </DL>
14561 <UL>   
14562 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14563 </UL><P>
14564 &lt;End of help on this topic&gt;
14565 </BODY>
14566 </HTML>
14567 ====== h_config_expanded_addrbooks =====
14568 <HTML>
14569 <HEAD>
14570 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14571 </HEAD>
14572 <BODY>
14573 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14575 If multiple address books (either personal or global) are defined, and you
14576 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14577 screen, then set this feature. This feature will have no effect unless the
14578 feature
14579 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14580 is also set.
14582 &lt;End of help on this topic&gt;
14583 </BODY>
14584 </HTML>
14585 ====== h_config_combined_folder_display =====
14586 <HTML>
14587 <HEAD>
14588 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14589 </HEAD>
14590 <BODY>
14591 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14593 This feature affects the folder list display screens.
14594 Normally, each folder list is viewed within its collection only.  This
14595 command allows folder lists to be viewed within a single screen that
14596 combines the contents of all collections.
14599 The way that commands work won't be changed.
14600 For example, the Select All command will select all of the folders in the
14601 current collection, not all of the entries in all of the collections.
14602 The WhereIs command will change a little.
14603 It will search through all of the folders in the current collection as well
14604 as all the folder in any other expanded collection.
14607 When this feature is set, the setting of the feature
14608 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14609 has an effect.
14611 &lt;End of help on this topic&gt;
14612 </BODY>
14613 </HTML>
14614 ====== h_config_combined_subdir_display =====
14615 <HTML>
14616 <HEAD>
14617 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14618 </HEAD>
14619 <BODY>
14620 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14622 This feature affects the Folder List screen when
14624 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14625 feature is enabled.  Normally, selecting a directory from the Folder
14626 List takes you into a new screen displaying only the contents of
14627 that directory.
14630 Enabling this feature will cause the contents of the selected
14631 directory to be
14632 displayed within the boundaries of the &quot;Collection&quot; it
14633 is a part of.  All previously displayed collections will remain
14634 in the screen.
14637 The way that commands work won't be changed.
14638 For example, the Select All command will select all of the folders in the
14639 directory, as opposed to all of the entries in all of the collections.
14640 The WhereIs command will change a little.
14641 It will search through all of the folders in the current collection as well
14642 as all the folder in any other expanded collection.
14645 &lt;End of help on this topic&gt;
14646 </BODY>
14647 </HTML>
14648 ====== h_config_separate_fold_dir_view =====
14649 <HTML>
14650 <HEAD>
14651 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14652 </HEAD>
14653 <BODY>
14654 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14656 This feature affects folder collections wherein a folder
14657 and directory can have the same name.  By default, Alpine displays them
14658 only once, denoting that it is both a folder and directory by appending
14659 the folder name with the hierarchy character enclosed
14660 in square brackets.
14664 Enabling this feature will cause Alpine to display such names
14665 separately marking the name representing a directory with a trailing
14666 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14669 The feature also alters the command set slightly.  By default, the
14670 right-arrow descends into the directory, while hitting the Return key will
14671 cause the folder by that name to be opened.
14674 With this feature set, the Return key will open the highlighted folder, or
14675 enter the highlighted directory.
14678 &lt;End of help on this topic&gt;
14679 </BODY>
14680 </HTML>
14681 ====== h_config_expanded_folders =====
14682 <HTML>
14683 <HEAD>
14684 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14685 </HEAD>
14686 <BODY>
14687 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14689 If multiple folder collections are defined, and you
14690 wish to have them all expanded implicitly upon entering the FOLDER LIST
14691 screen, then set this feature. This feature will have no effect unless the
14692 feature
14693 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14694 is also set.
14696 &lt;End of help on this topic&gt;
14697 </BODY>
14698 </HTML>
14699 ======= h_config_ldap_server =======
14700 <HTML>
14701 <HEAD>
14702 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14703 </HEAD>
14704 <BODY>
14705 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14706 This is the name of the host where an LDAP server is running.
14707 For redundancy, this may be a space-delimited set of server names, in which
14708 case the first server that answers is used.
14709 Each of the server names may be optionally followed by
14710 a colon and a port number.
14711 If this form is used then the port number configured below in the
14712 <EM>port</EM> field is not used.
14714 To find out whether your organization has its own LDAP server, 
14715 contact its computing support staff.
14716 <P><UL>
14717 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14718 </UL>
14720 &lt;End of help on this topic&gt;
14721 </BODY>
14722 </HTML>
14723 ======= h_config_ldap_base =======
14724 <HTML>
14725 <HEAD>
14726 <TITLE>LDAP OPTION: Search-Base</TITLE>
14727 </HEAD>
14728 <BODY>
14729 <H1>LDAP OPTION: Search-Base</H1>
14731 This is the search base to be used on this server.  It functions as a filter 
14732 by restricting your searches in the LDAP server database
14733 to the specified contents of the specified fields.  Without it, searches 
14734 submitted to this directory server may fail.  It might be something
14735 like:
14737 <PRE>
14738       O = &lt;Your Organization Name&gt;, C = US
14739 </PRE>
14740 or it might be blank.  
14741 (Some LDAP servers actually ignore anything specified here.)
14743 If in doubt what parameters you should specify here, 
14744 contact the maintainers of the LDAP server.
14745 <P><UL>
14746 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14747 </UL>
14749 &lt;End of help on this topic&gt;
14750 </BODY>
14751 </HTML>
14752 ======= h_config_ldap_port =======
14753 <HTML>
14754 <HEAD>
14755 <TITLE>LDAP OPTION: Port</TITLE>
14756 </HEAD>
14757 <BODY>
14758 <H1>LDAP OPTION: Port</H1>
14760 This is the TCP port number to be used with this LDAP server. If you leave
14761 this blank port 389 will be used.
14763 &lt;End of help on this topic&gt;
14764 </BODY>
14765 </HTML>
14766 ======= h_config_ldap_nick =======
14767 <HTML>
14768 <HEAD>
14769 <TITLE>LDAP OPTION: Nickname</TITLE>
14770 </HEAD>
14771 <BODY>
14772 <H1>LDAP OPTION: Nickname</H1>
14774 This is a nickname to be used in displays. If you don't supply a
14775 nickname the server name
14776 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
14777 will be used instead.  This option is strictly for your convenience.
14779 &lt;End of help on this topic&gt;
14780 </BODY>
14781 </HTML>
14782 ======= h_config_ldap_binddn =======
14783 <HTML>
14784 <HEAD>
14785 <TITLE>LDAP OPTION: Bind-DN</TITLE>
14786 </HEAD>
14787 <BODY>
14788 <H1>LDAP OPTION: Bind-DN</H1>
14790 You may need to authenticate to the LDAP server before you are able to use it.
14791 This is the Distinguished Name to bind to when authenticating to this server.
14792 Try leaving this blank until you know you need it.
14794 Alpine only knows about LDAP Simple authentication.
14795 It does not attempt LDAP SASL authentication.
14796 The DN and password will be sent in the clear unless TLS encryption is
14797 being used on this connection.
14798 Because of this, you may want to set the LDAP feature
14799 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
14800 or the feature
14801 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14802 if you are going to be providing a password.
14803 <P><UL>
14804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14805 </UL>
14807 &lt;End of help on this topic&gt;
14808 </BODY>
14809 </HTML>
14810 ======= h_config_ldap_opts_impl =======
14811 <HTML>
14812 <HEAD>
14813 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
14814 </HEAD>
14815 <BODY>
14816 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
14818 Set this to have lookups done to this server implicitly from the composer.
14819 If an address doesn't look like a fully-qualified address, it will be looked
14820 up in your address books, and if it doesn't match a nickname there, then it
14821 will be looked up on the LDAP servers that have this feature set.
14822 The lookups will also be done when using the address completion feature
14823 (TAB command) in the composer if any of the serves have this feature set.
14824 Also see the LDAP feature
14825 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
14826 and the Setup/Config feature
14827 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14829 &lt;End of help on this topic&gt;
14830 </BODY>
14831 </HTML>
14832 ======= h_config_ldap_opts_tls =======
14833 <HTML>
14834 <HEAD>
14835 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
14836 </HEAD>
14837 <BODY>
14838 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
14840 When connecting to this server Alpine will attempt to use TLS encryption
14841 on the connection.
14842 Also see the closely related feature
14843 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14845 &lt;End of help on this topic&gt;
14846 </BODY>
14847 </HTML>
14848 ======= h_config_ldap_opts_tlsmust =======
14849 <HTML>
14850 <HEAD>
14851 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
14852 </HEAD>
14853 <BODY>
14854 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
14856 When connecting to this server Alpine will attempt to use TLS encryption
14857 on the connection.
14858 If the StartTLS operation fails then the connection will not be used.
14860 &lt;End of help on this topic&gt;
14861 </BODY>
14862 </HTML>
14863 ====== h_config_ldap_opts_rhs =====
14864 <HTML>
14865 <HEAD>
14866 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
14867 </HEAD>
14868 <BODY>
14869 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
14871 Normally implicit LDAP lookups from the composer are done only for the
14872 strings you type in from the composer screen. In other words, you type in
14873 something in the To or CC field and press return, then the string is looked up.
14874 First that string is looked up in your address books. If a match is found
14875 there, then the results of that match are looked up again. If you place
14876 a string in your address book that you want to have looked up on the LDAP
14877 directory server, you need to turn on this feature. If you set this feature
14878 for a server, you almost always will also want to set the
14879 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
14880 feature. An example might serve to best illustrate this feature.
14882 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
14883 entry with an
14884 address of pres@whitehouse.gov, then you might put an entry in your address
14885 book that looks like:
14887 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
14888 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
14890 Now, when you type &quot;bill&quot; into an
14891 address field in the composer Alpine will
14892 find the &quot;bill&quot; entry in your address book.
14893 It will replace &quot;bill&quot; with
14894 &quot;William Clinton&quot;.
14895 It will then search for an entry with that nickname
14896 in your address book and not find one. If this feature
14897 is set, Alpine will then attempt to lookup
14898 &quot;William Clinton&quot; on the LDAP server and find the entry with address
14899 pres@whitehouse.gov.
14901 A better way to accomplish the same thing is probably to use the feature
14902 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
14904 &lt;End of help on this topic&gt;
14905 </BODY>
14906 </HTML>
14907 ====== h_config_ldap_opts_ref =====
14908 <HTML>
14909 <HEAD>
14910 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
14911 </HEAD>
14912 <BODY>
14913 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
14915 Normally when you save the results of an LDAP directory lookup to your
14916 address book the results of the lookup are saved. If this feature is set
14917 and the entry being saved was found on this directory server, then the
14918 search criteria is saved instead of the results of the search. When this
14919 address book entry is used in the future, instead of copying the results
14920 from the address book the directory lookup will be done again. This could
14921 be useful if the copied result might become stale because the data on
14922 the directory server changes (for example, the entry's email address changes).
14923 You probably don't want to set this feature if the server is at all slow or
14924 unreliable.
14926 The way this actually works is that instead of saving the email address
14927 in your address book, Alpine saves enough information to look up the same
14928 directory entry again. In particular, it saves the server name and the
14929 distinguished name of the entry. It's possible that the server administrators
14930 might change the format of distinguished names on the server, or that the
14931 entry might be removed from the server. If Alpine notices this, you will be warned
14932 and a backup copy of the email address will be used. You may want to create
14933 a new entry in this case, since you will get the annoying warning every
14934 time you use the old entry. You may do that by Saving the entry to a new
14935 nickname in the same address book. You will be asked whether or not you
14936 want to use the backup email address.
14938 A related feature in the Setup/Config screen is
14939 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14941 &lt;End of help on this topic&gt;
14942 </BODY>
14943 </HTML>
14944 ======= h_config_ldap_opts_nosub =======
14945 <HTML>
14946 <HEAD>
14947 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
14948 </HEAD>
14949 <BODY>
14950 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
14952 Spaces in your input are normally handled specially.
14953 Each space character is replaced
14956 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
14958 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
14959 The reason this is done is so the input string
14961 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
14963 (which is converted to &quot;Greg* Donald&quot;) will match
14964 the names &quot;Greg Donald&quot;,
14965 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
14966 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
14967 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
14968 then it would also match the name &quot;Greg Donaldson&quot;.
14970 Turning on this feature will disable this substitution.
14972 &lt;End of help on this topic&gt;
14973 </BODY>
14974 </HTML>
14975 ====== h_config_ldap_searchtypes =======
14976 <HTML>
14977 <HEAD>
14978 <TITLE>LDAP OPTION: Search-Type</TITLE>
14979 </HEAD>
14980 <BODY>
14981 <H1>LDAP OPTION: Search-Type</H1>
14983 This affects the way that LDAP searches are done.
14984 In particular, this tells the server where to look for the string to be matched.
14985 If set to &quot;name&quot; then the string that is being searched for will
14986 be compared with the string in the
14987 &quot;Name&quot; field on the server
14988 (technically, it is the &quot;commonname&quot; field on the server).
14989 &quot;Surname&quot; means we're looking for a
14990 match in the &quot;Surname&quot; field on the
14991 server (actually the &quot;sn&quot; field).
14992 &quot;Givenname&quot; really is &quot;givenname&quot;
14993 and &quot;email&quot; is the electronic mail address (this is actually the field
14994 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
14995 The other three types are combinations of
14996 the types listed so far. &quot;Name-or-email&quot;
14997 means the string should appear
14998 in either the &quot;name&quot; field OR the &quot;email&quot; field.
14999 Likewise, &quot;surname-or-givenname&quot;
15000 means &quot;surname&quot; OR &quot;givenname&quot;
15001 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15003 This search TYPE is combined with the
15004 search <A HREF="h_config_ldap_searchrules">RULE</A>
15005 to form the actual search query.
15007 The usual default value for this
15008 option is &quot;sur-or-given-or-name-or-email&quot;.
15009 This type of search may be slow on some servers.
15010 Try &quot;name-or-email&quot;, which is often
15011 faster, or just &quot;name&quot; if the performance seems to be a problem.
15013 Some servers have been configured with different attribute names for
15014 these four fields.
15015 In other words, instead of using the attribute name &quot;mail&quot;
15016 for the email address field, the server might be configured to use something
15017 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15018 Alpine can be configured to use these different attribute names by using
15019 the four configuration options:
15020 <P><UL>
15021 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15022 </UL>
15023 <P><UL>
15024 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15025 </UL>
15026 <P><UL>
15027 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15028 </UL>
15029 <P><UL>
15030 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15031 </UL>
15033 &lt;End of help on this topic&gt;
15034 </BODY>
15035 </HTML>
15036 ====== h_config_ldap_searchrules =======
15037 <HTML>
15038 <HEAD>
15039 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15040 </HEAD>
15041 <BODY>
15042 <H1>LDAP OPTION: Search-Rule</H1>
15044 This affects the way that LDAP searches are done.
15045 If set to &quot;equals&quot; then
15046 only exact matches count.
15047 &quot;Contains&quot; means that the string you type in
15048 is a substring of what you are matching against.
15049 &quot;Begins-with&quot; and &quot;ends-with&quot;
15050 mean that the string starts or ends with the string you type in.
15052 Spaces in your input are normally handled specially, but you can turn that
15053 special handling off with the
15054 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15055 feature.
15057 The usual default value for this option is &quot;begins-with&quot;.
15059 &lt;End of help on this topic&gt;
15060 </BODY>
15061 </HTML>
15062 ======= h_config_ldap_email_attr =======
15063 <HTML>
15064 <HEAD>
15065 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15066 </HEAD>
15067 <BODY>
15068 <H1>LDAP OPTION: EmailAttribute</H1>
15070 This is the name of the attribute that is searched for when looking for
15071 an email address. The default value for this option is &quot;mail&quot; or
15072 &quot;electronicmail&quot;.
15073 If the server you are using uses a different attribute name for the email
15074 address, put that attribute name here.
15076 This will affect the search filter used if your Search-Type is one that
15077 contains a search for &quot;email&quot;.
15078 It will also cause the attribute value matching this attribute name to be used
15079 as the email address when you look up an entry from the composer.
15081 &lt;End of help on this topic&gt;
15082 </BODY>
15083 </HTML>
15084 ======= h_config_ldap_sn_attr =======
15085 <HTML>
15086 <HEAD>
15087 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15088 </HEAD>
15089 <BODY>
15090 <H1>LDAP OPTION: SurnameAttribute</H1>
15092 This is the name of the attribute that is searched for when looking for
15093 the surname of the entry. The default value for this option is &quot;sn&quot;.
15094 If the server you are using uses a different attribute name for the surname,
15095 put that attribute name here.
15096 This will affect the search filter used if your Search-Type is one that
15097 contains a search for &quot;surname&quot;.
15099 &lt;End of help on this topic&gt;
15100 </BODY>
15101 </HTML>
15102 ======= h_config_ldap_gn_attr =======
15103 <HTML>
15104 <HEAD>
15105 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15106 </HEAD>
15107 <BODY>
15108 <H1>LDAP OPTION: GivennameAttribute</H1>
15110 This is the name of the attribute that is searched for when looking for
15111 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15112 If the server you are using uses a different attribute name for the given name,
15113 put that attribute name here.
15114 This will affect the search filter used if your Search-Type is one that
15115 contains a search for &quot;givenname&quot;.
15117 &lt;End of help on this topic&gt;
15118 </BODY>
15119 </HTML>
15120 ======= h_config_ldap_cn_attr =======
15121 <HTML>
15122 <HEAD>
15123 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15124 </HEAD>
15125 <BODY>
15126 <H1>LDAP OPTION: NameAttribute</H1>
15128 This is the name of the attribute that is searched for when looking for
15129 the name of the entry. The default value for this option is &quot;cn&quot;, which
15130 stands for common name.
15131 If the server you are using uses a different attribute name for the name,
15132 put that attribute name here.
15133 This will affect the search filter used if your Search-Type is one that
15134 contains a search for &quot;name&quot;.
15136 &lt;End of help on this topic&gt;
15137 </BODY>
15138 </HTML>
15139 ======= h_config_ldap_time =======
15140 <HTML>
15141 <HEAD>
15142 <TITLE>LDAP OPTION: Timelimit</TITLE>
15143 </HEAD>
15144 <BODY>
15145 <H1>LDAP OPTION: Timelimit</H1>
15147 This places a limit on the number of seconds the LDAP search will continue.
15148 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15149 may place limits of their own on searches.
15151 &lt;End of help on this topic&gt;
15152 </BODY>
15153 </HTML>
15154 ======= h_config_ldap_size =======
15155 <HTML>
15156 <HEAD>
15157 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15158 </HEAD>
15159 <BODY>
15160 <H1>LDAP OPTION: Sizelimit</H1>
15162 This places a limit on the number of entries returned by the LDAP server.
15163 A value of 0 means no limit. The default is 0. Note that some servers
15164 may place limits of their own on searches.
15166 &lt;End of help on this topic&gt;
15167 </BODY>
15168 </HTML>
15169 ======= h_config_ldap_cust =======
15170 <HTML>
15171 <HEAD>
15172 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15173 </HEAD>
15174 <BODY>
15175 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15177 This one is for advanced users only! If you define this, then the
15178 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15179 However, the feature
15180 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15181 is still in effect.
15182 That is, the space substitution will take place even in a custom filter unless
15183 you disable it.
15185 If your LDAP service stops working and you suspect it might be because
15186 of your custom filter, just delete this filter and try using the
15187 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15188 Another option that sometimes causes trouble is the
15189 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15191 This variable may be set to the string representation of an LDAP search
15192 filter (see RFC1960). In the places where you want the address string to be
15193 substituted in, put a '%s' in this filter string. Here are some examples:
15195 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15196 is equivalent to the &quot;Custom-Search-Filter&quot;
15197 <PRE>
15198      (cn=%s*)
15199 </PRE>
15200 When you try to match against the string &quot;string&quot; the program replaces
15201 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15202 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15204 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15205 of &quot;contains&quot; is equivalent to
15206 <PRE>
15207      (|(cn=*%s*)(mail=*%s*))
15208 </PRE>
15210 If your server uses a different attribute <EM>name</EM> than
15211 Alpine uses by default,
15212 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15213 then you may be able to use one or more of the four attribute configuration
15214 options instead of defining a custom filter:
15215 <P><UL>
15216 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15217 </UL>
15218 <P><UL>
15219 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15220 </UL>
15221 <P><UL>
15222 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15223 </UL>
15224 <P><UL>
15225 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15226 </UL>
15228 &lt;End of help on this topic&gt;
15229 </BODY>
15230 </HTML>
15231 ======= h_composer_abook_comment =======
15232 <HTML>
15233 <HEAD>
15234 <TITLE>Addressbook Comment Explained</TITLE>
15235 </HEAD>
15236 <BODY>
15237 This is a comment to help you remember what this entry is. The WhereIs
15238 command searches comments so that it is easier to find an entry with a comment
15239 you know about attached to it. This field is not used in the outgoing message.
15241 Look <A HREF="h_edit_nav_cmds">here</A>
15242 to see the available Editing and Navigation commands.
15244 &lt;End of help on this topic&gt;
15245 </BODY>
15246 </HTML>
15247 ======= h_composer_abook_addrs =======
15248 <HTML>
15249 <HEAD>
15250 <TITLE>Addressbook Lists</TITLE>
15251 </HEAD>
15252 <BODY>
15253 <H1>Addressbook Lists</H1>
15255 This is a list of addresses to send to when sending to this address book
15256 entry.  Each member of the list may be an address or another nickname from
15257 any of your address books.  If it is an address, it is OK to include the
15258 full name field as well as the electronic address portion of that address.
15259 For example, the following are all legitimate entries in this field:
15261 <DL><DT>&nbsp;</DT>
15262 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15263 <DD>jdoe@some.domain
15264 <DD>John Doe &lt;jdoe@some.domain&gt;
15265 </DL>
15267 The addresses should be listed separated by commas, just like you would
15268 enter them from the composer.
15272 The only difference between a distribution list and a simple entry with a
15273 single address, is that a distribution list has more than one address   
15274 listed in the Addresses: field, whereas a simple personal entry has just  
15275 one address.
15279 For individual address book entries, if there is a full name in the
15280 Fullname: field (filling in the Fullname: field is not required), it is
15281 used.  If the full name is specified in the Address: field and not in the
15282 Fullname: field, then the full name from the Address: field is used.
15286 If you type the nickname of a distribution list from one of your address 
15287 books in the Lcc: field, then the full name of that list is used in the  
15288 To: field.  If you put a list in the To: or Cc: fields, that list will be
15289 expanded into all of its addresses.  If the list has a full name, then
15290 that will appear at the beginning of the addresses.
15292 <DL><DT>&nbsp;</DT>
15293 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15294 &lt;sal@here.there&gt;
15295 </DL>
15297 If the first address in the distribution list also has a full name, then
15298 the list full name and that full name are combined into something like the
15299 following:
15301 <DL><DT>&nbsp;</DT>
15302 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15303 </DL>
15306 If you specify a list via Lcc, the full name is used in the To: line.  If
15307 you specify a list in the To: or Cc: fields, then it uses the same method
15308 as for individual entries for filling in the full name.
15312 For help with editing and navigation commands, check the Help for the
15313 Nickname: field.
15316 &lt;End of help on this topic&gt;
15317 </BODY>
15318 </HTML>
15319 ======= h_config_role_nick =======
15320 <HTML>
15321 <HEAD>
15322 <TITLE>Nickname Explained</TITLE>
15323 </HEAD>
15324 <BODY>
15325 <H1>Nickname Explained</H1>
15327 This is a nickname to help you.
15328 You should have a different nickname for each role you define.
15329 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15330 pick a role to edit.
15331 It will also be used when you send a message to let you know you are
15332 sending with a different role than you use by default, and
15333 it will be useful for choosing a role when composing with the Role command
15334 or when composing with one of the Role Uses set to With Confirmation.
15335 This field is not used in the outgoing message.
15337 Look <A HREF="h_edit_nav_cmds">here</A>
15338 to see the available Editing and Navigation commands.
15340 &lt;End of help on this topic&gt;
15341 </BODY>
15342 </HTML>
15343 ======= h_config_role_comment =======
15344 <HTML>
15345 <HEAD>
15346 <TITLE>Comment Explained</TITLE>
15347 </HEAD>
15348 <BODY>
15349 <H1>Comment Explained</H1>
15351 This is a comment to help you.
15352 This comment does not play any functional role, it is simply an optional
15353 comment to help you remember what the rule is for.
15355 Look <A HREF="h_edit_nav_cmds">here</A>
15356 to see the available Editing and Navigation commands.
15358 &lt;End of help on this topic&gt;
15359 </BODY>
15360 </HTML>
15361 ======= h_config_other_nick =======
15362 <HTML>
15363 <HEAD>
15364 <TITLE>Nickname Explained</TITLE>
15365 </HEAD>
15366 <BODY>
15367 <H1>Nickname Explained</H1>
15369 This is a nickname to help you.
15370 You should have a different nickname for each rule you define.
15371 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15372 pick a rule to edit.
15374 Look <A HREF="h_edit_nav_cmds">here</A>
15375 to see the available Editing and Navigation commands.
15377 &lt;End of help on this topic&gt;
15378 </BODY>
15379 </HTML>
15380 ======= h_config_score_nick =======
15381 <HTML>
15382 <HEAD>
15383 <TITLE>Nickname Explained</TITLE>
15384 </HEAD>
15385 <BODY>
15386 <H1>Nickname Explained</H1>
15388 This is a nickname to help you.
15389 You should have a different nickname for each scoring rule you define.
15390 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15391 pick a rule to edit.
15393 Look <A HREF="h_edit_nav_cmds">here</A>
15394 to see the available Editing and Navigation commands.
15396 &lt;End of help on this topic&gt;
15397 </BODY>
15398 </HTML>
15399 ======= h_config_incol_nick =======
15400 <HTML>
15401 <HEAD>
15402 <TITLE>Nickname Explained</TITLE>
15403 </HEAD>
15404 <BODY>
15405 <H1>Nickname Explained</H1>
15407 This is a nickname to help you.
15408 You should have a different nickname for each color rule you define.
15409 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15410 pick a rule to edit.
15412 Look <A HREF="h_edit_nav_cmds">here</A>
15413 to see the available Editing and Navigation commands.
15415 &lt;End of help on this topic&gt;
15416 </BODY>
15417 </HTML>
15418 ======= h_config_filt_nick =======
15419 <HTML>
15420 <HEAD>
15421 <TITLE>Nickname Explained</TITLE>
15422 </HEAD>
15423 <BODY>
15424 <H1>Nickname Explained</H1>
15426 This is a nickname to help you.
15427 You should have a different nickname for each filtering rule you define.
15428 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15429 pick a rule to edit.
15431 Look <A HREF="h_edit_nav_cmds">here</A>
15432 to see the available Editing and Navigation commands.
15434 &lt;End of help on this topic&gt;
15435 </BODY>
15436 </HTML>
15437 ======= h_config_score_topat =======
15438 <HTML>
15439 <HEAD>
15440 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15441 </HEAD>
15442 <BODY>
15443 <H1>&quot;To:&quot; Pattern Explained</H1>
15445 Any text you enter as the &quot;To pattern&quot;
15446 will be compared to the recipients from the To: line of
15447 the message being scored.
15448 When the text you entered matches
15449 all or part of the To: line of a message, then the Score Value
15450 you have specified will be added to the score for the message.
15451 (Any other non-blank parts of the Pattern must match, too.)
15454 You may enter a complete email address, part of an address, or a
15455 list of addresses or partial addresses.
15456 For example:
15459 <PRE>
15460  To pattern = friend@public.com
15462  To pattern = rated.net
15464  To pattern = xxx@adults.com
15465               admin@msn.com
15466               fool@motleyfool.com
15467 </PRE>
15470 Each of those are valid To patterns.
15473 Messages match those patterns if any of the
15474 addresses in the To: line of the message contains the pattern.
15475 If the pattern is a list of patterns
15476 (like the last example above) then it is a match if any of the patterns in
15477 the list match any of the addresses in the To: line.
15478 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15479 present for a match.
15480 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15481 address2 must be present.
15482 That is exactly what using a list does.)
15485 Some messages may be &quot;bounced&quot; to you, and will
15486 have a &quot;Resent-To:&quot; header line.
15487 If the message contains a Resent-To: line
15488 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15489 Alpine will look for
15490 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15491 the original To: line.
15494 When entering a pattern, you may choose an address from your address book
15495 with the &quot;T&quot; command.
15498 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15499 &quot;!&quot; &quot;toggle NOT&quot; command.
15500 This changes the meaning of the To pattern so that it has the opposite meaning.
15501 It will be considered a match if there are no matches between the
15502 addresses in the To: line and the list of To patterns.
15504 Don't make the mistake of putting the &quot;!&quot; in the data field for
15505 the pattern.
15506 For example, if you type the characters &quot;!frizzle&quot; into the To
15507 pattern, the pattern will look like:
15509 <PRE>
15510  To pattern = !frizzle
15511 </PRE>
15513 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15514 In order to match messages that do not have &quot;frizzle&quot; in
15515 their To field, first type the characters &quot;frizzle&quot; followed
15516 by carriage return for the value of the To pattern, then negate it
15517 by typing the &quot;!&quot; command.
15518 It should end up looking like
15520 <PRE>
15521  ! To pattern = frizzle
15522 </PRE>
15524 You are not limited to using the six standard header patterns that are
15525 normally shown (To, From, Sender, Cc, News, and Subject).
15526 You may add any other header to a Pattern by
15527 using the &quot;eXtraHdr&quot; command to specify a different
15528 message header line; and then the Add or Change command to fill in
15529 a pattern for the new header line, just like you would for a standard header.
15531 A technicality: Since comma is the character used to separate multiple
15532 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15533 you want to include a literal comma in the field.
15534 In other words, if you type a backslash followed by a comma it will
15535 be interpreted as a comma by Alpine, instead of as a separator between
15536 pattern values.
15537 All other backslashes are literal backslashes and should not be escaped.
15539 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15540 for more information on Patterns.
15542 Look <A HREF="h_edit_nav_cmds">here</A>
15543 to see the available Editing and Navigation commands.
15545 &lt;End of help on this topic&gt;
15546 </BODY>
15547 </HTML>
15548 ======= h_config_incol_topat =======
15549 <HTML>
15550 <HEAD>
15551 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15552 </HEAD>
15553 <BODY>
15554 <H1>&quot;To:&quot; Pattern Explained</H1>
15556 Any text you enter as the &quot;To pattern&quot;
15557 will be compared to the recipients from the To: lines of
15558 the messages in the index.
15559 When the text you entered matches
15560 all or part of the To: line of a message, then the Index Line Color you have
15561 specified will be used for that line in the index.
15562 (Any other non-blank parts of the Pattern must match, too.)
15565 You may enter a complete email address, part of an address, or a
15566 list of addresses or partial addresses.
15567 For example:
15570 <PRE>
15571  To pattern = friend@public.com
15572  To pattern = rated.net
15573  To pattern = xxx@adults.com
15574               admin@msn.com
15575               fool@motleyfool.com
15576 </PRE>
15579 Each of those are valid To patterns.
15582 Messages match those patterns if any of the
15583 addresses in the To: line of the message contains the pattern.
15584 If the pattern is a list of patterns
15585 (like the last example above) then it is a match if any of the patterns in
15586 the list match any of the addresses in the To: line.
15587 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15588 present for a match.
15589 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15590 address2 must be present.
15591 That is exactly what using a list does.)
15594 Some messages may be &quot;bounced&quot; to you, and will
15595 have a &quot;Resent-To:&quot; header line.
15596 If the message contains a Resent-To: line
15597 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15598 Alpine will look for
15599 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15600 the original To: line.
15603 When entering a pattern, you may choose an address from your address book
15604 with the &quot;T&quot; command.
15607 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15608 &quot;!&quot; &quot;toggle NOT&quot; command.
15609 This changes the meaning of the To pattern so that it has the opposite meaning.
15610 It will be considered a match if there are no matches between the
15611 addresses in the To: line and the list of To patterns.
15613 Don't make the mistake of putting the &quot;!&quot; in the data field for
15614 the pattern.
15615 For example, if you type the characters &quot;!frizzle&quot; into the To
15616 pattern, the pattern will look like:
15618 <PRE>
15619  To pattern = !frizzle
15620 </PRE>
15622 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15623 In order to match messages that do not have &quot;frizzle&quot; in
15624 their To field, first type the characters &quot;frizzle&quot; followed
15625 by carriage return for the value of the To pattern, then negate it
15626 by typing the &quot;!&quot; command.
15627 It should end up looking like
15629 <PRE>
15630  ! To pattern = frizzle
15631 </PRE>
15634 You are not limited to using the six standard header patterns that are
15635 normally shown (To, From, Sender, Cc, News, and Subject).
15636 You may add any other header to a Pattern by
15637 using the &quot;eXtraHdr&quot; command to specify a different
15638 message header line; and then the Add or Change command to fill in
15639 a pattern for the new header line, just like you would for a standard header.
15641 A technicality: Since comma is the character used to separate multiple
15642 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15643 you want to include a literal comma in the field.
15644 In other words, if you type a backslash followed by a comma it will
15645 be interpreted as a comma by Alpine, instead of as a separator between
15646 pattern values.
15647 All other backslashes are literal backslashes and should not be escaped.
15649 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15650 for more information on Patterns.
15652 Look <A HREF="h_edit_nav_cmds">here</A>
15653 to see the available Editing and Navigation commands.
15655 &lt;End of help on this topic&gt;
15656 </BODY>
15657 </HTML>
15658 ======= h_config_other_topat =======
15659 <HTML>
15660 <HEAD>
15661 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15662 </HEAD>
15663 <BODY>
15664 <H1>&quot;To:&quot; Pattern Explained</H1>
15666 For some of the OTHER RULES actions, there is no message that is being
15667 compared against.
15668 If that is the case, then only the Current Folder Type is checked.
15669 In particular, this To pattern is ignored.
15670 Actions that fall into this category include both
15671 Sort Order and Index Format.
15673 A technicality: Since comma is the character used to separate multiple
15674 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15675 you want to include a literal comma in the field.
15676 In other words, if you type a backslash followed by a comma it will
15677 be interpreted as a comma by Alpine, instead of as a separator between
15678 pattern values.
15679 All other backslashes are literal backslashes and should not be escaped.
15681 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15682 for more information on Patterns.
15684 Look <A HREF="h_edit_nav_cmds">here</A>
15685 to see the available Editing and Navigation commands.
15687 &lt;End of help on this topic&gt;
15688 </BODY>
15689 </HTML>
15690 ======= h_config_filt_topat =======
15691 <HTML>
15692 <HEAD>
15693 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15694 </HEAD>
15695 <BODY>
15696 <H1>&quot;To:&quot; Pattern Explained</H1>
15698 Any text you enter as the &quot;To pattern&quot;
15699 will be compared to the recipients from the To: line of
15700 messages when Alpine opens folders.
15701 When the text you entered matches
15702 all or part of the To: line of a message, then the Filter Action you have
15703 specified will be carried out.
15704 (Any other non-blank parts of the Pattern must match, too.)
15707 You may enter a complete email address, part of an address, or a
15708 list of addresses or partial addresses.
15709 For example:
15712 <PRE>
15713  To pattern = friend@public.com
15714  To pattern = rated.net
15715  To pattern = xxx@adults.com
15716               admin@msn.com
15717               fool@motleyfool.com
15718 </PRE>
15721 Each of those are valid To patterns.
15724 Messages match those patterns if any of the
15725 addresses in the To: line of the message contains the pattern.
15726 If the pattern is a list of patterns
15727 (like the last example above) then it is a match if any of the patterns in
15728 the list match any of the addresses in the To: line.
15729 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15730 present for a match.
15731 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15732 address2 must be present.
15733 That is exactly what using a list does.)
15736 Some messages may be &quot;bounced&quot; to you, and will
15737 have a &quot;Resent-To:&quot; header line.
15738 If the message contains a Resent-To: line
15739 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15740 Alpine will look for
15741 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15742 the original To: line.
15745 When entering a pattern, you may choose an address from your address book
15746 with the &quot;T&quot; command.
15749 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15750 &quot;!&quot; &quot;toggle NOT&quot; command.
15751 This changes the meaning of the To pattern so that it has the opposite meaning.
15752 It will be considered a match if there are no matches between the
15753 addresses in the To: line and the list of To patterns.
15755 Don't make the mistake of putting the &quot;!&quot; in the data field for
15756 the pattern.
15757 For example, if you type the characters &quot;!frizzle&quot; into the To
15758 pattern, the pattern will look like:
15760 <PRE>
15761  To pattern = !frizzle
15762 </PRE>
15764 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15765 In order to match messages that do not have &quot;frizzle&quot; in
15766 their To field, first type the characters &quot;frizzle&quot; followed
15767 by carriage return for the value of the To pattern, then negate it
15768 by typing the &quot;!&quot; command.
15769 It should end up looking like
15771 <PRE>
15772  ! To pattern = frizzle
15773 </PRE>
15776 You are not limited to using the six standard header patterns that are
15777 normally shown (To, From, Sender, Cc, News, and Subject).
15778 You may add any other header to a Pattern by
15779 using the &quot;eXtraHdr&quot; command to specify a different
15780 message header line; and then the Add or Change command to fill in
15781 a pattern for the new header line, just like you would for a standard header.
15783 A technicality: Since comma is the character used to separate multiple
15784 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15785 you want to include a literal comma in the field.
15786 In other words, if you type a backslash followed by a comma it will
15787 be interpreted as a comma by Alpine, instead of as a separator between
15788 pattern values.
15789 All other backslashes are literal backslashes and should not be escaped.
15791 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15792 for more information on Patterns.
15794 Look <A HREF="h_edit_nav_cmds">here</A>
15795 to see the available Editing and Navigation commands.
15797 &lt;End of help on this topic&gt;
15798 </BODY>
15799 </HTML>
15800 ======= h_config_role_topat =======
15801 <HTML>
15802 <HEAD>
15803 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15804 </HEAD>
15805 <BODY>
15806 <H1>&quot;To:&quot; Pattern Explained</H1>
15808 Any text you enter as the &quot;To pattern&quot;
15809 will be compared to the recipients from the To: line of
15810 the message being replied to or forwarded.
15811 (Any other non-blank parts of the Pattern must match, too.)
15812 In the case of the Compose command, this pattern and the other header
15813 patterns are ignored.
15816 You may enter a complete email address, part of an address, or a
15817 list of addresses or partial addresses.
15818 For example:
15821 <PRE>
15822  To pattern = friend@public.com
15823  To pattern = rated.net
15824  To pattern = xxx@adults.com
15825               admin@msn.com
15826               fool@motleyfool.com
15827 </PRE>
15830 Each of those are valid To patterns.
15833 Messages match those patterns if any of the
15834 addresses in the To: line of the message contains the pattern.
15835 If the pattern is a list of patterns
15836 (like the last example above) then it is a match if any of the patterns in
15837 the list match any of the addresses in the To: line.
15838 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15839 present for a match.
15840 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15841 address2 must be present.
15842 That is exactly what using a list does.)
15845 Some messages may be &quot;bounced&quot; to you, and will
15846 have a &quot;Resent-To:&quot; header line.
15847 If the message contains a Resent-To: line
15848 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15849 Alpine will look for
15850 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15851 the original To: line.
15854 When entering a pattern, you may choose an address from your address book
15855 with the &quot;T&quot; command.
15858 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15859 &quot;!&quot; &quot;toggle NOT&quot; command.
15860 This changes the meaning of the To pattern so that it has the opposite meaning.
15861 It will be considered a match if there are no matches between the
15862 addresses in the To: line and the list of To patterns.
15864 Don't make the mistake of putting the &quot;!&quot; in the data field for
15865 the pattern.
15866 For example, if you type the characters &quot;!frizzle&quot; into the To
15867 pattern, the pattern will look like:
15869 <PRE>
15870  To pattern = !frizzle
15871 </PRE>
15873 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15874 In order to match messages that do not have &quot;frizzle&quot; in
15875 their To field, first type the characters &quot;frizzle&quot; followed
15876 by carriage return for the value of the To pattern, then negate it
15877 by typing the &quot;!&quot; command.
15878 It should end up looking like
15880 <PRE>
15881  ! To pattern = frizzle
15882 </PRE>
15885 You are not limited to using the six standard header patterns that are
15886 normally shown (To, From, Sender, Cc, News, and Subject).
15887 You may add any other header to a Pattern by
15888 using the &quot;eXtraHdr&quot; command to specify a different
15889 message header line; and then the Add or Change command to fill in
15890 a pattern for the new header line, just like you would for a standard header.
15892 A technicality: Since comma is the character used to separate multiple
15893 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15894 you want to include a literal comma in the field.
15895 In other words, if you type a backslash followed by a comma it will
15896 be interpreted as a comma by Alpine, instead of as a separator between
15897 pattern values.
15898 All other backslashes are literal backslashes and should not be escaped.
15900 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15901 for more information on Patterns.
15903 Look <A HREF="h_edit_nav_cmds">here</A>
15904 to see the available Editing and Navigation commands.
15906 &lt;End of help on this topic&gt;
15907 </BODY>
15908 </HTML>
15909 ======= h_config_role_frompat =======
15910 <HTML>
15911 <HEAD>
15912 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
15913 </HEAD>
15914 <BODY>
15915 <H1>&quot;From:&quot; Pattern Explained</H1>
15917 This is just like the &quot;To pattern&quot; except that it is compared with
15918 the address in the From: line of the message
15919 instead of the addresses from the To: line.
15920 See the help for the To pattern for more information on header patterns.
15922 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15923 for more information on Patterns.
15925 Look <A HREF="h_edit_nav_cmds">here</A>
15926 to see the available Editing and Navigation commands.
15928 &lt;End of help on this topic&gt;
15929 </BODY>
15930 </HTML>
15931 ======= h_config_role_senderpat =======
15932 <HTML>
15933 <HEAD>
15934 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
15935 </HEAD>
15936 <BODY>
15937 <H1>&quot;Sender:&quot; Pattern Explained</H1>
15939 This is just like the &quot;To pattern&quot; except that it is compared with
15940 the address from the Sender: line of the message
15941 instead of the addresses from the To: line.
15942 See the help for the To pattern for more information on header patterns.
15944 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15945 for more information on Patterns.
15947 Look <A HREF="h_edit_nav_cmds">here</A>
15948 to see the available Editing and Navigation commands.
15950 &lt;End of help on this topic&gt;
15951 </BODY>
15952 </HTML>
15953 ======= h_config_role_ccpat =======
15954 <HTML>
15955 <HEAD>
15956 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
15957 </HEAD>
15958 <BODY>
15959 <H1>&quot;Cc:&quot; Pattern Explained</H1>
15961 This is just like the &quot;To pattern&quot; except that it is compared with
15962 the addresses from the Cc: line of the message
15963 instead of the addresses from the To: line.
15964 See the help for the To pattern for more information on header patterns.
15966 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15967 for more information on Patterns.
15969 Look <A HREF="h_edit_nav_cmds">here</A>
15970 to see the available Editing and Navigation commands.
15972 &lt;End of help on this topic&gt;
15973 </BODY>
15974 </HTML>
15975 ======= h_config_role_recippat =======
15976 <HTML>
15977 <HEAD>
15978 <TITLE>Recipient Pattern Explained</TITLE>
15979 </HEAD>
15980 <BODY>
15981 <H1>Recipient Pattern Explained</H1>
15983 This is just like the &quot;To pattern&quot; except that it is compared with
15984 the addresses from both the To: line and the Cc: line of the
15985 message instead of just the addresses from the To: line.
15986 In other words, it is considered a match if the pattern matches
15987 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
15988 in the Cc: line.
15989 (Notice that defining the Recipient pattern does not have the same
15990 effect as defining both the To and Cc patterns.
15991 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
15992 It is equivalent to having two different rules;
15993 one with a To pattern and the other with the same Cc pattern.)
15995 A technicality: Since comma is the character used to separate multiple
15996 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15997 you want to include a literal comma in the field.
15998 In other words, if you type a backslash followed by a comma it will
15999 be interpreted as a comma by Alpine, instead of as a separator between
16000 pattern values.
16001 All other backslashes are literal backslashes and should not be escaped.
16003 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16004 for more information on Patterns.
16006 Look <A HREF="h_edit_nav_cmds">here</A>
16007 to see the available Editing and Navigation commands.
16009 &lt;End of help on this topic&gt;
16010 </BODY>
16011 </HTML>
16012 ======= h_config_role_particpat =======
16013 <HTML>
16014 <HEAD>
16015 <TITLE>Participant Pattern Explained</TITLE>
16016 </HEAD>
16017 <BODY>
16018 <H1>Participant Pattern Explained</H1>
16020 This is just like the &quot;To pattern&quot; except that it is compared with
16021 the addresses from the From: line, the To: line, and the Cc: line of the
16022 message instead of just the addresses from the To: line.
16023 In other words, it is considered a match if the pattern matches
16024 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16025 in the To: line, <EM>OR</EM> an address in the Cc: line.
16026 (Notice that defining the Participant pattern does not have the same
16027 effect as defining all of the From, To, and Cc patterns.
16028 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16029 From <EM>AND</EM> To <EM>AND</EM> Cc.
16030 It is equivalent to having three different rules;
16031 one with a From pattern, another with the same To pattern, and a third with
16032 the same Cc pattern.)
16034 A technicality: Since comma is the character used to separate multiple
16035 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16036 you want to include a literal comma in the field.
16037 In other words, if you type a backslash followed by a comma it will
16038 be interpreted as a comma by Alpine, instead of as a separator between
16039 pattern values.
16040 All other backslashes are literal backslashes and should not be escaped.
16042 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16043 for more information on Patterns.
16045 Look <A HREF="h_edit_nav_cmds">here</A>
16046 to see the available Editing and Navigation commands.
16048 &lt;End of help on this topic&gt;
16049 </BODY>
16050 </HTML>
16051 ======= h_config_role_newspat =======
16052 <HTML>
16053 <HEAD>
16054 <TITLE>News Pattern Explained</TITLE>
16055 </HEAD>
16056 <BODY>
16057 <H1>News Pattern Explained</H1>
16059 If this pattern is non-blank, then for this rule to be considered a
16060 match, at least one of the newsgroups from
16061 the Newsgroups line of the message must match this pattern.
16062 If this pattern is a list of patterns, then at least one of the
16063 newsgroups must match at least one of the patterns.
16064 (Any other non-blank parts of the Pattern must match, too.)
16066 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16067 &quot;!&quot; &quot;toggle NOT&quot; command.
16068 This changes the meaning of the News pattern so that it has the opposite meaning.
16069 It will be considered a match if there are no matches between the
16070 addresses in the Newsgroups: line and the list of News patterns.
16072 Don't make the mistake of putting the &quot;!&quot; in the data field for
16073 the pattern.
16074 For example, if you type the characters &quot;!frizzle&quot; into the News
16075 pattern, the pattern will look like:
16077 <PRE>
16078  News pattern = !frizzle
16079 </PRE>
16081 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16082 In order to match messages that do not have &quot;frizzle&quot; in
16083 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16084 by carriage return for the value of the News pattern, then negate it
16085 by typing the &quot;!&quot; command.
16086 It should end up looking like
16088 <PRE>
16089  ! News pattern = frizzle
16090 </PRE>
16092 A technicality: Since comma is the character used to separate multiple
16093 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16094 you want to include a literal comma in the field.
16095 In other words, if you type a backslash followed by a comma it will
16096 be interpreted as a comma by Alpine, instead of as a separator between
16097 pattern values.
16098 All other backslashes are literal backslashes and should not be escaped.
16101 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16102 for more information on Patterns.
16104 Look <A HREF="h_edit_nav_cmds">here</A>
16105 to see the available Editing and Navigation commands.
16107 &lt;End of help on this topic&gt;
16108 </BODY>
16109 </HTML>
16110 ======= h_config_role_subjpat =======
16111 <HTML>
16112 <HEAD>
16113 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16114 </HEAD>
16115 <BODY>
16116 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16118 This is similar to the other parts of the Pattern.
16119 It is compared with
16120 the contents from the Subject of the message.
16122 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16123 for more information on Patterns.
16125 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16126 &quot;!&quot; &quot;toggle NOT&quot; command.
16127 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16128 It will be considered a match if there are no matches between the
16129 text in the Subject: line and the list of Subject patterns.
16132 If you wish to have a header pattern that is not one of the six standard
16133 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16135 A technicality: Since comma is the character used to separate multiple
16136 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16137 you want to include a literal comma in the field.
16138 In other words, if you type a backslash followed by a comma it will
16139 be interpreted as a comma by Alpine, instead of as a separator between
16140 pattern values.
16141 All other backslashes are literal backslashes and should not be escaped.
16143 Look <A HREF="h_edit_nav_cmds">here</A>
16144 to see the available Editing and Navigation commands.
16146 &lt;End of help on this topic&gt;
16147 </BODY>
16148 </HTML>
16149 ======= h_config_role_alltextpat =======
16150 <HTML>
16151 <HEAD>
16152 <TITLE>AllText Pattern Explained</TITLE>
16153 </HEAD>
16154 <BODY>
16155 <H1>AllText Pattern Explained</H1>
16157 This is similar to the header patterns.
16158 Instead of comparing with text in a particular header field it 
16159 is compared with all of the text in the message header and body.
16161 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16162 &quot;!&quot; &quot;toggle NOT&quot; command.
16163 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16164 It will be considered a match if there are no matches between the
16165 text of the message and the list of AllText patterns.
16167 Don't make the mistake of putting the &quot;!&quot; in the data field for
16168 the pattern.
16169 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16170 pattern, the pattern will look like:
16172 <PRE>
16173  AllText pattern = !frizzle
16174 </PRE>
16176 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16177 In order to match messages that do not have &quot;frizzle&quot; in
16178 the text of the message, first type the characters &quot;frizzle&quot; followed
16179 by carriage return for the value of the AllText pattern, then negate it
16180 by typing the &quot;!&quot; command.
16181 It should end up looking like
16183 <PRE>
16184  ! AllText pattern = frizzle
16185 </PRE>
16187 It is possible that you may notice degraded performance when using
16188 AllText Patterns.
16190 A technicality: Since comma is the character used to separate multiple
16191 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16192 you want to include a literal comma in the field.
16193 In other words, if you type a backslash followed by a comma it will
16194 be interpreted as a comma by Alpine, instead of as a separator between
16195 pattern values.
16196 All other backslashes are literal backslashes and should not be escaped.
16198 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16199 for more information on Patterns.
16201 Look <A HREF="h_edit_nav_cmds">here</A>
16202 to see the available Editing and Navigation commands.
16204 &lt;End of help on this topic&gt;
16205 </BODY>
16206 </HTML>
16207 ======= h_config_role_bodytextpat =======
16208 <HTML>
16209 <HEAD>
16210 <TITLE>BodyText Pattern Explained</TITLE>
16211 </HEAD>
16212 <BODY>
16213 <H1>BodyText Pattern Explained</H1>
16215 This is similar to the header patterns.
16216 Instead of comparing with text in a particular header field it 
16217 is compared with all of the text in the message body.
16219 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16220 &quot;!&quot; &quot;toggle NOT&quot; command.
16221 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16222 It will be considered a match if there are no matches between the
16223 text of the body of the message and the list of BodyText patterns.
16225 Don't make the mistake of putting the &quot;!&quot; in the data field for
16226 the pattern.
16227 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16228 pattern, the pattern will look like:
16230 <PRE>
16231  BdyText pattern = !frizzle
16232 </PRE>
16234 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16235 In order to match messages that do not have &quot;frizzle&quot; in
16236 their BodyText, first type the characters &quot;frizzle&quot; followed
16237 by carriage return for the value of the BodyText pattern, then negate it
16238 by typing the &quot;!&quot; command.
16239 It should end up looking like
16241 <PRE>
16242  ! BodyText pattern = frizzle
16243 </PRE>
16245 It is possible that you may notice degraded performance when using
16246 BodyText Patterns.
16248 A technicality: Since comma is the character used to separate multiple
16249 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16250 you want to include a literal comma in the field.
16251 In other words, if you type a backslash followed by a comma it will
16252 be interpreted as a comma by Alpine, instead of as a separator between
16253 pattern values.
16254 All other backslashes are literal backslashes and should not be escaped.
16256 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16257 for more information on Patterns.
16259 Look <A HREF="h_edit_nav_cmds">here</A>
16260 to see the available Editing and Navigation commands.
16262 &lt;End of help on this topic&gt;
16263 </BODY>
16264 </HTML>
16265 ======= h_config_role_charsetpat =======
16266 <HTML>
16267 <HEAD>
16268 <TITLE>Character Set Pattern Explained</TITLE>
16269 </HEAD>
16270 <BODY>
16271 <H1>Character Set Pattern Explained</H1>
16273 A message may use one or more character sets.
16274 This part of the Pattern matches messages that make use of
16275 certain specified character sets.
16276 It will be considered a match if a message uses any of the character
16277 sets in the list you give here.
16280 When filling in a value for this field, you may use
16281 the &quot;T&quot; command, which presents you with a large list of
16282 possible character sets to choose from.
16283 You may also just type in the name of a character set, and it need not
16284 be one that Alpine knows about.
16287 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16288 GB2312) you may also use some shorthand names that Alpine provides.
16289 These names are more understandable shorthand names for sets of 
16290 character set names.
16291 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16292 Selecting one of these shorthand names is equivalent to selecting all of
16293 the character sets that make up the set.
16294 You can see all of these shorthand names and the lists of character sets
16295 they stand for by typing the &quot;T&quot; command.
16298 For the purposes of this Pattern,
16299 Alpine will search through a message for all of the text parts and
16300 collect the character sets declared for each part.
16301 It will also look in the Subject line for a character set used there.
16302 Alpine does not actually look at the text of the message or the text
16303 of the Subject to determine if a declared character set is actually
16304 used, it looks only at the declarations themselves in the MIME part headers
16305 and in the Subject.
16308 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16309 &quot;!&quot; &quot;toggle NOT&quot; command.
16310 This changes the meaning of the Character Set pattern so that
16311 it has the opposite meaning.
16312 It will be considered a match if none of the character sets in the
16313 list are used in a message.
16315 Don't make the mistake of putting the &quot;!&quot; in the data field for
16316 the pattern.
16317 For example, if you type the characters &quot;!GB2312&quot; into the
16318 Character Set pattern, the pattern will look like:
16320 <PRE>
16321  Charset pattern = !GB2312
16322 </PRE>
16324 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16325 In order to match messages that do not have the
16326 character set &quot;GB2312&quot;
16327 set, first type the characters &quot;GB2312&quot; followed
16328 by carriage return for the value of the Character Set pattern, then negate it
16329 by typing the &quot;!&quot; command.
16330 It should end up looking like
16332 <PRE>
16333  ! Charset pattern = GB2312
16334 </PRE>
16336 A technicality: Since comma is the character used to separate multiple
16337 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16338 you want to include a literal comma in the field.
16339 In other words, if you type a backslash followed by a comma it will
16340 be interpreted as a comma by Alpine, instead of as a separator between
16341 pattern values.
16342 All other backslashes are literal backslashes and should not be escaped.
16344 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16345 for more information on Patterns.
16347 Look <A HREF="h_edit_nav_cmds">here</A>
16348 to see the available Editing and Navigation commands.
16350 &lt;End of help on this topic&gt;
16351 </BODY>
16352 </HTML>
16353 ======= h_config_role_keywordpat =======
16354 <HTML>
16355 <HEAD>
16356 <TITLE>Keyword Pattern Explained</TITLE>
16357 </HEAD>
16358 <BODY>
16359 <H1>Keyword Pattern Explained</H1>
16361 A folder may have user-defined keywords.
16362 These are similar to the Important flag, which the user may set using the
16363 Flag command.
16364 The difference is that the Important flag is always present for each folder.
16365 User-defined keywords are picked by the user.
16366 You may add new keywords by defining them in the
16367 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16368 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16369 the Flag command may be used to set or clear the keyword on individual messages.
16370 If you have given a keyword a nickname when configuring it,
16371 that nickname may be used instead of the actual keyword.
16374 When filling in a value for this field, it may be easiest to use
16375 the &quot;T&quot; command, which presents you with a list of the keywords
16376 you have defined to choose from.
16379 This part of the Pattern matches messages with certain keywords set.
16380 It will be considered a match if a message has any of the keywords in the
16381 list set.
16382 A keyword that you have not defined using the
16383 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16384 will not be a match.
16387 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16388 &quot;!&quot; &quot;toggle NOT&quot; command.
16389 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16390 It will be considered a match if none of the keywords in the list are set
16391 for a message.
16392 A keyword that you have not defined using the
16393 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16394 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16396 Don't make the mistake of putting the &quot;!&quot; in the data field for
16397 the pattern.
16398 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16399 pattern, the pattern will look like:
16401 <PRE>
16402  Keyword pattern = !frizzle
16403 </PRE>
16405 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16406 In order to match messages that do not have the keyword &quot;frizzle&quot;
16407 set, first type the characters &quot;frizzle&quot; followed
16408 by carriage return for the value of the Keyword pattern, then negate it
16409 by typing the &quot;!&quot; command.
16410 It should end up looking like
16412 <PRE>
16413  ! Keyword pattern = frizzle
16414 </PRE>
16416 A technicality: Since comma is the character used to separate multiple
16417 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16418 you want to include a literal comma in the field.
16419 In other words, if you type a backslash followed by a comma it will
16420 be interpreted as a comma by Alpine, instead of as a separator between
16421 pattern values.
16422 All other backslashes are literal backslashes and should not be escaped.
16424 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16425 for more information on Patterns.
16427 Look <A HREF="h_edit_nav_cmds">here</A>
16428 to see the available Editing and Navigation commands.
16430 &lt;End of help on this topic&gt;
16431 </BODY>
16432 </HTML>
16433 ======= h_config_role_arbpat =======
16434 <HTML>
16435 <HEAD>
16436 <TITLE>Extra Header Patterns Explained</TITLE>
16437 </HEAD>
16438 <BODY>
16439 <H1>Extra Header Patterns Explained</H1>
16441 The header patterns that come after the Participant pattern but before the 
16442 AllText pattern are extra header patterns that you have added to a rule's
16443 Pattern. These are just like the other header patterns except that
16444 the contents of the particular header listed on the left hand side will
16445 be used for comparisons.
16447 The &quot;eXtraHdr&quot; command may be used to add more of these
16448 header patterns to the rule you are editing.
16450 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16451 extra header pattern from the rule you are editing.
16453 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16454 &quot;!&quot; &quot;toggle NOT&quot; command.
16455 This changes the meaning of the pattern so that it has the opposite meaning.
16456 It will be considered a match if there are no matches between the
16457 text in the header line and the list of patterns.
16459 Don't make the mistake of putting the &quot;!&quot; in the data field for
16460 the pattern.
16461 For example, if you type the characters &quot;!frizzle&quot; into the
16462 pattern, the pattern will look like:
16464 <PRE>
16465  Xyz pattern = !frizzle
16466 </PRE>
16468 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16469 In order to match messages that do not have &quot;frizzle&quot; in
16470 their Xyz field, first type the characters &quot;frizzle&quot; followed
16471 by carriage return for the value of the pattern, then negate it
16472 by typing the &quot;!&quot; command.
16473 It should end up looking like
16475 <PRE>
16476  ! Xyz pattern = frizzle
16477 </PRE>
16480 A technicality: Since comma is the character used to separate multiple
16481 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16482 you want to include a literal comma in the field.
16483 In other words, if you type a backslash followed by a comma it will
16484 be interpreted as a comma by Alpine, instead of as a separator between
16485 pattern values.
16486 All other backslashes are literal backslashes and should not be escaped.
16488 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16489 for more information on Patterns.
16491 Look <A HREF="h_edit_nav_cmds">here</A>
16492 to see the available Editing and Navigation commands.
16494 &lt;End of help on this topic&gt;
16495 </BODY>
16496 </HTML>
16497 ======= h_config_role_cat_cmd =======
16498 <HTML>
16499 <HEAD>
16500 <TITLE>Categorizer Command Explained</TITLE>
16501 </HEAD>
16502 <BODY>
16503 <H1>Categorizer Command Explained</H1>
16505 This is a command that is run with its standard input set to the message
16506 being checked and its standard output discarded.
16507 The full directory path should be specified.
16508 The command will be run and then its exit status will be checked against
16509 the Exit Status Interval, which defaults to just the value zero.
16510 If the exit status of the command falls in the interval, it is considered
16511 a match, otherwise it is not a match.
16514 This option may actually be a list of commands.
16515 The first one that exists and is executable is used.
16516 That makes it possible to use the same configuration with Unix Alpine and
16517 PC-Alpine.
16520 If none of the commands in the list exists and is executable then the rule
16521 is <EM>not</EM> a match.
16522 If it is possible that the command may not exist, you should be careful
16523 to structure your rules so that nothing destructive
16524 happens when the command does not exist.
16525 For example, you might have a filter that filters away spam when there is
16526 a match but does nothing when there is not a match.
16527 That would cause no harm if the command didn't exist.
16528 However, if you have a filter that filters away spam when there is not
16529 a match and keeps it when there is a match, that would filter everything
16530 if the categorizer command didn't exist.
16532 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16533 setup for the bogofilter filter.
16536 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16537 for more information on Patterns.
16539 Look <A HREF="h_edit_nav_cmds">here</A>
16540 to see the available Editing and Navigation commands.
16542 &lt;End of help on this topic&gt;
16543 </BODY>
16544 </HTML>
16545 ======= h_config_role_cat_cmd_example =======
16546 <HTML>
16547 <HEAD>
16548 <TITLE>Categorizer Command Example</TITLE>
16549 </HEAD>
16550 <BODY>
16551 <H1>Categorizer Command Example</H1>
16553 Bogofilter
16554 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16555 is a mail filter that attempts to classify mail as spam or
16556 non-spam using statistical analysis of the message content.
16557 When run with no arguments and a message as standard input, it exits with
16558 exit status 0 if it thinks a message is spam and 1 if it thinks
16559 it is not spam.
16560 To use bogofilter as your Categorizer Command you would simply set Command to
16561 the pathname of the bogofilter program.
16562 For example,
16564 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16566 Exit status of zero is what you are interested in, so you'd set the
16567 Exit Status Interval to
16569 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16572 In order to prevent downloading an entire huge message to check for spam, you
16573 might want to set the Character Limit to a few thousand characters (the
16574 assumption being that the spam will reveal itself in those characters)
16576 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16579 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16580 be to move the message to a spam folder.
16581 It would usually be wise to also check the &quot;Message is Recent&quot;
16582 part of the rule so that messages are only checked when they first arrive,
16583 and to restrict the Current Folder Type to just your INBOX.
16584 The reason for checking only Recent messages is to save the time it takes
16585 to run bogofilter on each message.
16586 As an experiment, you might start out by using this in an Indexcolor Rule
16587 instead of a Filter Rule.
16588 In that case, you probably wouldn't check the Recent checkbox.
16590 The use described above assumes that you are somehow maintaining bogofilter's
16591 database of words associated with spam and non-spam messages.
16592 One way to start your database would be to select a bunch of spam messages
16593 in Alpine (you might Save spam messages to a special folder or use Alpine's
16594 Select command to select several) and then Apply
16595 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16596 a pipe command to the spam messages.
16597 For example, you could have a shell script or an alias
16598 called <EM>this_is_spam</EM>, which would simply be the command
16600 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16603 It is probably best to use the pipe command's Raw Text, With Delimiter,
16604 and Free Output options,
16605 which are at the bottom of the screen when you type the pipe command.
16606 That's because bogofilter expects the raw message as input, and uses
16607 the Delimiters to tell when a new message starts.
16608 You would not need to use a separate pipe for each message, because
16609 bogofilter can handle multiple messages at once.
16611 Similarly, you would select a group of non-spam messages
16612 and run them through a <EM>this_is_nonspam</EM> script
16613 that was something like
16615 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16618 For the more adventurous, the next step might be to automate the upkeep of
16619 the bogofilter database.
16620 It might make more sense to have bogofilter be part of the delivery process,
16621 but it is also possible to do it entirely from within Alpine.
16622 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16623 the &quot;-u&quot; argument will cause bogofilter to update the database.
16625 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16627 You'd want a couple more aliases or shell scripts called something like
16628 <EM>change_to_spam</EM>
16630 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16633 <EM>change_to_nonspam</EM>
16635 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16637 When you run across a message in your INBOX that should have been
16638 classified as spam you would pipe it to the change_to_spam script, and
16639 when you run across a message in your spam folder that should have been
16640 left in your INBOX you would pipe it through change_to_nonspam.
16643 There is a technical problem with this approach.
16644 Alpine may check your filters more than once.
16645 In particular, every time you start Alpine the filters will be checked for
16646 each message.
16647 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16648 then Alpine will recheck for matches in messages that have changed state
16649 at the time you close the folder and before expunging.
16650 This is usually ok.
16651 However, in this case it is a problem because the command
16653 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16655 has the side effect of updating the database.
16656 So you run the risk of updating the database multiple times for a single
16657 message instead of updating it just once per message.
16658 There are some ways to work around this problem.
16659 What you need is a way to mark the message after you have run the filter.
16660 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16661 Besides having the filter move the message to a spam folder, also have it
16662 set the Bogo keyword.
16663 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16664 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16665 This rule can only set the Bogo keyword for the messages that it matches.
16666 You will also need to add a second rule right after this one that
16667 matches all the messages that don't have the Bogo keyword set
16668 (put the keyword in the Keyword pattern and toggle
16669 the Not with the ! command)
16670 and takes the action of setting it.
16671 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16672 (and so it won't re-run the bogofilter command) if the keyword is already
16673 set.
16675 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16676 on all messages that don't have the Bogo keyword set.
16677 This will have the side effect of inserting that message in the bogofilter
16678 database, match or not.
16679 If this rule matches (it is spam), the Bogo keyword will be set and
16680 the message will be moved to a spam folder.
16681 If it does not match, the
16682 following rule will mark the message by turning on the keyword.
16683 This second rule should be a non-terminating
16684 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
16685 rule so that it doesn't stop the filtering process before the rest of
16686 your rules are consulted.
16689 In summary, the first rule is something like
16690 <PRE>
16691   Nickname          = bogofilter -u rule
16692   Current Folder Type =
16693                (*) Specific
16694                    Folder = INBOX
16696   ! Keyword pattern = Bogo
16698   External Categorizer Commands =
16699        Command              = /usr/local/bin/bogofilter -u
16700        Exit Status Interval = (0,0)
16701        Character Limit      = <No Value Set: using "-1">  (optionally set this)
16703   Filter Action =
16704        (*) Move
16705            Folder = spam
16706   
16707   Set These Keywords   = Bogo
16708 </PRE>
16710 and the following rule is
16711 <PRE>
16712   Nickname          = Set Bogo Keyword
16713   Current Folder Type =
16714                (*) Specific
16715                    Folder = INBOX
16717   ! Keyword pattern = Bogo
16719   Filter Action =
16720        (*) Just Set Message Status
16722   Set These Keywords   = Bogo
16724   Features =
16725       [X]  dont-stop-even-if-rule-matches
16726 </PRE>
16728 If it is possible for you to insert bogofilter in the delivery process instead
16729 of having it called from Alpine you could prevent having to wait
16730 for the bogofilter processing while you read your mail.
16731 You would have bogofilter add a header to the message at the time of delivery
16732 that identified it as spam or nonspam.
16733 With this method, you could avoid using a Categorizer Command while running Alpine,
16734 and just match on the header instead.
16735 You might still want to use the scripts mentioned above to initialize the
16736 database or to re-classify wrongly classified messages.
16739 Finally, it isn't for the faint-hearted,
16740 but it is also possible to run bogofilter from PC-Alpine.
16741 You can install Cygwin from
16742 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
16743 then compile bogofilter in the cygwin environment, and run it from
16744 within PC-Alpine.
16745 You would end up with a Categorizer command that looked something like
16747 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
16749 Note that the &quot;.exe&quot; extension is explicit,
16750 and that the bogofilter.exe executable should be in the same directory
16751 as cygwin1.dll.
16754 &lt;End of help on this topic&gt;
16755 </BODY>
16756 </HTML>
16757 ======= h_config_role_cat_status =======
16758 <HTML>
16759 <HEAD>
16760 <TITLE>Exit Status Interval Explained</TITLE>
16761 </HEAD>
16762 <BODY>
16763 <H1>Exit Status Interval Explained</H1>
16765 The categorizer command is run and the result is the exit status of
16766 that command.
16767 If that exit status falls in the Exit Status Interval
16768 then it is considered a match, otherwise it is not a match.
16769 Of course for the entire rule to match, it must also be checked against
16770 the other defined parts of the Pattern.
16772 The Exit Status Interval defaults to the single value 0 (zero).
16773 If you define it, it should be set to something like:
16775 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
16777 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
16778 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
16779 positive and negative integers.
16781 Actually, a list of intervals may be used if you wish.
16782 A list would look like
16784 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
16786 When there is an Exit Status Interval defined, it is a match if the exit status
16787 of the categorizer command is contained in any of the intervals.
16788 The intervals include both endpoints.
16790 The default interval is
16792 <CENTER><SAMP>(0,0)</SAMP></CENTER>
16794 and it matches only if the command exits with exit status equal to zero.
16797 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16798 for more information on Patterns.
16800 Look <A HREF="h_edit_nav_cmds">here</A>
16801 to see the available Editing and Navigation commands.
16803 &lt;End of help on this topic&gt;
16804 </BODY>
16805 </HTML>
16806 ======= h_config_role_cat_limit =======
16807 <HTML>
16808 <HEAD>
16809 <TITLE>Character Limit Explained</TITLE>
16810 </HEAD>
16811 <BODY>
16812 <H1>Character Limit Explained</H1>
16814 Setting this option makes it possible to limit how much of the message
16815 is made available to the categorizer command as input.
16816 The default value (-1) means that the entire message is fed to the
16817 command.
16818 A value of 0 (zero) means that only the headers of the message are
16819 made available.
16820 A positive integer means that the headers plus that many characters from
16821 the body of the message are passed to the categorizer.
16824 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16825 for more information on Patterns.
16827 Look <A HREF="h_edit_nav_cmds">here</A>
16828 to see the available Editing and Navigation commands.
16830 &lt;End of help on this topic&gt;
16831 </BODY>
16832 </HTML>
16833 ======= h_config_role_age =======
16834 <HTML>
16835 <HEAD>
16836 <TITLE>Age Interval Explained</TITLE>
16837 </HEAD>
16838 <BODY>
16839 <H1>Age Interval Explained</H1>
16841 The Age Interval, if defined, is part of the Pattern.
16842 If you use this, it should be set to something like:
16844 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
16846 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
16847 The special value &quot;INF&quot; may be used for the max value.
16848 It represents infinity.
16850 In rare cases it may be useful to use the more general form of the value,
16851 which is a comma-separated list of intervals.
16852 It would look something like:
16854 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
16856 When there is an Age Interval defined, it is a match if the age, in days, of
16857 the message is contained in the interval.
16858 The interval includes both endpoints.
16859 If the option is set to a list of intervals then it is a match if the
16860 age of the message is contained in any of the intervals.
16862 Even though this option is called Age, it isn't actually
16863 the <EM>age</EM> of the message.
16864 Instead, it is how many days ago the message arrived in one of your folders.
16865 If the current time is a little past midnight, then a message that arrived
16866 just before midnight arrived yesterday, even though the message is only
16867 a few minutes old.
16868 By default, the date being used is not the date in the Date
16869 header of the message.
16870 It is the date that the message arrived in one of your folders.
16871 When you Save a message from one folder to another that arrival date
16872 is preserved.
16873 If you would like to use the date in the Date header that is possible.
16874 Turn on the option
16875 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
16876 near the bottom of the rule definition.
16878 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
16879 The age interval
16881 <CENTER><SAMP>(2,2)</SAMP></CENTER>
16883 matches all messages that arrived on the day before yesterday.
16884 The interval
16886 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
16888 matches all messages that arrived at least 180 days before today.
16889 The interval
16891 <CENTER><SAMP>(0,1)</SAMP></CENTER>
16893 matches all messages that arrived today or yesterday.
16896 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16897 for more information on Patterns.
16899 Look <A HREF="h_edit_nav_cmds">here</A>
16900 to see the available Editing and Navigation commands.
16902 &lt;End of help on this topic&gt;
16903 </BODY>
16904 </HTML>
16905 ======= h_config_role_size =======
16906 <HTML>
16907 <HEAD>
16908 <TITLE>Size Interval Explained</TITLE>
16909 </HEAD>
16910 <BODY>
16911 <H1>Size Interval Explained</H1>
16913 The Size Interval, if defined, is part of the Pattern.
16914 If you use this, it should be set to something like:
16916 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
16918 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
16919 The special value &quot;INF&quot; may be used for the max value.
16920 It represents infinity.
16922 In rare cases it may be useful to use the more general form of the value,
16923 which is a comma-separated list of intervals.
16924 It would look something like:
16926 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
16928 When there is a Size Interval defined, it is a match if the size of
16929 the message is contained in the interval.
16930 The interval includes both endpoints.
16931 If the option is set to a list of intervals then it is a match if the
16932 size of the message is contained in any of the intervals.
16934 The size interval
16936 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
16938 matches all messages with sizes greater than or equal to 10000, and less
16939 than or equal to 50000.
16940 The interval
16942 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
16944 matches all messages with sizes greater than or equal to 100000.
16947 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16948 for more information on Patterns.
16950 Look <A HREF="h_edit_nav_cmds">here</A>
16951 to see the available Editing and Navigation commands.
16953 &lt;End of help on this topic&gt;
16954 </BODY>
16955 </HTML>
16956 ======= h_config_role_scorei =======
16957 <HTML>
16958 <HEAD>
16959 <TITLE>Score Interval Explained</TITLE>
16960 </HEAD>
16961 <BODY>
16962 <H1>Score Interval Explained</H1>
16964 The Score Interval, if defined, is part of the Pattern.
16965 If you use this, it should be set to something like:
16967 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
16969 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
16970 -32000 and 32000.
16971 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
16972 the min and max values.
16973 These represent negative and positive infinity.
16975 Actually, the value may be a list of intervals rather than just a
16976 single interval if that is useful.
16977 The elements of the list are separated by commas like:
16979 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
16981 When there is a Score Interval defined, it is a match if the score for
16982 the message is contained in any of the intervals.
16983 The intervals include both endpoints.
16984 The score for a message is calculated by looking at every scoring rule
16985 defined and adding up the Score Values for the rules that match the message.
16986 Scoring rules are created using the
16987 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
16990 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16991 for more information on Patterns.
16993 Look <A HREF="h_edit_nav_cmds">here</A>
16994 to see the available Editing and Navigation commands.
16996 &lt;End of help on this topic&gt;
16997 </BODY>
16998 </HTML>
16999 ======= h_config_role_fldr_type =======
17000 <HTML>
17001 <HEAD>
17002 <TITLE>Current Folder Type Explained</TITLE>
17003 </HEAD>
17004 <BODY>
17005 <H1>Current Folder Type Explained</H1>
17007 The Current Folder Type is part of the role's Pattern.
17008 It refers to the type of the currently open folder, which is the folder
17009 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17010 In order for a role to be considered a match, the current folder must
17011 be of the type you set here.
17012 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17013 all what you might think.
17015 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17016 example, then
17017 that role will only be a match if the current folder is a newsgroup and
17018 the rest of the Pattern matches.
17019 The value &quot;Specific&quot; may be used when you want to limit the match
17020 to a specific folder (not just a specific type of folder), or to a list of
17021 specific folders.
17023 In order to match a specific folder you Select the &quot;Specific&quot;
17024 button <EM>AND</EM> fill in
17025 the name (or list of names) of
17026 the folder in the &quot;Folder List&quot; field.
17027 If the current folder is any of the folders in the list, that is considered
17028 a match.
17029 The name of each folder in the list may be either &quot;INBOX&quot;,
17030 the technical specification
17031 of the folder (like what appears in your configuration file) or, if the
17032 folder is one of your incoming folders, it may be the nickname you've given
17033 the folder.
17034 Here are a couple samples of specific folder names:
17036 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17038 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17040 The easiest way to fill in the &quot;Folder List&quot; field is to use
17041 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17042 highlighted, or to use the &quot;Take&quot; command with the configuration
17043 feature
17044 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17045 turned on.
17046 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17047 Current Folder Type is set to &quot;Specific&quot;, and any value that
17048 &quot;Folder List&quot; has is ignored unless the type
17049 is set to &quot;Specific&quot;.
17051 When reading a newsgroup, there may be a performance penalty
17052 incurred when collecting the information necessary to check a Pattern.
17053 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17055 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17056 for more information on Patterns.
17058 Look <A HREF="h_edit_nav_cmds">here</A>
17059 to see the available Editing and Navigation commands.
17061 &lt;End of help on this topic&gt;
17062 </BODY>
17063 </HTML>
17064 ======= h_config_filt_rule_type =======
17065 <HTML>
17066 <HEAD>
17067 <TITLE>Filter Action Explained</TITLE>
17068 </HEAD>
17069 <BODY>
17070 <H1>Filter Action Explained</H1>
17072 The Filter Action specifies the action to be taken when the Pattern is a
17073 match.
17074 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17075 &quot;Just Set Message Status&quot;.
17077 If it is set to &quot;Delete&quot;, then the message that matches the
17078 Pattern will be deleted from the open folder.
17080 If it is set to &quot;Move&quot;, then the name of the folder to which
17081 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17082 next line of the screen.
17083 A list of folders separated by commas may be given, in which case the
17084 message will be copied to all of the folders in the list before it is
17085 deleted.
17087 If it is set to neither of those two values (it is set to the value
17088 labeled &quot;Just Set Message Status&quot;) then the message status
17089 setting will happen
17090 but the message will not be deleted or moved.
17092 If you are Moving a message you may also set Message Status if you wish.
17094 The easiest way to fill in the &quot;Folder List&quot; field is to use
17095 the T command that is available when the &quot;Folder List&quot; line is
17096 highlighted.
17097 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17098 Filter Action is set to &quot;Move&quot;, and any value that
17099 &quot;Folder List&quot; has is ignored unless the type
17100 is set to &quot;Move&quot;.
17102 There are a few tokens that may be used in the names in the Folder List.
17103 They are all related to the date on which the filtering is taking place.
17104 The tokens are words surrounded by underscores.
17105 For example, if you want your filter to move messages to a folder named
17106 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17107 you could specify the folder as
17108 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17109 which would result in a file named something like
17110 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17112 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17113 which would result in a file named something like
17114 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17115 The available tokens are listed
17116 <A HREF="h_index_tokens">here</A>.
17118 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17119 for more information on Patterns.
17121 Look <A HREF="h_edit_nav_cmds">here</A>
17122 to see the available Editing and Navigation commands.
17124 &lt;End of help on this topic&gt;
17125 </BODY>
17126 </HTML>
17127 ======= h_config_score_fldr_type =======
17128 <HTML>
17129 <HEAD>
17130 <TITLE>Current Folder Type Explained</TITLE>
17131 </HEAD>
17132 <BODY>
17133 <H1>Current Folder Type Explained</H1>
17135 The Current Folder Type is part of the scoring rule's Pattern.
17136 It refers to the type of the folder that
17137 the message being scored is in.
17138 In order for a rule to be considered a match, the current folder must
17139 be of the type you set here.
17140 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17141 all what you might think.
17143 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17144 example, then
17145 that Pattern will only match if the current folder is a newsgroup and
17146 the rest of the Pattern matches.
17147 The value &quot;Specific&quot; may be used when you want to limit the match
17148 to a specific folder (not just a specific type of folder), or to a list of
17149 specific folders.
17151 In order to match a specific folder you Select the &quot;Specific&quot;
17152 button <EM>AND</EM> fill in
17153 the name (or list of names) of
17154 the folder in the &quot;Folder List&quot; field.
17155 If the current folder is any of the folders in the list, that is considered
17156 a match.
17157 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17158 of the folder (like what appears in your configuration file) or, if the
17159 folder is one of your incoming folders, it may be the nickname you've given
17160 the folder.
17161 Here are a couple samples of specific folder names:
17163 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17165 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17167 The easiest way to fill in the &quot;Folder List&quot; field is to use
17168 the T command that is available when the &quot;Folder List&quot; line is
17169 highlighted.
17170 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17171 Current Folder Type is set to &quot;Specific&quot;, and any value that
17172 &quot;Folder List&quot; has is ignored unless the type
17173 is set to &quot;Specific&quot;.
17175 When reading a newsgroup, there may be a performance penalty
17176 incurred when collecting the information necessary to check a Pattern.
17177 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17178 For example, if you have Index Line Coloring rules that have Score Intervals
17179 defined then the scores for all the visible messages will need to be calculated.
17180 If some of your Scoring rules have 
17181 a Current Folder Type of
17182 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17183 screen to draw more slowly when in a newsgroup.
17185 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17186 for more information on Patterns.
17188 Look <A HREF="h_edit_nav_cmds">here</A>
17189 to see the available Editing and Navigation commands.
17191 &lt;End of help on this topic&gt;
17192 </BODY>
17193 </HTML>
17194 ======= h_config_other_fldr_type =======
17195 <HTML>
17196 <HEAD>
17197 <TITLE>Current Folder Type Explained</TITLE>
17198 </HEAD>
17199 <BODY>
17200 <H1>Current Folder Type Explained</H1>
17202 The Current Folder Type is part of the rule's Pattern.
17203 It refers to the type of the folder being viewed.
17204 In order for a rule to be considered a match, the current folder must
17205 be of the type you set here.
17206 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17207 all what you might think.
17209 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17210 example, then
17211 that Pattern will only match if the current folder is a newsgroup.
17212 The value &quot;Specific&quot; may be used when you want to limit the match
17213 to a specific folder (not just a specific type of folder), or to a list of
17214 specific folders.
17216 In order to match a specific folder you Select the &quot;Specific&quot;
17217 button <EM>AND</EM> fill in
17218 the name (or list of names) of
17219 the folder in the &quot;Folder List&quot; field.
17220 If the current folder is any of the folders in the list, that is considered
17221 a match.
17222 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17223 of the folder (like what appears in your configuration file) or, if the
17224 folder is one of your incoming folders, it may be the nickname you've given
17225 the folder.
17226 Here are a couple samples of specific folder names:
17228 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17230 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17232 The easiest way to fill in the &quot;Folder List&quot; field is to use
17233 the T command that is available when the &quot;Folder List&quot; line is
17234 highlighted.
17235 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17236 Current Folder Type is set to &quot;Specific&quot;, and any value that
17237 &quot;Folder List&quot; has is ignored unless the type
17238 is set to &quot;Specific&quot;.
17240 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17241 for more information on Patterns.
17243 Look <A HREF="h_edit_nav_cmds">here</A>
17244 to see the available Editing and Navigation commands.
17246 &lt;End of help on this topic&gt;
17247 </BODY>
17248 </HTML>
17249 ======= h_config_incol_fldr_type =======
17250 <HTML>
17251 <HEAD>
17252 <TITLE>Current Folder Type Explained</TITLE>
17253 </HEAD>
17254 <BODY>
17255 <H1>Current Folder Type Explained</H1>
17257 The Current Folder Type is part of the Line Coloring rule's Pattern.
17258 It refers to the type of the folder for which the MESSAGE INDEX is
17259 being viewed.
17260 In order for a rule to be considered a match, the current folder must
17261 be of the type you set here.
17262 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17263 all what you might think.
17265 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17266 example, then
17267 that Pattern will only match if the current folder is a newsgroup and
17268 the rest of the Pattern matches.
17269 The value &quot;Specific&quot; may be used when you want to limit the match
17270 to a specific folder (not just a specific type of folder), or to a list of
17271 specific folders.
17273 In order to match a specific folder you Select the &quot;Specific&quot;
17274 button <EM>AND</EM> fill in
17275 the name (or list of names) of
17276 the folder in the &quot;Folder List&quot; field.
17277 If the current folder is any of the folders in the list, that is considered
17278 a match.
17279 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17280 of the folder (like what appears in your configuration file) or, if the
17281 folder is one of your incoming folders, it may be the nickname you've given
17282 the folder.
17283 Here are a couple samples of specific folder names:
17285 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17287 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17289 The easiest way to fill in the &quot;Folder List&quot; field is to use
17290 the T command that is available when the &quot;Folder List&quot; line is
17291 highlighted.
17292 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17293 Current Folder Type is set to &quot;Specific&quot;, and any value that
17294 &quot;Folder List&quot; has is ignored unless the type
17295 is set to &quot;Specific&quot;.
17297 When reading a newsgroup, there may be a performance penalty
17298 incurred when collecting the information necessary to check a Pattern.
17299 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17300 For example, a rule with a non-Normal Index Line Color
17301 and a Current Folder Type of
17302 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17303 screen to draw more slowly when in a newsgroup.
17305 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17306 for more information on Patterns.
17308 Look <A HREF="h_edit_nav_cmds">here</A>
17309 to see the available Editing and Navigation commands.
17311 &lt;End of help on this topic&gt;
17312 </BODY>
17313 </HTML>
17314 ======= h_config_filt_fldr_type =======
17315 <HTML>
17316 <HEAD>
17317 <TITLE>Current Folder Type Explained</TITLE>
17318 </HEAD>
17319 <BODY>
17320 <H1>Current Folder Type Explained</H1>
17322 The Current Folder Type is part of the Filtering rule's Pattern.
17323 It refers to the type of the folder for which the filtering is being done.
17324 In order for a rule to be considered a match, the current folder must
17325 be of the type you set here.
17326 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17327 all what you might think.
17329 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17330 example, then
17331 that Pattern will only match if the current folder is a newsgroup and
17332 the rest of the Pattern matches.
17333 The value &quot;Specific&quot; may be used when you want to limit the match
17334 to a specific folder (not just a specific type of folder), or to a list of
17335 specific folders.
17337 In order to match a specific folder you Select the &quot;Specific&quot;
17338 button <EM>AND</EM> fill in
17339 the name (or list of names) of
17340 the folder in the &quot;Folder List&quot; field.
17341 If the current folder is any of the folders in the list, that is considered
17342 a match.
17343 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17344 of the folder (like what appears in your configuration file) or, if the
17345 folder is one of your incoming folders, it may be the nickname you've given
17346 the folder.
17347 Here are a couple samples of specific folder names:
17349 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17351 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17353 The easiest way to fill in the &quot;Folder List&quot; field is to use
17354 the T command that is available when the &quot;Folder List&quot; line is
17355 highlighted.
17356 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17357 Current Folder Type is set to &quot;Specific&quot;, and any value that
17358 &quot;Folder List&quot; has is ignored unless the type
17359 is set to &quot;Specific&quot;.
17361 When reading a newsgroup, there may be a performance penalty
17362 incurred when collecting the information necessary to check a Pattern.
17363 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17364 For example, a rule with a Current Folder Type of either
17365 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17366 more slowly when opening a newsgroup.
17368 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17369 for more information on Patterns.
17371 Look <A HREF="h_edit_nav_cmds">here</A>
17372 to see the available Editing and Navigation commands.
17374 &lt;End of help on this topic&gt;
17375 </BODY>
17376 </HTML>
17377 ======= h_config_role_stat_imp =======
17378 <HTML>
17379 <HEAD>
17380 <TITLE>Message Important Status Explained</TITLE>
17381 </HEAD>
17382 <BODY>
17383 <H1>Message Important Status Explained</H1>
17385 This part of the Pattern may have one of three possible values.
17386 The default value is &quot;Don't care&quot;, which matches any message.
17387 The other two values are &quot;Yes&quot;, which means the message must be
17388 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17389 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17390 to be a match.
17392 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17393 for more information on Patterns.
17395 Look <A HREF="h_edit_nav_cmds">here</A>
17396 to see the available Editing and Navigation commands.
17398 &lt;End of help on this topic&gt;
17399 </BODY>
17400 </HTML>
17401 ======= h_config_role_stat_new =======
17402 <HTML>
17403 <HEAD>
17404 <TITLE>Message New Status Explained</TITLE>
17405 </HEAD>
17406 <BODY>
17407 <H1>Message New Status Explained</H1>
17409 This part of the Pattern may have one of three possible values.
17410 The default value is &quot;Don't care&quot;, which matches any message.
17411 The other two values are &quot;Yes&quot;, which means the message must be
17412 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17413 means the message must <EM>not</EM> be &quot;New&quot; in order
17414 to be a match.
17415 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17416 same as <EM>Seen</EM>.
17418 The nomenclature for New and Recent is a bit confusing:
17420 New means that the message is Unseen.
17421 It could have been in your mailbox for a long time but if you haven't looked
17422 at it, it is still considered New.
17423 That matches the default Alpine index display that shows an N for such a
17424 message.
17426 Recent means that the message was added to this folder since the last time
17427 you opened the folder.
17428 Alpine also shows an N by default for these types of messages.
17429 If you were to run two copies of Alpine that opened a folder one right after
17430 the other, a message would only show up as Recent in (at most) the first
17431 Alpine session.
17433 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17434 for more information on Patterns.
17436 Look <A HREF="h_edit_nav_cmds">here</A>
17437 to see the available Editing and Navigation commands.
17439 &lt;End of help on this topic&gt;
17440 </BODY>
17441 </HTML>
17442 ======= h_config_role_stat_recent =======
17443 <HTML>
17444 <HEAD>
17445 <TITLE>Message Recent Status Explained</TITLE>
17446 </HEAD>
17447 <BODY>
17448 <H1>Message Recent Status Explained</H1>
17450 This part of the Pattern may have one of three possible values.
17451 The default value is &quot;Don't care&quot;, which matches any message.
17452 The other two values are &quot;Yes&quot;, which means the message must be
17453 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17454 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17455 to be a match.
17456 &quot;Recent&quot; means that the message was added to the folder since
17457 the last time the folder was opened.
17458 If more than one mail client has the folder opened, the message will
17459 appear to be &quot;Recent&quot; to only one of the clients.
17461 The nomenclature for New and Recent is a bit confusing:
17463 New means that the message is Unseen.
17464 It could have been in your mailbox for a long time but if you haven't looked
17465 at it, it is still considered New.
17466 That matches the default Alpine index display that shows an N for such a
17467 message.
17469 Recent means that the message was added to this folder since the last time
17470 you opened the folder.
17471 Alpine also shows an N by default for these types of messages.
17472 If you were to run two copies of Alpine that opened a folder one right after
17473 the other, a message would only show up as Recent in (at most) the first
17474 Alpine session.
17476 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17477 for more information on Patterns.
17479 Look <A HREF="h_edit_nav_cmds">here</A>
17480 to see the available Editing and Navigation commands.
17482 &lt;End of help on this topic&gt;
17483 </BODY>
17484 </HTML>
17485 ======= h_config_role_stat_del =======
17486 <HTML>
17487 <HEAD>
17488 <TITLE>Message Deleted Status Explained</TITLE>
17489 </HEAD>
17490 <BODY>
17491 <H1>Message Deleted Status Explained</H1>
17493 This part of the Pattern may have one of three possible values.
17494 The default value is &quot;Don't care&quot;, which matches any message.
17495 The other two values are &quot;Yes&quot;, which means the message must be
17496 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17497 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17498 to be a match.
17500 If you are thinking of using this part of the Pattern as a way to prevent
17501 messages from being filtered more than once in a Filter Pattern,
17502 take a look at the Filter Option
17503 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17504 instead.
17505 It should work better than using this field since it will hide the filtered
17506 messages even if they are already Deleted.
17507 That option is at the bottom of the Filter configuration screen.
17509 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17510 for more information on Patterns.
17512 Look <A HREF="h_edit_nav_cmds">here</A>
17513 to see the available Editing and Navigation commands.
17515 &lt;End of help on this topic&gt;
17516 </BODY>
17517 </HTML>
17518 ======= h_config_role_stat_ans =======
17519 <HTML>
17520 <HEAD>
17521 <TITLE>Message Answered Status Explained</TITLE>
17522 </HEAD>
17523 <BODY>
17524 <H1>Message Answered Status Explained</H1>
17526 This part of the Pattern may have one of three possible values.
17527 The default value is &quot;Don't care&quot;, which matches any message.
17528 The other two values are &quot;Yes&quot;, which means the message must be
17529 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17530 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17531 to be a match.
17533 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17534 for more information on Patterns.
17536 Look <A HREF="h_edit_nav_cmds">here</A>
17537 to see the available Editing and Navigation commands.
17539 &lt;End of help on this topic&gt;
17540 </BODY>
17541 </HTML>
17542 ======= h_config_role_abookfrom =======
17543 <HTML>
17544 <HEAD>
17545 <TITLE>Address in Address Book Explained</TITLE>
17546 </HEAD>
17547 <BODY>
17548 <H1>Address in Address Book Explained</H1>
17550 This option gives you a way to match messages that contain an address
17551 that is in one of your address books.
17552 Only the simple entries in your address books are searched.
17553 Address book distribution lists are ignored!
17555 This part of the Pattern may have one of five possible values.
17556 The default value is &quot;Don't care&quot;, which matches any message.
17557 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17558 from the message must be in at least one of your
17559 address books in order to be a match.
17560 The value &quot;No, not in any address book&quot;
17561 means none of the addresses may
17562 be in any of your address books in order to be a match.
17564 The values &quot;Yes, in specific address books&quot; and
17565 &quot;No, not in any of specific address books&quot; are similar but instead
17566 of depending on all address books you are allowed to give a list of address
17567 books to look in.
17568 Usually this would be a single address book but it may be a
17569 list of address books as well.
17570 For each of these &quot;specific&quot; address book options you Select which
17571 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17572 name (or list of names) of the address book in the
17573 &quot;Abook List&quot; field.
17574 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17575 The easiest way to fill in the Abook List field it to use
17576 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17577 line is highlighted.
17578 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17579 option is set to one of the two &quot;Specific&quot;, values.
17581 The addresses from the message that are checked for are determined by the
17582 setting you have for &quot;Types of addresses to check for in address book&quot;.
17583 If you set this to &quot;From&quot; the From address from the message will
17584 be looked up in the address book.
17585 If you set it to &quot;To&quot; instead then the To addresses will be used.
17586 If any of the To addresses are in the address book then it is considered
17587 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17588 You could set it to both From and To, in which case all of the From and To
17589 addresses are used.
17590 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17591 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17592 exists or the From address if there is no Reply-To address.
17593 Same for the Sender address.
17595 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17596 for more information on Patterns.
17598 Look <A HREF="h_edit_nav_cmds">here</A>
17599 to see the available Editing and Navigation commands.
17601 &lt;End of help on this topic&gt;
17602 </BODY>
17603 </HTML>
17604 ======= h_config_inabook_from =======
17605 <HTML>
17606 <HEAD>
17607 <TITLE>From</TITLE>
17608 </HEAD>
17609 <BODY>
17610 <H1>From</H1>
17612 Setting the From line will cause the address from the From header line
17613 of the message to be checked for in the address book.
17615 &lt;End of help on this topic&gt;
17616 </BODY>
17617 </HTML>
17618 ======= h_config_inabook_replyto =======
17619 <HTML>
17620 <HEAD>
17621 <TITLE>Reply-To</TITLE>
17622 </HEAD>
17623 <BODY>
17624 <H1>Reply-To</H1>
17626 Setting the Reply-To line will cause the address from the Reply-To header line
17627 of the message to be checked for in the address book.
17628 However, if there is no Reply-To header line in the message the From header
17629 line will be used instead.
17630 We understand this is dumb but we don't have an easy way around it.
17632 &lt;End of help on this topic&gt;
17633 </BODY>
17634 </HTML>
17635 ======= h_config_inabook_sender =======
17636 <HTML>
17637 <HEAD>
17638 <TITLE>Sender</TITLE>
17639 </HEAD>
17640 <BODY>
17641 <H1>Sender</H1>
17643 Setting the Sender line will cause the address from the Sender header line
17644 of the message to be checked for in the address book.
17645 However, if there is no Sender header line in the message the From header
17646 line will be used instead.
17647 We understand this is dumb but we don't have an easy way around it.
17649 &lt;End of help on this topic&gt;
17650 </BODY>
17651 </HTML>
17652 ======= h_config_inabook_to =======
17653 <HTML>
17654 <HEAD>
17655 <TITLE>To</TITLE>
17656 </HEAD>
17657 <BODY>
17658 <H1>To</H1>
17660 Setting the To line will cause the address from the To header line
17661 of the message to be checked for in the address book.
17663 &lt;End of help on this topic&gt;
17664 </BODY>
17665 </HTML>
17666 ======= h_config_inabook_cc =======
17667 <HTML>
17668 <HEAD>
17669 <TITLE>CC</TITLE>
17670 </HEAD>
17671 <BODY>
17672 <H1>CC</H1>
17674 Setting the CC line will cause the address from the CC header line
17675 of the message to be checked for in the address book.
17677 &lt;End of help on this topic&gt;
17678 </BODY>
17679 </HTML>
17680 ======= h_config_role_stat_8bitsubj =======
17681 <HTML>
17682 <HEAD>
17683 <TITLE>Raw 8-bit in Subject Explained</TITLE>
17684 </HEAD>
17685 <BODY>
17686 <H1>Raw 8-bit in Subject Explained</H1>
17688 It seems that lots of unwanted email contains unencoded 8-bit characters
17689 in the Subject.
17690 Normally, characters with the 8th bit set are not allowed in the Subject
17691 header unless they are MIME-encoded.
17692 This option gives you a way to match messages that have Subjects that
17693 contain unencoded 8-bit characters.
17695 This part of the Pattern may have one of three possible values.
17696 The default value is &quot;Don't care&quot;, which matches any message.
17697 The other two values are &quot;Yes&quot;, which means the Subject of
17698 the message must contain unencoded 8-bit characters (characters with the
17699 most significant bit set)
17700 in order to be a match; or &quot;No&quot;, which
17701 means the Subject must <EM>not</EM>
17702 contain unencoded 8-bit characters in order to be a match.
17704 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17705 for more information on Patterns.
17707 Look <A HREF="h_edit_nav_cmds">here</A>
17708 to see the available Editing and Navigation commands.
17710 &lt;End of help on this topic&gt;
17711 </BODY>
17712 </HTML>
17713 ======= h_config_role_bom =======
17714 <HTML>
17715 <HEAD>
17716 <TITLE>Beginning of Month</TITLE>
17717 </HEAD>
17718 <BODY>
17719 <H1>Beginning of Month</H1>
17721 This option gives you a limited ability to take different actions depending on whether
17722 this is the first time Alpine has been run this month or not.
17723 Though it would be nice to have such an option available, this is not the
17724 same as whether or not this is the first time a paricular folder has been
17725 opened this month.
17726 If you want some action (probably Filtering) to take place in a folder each
17727 month, then you will need to be sure that the folder is opened during the
17728 first Alpine session of the month in order for this option to be helpful.
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 this is the first
17733 time Alpine has been run this month;
17734 or &quot;No&quot;, which
17735 means this is not the first time Alpine has been run this month.
17737 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17738 for more information on Patterns.
17740 Here are some technical details.
17741 The way that Alpine decides if it is the beginning of the month or not is
17742 to compare today's date with the date stored in the
17743 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17744 variable in the config file.
17745 If the month of today's date is later than the month stored in the variable,
17746 then this is considered to be the first time you have run Alpine this month, and
17747 that turns the Beginning of the Month option on.
17749 Look <A HREF="h_edit_nav_cmds">here</A>
17750 to see the available Editing and Navigation commands.
17752 &lt;End of help on this topic&gt;
17753 </BODY>
17754 </HTML>
17755 ======= h_config_role_boy =======
17756 <HTML>
17757 <HEAD>
17758 <TITLE>Beginning of Year</TITLE>
17759 </HEAD>
17760 <BODY>
17761 <H1>Beginning of Year</H1>
17763 This option gives you a limited ability to take different actions depending on whether
17764 this is the first time Alpine has been run this year or not.
17765 Though it would be nice to have such an option available, this is not the
17766 same as whether or not this is the first time a paricular folder has been
17767 opened this year.
17768 If you want some action (probably Filtering) to take place in a folder each
17769 year, then you will need to be sure that the folder is opened during the
17770 first Alpine session of the year in order for this option to be helpful.
17772 This part of the Pattern may have one of three possible values.
17773 The default value is &quot;Don't care&quot;, which matches any message.
17774 The other two values are &quot;Yes&quot;, which means this is the first
17775 time Alpine has been run this year;
17776 or &quot;No&quot;, which
17777 means this is not the first time Alpine has been run this year.
17779 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17780 for more information on Patterns.
17782 Here are some technical details.
17783 The way that Alpine decides if it is the beginning of the year or not is
17784 to compare today's date with the date stored in the
17785 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17786 variable in the config file.
17787 If the year of today's date is later than the year stored in the variable,
17788 then this is considered to be the first time you have run Alpine this year, and
17789 that turns the Beginning of the Year option on.
17791 Look <A HREF="h_edit_nav_cmds">here</A>
17792 to see the available Editing and Navigation commands.
17794 &lt;End of help on this topic&gt;
17795 </BODY>
17796 </HTML>
17797 ======= h_config_role_inick =======
17798 <HTML>
17799 <HEAD>
17800 <TITLE>Initialize Values From Role Explained</TITLE>
17801 </HEAD>
17802 <BODY>
17803 <H1>Initialize Values From Role Explained</H1>
17805 This is a power user feature.
17806 You will usually want to leave this field empty.
17807 The value of this field is the nickname of another one of your roles.
17808 The Action values from that other role
17809 are used as the initial values of the Action items for this role.
17810 If you put something in any of the action fields for this role, that will
17811 override whatever was in the corresponding field of the initializer role.
17813 You might use this field if the &quot;Action&quot; part of one of your roles
17814 is something you want to use in more than one role.
17815 Instead of filling in those action values again for each role, you
17816 may give the nickname of the role where the values are filled in.
17817 It's just a shortcut way to define Role Actions.
17819 Here's an example to help explain how this works.
17820 Suppose you have a role with nickname &quot;role1&quot; and role1 has
17821 (among other things)
17823 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
17825 set.
17826 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
17827 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
17828 from role1 by default (and any of the other inheritable action values
17829 that are set).
17830 So if role2 had
17832 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
17834 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
17835 However, if role2 had
17837 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
17839 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
17841 If you wish,
17842 you may choose a nickname from your list of roles by using the
17843 &quot;T&quot; command.
17844 If the role you are using to initialize also has a role it initializes from,
17845 then that initialization happens first.
17846 That is, inheritance works as expected with the grandparent and
17847 great-grandparent (and so on) roles having the expected effect.
17849 Look <A HREF="h_edit_nav_cmds">here</A>
17850 to see the available Editing and Navigation commands.
17852 &lt;End of help on this topic&gt;
17853 </BODY>
17854 </HTML>
17855 ======= h_config_role_setfrom =======
17856 <HTML>
17857 <HEAD>
17858 <TITLE>Set From Explained</TITLE>
17859 </HEAD>
17860 <BODY>
17861 <H1>Set From Explained</H1>
17863 This describes part of the action to be taken if the Pattern for this
17864 role is a match.
17865 This field consists of a single address that will be used as the From
17866 address on the message you are sending.
17867 This should be a fully-qualified address like
17869 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17871 or just
17873 <CENTER><SAMP>user@domain</SAMP></CENTER>
17875 If you wish,
17876 you may choose an address from your address book with the
17877 &quot;T&quot; command.
17879 If this is left blank, then your normal From address will be used.
17881 You may also find it useful to add the changed From address to the
17882 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
17883 configuration option.
17885 Look <A HREF="h_edit_nav_cmds">here</A>
17886 to see the available Editing and Navigation commands.
17888 &lt;End of help on this topic&gt;
17889 </BODY>
17890 </HTML>
17891 ======= h_config_role_setreplyto =======
17892 <HTML>
17893 <HEAD>
17894 <TITLE>Set Reply-To Explained</TITLE>
17895 </HEAD>
17896 <BODY>
17897 <H1>Set Reply-To Explained</H1>
17899 This describes part of the action to be taken if the Pattern for this
17900 role is a match.
17901 This field consists of a single address that will be used as the Reply-To
17902 address on the message you are sending.
17903 This may be a fully-qualified address like
17905 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17907 or just
17909 <CENTER><SAMP>user@domain</SAMP></CENTER>
17911 If you wish,
17912 you may choose an address from your address book with the
17913 &quot;T&quot; command.
17915 If this is left blank, then there won't be a Reply-To address unless
17916 you have configured one specially with the
17917 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></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_setfcc =======
17927 <HTML>
17928 <HEAD>
17929 <TITLE>Set Fcc Explained</TITLE>
17930 </HEAD>
17931 <BODY>
17932 <H1>Set Fcc 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 folder name that will be used in
17937 the Fcc field of the message you are sending.
17938 You may put anything here that you would normally type into the Fcc
17939 field from the composer.
17941 In addition, an fcc of &quot;&quot; (two double quotation marks) means
17942 no Fcc.
17944 A blank field here means that Alpine will use its normal rules for deciding
17945 the default value of the Fcc field.
17946 For many roles, perhaps most, it may make more sense for you to use the
17947 other Alpine facilities for setting the Fcc.
17948 In particular, if you want the Fcc to depend on who you are sending the
17949 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
17950 is probably more useful.
17951 In that case, you would want to leave the Fcc field here blank.
17952 However, if you have a role that depends on who the message you are replying
17953 to was From, or what address that message was sent to;
17954 then it might make sense to set the Fcc for that role here.
17956 If you wish,
17957 you may choose a folder from your folder collections by using the
17958 &quot;T&quot; command.
17960 Look <A HREF="h_edit_nav_cmds">here</A>
17961 to see the available Editing and Navigation commands.
17963 &lt;End of help on this topic&gt;
17964 </BODY>
17965 </HTML>
17966 ======= h_config_role_usesmtp =======
17967 <HTML>
17968 <HEAD>
17969 <TITLE>Use SMTP Server Explained</TITLE>
17970 </HEAD>
17971 <BODY>
17972 <H1>Use SMTP Server Explained</H1>
17974 This describes part of the action to be taken if the Pattern for this
17975 role is a match.
17976 If this field has a value, then it will be used as the SMTP server
17977 to send mail when this role is being used (unless the SMTP server variable
17978 is set in the system-wide fixed configuration file).
17979 It has the same semantics as the
17980 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
17981 variable in the Setup/Config screen.
17983 If you are using this to post from home when you are at home and from
17984 work when you are at work you need to be careful about postponing messages.
17985 When you postpone a composition that was using a role with this variable
17986 set, the SMTP server list will be saved
17987 with the postponed composition.
17988 It cannot be changed later.
17989 Because of this, you may want to make this a list of SMTP servers
17990 with the preferred server at the front of the list and alternate servers
17991 later in the list.
17992 In your &quot;Home&quot; role you would put the home SMTP server first and
17993 the work SMTP server last.
17994 In your &quot;Work&quot; role you would put the work SMTP server first and
17995 the home SMTP server last.
17996 Then if you start a composition as &quot;Work&quot;, postpone
17997 it, and then later resume it from home the work SMTP server will fail but
17998 the home SMTP server later in the list will succeed.
18000 You may be able to simplify things by making the regular
18001 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18002 variable in the Setup/Config screen a list instead of using roles
18003 to set the SMTP server.
18006 Look <A HREF="h_edit_nav_cmds">here</A>
18007 to see the available Editing and Navigation commands.
18009 &lt;End of help on this topic&gt;
18010 </BODY>
18011 </HTML>
18012 ======= h_config_role_usenntp =======
18013 <HTML>
18014 <HEAD>
18015 <TITLE>Use NNTP Server Explained</TITLE>
18016 </HEAD>
18017 <BODY>
18018 <H1>Use NNTP Server Explained</H1>
18020 This describes part of the action to be taken if the Pattern for this
18021 role is a match.
18022 If this field has a value, then it will be used as the NNTP server
18023 to post to newsgroups when this role is being used (unless the NNTP server
18024 variable
18025 is set in the system-wide fixed configuration file).
18026 It has the same semantics as the
18027 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18028 variable in the Setup/Config screen.
18030 This role setting can facilitate posting to the right nntp server for someone
18031 who reads news from various news sources.  The feature
18032 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18033 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18034 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18035 nntp servers for roles may be more desirable for some people.
18037 If you are using this to post from home when you are at home and from
18038 work when you are at work you need to be careful about postponing messages.
18039 When you postpone a composition that was using a role with this variable
18040 set, the NNTP server list will be saved
18041 with the postponed composition.
18042 It cannot be changed later.
18043 Because of this, you may want to make this a list of NNTP servers
18044 with the preferred server at the front of the list and alternate servers
18045 later in the list.
18046 In your &quot;Home&quot; role you would put the home NNTP server first and
18047 the work NNTP server last.
18048 In your &quot;Work&quot; role you would put the work NNTP server first and
18049 the home NNTP server last.
18050 Then if you start a composition as &quot;Work&quot;, postpone
18051 it, and then later resume it from home the work NNTP server will fail but
18052 the home NNTP server later in the list will succeed.
18054 You may be able to simplify things by making the regular
18055 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18056 variable in the Setup/Config screen a list instead of using roles
18057 to set the NNTP server.
18060 Look <A HREF="h_edit_nav_cmds">here</A>
18061 to see the available Editing and Navigation commands.
18063 &lt;End of help on this topic&gt;
18064 </BODY>
18065 </HTML>
18066 ======= h_config_role_setotherhdr =======
18067 <HTML>
18068 <HEAD>
18069 <TITLE>Set Other Headers Explained</TITLE>
18070 </HEAD>
18071 <BODY>
18072 <H1>Set Other Headers Explained</H1>
18074 This describes part of the action to be taken if the Pattern for this
18075 role is a match.
18076 This field gives you a way to set values for headers besides
18077 &quot;From&quot; and &quot;Reply-To&quot;.
18078 If you want to set either of those, use the specific
18079 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18081 This field is similar to the
18082 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18083 Each header you specify here must include the header tag 
18084 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18085 and may optionally include a value for that header.
18086 In order to see these headers when you compose using this role you 
18087 must use the rich header
18088 <!--chtml if pinemode="function_key"-->(F5)
18089 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18090 Here's an example that shows how you might set the To address.
18092 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18094 Headers set in this way are different from headers set with the
18095 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18096 will replace any value that already exists.
18097 For example, if you are Replying to a message there will already be at
18098 least one address in the To header (the address you are Replying to).
18099 However, if you Reply using a role that sets the To header, that role's
18100 To header value will be used instead.
18102 Limitation: Because commas are used to separate the list of
18103 Other Headers, it is not possible to have the value of a
18104 header contain a comma;
18105 nor is there currently an &quot;escape&quot; mechanism provided
18106 to make this work.
18108 Look <A HREF="h_edit_nav_cmds">here</A>
18109 to see the available Editing and Navigation commands.
18111 &lt;End of help on this topic&gt;
18112 </BODY>
18113 </HTML>
18114 ======= h_config_role_setlitsig =======
18115 <HTML>
18116 <HEAD>
18117 <TITLE>Set Literal Signature Explained</TITLE>
18118 </HEAD>
18119 <BODY>
18120 <H1>Set Literal Signature Explained</H1>
18122 This describes part of the action to be taken if the Pattern for this
18123 role is a match.
18124 This field contains the actual text for your signature, as opposed to
18125 the name of a file containing your signature.
18126 If this is defined it takes precedence over any value set in the
18127 &quot;Set Signature&quot; field.
18129 This is simply a different way to store the signature.
18130 The signature is stored inside your Alpine configuration file instead of in
18131 a separate file.
18132 Tokens work the same way they do with
18133 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18134 help text there for more information.
18137 The two character sequence &#92;n (backslash followed by
18138 the character n) will be used to signify a line-break in your signature.
18139 You don't have to enter the &#92;n, but it will be visible in the
18140 CHANGE THIS ROLE RULE window after you are done editing the signature.
18142 Look <A HREF="h_edit_nav_cmds">here</A>
18143 to see the available Editing and Navigation commands.
18145 &lt;End of help on this topic&gt;
18146 </BODY>
18147 </HTML>
18148 ======= h_config_role_setsig =======
18149 <HTML>
18150 <HEAD>
18151 <TITLE>Set Signature Explained</TITLE>
18152 </HEAD>
18153 <BODY>
18154 <H1>Set Signature Explained</H1>
18156 This describes part of the action to be taken if the Pattern for this
18157 role is a match.
18159 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18160 option from Setup/Config
18161 or the &quot;Set LiteralSig&quot; option for this role are defined,
18162 then this option will be ignored.
18163 You can tell that that is the case because the value of this
18164 option will show up as
18166 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18168 You may either use all Literal Signatures (signatures stored in your
18169 configuration file) throughout Alpine, or all signature files.
18170 You can't mix the two.
18172 This field consists of a filename that will be used as the signature
18173 file when using this role.
18175 If the filename is followed by a vertical bar (|) then instead
18176 of reading the contents of the file the file is assumed to be a
18177 program that will produce the text to be used on its standard output.
18178 The program can't have any arguments and doesn't receive any input from Alpine,
18179 but the rest of the processing works as if the contents came from a file.
18181 Instead of storing the data in a local file, the
18182 signature data may be stored remotely in an IMAP folder.
18183 In order to do this, 
18184 you must use a remote name for the signature.
18185 A remote signature name might look like:
18187 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18190 The syntax used here is the same as the syntax used for a remote
18191 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18192 Note that you may not access an existing signature file remotely,
18193 you have to create a new <EM>folder</EM> that contains the signature data.
18194 If the name you use here for the signature data is a remote name, then when
18195 you edit the file using the &quot;F&quot; command the data will
18196 be saved remotely in the folder.
18197 You aren't required to do anything special to create the folder, it
18198 gets created if you use a remote name.
18201 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18202 the name of the file) you have specified.
18203 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18205 Besides containing regular text, a signature file may also
18206 contain (or a signature program may produce) tokens that are replaced with text
18207 that depends on the message you are replying to or forwarding.
18208 The tokens all look like _word_ (a word surrounded by underscores).
18209 For example, if the token
18211 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18213 is included in the text of the signature file, then when you reply to
18214 or forward a message, the token will be replaced with the actual date
18215 the message you are replying to or forwarding was sent.
18217 If you use a role that has a signature file for a plain composition
18218 (that is, not a reply or forward) then there is no original message, so
18219 any tokens that depend on the message will be replaced with nothing.
18220 So if you want a signature file to be useful for new compositions it
18221 shouldn't include any of the tokens that depend on the message being
18222 replied to or forwarded.
18224 The list of available tokens is
18225 <A HREF="h_index_tokens">here</A>.
18227 Actually, for the adventurous, there is a way to conditionally include text based
18228 on whether or not a token would result in specific replacement text.
18229 For example, you could include some text based on whether or not
18230 the _NEWS_ token would result in any newsgroups if it was used.
18231 It's explained in detail
18232 <A HREF="h_reply_token_conditionals">here</A>.
18234 In the very unlikely event that you want to include a literal token in
18235 a signature file, you must precede it with a backslash character.
18236 For example, to include the literal text _DATE_ you must actually use
18237 &#92;_DATE_.
18238 It is not possible to have a literal backslash followed by an expanded token.
18240 A blank field here means that Alpine will use its normal rules for deciding
18241 which file (if any) to use for the signature file.
18243 An alternate method for storing the signature is available in
18244 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18246 Look <A HREF="h_edit_nav_cmds">here</A>
18247 to see the available Editing and Navigation commands.
18249 &lt;End of help on this topic&gt;
18250 </BODY>
18251 </HTML>
18252 ======= h_config_role_settempl =======
18253 <HTML>
18254 <HEAD>
18255 <TITLE>Set Template Explained</TITLE>
18256 </HEAD>
18257 <BODY>
18258 <H1>Set Template Explained</H1>
18260 This describes part of the action to be taken if the Pattern for this
18261 role is a match.
18262 This field consists of a filename that will be used as the template
18263 file when using this role.
18264 The template file is a file that is included at the top of the message you
18265 are composing.
18267 If the filename is followed by a vertical bar (|) then instead
18268 of reading the contents of the file the file is assumed to be a
18269 program that will produce the text to be used on its standard output.
18270 The program can't have any arguments and doesn't receive any input from Alpine,
18271 but the rest of the processing works as if the contents came from a file.
18273 Instead of storing the data in a local file, the
18274 template may be stored remotely in an IMAP folder.
18275 In order to do this, 
18276 you must use a remote name for the template.
18277 A remote template name might look like:
18279 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18282 The syntax used here is the same as the syntax used for a remote
18283 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18284 Note that you may not access an existing template file remotely,
18285 you have to create a new <EM>folder</EM> that contains the template data.
18286 If the name you use here for the template is a remote name, then when
18287 you edit the file using the &quot;F&quot; command the data will
18288 be saved remotely in the folder.
18289 You aren't required to do anything special to create the folder, it
18290 gets created if you use a remote name.
18292 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18293 the name of the file) you have specified.
18294 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18296 Besides containing regular text, the template file may also
18297 contain (or a template file program may produce) tokens that are replaced with text
18298 that depends on the message you are replying to or forwarding.
18299 The tokens all look like _word_ (a word surrounded by underscores).
18300 For example, if the token
18302 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18304 is included in the text of the template file, then when you reply to
18305 or forward a message, the token will be replaced with the actual date
18306 the message you are replying to or forwarding was sent.
18308 If you use a role that has a template file for a plain composition
18309 (that is, not a reply or forward) then there is no original message, so
18310 any tokens that depend on the message will be replaced with nothing.
18311 So if you want a template file to be useful for new compositions it
18312 shouldn't include any of the tokens that depend on the message being
18313 replied to or forwarded.
18315 The list of available tokens is
18316 <A HREF="h_index_tokens">here</A>.
18318 Actually, for the adventurous, there is a way to conditionally include text based
18319 on whether or not a token would result in specific replacement text.
18320 For example, you could include some text based on whether or not
18321 the _NEWS_ token would result in any newsgroups if it was used.
18322 It's explained in detail
18323 <A HREF="h_reply_token_conditionals">here</A>.
18325 In the very unlikely event that you want to include a literal token in
18326 a template file, you must precede it with a backslash character.
18327 For example, to include the literal text _DATE_ you must actually use
18328 &#92;_DATE_.
18329 It is not possible to have a literal backslash followed by an expanded token.
18331 A blank template field means that Alpine will not use a template file when
18332 this role is being used.
18334 Look <A HREF="h_edit_nav_cmds">here</A>
18335 to see the available Editing and Navigation commands.
18337 &lt;End of help on this topic&gt;
18338 </BODY>
18339 </HTML>
18340 ======= h_config_filt_stat_imp =======
18341 <HTML>
18342 <HEAD>
18343 <TITLE>Set Important Status Explained</TITLE>
18344 </HEAD>
18345 <BODY>
18346 <H1>Set Important Status Explained</H1>
18348 This describes part of the action to be taken if the Pattern for this
18349 filter is a match.
18350 If set to &quot;Don't change it&quot; then this does nothing.
18351 If set to &quot;Set this state&quot; then the Important flag is set
18352 for the matching message.
18353 If set to &quot;Clear this state&quot; then the Important flag is cleared
18354 for the matching message.
18355 The important flag usually causes an asterisk to show up in the MESSAGE
18356 INDEX.
18357 It may also be useful when selecting a set of messages
18358 with the Select command.
18360 Look <A HREF="h_edit_nav_cmds">here</A>
18361 to see the available Editing and Navigation commands.
18363 &lt;End of help on this topic&gt;
18364 </BODY>
18365 </HTML>
18366 ======= h_config_filt_stat_new =======
18367 <HTML>
18368 <HEAD>
18369 <TITLE>Set New Status Explained</TITLE>
18370 </HEAD>
18371 <BODY>
18372 <H1>Set New Status Explained</H1>
18374 This describes part of the action to be taken if the Pattern for this
18375 filter is a match.
18376 If set to &quot;Don't change it&quot; then this does nothing.
18377 If set to &quot;Set this state&quot; then the
18378 matching message is marked New.
18379 If set to &quot;Clear this state&quot; then the
18380 matching message is marked Seen.
18382 Look <A HREF="h_edit_nav_cmds">here</A>
18383 to see the available Editing and Navigation commands.
18385 &lt;End of help on this topic&gt;
18386 </BODY>
18387 </HTML>
18388 ======= h_config_filt_stat_ans =======
18389 <HTML>
18390 <HEAD>
18391 <TITLE>Set Answered Status Explained</TITLE>
18392 </HEAD>
18393 <BODY>
18394 <H1>Set Answered Status Explained</H1>
18396 This describes part of the action to be taken if the Pattern for this
18397 filter is a match.
18398 If set to &quot;Don't change it&quot; then this does nothing.
18399 If set to &quot;Set this state&quot; then the Answered flag is set
18400 for the matching message.
18401 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18402 for the matching message.
18404 Look <A HREF="h_edit_nav_cmds">here</A>
18405 to see the available Editing and Navigation commands.
18407 &lt;End of help on this topic&gt;
18408 </BODY>
18409 </HTML>
18410 ======= h_config_filt_stat_del =======
18411 <HTML>
18412 <HEAD>
18413 <TITLE>Set Deleted Status Explained</TITLE>
18414 </HEAD>
18415 <BODY>
18416 <H1>Set Deleted Status Explained</H1>
18418 This describes part of the action to be taken if the Pattern for this
18419 filter is a match.
18420 If set to &quot;Don't change it&quot; then this does nothing.
18421 If set to &quot;Set this state&quot; then the
18422 matching message is marked Deleted.
18423 If set to &quot;Clear this state&quot; then the
18424 matching message is marked UnDeleted.
18426 You should not use this option unless you are prepared to have matching
18427 messages expunged from the folder permanently.
18428 For example, if you type the Expunge command, this filter is applied
18429 before the expunge, so matching messages will be marked Deleted and then
18430 will be permanently expunged from the folder.
18431 However, since the index isn't redrawn in between the time that the message
18432 is marked Deleted and the time that you are asked to expunge, the only
18433 indication that you are expunging the message comes in the number of messages
18434 being expunged.
18435 The same thing may happen when you close a folder.
18436 It is also possible that an expunge not initiated by you will
18437 delete matching messages.
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_role_scoreval =======
18446 <HTML>
18447 <HEAD>
18448 <TITLE>Score Value Explained</TITLE>
18449 </HEAD>
18450 <BODY>
18451 <H1>Score Value Explained</H1>
18453 A message's score is the sum of the Score Values from all of the Scoring rules
18454 with Patterns that match the message.
18455 The value you give here is the Score Value associated with this rule.
18456 A Score Value is an integer between -100 and 100, with the default
18457 value of zero.
18459 Alternatively, if the
18460 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18461 field is defined
18462 (on the line right below the &quot;Score Value&quot; field)
18463 then the &quot;Score Value&quot; is ignored and
18464 the &quot;Score From Header&quot; field is used instead.
18466 Look <A HREF="h_edit_nav_cmds">here</A>
18467 to see the available Editing and Navigation commands.
18469 &lt;End of help on this topic&gt;
18470 </BODY>
18471 </HTML>
18472 ======= h_config_role_scorehdrtok =======
18473 <HTML>
18474 <HEAD>
18475 <TITLE>Score Value From Header Explained</TITLE>
18476 </HEAD>
18477 <BODY>
18478 <H1>Score Value From Header Explained</H1>
18480 This option provides a way to use a number that appears in the headers of your
18481 messages as the message's score, or as a component of that score.
18482 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18483 The idea behind this option is that there may be a score embedded in the
18484 headers of messages that has already been calculated outside of Alpine.
18485 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18486 somewhere in that header there is a score.
18488 The value for this option is the name of the header followed by parentheses
18489 with two arguments inside:
18491 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18493 No space is allowed between the comma and the start of the field_separators.
18494 It would be interpreted as the first separator if it was there.
18495 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18496 starts after that and goes to the second separator, and so on.
18497 It's easier to explain with examples.
18499 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18501 In the above example the header that is used is the &quot;X-Spam&quot; header.
18502 The value of that header (the part after the colon and the space) is split
18503 into fields separated by spaces.
18505 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18507 The second field is selected and converted to an integer. It only makes sense
18508 if Field2 really is an integer.
18510 Here's an example of a SpamAssassin header.
18511 The exact look of the header will vary, but if your incoming mail
18512 contains headers that look like the following
18514 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18516 you might want to use the hits value as a score.
18517 Since the score is an integer value you can't make use of the decimal part of
18518 the number, but
18519 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18520 and &quot;.&quot; as your separators.
18522 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18524 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18525 hits.
18526 The second field is &quot;10&quot; so the score value would be 10.
18528 Another example we've seen has headers that look like
18530 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18532 Because there are two equals before the 7% the value
18534 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18536 should capture the probability as the score.
18538 The Score From Header scoring value actually works just like the
18539 regular Score Value in that the rest of the pattern has to match before
18540 it is used and the scores from all the different scoring rules that
18541 match for a particular message are added together.
18542 When using the Score From Header method it may (or may not) make sense to
18543 use only a single scoring rule with a pattern that matches every message.
18545 Look <A HREF="h_edit_nav_cmds">here</A>
18546 to see the available Editing and Navigation commands.
18548 &lt;End of help on this topic&gt;
18549 </BODY>
18550 </HTML>
18551 ======= h_config_role_replyuse =======
18552 <HTML>
18553 <HEAD>
18554 <TITLE>Reply Use Explained</TITLE>
18555 </HEAD>
18556 <BODY>
18557 <H1>Reply Use Explained</H1>
18559 This option determines how this particular role will be used when Replying
18560 to a message.
18561 There are three possible values for this option.
18562 The value &quot;Never&quot;
18563 means that this role will not be a candidate for use when Replying.
18564 The role's Pattern will not be checked for a match, however the role will
18565 be available to be manually switched to if there is a confirmation prompt.
18568 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18569 mean that you do want to consider this role when Replying.
18570 For either of these settings, the role's Pattern will be compared with
18571 the message being replied to.
18572 If there is a match then this role will either be used without confirmation
18573 or will be the default when confirmation is asked for, depending on
18574 which of the two options is selected.
18575 If confirmation is requested, you will also have a chance to
18576 manually change the role to any one of your other roles.
18579 You won't be prompted for confirmation if none of your role Patterns
18580 match the message being replied to.
18581 This is independent of the value of the current option.
18582 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18583 feature may be used to change this behavior.
18585 &lt;End of help on this topic&gt;
18586 </BODY>
18587 </HTML>
18588 ======= h_config_role_forwarduse =======
18589 <HTML>
18590 <HEAD>
18591 <TITLE>Forward Use Explained</TITLE>
18592 </HEAD>
18593 <BODY>
18594 <H1>Forward Use Explained</H1>
18596 This option determines how this particular role will be used when Forwarding
18597 a message.
18598 There are three possible values for this option.
18599 The value &quot;Never&quot;
18600 means that this role will not be a candidate for use when Forwarding.
18601 The role's Pattern will not be checked for a match, however the role will
18602 be available to be manually switched to if there is a confirmation prompt.
18605 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18606 mean that you do want to consider this role when Forwarding.
18607 For either of these settings, the role's Pattern will be compared with
18608 the message being forwarded.
18609 If there is a match then this role will either be used without confirmation
18610 or will be the default when confirmation is asked for, depending on
18611 which of the two options is selected.
18612 If confirmation is requested, you will also have a chance to
18613 manually change the role to any one of your other roles.
18616 You won't be prompted for confirmation if none of your role Patterns
18617 match the message being forwarded.
18618 This is independent of the value of the current option.
18619 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18620 feature may be used to change this behavior.
18622 &lt;End of help on this topic&gt;
18623 </BODY>
18624 </HTML>
18625 ======= h_config_role_composeuse =======
18626 <HTML>
18627 <HEAD>
18628 <TITLE>Compose Use Explained</TITLE>
18629 </HEAD>
18630 <BODY>
18631 <H1>Compose Use Explained</H1>
18633 This option determines how this particular role will be used when Composing
18634 a new message using the &quot;Compose&quot; command.
18635 This does not affect what happens when using the &quot;Role&quot; command
18636 to compose a new message.
18637 The &quot;Role&quot; command allows you to select a role from all of the
18638 roles you have defined, regardless of what Uses you've assigned to those
18639 roles.
18642 There are three possible values for this option.
18643 The value &quot;Never&quot;
18644 means that this role will not be a candidate for use when Composing.
18645 The role's Current Folder Type will not be checked for a match, however the role
18646 will be available to be manually switched to if there is a confirmation prompt.
18649 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18650 mean that you do want to consider this role when Composing.
18651 For either of these settings,
18652 the role's Current Folder Type will be checked (since there is no message
18653 to compare with, the rest of the Pattern is considered a match).
18654 If there is a match then this role will either be used without confirmation
18655 or will be the default when confirmation is asked for, depending on
18656 which of the two options is selected.
18657 If confirmation is requested, you will also have a chance to
18658 manually change the role to any one of your other roles.
18661 When using the Compose command the role checking is a little different
18662 because there is no message being replied to or forwarded.
18663 Because of this the Current Folder Type is checked but the header pattern
18664 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18665 A role is considered to be a match if it is a candidate for Compose Use and
18666 its Current Folder Type matches the currently open folder.
18667 This could be useful if you want to set a role based on the folder you
18668 are reading, or the type of folder you are reading.
18671 You won't be prompted for confirmation if none of your role Patterns
18672 are a match.
18673 This is independent of the value of the current option.
18674 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18675 feature may be used to change this behavior.
18677 &lt;End of help on this topic&gt;
18678 </BODY>
18679 </HTML>
18680 ======= h_config_filter_folder =======
18681 <HTML>
18682 <HEAD>
18683 <TITLE>Filter Folder Explained</TITLE>
18684 </HEAD>
18685 <BODY>
18686 <H1>Filter Folder Explained</H1>
18688 When the Filter Action is set to &quot;Move&quot;,
18689 the folder or folders specified here will be used to store messages matching
18690 the provided pattern.
18693 If you set the Filter Action to &quot;Move&quot; you must give a folder name
18694 here.
18697 If you wish,
18698 you may choose a folder from your folder collections by using the
18699 &quot;T&quot; command.
18701 Besides regular text, the folder name may also contain
18702 tokens that are replaced with text representing the current date
18703 when you run Alpine.
18704 For example, if the folder name you use is
18706 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
18708 that is replaced with something like
18710 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
18714 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
18716 becomes
18718 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
18720 The token names must be surrounded by underscores in order to be recognized
18721 as tokens.
18722 The tokens that may be used are those that are derived from the current date.
18723 They're listed near the bottom of the list of tokens give
18724 <A HREF="h_index_tokens">here</A>.
18726 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18727 for more information on Patterns.
18729 Look <A HREF="h_edit_nav_cmds">here</A>
18730 to see the available Editing and Navigation commands.
18732 &lt;End of help on this topic&gt;
18733 </BODY>
18734 </HTML>
18735 ======= h_config_filter_kw_set =======
18736 <HTML>
18737 <HEAD>
18738 <TITLE>Set These Keywords Explained</TITLE>
18739 </HEAD>
18740 <BODY>
18741 <H1>Set These Keywords Explained</H1>
18743 This describes part of the action to be taken if the Pattern for this
18744 filter is a match.
18745 Read a little about keywords in the help text for the
18746 <A HREF="h_common_flag">Flag</A> command.
18747 This option is a list of keywords that will be Set when there is a match.
18748 If you wish, you may choose keywords from the list of keywords you have
18749 defined with the &quot;T&quot; command.
18750 You may add new keywords by defining them in the
18751 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18752 If you have given a keyword a nickname when configuring it,
18753 that nickname may be used instead of the actual keyword.
18756 Look <A HREF="h_edit_nav_cmds">here</A>
18757 to see the available Editing and Navigation commands.
18759 &lt;End of help on this topic&gt;
18760 </BODY>
18761 </HTML>
18762 ======= h_config_filter_kw_clr =======
18763 <HTML>
18764 <HEAD>
18765 <TITLE>Clear These Keywords Explained</TITLE>
18766 </HEAD>
18767 <BODY>
18768 <H1>Clear These Keywords Explained</H1>
18770 This describes part of the action to be taken if the Pattern for this
18771 filter is a match.
18772 Read a little about keywords in the help text for the
18773 <A HREF="h_common_flag">Flag</A> command.
18774 This option is a list of keywords that will be Cleared when there is a match.
18775 If you wish, you may choose keywords from the list of keywords you have
18776 defined with the &quot;T&quot; command.
18777 You may add new keywords by defining them in the
18778 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18779 If you have given a keyword a nickname when configuring it,
18780 that nickname may be used instead of the actual keyword.
18783 Look <A HREF="h_edit_nav_cmds">here</A>
18784 to see the available Editing and Navigation commands.
18786 &lt;End of help on this topic&gt;
18787 </BODY>
18788 </HTML>
18789 ======= h_index_tokens =======
18790 <HTML>
18791 <HEAD>
18792 <TITLE>Tokens for Index and Replying</TITLE>
18793 </HEAD>
18794 <BODY>
18796 This set of special tokens may be used in the
18797 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
18798 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
18799 in signature files,
18800 in template files used in
18801 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
18802 that is the target of a Filter Rule.
18803 Some of them aren't available in all situations.
18805 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
18806 option, but they must be surrounded by underscores for the
18807 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
18808 and in the target of Filter Rules.
18812 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
18814 <DL>
18815 <DT>SUBJECT</DT>
18816 <DD>
18817 This token represents the Subject the sender gave the message.
18818 Alternatives for use in the index screen are
18819 SUBJKEY, SUBJKEYINIT, SUBJECTTEXT, SUBJKEYTEXT, and SUBJKEYINITTEXT.
18820 You may color the subject text in the MESSAGE INDEX screen differently by using the
18821 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
18822 <A HREF="h_config_index_opening_color">Index Opening Color</A>
18823 options available from
18824 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18825 </DD>
18827 <DT>FROM</DT>
18828 <DD>
18829 This token represents the personal name (or email address if the name
18830 is unavailable) of the person specified in the message's &quot;From:&quot;
18831 header field.
18832 You may color the from text in the MESSAGE INDEX screen differently by using the
18833 <A HREF="h_config_index_from_color">Index From Color</A>
18834 option available from
18835 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18836 </DD>
18838 <DT>ADDRESS</DT>
18839 <DD>
18840 This is similar to the &quot;FROM&quot; token, only it is always the
18841 email address, never the personal name.
18842 For example, &quot;mailbox@domain&quot;.
18843 </DD>
18845 <DT>MAILBOX</DT>
18846 <DD>
18847 This is the same as the &quot;ADDRESS&quot; except that the 
18848 domain part of the address is left off.
18849 For example, &quot;mailbox&quot;.
18850 </DD>
18852 <DT>SENDER</DT>
18853 <DD>
18854 This token represents the personal name (or email address) of the person
18855 listed in the message's &quot;Sender:&quot; header field.
18856 </DD>
18858 <DT>TO</DT>
18859 <DD>
18860 This token represents the personal names (or email addresses if the names
18861 are unavailable) of the persons specified in the
18862 message's &quot;To:&quot; header field.
18863 </DD>
18865 <DT>NEWSANDTO</DT>
18866 <DD>
18867 This token represents the newsgroups from the
18868 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18869 the personal names (or email addresses if the names
18870 are unavailable) of the persons specified in the
18871 message's &quot;To:&quot; header field.
18872 </DD>
18874 <DT>TOANDNEWS</DT>
18875 <DD>
18876 Same as &quot;NEWSANDTO&quot; except in the opposite order.
18877 </DD>
18879 <DT>NEWS</DT>
18880 <DD>
18881 This token represents the newsgroups from the
18882 message's &quot;Newsgroups:&quot; header field.
18883 </DD>
18885 <DT>CC</DT>
18886 <DD>
18887 This token represents the personal names (or email addresses if the names
18888 are unavailable) of the persons specified in the
18889 message's &quot;Cc:&quot; header field.
18890 </DD>
18892 <DT>RECIPS</DT>
18893 <DD>
18894 This token represents the personal names (or email addresses if the names
18895 are unavailable) of the persons specified in both the
18896 message's &quot;To:&quot; header field and
18897 the message's &quot;Cc:&quot; header field.
18898 </DD>
18900 <DT>NEWSANDRECIPS</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; and &quot;Cc:&quot; header fields.
18907 </DD>
18909 <DT>RECIPSANDNEWS</DT>
18910 <DD>
18911 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
18912 </DD>
18914 <DT>INIT</DT>
18915 <DD>
18916 This token represents the initials from the personal name
18917 of the person specified in the message's &quot;From:&quot;
18918 header field.
18919 If there is no personal name, it is blank.
18920 </DD>
18922 <DT>DATE</DT>
18923 <DD>
18924 This token represents the date on which the message was sent, according
18925 to the &quot;Date&quot; header field.
18926 It has the format MMM DD. For example, &quot;Oct 23&quot;.
18927 The feature
18928 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
18929 which adjusts for the timezone the message was sent from,
18930 may have an effect on the value of this token as well as the values of
18931 all of the other DATE or TIME tokens.
18932 Some of the DATE and TIME tokens are displayed in a locale-specific
18933 way unless the option
18934 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
18935 </DD>
18937 <DT>SMARTDATE</DT>
18938 <DD>
18939 This token represents the date on which the message was sent, according
18940 to the &quot;Date&quot; header field.
18941 It is &quot;Today&quot; if the message was sent today,
18942 &quot;Yesterday&quot; for yesterday,
18943 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
18944 message is from last year and is more than six months old it includes the year, as well.
18945 See the SMARTDATE alternatives below, as well.
18946 </DD>
18948 <DT>SMARTTIME</DT>
18949 <DD>
18950 This token represents the most relevant elements of the date on which
18951 the message was sent (according to the &quot;Date&quot; header field),
18952 in a compact form. If the message was sent today, only the time is used
18953 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
18954 the past week, the day of the week and the hour are used
18955 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
18956 given as date, month, and year (e.g. &quot;23Aug00&quot;,
18957 &quot;9Apr98&quot;).
18958 </DD>
18960 <DT>SMARTDATETIME</DT>
18961 <DD>
18962 This is a combination of SMARTDATE and SMARTTIME.
18963 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
18964 case it is SMARTTIME.
18965 See the SMARTDATETIME alternatives below, as well.
18966 </DD>
18968 <DT>DATEISO</DT>
18969 <DD>
18970 This token represents the date on which the message was sent, according
18971 to the &quot;Date&quot; header field.
18972 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
18973 </DD>
18975 <DT>SHORTDATEISO</DT>
18976 <DD>
18977 This token represents the date on which the message was sent, according
18978 to the &quot;Date&quot; header field.
18979 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
18980 </DD>
18982 <DT>SHORTDATE1</DT>
18983 <DD>
18984 This token represents the date on which the message was sent, according
18985 to the &quot;Date&quot; header field.
18986 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
18987 </DD>
18989 <DT>SHORTDATE2</DT>
18990 <DD>
18991 This token represents the date on which the message was sent, according
18992 to the &quot;Date&quot; header field.
18993 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
18994 </DD>
18996 <DT>SHORTDATE3</DT>
18997 <DD>
18998 This token represents the date on which the message was sent, according
18999 to the &quot;Date&quot; header field.
19000 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19001 </DD>
19003 <DT>SHORTDATE4</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 YY.MM.DD. For example, &quot;98.10.23&quot;.
19008 </DD>
19010 <DT>LONGDATE</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 MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19015 </DD>
19017 <DT>SMARTDATE alternatives</DT>
19018 <DD>
19019 There are several versions of SMARTDATE that are all the same except
19020 for the way they format dates far in the past.
19021 SMARTDATE formats the date using the information from your locale settings
19022 to format the date string. It may end up formatting dates so that they look
19023 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19024 The feature
19025 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19026 may have an affect on the values of these tokens.
19027 If you want more control you may use one of the following.
19028   <DL>
19029   <DT>SMARTDATE</DT> <DD>If the option
19030 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19031 then this will be locale specific. Control this with the
19032 LC_TIME locale setting on a UNIX system. On Windows
19033 the Regional Options control panel may be used to set the Short date
19034 format. At the programming level, the strftime routine is what Alpine
19035 uses to print the date.
19036 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19037 to SMARTDATES1.</DD>
19038   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19039   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19040   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19041   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19042   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19043   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19044   </DL>
19045 </DD>
19047 <DT>SMARTDATETIME alternatives</DT>
19048 <DD>
19049 There are several versions of SMARTDATETIME that are all very similar.
19050 The ones that end in 24 use a 24-hour clock for Today's messages instead
19051 of a 12-hour clock.
19052 The other variation is
19053 for the way they format dates far in the past.
19054 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19055 to format the date string. It may end up formatting dates so that they look
19056 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19057 The feature
19058 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19059 may have an affect on the values of these tokens.
19060 The possible choices are:
19061   <DL>
19062   <DT>SMARTDATETIME</DT> <DD>If the option
19063 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19064 then this will be locale specific. Control this with the
19065 LC_TIME locale setting on a UNIX system. On Windows
19066 the Regional Options control panel may be used to set the Short date
19067 format. At the programming level, the strftime routine is what Alpine
19068 uses to print the date.
19069 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19070 to SMARTDATETIMES1.</DD>
19071   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19072   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19073   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19074   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19075   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19076   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19077   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19078   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19079   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19080   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19081   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19082   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19083   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19084   </DL>
19085 </DD>
19087 <DT>DAYDATE</DT>
19088 <DD>
19089 This token represents the date on which the message was sent, according
19090 to the &quot;Date&quot; header field.
19091 It looks like &quot;Sat, 23 Oct 1998&quot;.
19092 This token is never converted in any locale-specific way.
19093 </DD>
19095 <DT>PREFDATE</DT>
19096 <DD>
19097 This token represents the date on which the message was sent, according
19098 to the &quot;Date&quot; header field.
19099 It is your operating system's idea of the preferred date representation for the current locale.
19100 Internally it uses the %x version of the date from the strftime routine.
19101 </DD>
19103 <DT>PREFTIME</DT>
19104 <DD>
19105 This token represents the time at which the message was sent, according
19106 to the &quot;Date&quot; header field.
19107 It is the preferred time representation for the current locale.
19108 Internally it uses the %X version of the time from the strftime routine.
19109 </DD>
19111 <DT>PREFDATETIME</DT>
19112 <DD>
19113 This token represents the date and time at which the message was sent, according
19114 to the &quot;Date&quot; header field.
19115 It is the preferred date and time representation for the current locale.
19116 Internally it uses the %c version of the time from the strftime routine.
19117 </DD>
19119 <DT>DAY</DT>
19120 <DD>
19121 This token represents the day of the month on which the message was sent,
19122 according to the &quot;Date&quot; header field.
19123 For example, &quot;23&quot; or &quot;9&quot;.
19124 </DD>
19126 <DT>DAY2DIGIT</DT>
19127 <DD>
19128 This token represents the day of the month on which the message was sent,
19129 according to the &quot;Date&quot; header field.
19130 For example, &quot;23&quot; or &quot;09&quot;.
19131 It is always 2 digits.
19132 </DD>
19134 <DT>DAYORDINAL</DT>
19135 <DD>
19136 This token represents the ordinal number that is the day of
19137 the month on which the message was sent,
19138 according to the &quot;Date&quot; header field.
19139 For example, &quot;23rd&quot; or &quot;9th&quot;.
19140 </DD>
19142 <DT>DAYOFWEEK</DT>
19143 <DD>
19144 This token represents the day of the week on which the message was sent,
19145 according to the &quot;Date&quot; header field.
19146 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19147 </DD>
19149 <DT>DAYOFWEEKABBREV</DT>
19150 <DD>
19151 This token represents the day of the week on which the message was sent,
19152 according to the &quot;Date&quot; header field.
19153 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19154 </DD>
19156 <DT>MONTHABBREV</DT>
19157 <DD>
19158 This token represents the month the message was sent, according
19159 to the &quot;Date&quot; header field.
19160 For example, &quot;Oct&quot;.
19161 </DD>
19163 <DT>MONTHLONG</DT>
19164 <DD>
19165 This token represents the month in which the message was sent, according
19166 to the &quot;Date&quot; header field.
19167 For example, &quot;October&quot;.
19168 </DD>
19170 <DT>MONTH</DT>
19171 <DD>
19172 This token represents the month in which the message was sent, according
19173 to the &quot;Date&quot; header field.
19174 For example, &quot;10&quot; or &quot;9&quot;.
19175 </DD>
19177 <DT>MONTH2DIGIT</DT>
19178 <DD>
19179 This token represents the month in which the message was sent, according
19180 to the &quot;Date&quot; header field.
19181 For example, &quot;10&quot; or &quot;09&quot;.
19182 It is always 2 digits.
19183 </DD>
19185 <DT>YEAR</DT>
19186 <DD>
19187 This token represents the year the message was sent, according
19188 to the &quot;Date&quot; header field.
19189 For example, &quot;1998&quot; or &quot;2001&quot;.
19190 </DD>
19192 <DT>YEAR2DIGIT</DT>
19193 <DD>
19194 This token represents the year the message was sent, according
19195 to the &quot;Date&quot; header field.
19196 For example, &quot;98&quot; or &quot;01&quot;.
19197 It is always 2 digits.
19198 </DD>
19200 <DT>TIME24</DT>
19201 <DD>
19202 This token represents the time at which the message was sent, according
19203 to the &quot;Date&quot; header field.
19204 There is no adjustment made for different time zones, so you'll get
19205 the time the message was sent according to the time zone the sender
19206 was in.
19207 It has the format HH:MM. For example, &quot;17:28&quot;.
19208 </DD>
19210 <DT>TIME12</DT>
19211 <DD>
19212 This token represents the time at which the message was sent, according
19213 to the &quot;Date&quot; header field.
19214 This time is for a 12 hour clock.
19215 It has the format HH:MMpm.
19216 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19217 </DD>
19219 <DT>TIMEZONE</DT>
19220 <DD>
19221 This token represents the numeric timezone from
19222 the &quot;Date&quot; header field.
19223 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19224 </DD>
19226 </DL>
19229 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19231 <DL>
19232 <DT>MSGNO</DT>
19233 <DD>
19234 This token represents the message's current position in the folder that,
19235 of course, may change as the folder is sorted or new mail arrives.
19236 </DD>
19238 <DT>STATUS</DT>
19239 <DD>
19240 This token represents a three character wide field displaying various
19241 aspects of the message's state.
19242 The first character is either blank,
19243 a '*' for message marked Important, or a '+' indicating a message
19244 addressed directly to you (as opposed to your having received it via a
19245 mailing list, for example).
19246 When the feature
19247 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19248 is set, if the first character would have been
19249 blank then it will instead be a '-' if the message is cc'd to you.
19250 The second character is typically blank,
19251 though the arrow cursor may occupy it if either the 
19252 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19253 or the
19254 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19255 is set (or you actually are on a slow link).
19256 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19257 '<A HREF="h_flag_answered">A</A>' (Answered),
19258 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19259 '<A HREF="h_flag_new">N</A>' (New), or blank.
19261 If you are using a threaded view of the index and this message is at the
19262 top of a collapsed portion of a thread,
19263 then this token refers to all of the messages in the collapsed portion of
19264 the thread instead of just the top message.
19265 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19266 are marked Important, else a '+' if any of the messages are addressed
19267 to you, else a '-' if any of the messages are cc'd to you.
19268 The third character will be a 'D' if <EM>all</EM> of the messages
19269 in the collapsed thread are marked deleted,
19270 an 'A' if <EM>all</EM> of the messages
19271 in the collapsed thread are marked answered,
19272 it will be an 'N' if any of
19273 the messages are undeleted and unseen, and it will be blank otherwise.
19274 </DD>
19276 <DT>FULLSTATUS</DT>
19277 <DD>
19278 This token represents a less abbreviated alternative
19279 to the &quot;STATUS&quot; token.
19280 It is six characters wide.
19281 The first character is '+', '-', or blank, the
19282 second blank, the third either '*' or blank, the fourth
19283 '<A HREF="h_flag_new">N</A>' or blank,
19284 the fifth '<A HREF="h_flag_answered">A</A>'
19285 or blank, and the sixth character is
19286 either '<A HREF="h_flag_deleted">D</A>' or
19287 blank.
19289 If you are using a threaded view of the index and this message is at the
19290 top of a collapsed portion of a thread,
19291 then this token refers to all of the messages in the collapsed portion of
19292 the thread instead of just the top message.
19293 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19294 of the messages in the collapsed thread are addressed to you or cc'd to you.
19295 The third character will be '*' if any of the messages are marked
19296 Important.
19297 The fourth character will be 'N' if all of the messages in the thread
19298 are New, else 'n' if some of the messages in the thread are New, else blank.
19299 The fifth character will be 'A' or 'a' or blank, and the sixth character
19300 will be 'D' or 'd' or blank.
19301 </DD>
19303 <DT>IMAPSTATUS</DT>
19304 <DD>
19305 This token represents an even less abbreviated alternative to the
19306 &quot;STATUS&quot; token.
19307 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19308 an 'N' if the message is new to this folder since the last time
19309 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19310 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19311 new to the folder since it was last opened <EM>but</EM> has not been
19312 viewed, or a blank if the message has been in the folder since it was
19313 last opened and has been viewed.
19315 If you are using a threaded view of the index and this message is at the
19316 top of a collapsed portion of a thread,
19317 then the fourth character will be
19318 'N' if all of the messages in the thread are unseen and recent;
19319 else 'n' if some of the messages in the thread are unseen and recent;
19320 else 'U' if all of the messages in the thread are unseen and not recent;
19321 else 'u' if some of the messages in the thread are unseen and not recent;
19322 else 'R' if all of the messages in the thread are seen and recent;
19323 else 'r' if some of the messages in the thread are seen and recent;
19324 else blank.
19325 </DD>
19327 <DT>SHORTIMAPSTATUS</DT>
19328 <DD>
19329 This is the same as the last four of the six characters of IMAPSTATUS,
19330 so the '+' To Me information will be missing.
19331 </DD>
19333 <DT>SIZE</DT>
19334 <DD>
19335 This token represents the total size, in bytes, of the message.
19336 If a &quot;K&quot; (Kilobyte)
19337 follows the number, the size is approximately 1,000
19338 times that many bytes (rounded to the nearest 1,000).
19339 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19340 1,000,000 times that many bytes.
19341 Commas are not used in this field.
19342 This field is seven characters wide, including the enclosing parentheses.
19343 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19344 The progression of sizes used looks like:
19347 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19349 </DD>
19351 <DT>SIZECOMMA</DT>
19352 <DD>
19353 This token represents the total size, in bytes, of the message.
19354 If a &quot;K&quot; (Kilobyte)
19355 follows the number, the size is approximately 1,000
19356 times that many bytes (rounded to the nearest 1,000).
19357 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19358 1,000,000 times that many bytes.
19359 Commas are used if the number shown is 1,000 or greater.
19360 The SIZECOMMA field is one character wider than the SIZE field.
19361 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19362 The progression of sizes used looks like:
19365 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19367 </DD>
19369 <DT>KSIZE</DT>
19370 <DD>
19371 This token represents the total size of the message, expressed in
19372 kilobytes or megabytes, as most appropriate.
19373 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19374 The progression of sizes used looks like:
19377 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19379 </DD>
19381 <DT>SIZENARROW</DT>
19382 <DD>
19383 This token represents the total size, in bytes, of the message.
19384 If a &quot;K&quot; (Kilobyte)
19385 follows the number, the size is approximately 1,000
19386 times that many bytes.
19387 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19388 1,000,000 times that many bytes.
19389 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19390 1,000,000,000 times that many bytes.
19391 This field uses only five characters of screen width, including the enclosing
19392 parentheses.
19393 The progression of sizes used looks like:
19396 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19398 </DD>
19400 <DT>DESCRIPSIZE</DT>
19401 <DD>
19402 This token is intended to represent a more useful description of the
19403 message than just its size, but it isn't very useful at this point.
19404 The plus sign in this view means there are attachments.
19405 Note that including this token in
19406 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19407 display a little while Alpine collects the necessary information.
19408 </DD>
19410 <DT>SUBJKEY</DT>
19411 <DD>
19412 This token is the same as the SUBJECT token unless keywords are set for
19413 the message.
19414 In that case, a list of keywords enclosed in braces will be prepended to
19415 the subject of the message.
19416 Only those keywords that you have defined in your
19417 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19418 in Setup/Config are considered in the list.
19419 In other words, keywords that have been set by some other means, perhaps
19420 by another email program, won't show up unless included in
19421 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19422 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19423 prepended to the subject in the MESSAGE TEXT screen.
19424 If you have given a keyword a nickname
19425 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19426 instead of the actual keyword.
19427 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19428 option may be used to modify this token slightly.
19429 It is also possible to color keywords in the index using the
19430 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19431 </DD>
19433 <DT>SUBJKEYINIT</DT>
19434 <DD>
19435 This token is the same as the SUBJKEY token except that instead of
19436 prepending a list of keywords to the subject, a list of first initials
19437 of keywords will be prepended instead.
19438 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19439 set (or Work and Now are the Alpine nicknames of keywords that are set)
19440 then the SUBJKEY token would cause a result like
19442 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19444 whereas the SUBJKEYINIT token would give
19446 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19448 Only those keywords that you have defined in your
19449 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19450 in Setup/Config are considered in the list.
19451 In other words, keywords that have been set by some other means, perhaps
19452 by another email program, won't show up unless included in
19453 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19454 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19455 option may be used to modify this token slightly.
19456 It is also possible to color keywords in the index using the
19457 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19458 </DD>
19460 <DT>SUBJECTTEXT</DT>
19461 <DD>
19462 Same as SUBJECT but if there is room in the Subject field for more text,
19463 the opening part of the text of the message is displayed after the subject.
19464 The time needed to fetch the text may cause a performance problem
19465 which can, of course, be avoided by using the SUBJECT version of
19466 the Subject instead.
19467 You may color this opening text differently by using the
19468 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19469 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19470 You may adjust the characters that are displayed between the Subject and the
19471 opening text with the option
19472 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19473 </DD>
19475 <DT>SUBJKEYTEXT</DT>
19476 <DD>
19477 Same as SUBJKEY but with the opening message text.
19478 </DD>
19480 <DT>OPENINGTEXT</DT>
19481 <DD>
19482 This is similar to SUBJECTTEXT.
19483 Instead of combining the Subject and the opening text in a single
19484 field in the index screen this token allows you to allocate a
19485 separate column just for the opening text of the message.
19486 The time needed to fetch this text may cause a performance problem.
19487 You may color this opening text differently by using the
19488 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19489 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19490 </DD>
19492 <DT>OPENINGTEXTNQ</DT>
19493 <DD>
19494 This is very similar to OPENINGTEXT.
19495 The NQ stands for No Quotes.
19496 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19497 For some messages this may be confusing.
19498 For example, a message might have a line preceding some quoted
19499 text that reads something like &quot;On May 8th person A said.&quot;
19500 That no longer makes sense after the quoted text is deleted and it
19501 will appear that person A said whatever the text after the quote
19502 is, even though that is really person B talking.
19503 </DD>
19505 <DT>SUBJKEYINITTEXT</DT>
19506 <DD>
19507 Same as SUBJKEYINIT but with the opening message text.
19508 </DD>
19510 <DT>KEY</DT>
19511 <DD>
19512 This is a space-delimited list of keywords that are set for the message.
19513 Only those keywords that you have defined in your
19514 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19515 in Setup/Config are considered in the list.
19516 In other words, keywords that have been set by some other means, perhaps
19517 by another email program, won't show up unless included in
19518 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19519 If you have given a keyword a nickname
19520 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19521 instead of the actual keyword.
19522 It is also possible to color keywords in the index using the
19523 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19524 This token defaults to an arbitrary width of 5.
19525 You should set it to whatever width suits you using something
19526 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19527 </DD>
19529 <DT>KEYINIT</DT>
19530 <DD>
19531 This is a list of keyword initials that are set for the message.
19532 If you have given a keyword a nickname
19533 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19534 is displayed instead of the initial of the actual keyword.
19535 It is also possible to color keyword initials in the index using the
19536 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19537 This token defaults to an arbitrary width of 2.
19538 You should set it to whatever width suits you using something
19539 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19540 </DD>
19542 <DT>PRIORITY</DT>
19543 <DD>
19544 The X-Priority header is a non-standard header that is used in a
19545 somewhat standard way by many mail programs.
19546 Alpine expects the value of this header to be a digit with a value
19547 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19548 Since this priority is something that the sender sets it is only an indication
19549 of the priority that the sender attaches to the mail and it is therefore almost
19550 totally unreliable for use as a filtering criterion.
19551 This token will display the numeric value of the priority if it is between
19552 1 and 5.
19553 It will be suppressed (blank) if the value is 3, which is normal priority.
19554 This token may be colored with the
19555 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19556 </DD>
19558 <DT>PRIORITYALPHA</DT>
19559 <DD>
19560 This is a more verbose interpretation of the X-Priority field.
19561 Once again nothing is displayed unless the value of the field
19562 is 1, 2, 4, or 5.
19563 The values displayed for those values are:
19565 <TABLE>
19566 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19567 <TR> <TD>2</TD> <TD>High</TD> </TR>
19568 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19569 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19570 </TABLE>
19572 This token may be colored with the
19573 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19574 </DD>
19576 <DT>PRIORITY!</DT>
19577 <DD>
19578 This is a one character, non-numeric version of the X-Priority field.
19579 If the value of the X-Priority header is 1 or 2 an exclamation
19580 point is displayed.
19581 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19582 This token may be colored with the
19583 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19584 </DD>
19586 <DT>ATT</DT>
19587 <DD>
19588 This is a one column wide field that represents the number of attachments
19589 a message has. It will be blank if there are no attachments, a single
19590 digit for one to nine attachments, or an asterisk for more than nine.
19591 Note that including this token in
19592 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19593 display a little while Alpine collects the necessary information.
19594 </DD>
19596 <DT>FROMORTO</DT>
19597 <DD>
19598 This token represents <EM>either</EM> the personal name (or email address) of
19599 the person listed in the message's &quot;From:&quot; header
19600 field, <EM>or</EM>, if that address is yours or one of your
19601 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19602 the first person specified in the
19603 message's &quot;To:&quot; header field
19604 with the prefix &quot;To: &quot; prepended.
19605 If the from address is yours and there is also no &quot;To&quot; address,
19606 Alpine will use the address on the &quot;Cc&quot; line.
19607 If there is no address there, either, Alpine will look for a newsgroup name
19608 from the &quot;Newsgroups&quot; header field and put
19609 that after the &quot;To: &quot; prefix.
19610 </DD>
19612 <DT>FROMORTONOTNEWS</DT>
19613 <DD>
19614 This is almost the same as <EM>FROMORTO</EM>.
19615 The difference is that newsgroups aren't considered.
19616 When a message is from you, doesn't have a To or Cc, and does have
19617 a Newsgroups header; this token will be your name instead of the name
19618 of the newsgroup (like it would be with FROMORTO).
19619 </DD>
19621 <DT>TEXT</DT>
19622 <DD>
19623 This is a different sort of token.
19624 It allows you to display a label within each index line.
19625 It will be the same fixed text for each line.
19626 It is different from all the other tokens in that there is no space column
19627 displayed after this token.
19628 Instead, it is butted up against the following field.
19629 It also has a different syntax.
19630 The text to display is given following a colon after the
19631 word &quot;TEXT&quot;.
19632 For example,
19634 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19636 would insert the literal text &quot;abc=&quot; (without the quotes)
19637 into the index display line.
19638 You must quote the text if it includes space characters, like
19640 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19642 </DD>
19644 <DT>HEADER</DT>
19645 <DD>
19646 This allows you to display the text from a particular header line in the
19647 message.
19648 The syntax for this token is substantially different from all the others
19649 in order that you might be able to display a portion of the text following
19650 a particular header.
19651 The header name you are interested in is given following a colon
19652 after the word &quot;HEADER&quot;.
19653 For example,
19655 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
19657 would display the text of the X-Spam header, if any.
19658 Like for other index tokens a width field may (and probably should)
19659 follow this.
19661 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
19663 displays the first ten characters of the X-Spam header.
19664 Unlike other index tokens, the syntax for HEADER is more flexible.
19665 An optional second argument comes after a comma inside the parentheses.
19666 It specifies the &quot;field&quot; number.
19667 By default, the field separator is a space character.
19668 No extra space characters are allowed in the argument list.
19670 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
19672 would display the second field, left-justified, in a 10 character
19673 wide field.
19674 The second field would consist of all the text after the first space
19675 up to the next space or the end of the header.
19676 The default field number is zero, which stands for the entire line.
19677 There is also an optional third argument that is a list of field
19678 separators. It defaults to a space character.
19679 The example
19681 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
19683 would cause the field separators to be any of colon, percent,
19684 or space (there is a space character between the percent and the
19685 right parenthesis).
19686 The first field runs from the start of the header value up to the first
19687 colon, percent, or space; the second goes from there to the next; and so on.
19688 In order to use a comma character as a field separator you must escape
19689 it by preceding it with a backslash (&#92;).
19690 The same is true of the backslash character itself.
19691 There is one further optional argument.
19692 It is an R or an L to specify right or left adjustment of the text
19693 within the field.
19694 The default is to left justify, however if you are displaying numbers
19695 you might prefer to right justify.
19697 Here's an example of a SpamAssassin header.
19698 The exact look of the header will vary, but if your incoming mail
19699 contains headers that look like the following
19701 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19703 you might want to display the hits value.
19704 The first field starts with the Y in Yes.
19705 To get what you're interested in you might use &quot;=&quot; and
19706 space as the field separators and display the third field, like
19708 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
19710 or maybe you would break at the dot instead
19712 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
19714 Another example we've seen has headers that look like
19716 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19718 Because there are two equals and a comma before the 7% and a comma
19719 after it, the token
19721 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
19723 should display the probability (for example 7% or 83%) right justified
19724 in a 3-wide field.
19725 </DD>
19727 <DT>ARROW</DT>
19728 <DD>
19729 This gives an alternative way to display the current message in the
19730 MESSAGE INDEX screen.
19731 Usually the current message is indicated by the line being shown in
19732 reverse video.
19733 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
19734 the current line will include an &quot;arrow&quot; that
19735 looks like
19737 <CENTER><SAMP>-&gt;</SAMP></CENTER>
19739 in the ARROW token's field.
19740 For all of the non-current messages, the ARROW field will be filled
19741 with blanks.
19742 If you use the fixed-field width feature the length of the &quot;arrow&quot;
19743 may be adjusted.
19744 The arrow will be drawn as width-1 dashes followed by a greater than sign.
19745 For example, if you use ARROW(3) you will get
19747 <CENTER><SAMP>--&gt;</SAMP></CENTER>
19749 and ARROW(1) will give you just
19751 <CENTER><SAMP>&gt;</SAMP></CENTER>
19753 It is also possible to set the color of the ARROW field.
19754 By default (and for non-current messages) the arrow is colored the same
19755 as the index line it is part of.
19756 You may set it to be another color with the 
19757 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
19758 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19759 </DD>
19761 <DT>SCORE</DT>
19762 <DD>
19763 This gives the
19764 <a href="h_rules_score">score</a>
19765 of each message.
19766 This will be six columns wide to accomodate the widest possible score.
19767 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
19768 to limit the width of the field to the widest score that
19769 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
19770 If you have not defined any score rules the scores will all be zero.
19771 If any of your score rules contain AllText or BodyText patterns
19772 then including SCORE in the <!--#echo var="VAR_index-format"-->
19773 may slow down the display of the MESSAGE INDEX screen.
19774 </DD>
19775 </DL>
19778 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
19780 <DL>
19781 <DT>CURNEWS</DT>
19782 <DD>
19783 This token represents the current newsgroup if there is one.
19784 For example, &quot;comp.mail.pine&quot;.
19785 </DD>
19787 <DT>MSGID</DT>
19788 <DD>
19789 This token represents the message ID of the message.
19790 This token does not work with Filter Rule folder names.
19791 </DD>
19793 <DT>CURDATE</DT>
19794 <DD>
19795 This token represents the current date.
19796 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19797 </DD>
19799 <DT>CURDATEISO</DT>
19800 <DD>
19801 This token represents the current date.
19802 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19803 </DD>
19805 <DT>CURDATEISOS</DT>
19806 <DD>
19807 This token represents the current date.
19808 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19809 </DD>
19811 <DT>CURPREFDATE</DT>
19812 <DD>
19813 This token represents the current date.
19814 It is your operating system's idea of the preferred date representation for the current locale.
19815 Internally it uses the %x version of the date from the strftime routine.
19816 </DD>
19818 <DT>CURPREFTIME</DT>
19819 <DD>
19820 This token represents the current time.
19821 It is the preferred time representation for the current locale.
19822 Internally it uses the %X version of the time from the strftime routine.
19823 </DD>
19825 <DT>CURPREFDATETIME</DT>
19826 <DD>
19827 This token represents the current date and time.
19828 It is the preferred date and time representation for the current locale.
19829 Internally it uses the %c version of the time from the strftime routine.
19830 </DD>
19832 <DT>CURTIME24</DT>
19833 <DD>
19834 This token represents the current time.
19835 It has the format HH:MM. For example, &quot;17:28&quot;.
19836 </DD>
19838 <DT>CURTIME12</DT>
19839 <DD>
19840 This token represents the current time.
19841 This time is for a 12 hour clock.
19842 It has the format HH:MMpm.
19843 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19844 </DD>
19846 <DT>CURDAY</DT>
19847 <DD>
19848 This token represents the current day of the month.
19849 For example, &quot;23&quot; or &quot;9&quot;.
19850 </DD>
19852 <DT>CURDAY2DIGIT</DT>
19853 <DD>
19854 This token represents the current day of the month.
19855 For example, &quot;23&quot; or &quot;09&quot;.
19856 It is always 2 digits.
19857 </DD>
19859 <DT>CURDAYOFWEEK</DT>
19860 <DD>
19861 This token represents the current day of the week.
19862 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19863 </DD>
19865 <DT>CURDAYOFWEEKABBREV</DT>
19866 <DD>
19867 This token represents the current day of the week.
19868 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19869 </DD>
19871 <DT>CURMONTH</DT>
19872 <DD>
19873 This token represents the current month.
19874 For example, &quot;10&quot; or &quot;9&quot;.
19875 </DD>
19877 <DT>CURMONTH2DIGIT</DT>
19878 <DD>
19879 This token represents the current month.
19880 For example, &quot;10&quot; or &quot;09&quot;.
19881 It is always 2 digits.
19882 </DD>
19884 <DT>CURMONTHLONG</DT>
19885 <DD>
19886 This token represents the current month.
19887 For example, &quot;October&quot;.
19888 </DD>
19890 <DT>CURMONTHABBREV</DT>
19891 <DD>
19892 This token represents the current month.
19893 For example, &quot;Oct&quot;.
19894 </DD>
19896 <DT>CURYEAR</DT>
19897 <DD>
19898 This token represents the current year.
19899 For example, &quot;1998&quot; or &quot;2001&quot;.
19900 </DD>
19902 <DT>CURYEAR2DIGIT</DT>
19903 <DD>
19904 This token represents the current year.
19905 For example, &quot;98&quot; or &quot;01&quot;.
19906 It is always 2 digits.
19907 </DD>
19909 <DT>LASTMONTH</DT>
19910 <DD>
19911 This token represents last month.
19912 For example, if this is November (the 11th month),
19913 it is equal to &quot;10&quot; or if this is October (the 10th month),
19914 it is &quot;9&quot;.
19915 It is possible that this and the other tokens beginning with LASTMONTH
19916 below could be useful when used with a Filtering Rule that
19917 has the &quot;Beginning of Month&quot; option set.
19918 </DD>
19920 <DT>LASTMONTH2DIGIT</DT>
19921 <DD>
19922 This token represents last month.
19923 For example, if this is November (the 11th month),
19924 it is equal to &quot;10&quot; or if this is October (the 10th month),
19925 it is &quot;09&quot;.
19926 It is always 2 digits.
19927 </DD>
19929 <DT>LASTMONTHLONG</DT>
19930 <DD>
19931 This token represents last month.
19932 For example, if this is November the value is &quot;October&quot;.
19933 </DD>
19935 <DT>LASTMONTHABBREV</DT>
19936 <DD>
19937 This token represents last month.
19938 For example, if this is November the value is &quot;Oct&quot;.
19939 </DD>
19941 <DT>LASTMONTHYEAR</DT>
19942 <DD>
19943 This token represents what the year was a month ago.
19944 For example, if this is October, 1998, it is &quot;1998&quot;.
19945 If this is January, 1998, it is &quot;1997&quot;.
19946 </DD>
19948 <DT>LASTMONTHYEAR2DIGIT</DT>
19949 <DD>
19950 This token represents what the year was a month ago.
19951 For example, if this is October, 1998, it is &quot;98&quot;.
19952 If this is January, 1998, it is &quot;97&quot;.
19953 </DD>
19955 <DT>LASTYEAR</DT>
19956 <DD>
19957 This token represents last year.
19958 For example, if this is 1998, it equals &quot;1997&quot;.
19959 It is possible that this
19960 could be useful when used with a Filtering Rule that
19961 has the &quot;Beginning of Year&quot; option set.
19962 </DD>
19964 <DT>LASTYEAR2DIGIT</DT>
19965 <DD>
19966 This token represents last year.
19967 For example, if this is 1998, it equals &quot;97&quot;.
19968 It is always 2 digits.
19969 </DD>
19971 <DT>ROLENICK</DT>
19972 <DD>
19973 This token represents the nickname of the
19974 role currently being used.  If no role is being used,
19975 then no text will be printed for this token.
19976 This token does not work with Filter Rule folder names.
19977 </DD>
19978 </DL>
19981 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
19982 See the help for the
19983 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
19984 to see why you might want to use this.
19985 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
19986 must be surrounded by underscores when used.
19988 <DL>
19989 <DT>NEWLINE</DT>
19990 <DD>
19991 This is an end of line marker.
19992 </DD>
19993 </DL>
19996 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
19998 <DL>
19999 <DT>CURSORPOS</DT>
20000 <DD>
20001 This token is different from the others.
20002 When it is replaced it is replaced with nothing, but it sets an Alpine
20003 internal variable that tells the composer to start with the cursor
20004 positioned at the position where this token was.
20005 If both the template file and the signature file contain
20006 a &quot;CURSORPOS&quot; token, then the position in the template file
20007 is used.
20008 If there is a template file and neither it nor the signature file contains
20009 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20010 after the end of the contents of the
20011 template file when the composer starts up.
20012 </DD>
20013 </DL>
20016 &lt;End of help on this topic&gt;
20017 </BODY>
20018 </HTML>
20019 ======= h_reply_token_conditionals =======
20020 <HTML>
20021 <HEAD>
20022 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20023 </HEAD>
20024 <BODY>
20025 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20027 Conditional text inclusion may be used with
20028 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20029 in signature files, and in template files used in
20030 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20031 It may <EM>not</EM> be used with the
20032 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20035 There is a limited if-else capability for including text.
20036 The if-else condition is based
20037 on whether or not a given token would result in replacement text you
20038 specify.
20039 The syntax of this conditional inclusion is
20041 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20043 The left parenthesis must follow the underscore immediately, with no
20044 intervening space.
20045 It means the token is expanded and the results of that expansion are
20046 compared against the &quot;match_this&quot; argument.
20047 If there is an exact match, then the &quot;if_matched&quot; text is used
20048 as the replacement text.
20049 Otherwise, the &quot;if_not_matched&quot; text is used.
20050 One of the most useful values for the &quot;match_this&quot; argument is
20051 the empty string, &quot;&quot;.
20052 In that case the expansion is compared against the empty string.
20054 Here's an example to make it clearer.
20055 This text could be included in one of your template files:
20057 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20059 If that is included in a template file that you are using while replying
20060 to a message (because you chose to use the role it was part of),
20061 and that message has a newsgroup header and a newsgroup in that header,
20062 then the text
20064 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20066 will be included in the message you are about to compose.
20067 On the other hand, if the message you are replying to does not have
20068 a newsgroup, then the text
20070 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20072 would be included instead.
20073 This would also work in signature files and in
20074 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20075 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20076 or &quot;if_not_matched&quot; arguments contain
20077 spaces, parentheses, or commas;
20078 they have to be quoted with double quotation marks (like in the example
20079 above).
20080 If you want to include a literal quote (&quot;) in the text you must escape the
20081 quote by preceding it with a backslash (&#92;) character.
20082 If you want to include a literal backslash character you must escape it
20083 by preceding it with another backslash.
20085 The comma followed by &quot;if_not_matched&quot; is optional.
20086 If there is no &quot;if_not_matched&quot;
20087 present then no text is included if the not_matched case is true.
20088 Here's another example:
20090 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20092 Here you can see that tokens may appear in the arguments.
20093 The same is true for tokens with the conditional parentheses.
20094 They may appear in arguments,
20095 though you do have to be careful to get the quoting and escaping of
20096 nested double quotes correct.
20097 If this was in the signature file being used and you were replying to a message
20098 sent to comp.mail.pine the resulting text would be:
20100 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20102 If you were replying to a message that wasn't sent to any newsgroup the
20103 resulting text would be a single blank line.
20104 The reason you'd get a blank line is because the end of the line is
20105 outside of the conditional, so is always included.
20106 If you wanted to get rid of that blank line you could do so by moving
20107 the end of line inside the conditional.
20108 In other words, it's ok to have multi-line
20109 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20110 template file.
20111 The text just continues until the next double quotation, even if it's not
20112 on the same line.
20114 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20116 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20118 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20119 while reading the newsgroup comp.mail.pine the resulting text would be:
20121 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20123 If you were replying to a message while reading an email folder instead
20124 of a newsgroup the resulting leadin text would be
20126 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20128 Here's one more (contrived) example illustrating a matching argument
20129 that is not the empty string.
20131 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20133 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20134 were replying to
20135 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20136 would be
20138 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20140 But if you were replying to a message sent on Oct. 27 (and that wasn't
20141 today) you would get
20143 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20146 &lt;End of help on this topic&gt;
20147 </BODY>
20148 </HTML>
20149 ======= h_composer_cntxt_nick =======
20150 <HTML>
20151 <HEAD>
20152 <TITLE>Collection Nickname Explained</TITLE>
20153 </HEAD>
20154 <BODY>
20155 <H1>Collection Edit Help -- Nickname Field</H1>
20157 This field is provided so you can add a short nickname to use when
20158 referring to this collection within Alpine.  Spaces are allowed, and
20159 you don't need to use double-quotes.  However, the double-quote
20160 character is not allowed.
20162 Look <A HREF="h_edit_nav_cmds">here</A>
20163 to see the available Editing and Navigation commands.
20165 &lt;End of help on this topic&gt;
20166 </BODY>
20167 </HTML>
20168 ======= h_folder_server_syntax =======
20169 <HTML>
20170 <HEAD>
20171 <TITLE>Server Name Syntax</TITLE>
20172 </HEAD>
20173 <BODY>
20174 <H1>Server Name Syntax</H1>
20176 This help describes the syntax that may be used for server names
20177 that may be associated with remote folders or SMTP servers.
20180 A server name is the hostname of the server.
20181 It's a good idea to use the host's fully-qualified network name.
20184 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20187 However, IP addresses are allowed if surrounded
20188 with square-brackets.
20191 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20194 An optional network port number may be supplied by appending
20195 a colon (:) followed by the port number
20196 to the server name.
20197 By default, the IMAP port number, 143, is used.
20200 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20203 Besides server name and optional port number, various other optional
20204 parameters may be supplied that alter Alpine's interaction with the server.
20205 A parameter is supplied by appending a slash (/) character followed by
20206 the parameter's name and,
20207 depending on the particular parameter, the value assigned to that
20208 name, to the server name (and optional port number).
20209 Parameter names are <EM>not</EM> case sensitive.
20210 Currently supported parameters include:
20212 <DL>
20214 <DT>User</DT>
20215 <DD>This parameter requires an associated value, and is intended to
20216 provide the username identifier with which to establish the server
20217 connection.
20218 If your SMTP server offers SMTP AUTH authentication, adding this 
20219 parameter to the
20220 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20221 option will cause Alpine to attempt to authenticate to the server using the
20222 supplied username.
20223 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20224 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20225 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20226 option (or to the server name for any folder collection using NNTP)
20227 will cause Alpine to attempt
20228 to authenticate to the server using the supplied username.
20229 An example might be:
20232 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20235 </DD>
20237 <DT>TLS</DT>
20238 <DD>
20239 Normally, when a new connection is made an attempt is made to 
20240 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20241 If that fails then a non-encrypted connection will be attempted instead.
20242 This is a unary parameter indicating communication with the server must 
20243 take place over a TLS connection. If the attempt to use TLS fails then
20244 this parameter will cause the connection to fail instead of falling
20245 back to an unsecure connection.
20248 <CENTER><SAMP>/tls</SAMP></CENTER>
20251 </DD>
20253 <DT>SSL</DT>
20254 <DD>
20255 This is a unary parameter indicating communication with the server should 
20256 take place over a Secure Socket Layer connection.  The server must support
20257 this method, and be prepared to accept connections on the appropriate
20258 port (993 by default).
20259 Alpine must be linked with an SSL library for this option to be operational.
20262 <CENTER><SAMP>/ssl</SAMP></CENTER>
20265 </DD>
20267 <DT>TLS1</DT>
20268 <DD>
20269 This parameter indicates that the connection to the server will be made
20270 over the SSL port, but using the TLSv1 protocol, instead of the usual
20271 SSLv3 or SSLv2 protocols.
20272 Alpine must be linked with an SSL library for this option to be operational.
20275 <CENTER><SAMP>/tls1</SAMP></CENTER>
20278 </DD>
20280 <DT>DTLS1</DT>
20281 <DD>
20282 This parameter indicates that the connection to the server will be made
20283 over the SSL port, but using the DTLSv1 protocol, instead of the usual
20284 SSLv3 or SSLv2 protocols.
20285 Alpine must be linked with an SSL library for this option to be operational.
20288 <CENTER><SAMP>/dtls1</SAMP></CENTER>
20291 </DD>
20293 <DT>TLS1_1</DT>
20294 <DD>
20295 This parameter indicates that the connection to the server will be made
20296 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
20297 SSLv3 or SSLv2 protocols.
20298 Alpine must be linked with an SSL library for this option to be operational.
20301 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20304 </DD>
20306 <DT>TLS1_2</DT>
20307 <DD>
20308 This parameter indicates that the connection to the server will be made
20309 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
20310 SSLv3 or SSLv2 protocols.
20311 Alpine must be linked with an SSL library for this option to be operational.
20314 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20317 </DD>
20320 <DT>NoValidate-Cert</DT>
20321 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20322 This is needed if the server uses self-signed certificates or if Alpine
20323 cannot validate the certificate for some other known reason.
20325 </DD>
20327 <DT>Anonymous</DT>
20328 <DD>This is a unary parameter (that means it does not have a value)
20329 indicating that the connection be logged in as
20330 &quot;anonymous&quot; rather than a specific user.
20331 Not all servers offer anonymous
20332 access; those which do generally only offer read-only access to certain
20333 &quot;public&quot; folders.
20336 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20339 </DD>
20341 <DT>Secure</DT>
20342 <DD>This is a unary parameter indicating that the connection use the
20343 most secure authentication method mutually supported by Alpine and the
20344 server.
20345 Alpine is capable of authenticating connections to 
20346 the server using several methods.
20347 By default, Alpine will attempt each
20348 method until either a connection is established or the
20349 list of methods is exhausted.
20350 This parameter causes Alpine to instead fail 
20351 the connection if the first (generally most &quot;secure&quot;) method fails.
20354 <CENTER><SAMP>/secure</SAMP></CENTER>
20357 </DD>
20359 <DT>Submit</DT>
20360 <DD>This is a unary parameter for use with the
20361 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20362 It indicates that the connection should be made to the Submit server
20363 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20364 (port 587) instead of the SMTP port (25).
20365 At the time this help was written the submit option was equivalent to
20366 specifying port 587.
20369 <CENTER><SAMP>/submit</SAMP></CENTER>
20373 <CENTER><SAMP>host:587</SAMP></CENTER>
20376 </DD>
20378 <DT>Debug</DT>
20379 <DD>This is a unary parameter indicating that the connection be established
20380 in a verbose mode.  Basically, it causes Alpine to log the communication with
20381 the server in Alpine's debug file.
20382 Normally, the pine -d command-line flag would be used instead.
20384 </DD>
20386 <DT>NoRsh</DT>
20387 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20388 the UNIX remote shell program.
20389 Including &quot;NoRsh&quot; will cause connections to this server to skip
20390 the &quot;rsh&quot; attempt.
20391 This might be useful to avoid long timeouts caused by rsh firewalls, for
20392 example.
20394 </DD>
20396 <DT>Loser</DT>
20397 <DD>This option makes sense only for IMAP servers that do not perform
20398 a SEARCH command correctly. If your filtering rules
20399 fail to filter some messages, that should have been filtered, then this
20400 option will make Alpine download all data necessary to perform that search.
20401 There is a performance penalty when using this option. Downloading the
20402 data to perfom the search will take longer than requesting the IMAP
20403 server to perform the filtering, but the filtering will be done correctly.
20405 </DD>
20408 <DT>Service</DT>
20409 <DD>This parameter requires an associated value.  The default value is
20410 &quot;IMAP&quot; which indicates communication with the server based
20411 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20412 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20414 Other service values include:
20415  <DL>
20416  <DT>NNTP</DT>
20417  <DD>This value indicates communication with the server takes place via
20418 the Network News Transfer Protocol.  Use this to define a collection
20419 of newsgroups on a remote news server.  So
20422 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20424 or just
20426 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20429 is the way to specify NNTP access.
20431  </DD>
20433  <DT>POP3</DT>
20434  <DD>This value indicates communication with the server takes place via the
20435 Post Office Protocol 3 protocol.
20438 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20440 or just
20442 <CENTER><SAMP>/POP3</SAMP></CENTER>
20445 Note that there are several important issues
20446 to consider when selecting this option:
20447 <OL>
20448  <LI> POP3 provides access to only your INBOX.  In other words,
20449 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20450  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20451 model and will leave your mail on the server. Refer to the
20452 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20453  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20454 </OL>
20455 </DD>
20456 </DL>
20457 </DL>
20460 Note that it is possible to include more than one parameter in a server
20461 specification by concatenating the parameters. For example:
20464 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20468 &lt;End of help on this topic&gt;
20469 </BODY>
20470 </HTML>
20471 ======= h_composer_cntxt_server =======
20472 <HTML>
20473 <HEAD>
20474 <TITLE>Collection Server: Explained</TITLE>
20475 </HEAD>
20476 <BODY>
20477 <H1>Collection Edit Help -- Server Field</H1>
20479 This collection's &quot;Server:&quot; definition indicates the
20480 hostname of the server providing access to the folders in this
20481 collection.
20482 The syntax of this server name is the same as for other server names used
20483 in remote folder names in
20484 Alpine and is described
20485 <A HREF="h_folder_server_syntax">here</A>.
20488 &lt;End of help on this topic&gt;
20489 </BODY>
20490 </HTML>
20491 ======= h_composer_cntxt_path =======
20492 <HTML>
20493 <HEAD>
20494 <TITLE>Collection Path: Explained</TITLE>
20495 </HEAD>
20496 <BODY>
20497 <H1>Collection Edit Help -- Path Field</H1>
20499 The collection's &quot;Path:&quot; definition indicates the location
20500 of the folders in this collection.  If the path or any of its components
20501 do not exist, Alpine will prompt you for their creation when exiting the
20502 Add/Change screen.
20504 <P> 
20505 By default the path is interpreted as defining a section of your personal
20506 folder area.  This area and how you specify it are defined by the
20507 server, if one is specified in the collection, or, typically, the home
20508 directory if no server is defined.
20511 To define a collection outside the default &quot;area&quot;, prefix
20512 the path with the &quot;namespace&quot; to use when interpreting the
20513 given path.  If a namespace is specified, the Path begins with the
20514 sharp, &quot;#&quot;, character followed by the name of the namespace
20515 and then the namespace's path-element-delimiter.  Aside from the
20516 path's format, namespaces can also imply access rights, content
20517 policy, audience, location, and, occasionally, access methods.
20520 Each server exports its own set (possibly of size one) of 
20521 namespaces.  Hence, it's likely communication with your server's
20522 administrator will be required for specific configurations.  Some of
20523 the more common namespaces, however, include:
20525 <DL>
20526 <DT>#news.</DT>
20527 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20528 names are hierarchically defined with each level delimited by a period.
20529 </DD>
20530 <DT>#public/</DT>
20531 <DD>This specifies a folder area that the server may export to the general
20532 public.
20533 </DD>
20534 <DT>#shared/</DT>
20535 <DD>This specifies a folder area that the folder may export to groups
20536 of users.
20537 </DD>
20538 <DT>#ftp/</DT>
20539 <DD>This specifies a folder area that is the same as that it may have 
20540 exported via the &quot;File Transfer Protocol&quot;.
20541 </DD>
20542 <DT>#mh/</DT>
20543 <DD>This specifies the personal folder area associated with folders
20544 and directories that were created using the MH message handling system.
20545 </DD>
20546 </DL>
20549 In addition, the server may support access to other user's folders,
20550 provided you have suitable permissions.  Common methods use a prefix
20551 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20552 indicate the root of the other user's folder area.
20555 No, nothing's simple.
20558 &lt;End of help on this topic&gt;
20559 </BODY>
20560 </HTML>
20561 ======= h_composer_cntxt_view =======
20562 <HTML>
20563 <HEAD>
20564 <TITLE>Collection View: Explained</TITLE>
20565 </HEAD>
20566 <BODY>
20567 <H1>Collection Edit Help -- View Field</H1>
20569 The collection's &quot;View:&quot; definition provides a way to limit
20570 the displayed list of folders within a collection.  By default, only
20571 folders that contain the specified characters anywhere in their name
20572 are shown in the collection's folder list.
20575 Additionally, you can use a wildcard character to better control
20576 the list of folders selected for display.  The wildcard specifier is
20577 the star, &quot;*&quot;, character.
20580 So, for example, to define a collection of all folders ending with
20581 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20582 quote characters!).  Or, similarly, to define a collection of folders
20583 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20584 specify a view of &quot;a*z&quot;.
20587 &lt;End of help on this topic&gt;
20588 </BODY>
20589 </HTML>
20590 ======= h_composer_abook_add_server =======
20591 <HTML>
20592 <HEAD>
20593 <TITLE>Addressbook Server Name Field Explained</TITLE>
20594 </HEAD>
20595 <BODY>
20596 This field should be left blank if the address book is stored in a regular
20597 file on this system.  If it is a remote address book stored on an IMAP
20598 server then this is the name of that IMAP server.
20600 Look <A HREF="h_edit_nav_cmds">here</A>
20601 to see the available Editing and Navigation commands.
20603 &lt;End of help on this topic&gt;
20604 </BODY>
20605 </HTML>
20606 ======= h_composer_abook_add_folder =======
20607 <HTML>
20608 <HEAD>
20609 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20610 </HEAD>
20611 <BODY>
20612 For a remote address book (one for which the Server Name is filled in)
20613 this is the name of a folder on the remote server. The address book data
20614 will be stored in this folder. This folder should be used only for
20615 storing this single address book, not for other address books or for
20616 other messages.
20618 For a local address book (one for which the Server Name is not filled in)
20619 this is the name of a file in which the address book will be stored.
20620 The file is in the same directory as the Alpine configuration file if the
20621 configuration file is local.
20622 If the configuration file is remote, then this will be in the home directory
20623 for Unix Alpine and in the directory specified by the
20624 &quot;-aux local_directory&quot; command line argument.
20626 Look <A HREF="h_edit_nav_cmds">here</A>
20627 to see the available Editing and Navigation commands.
20629 &lt;End of help on this topic&gt;
20630 </BODY>
20631 </HTML>
20632 ======= h_composer_abook_add_nick =======
20633 <HTML>
20634 <HEAD>
20635 <TITLE>Addressbook NickName Field Explained</TITLE>
20636 </HEAD>
20637 <BODY>
20638 This is just an optional nickname for this address book. If present, it
20639 is used in some of the displays and error messages in the address book
20640 maintenance screens. It is for your convenience only and serves no
20641 other purpose.
20643 Look <A HREF="h_edit_nav_cmds">here</A>
20644 to see the available Editing and Navigation commands.
20646 &lt;End of help on this topic&gt;
20647 </BODY>
20648 </HTML>
20649 ======= h_composer_qserv_cn =======
20650 <HTML>
20651 <HEAD>
20652 <TITLE>Directory Query Form Explained</TITLE>
20653 </HEAD>
20654 <BODY>
20656 Fill in as many of these fields as you wish to narrow down your
20657 search. All the fields you fill in must match in order for an entry
20658 to be returned. You may use the wildcard character &quot;*&quot; in
20659 any of the fields, it matches any zero or more characters at that
20660 point in the string. There are no implicit wildcards, so the match is
20661 exact unless you include wildcards.
20664 Note that if an attribute isn't present at all, then the match will fail.
20665 For example, if a server doesn't support the Locality attribute, then no
20666 matter what you put in the Locality field (other than leaving it empty)
20667 the search will fail.
20670 This field, the Common Name field, is typically a person's full name.
20673 <H1>EDITING and NAVIGATION COMMANDS</H1>
20674 <!--chtml if pinemode="function_key"-->
20675 <PRE>
20676 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20677 ^B (Left Arrow)    Back character       | ^D       Delete current character
20678 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20679 ^P (Up Arrow)      Previous line        |
20680 ^N (Down Arrow)    Next line            | F9       Cut marked text or
20681 ^A                 Beginning of line    |            delete current line
20682 ^E                 End of line          | F10      Undelete line(s)
20683 F7                 Previous page        |
20684 F8                 Next page            |-------------------------------------
20685 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20686 ----------------------------------------|
20687 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
20688 F2   Cancel      |   F1    Get help     |
20689 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
20690 </PRE>
20691 <!--chtml else-->
20692 <PRE>
20693 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20694 ^B (Left Arrow)    Back character       | ^D       Delete current character
20695 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20696 ^P (Up Arrow)      Previous line        |
20697 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
20698 ^A                 Beginning of line    |            delete current line
20699 ^E                 End of line          | ^U       Undelete line(s)
20700 ^Y                 Previous page        |
20701 ^V                 Next page            |-------------------------------------
20702 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20703 ----------------------------------------|
20704 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
20705 ^C   Cancel      |   ^G    Get help     |
20706 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
20707 </PRE>
20708 <!--chtml endif-->
20709 <P><UL>
20710 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20711 </UL><P>
20712 &lt;End of help on this topic&gt;
20713 </BODY>
20714 </HTML>
20715 ======= h_composer_qserv_sn =======
20717 The Surname is usually the family name of a person.
20719 <End of help on this topic>
20720 ======= h_composer_qserv_gn =======
20722 This is the part of a person's name that isn't the surname or initials.
20724 <End of help on this topic>
20725 ======= h_composer_qserv_mail =======
20727 This is the email address of a person.
20729 <End of help on this topic>
20730 ======= h_composer_qserv_org =======
20732 This is the organization a person belongs to.
20734 <End of help on this topic>
20735 ======= h_composer_qserv_unit =======
20737 This is the organizational unit a person belongs to.
20739 <End of help on this topic>
20740 ======= h_composer_qserv_country =======
20742 This is the country a person belongs to.
20744 <End of help on this topic>
20745 ======= h_composer_qserv_state =======
20747 This is the state a person belongs to.
20749 <End of help on this topic>
20750 ======= h_composer_qserv_locality =======
20752 This is the locality a person belongs to.
20754 <End of help on this topic>
20755 ======= h_composer_qserv_custom =======
20757 This one is for advanced users only! If you put something in this field,
20758 then the rest of the fields are ignored.
20760 This field may be set to the string representation of an LDAP search
20761 filter (see RFC1960). Here are some examples:
20763 To search for an entry with a surname equal to "clinton" you could set
20764 the custom filter to:
20766      (sn=clinton)
20767     
20768 This is equivalent to putting "clinton" in the SurName field.
20769 To search for an entry that has a surname that begins with "clint" and
20770 has a givenname equal to "william" you could use:
20772      (&(sn=clint*)(givenname=william))
20773     
20774 This is equivalent to setting the SurName field to "clint*" and the
20775 GivenName field to "william".
20776 To search for an entry where either the common name OR the email address
20777 contains "abcde" you could use:
20779      (|(cn=*abcde*)(mail=*abcde*))
20781 That isn't equivalent to anything you can do by setting the other fields
20782 because of the OR.
20784 <End of help on this topic>
20785 ======= h_composer_qserv_qq =======
20787 This one is a little different from the rest of the categories.  It causes
20788 a search to be formed from the configured search filter that you filled
20789 in when you added the directory server to your configuration. It can also
20790 be combined with the other fields if you'd like.
20792 <End of help on this topic>
20793 ======= h_address_format =======
20794 <HTML>
20795 <HEAD>
20796 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
20797 </HEAD>
20798 <BODY>
20799 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
20801 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
20802 and then a domain, with no spaces.  
20803 For example, jsmith@art.example.com might be the email address
20804 of a person  
20805 with the username &quot;jsmith&quot; who has an account in the domain
20806 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
20807 right of the &quot;@&quot; sign can vary - a shorter example would be 
20808 isabelle@elsewhere.edu (the shortest possible form: here, only the 
20809 organization's domain is specified after the &quot;@&quot; sign); a longer 
20810 example would be 
20811  jsingh@shakti.edutech.example.com
20812 (here, the name of the host &quot;shakti&quot; in the domain 
20813 edutech.example.com is also specified).  
20814 <P>  
20815 If you do not know the exact email address of someone you want to write 
20816 to, ask them what it is using other means of communication than email; or 
20817 use the tools for 
20818 finding people's addresses that are available on the Internet.
20820 If you are sending to someone on the same system as you are, you can leave
20821 the &quot;@&quot; sign and all the information to its right off of the 
20822 address, and Alpine will fill it in automatically, 
20823 unless the feature 
20824 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
20827 When an email address you send a message to is not reachable -- either because 
20828 it is simply an incorrect address, or because email can temporarily not be 
20829 delivered to it due to a technical problem on the way to or at the recipient's 
20830 end -- you will almost always get an error notification email message back.
20832 If you encounter problems with, or have questions about, email delivery or
20833 email address syntax, contact your local network computing consultants.
20834 <P><UL>
20835 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20836 </UL>
20838 &lt;End of help on this topic&gt;
20839 </BODY>
20840 </HTML>
20841 ======= h_flag_user_flag =======
20842 <HTML>
20843 <HEAD>
20844 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
20845 </HEAD>
20846 <BODY>
20847 <H1>STATUS FLAG: User Defined Keyword</h1>
20849 This is a keyword that is defined for this folder.
20850 It was most likely defined by the owner of the folder.
20851 Alpine will not set or clear this flag on its own.
20853 <P><UL>
20854 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20855 </UL><P>
20856 &lt;End of help on this topic&gt;
20857 </BODY>
20858 </HTML>
20859 ======= h_flag_important =======
20860 <html>
20861 <title>STATUS FLAG: Important</title>
20862 <body>
20863 <h1>STATUS FLAG: Important</h1>
20866 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
20867 MESSAGE&nbsp;INDEX
20868 screen, can only be set by the user, and is intended to be used in
20869 whatever fashion makes sense to you.  You are the only one that can set or
20870 clear it. 
20873 &lt;End of help on this topic&gt;
20874 </BODY>
20875 </HTML>
20876 ======= h_flag_new =======
20877 <html>
20878 <title>STATUS FLAG: New</title>
20879 <body>
20880 <h1>STATUS FLAG: New</h1>
20883 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
20884 MESSAGE&nbsp;INDEX screen,
20885 is automatically set when messages are delivered to your Inbox (or other
20886 folder specified outside of Alpine).  Likewise, it is cleared automatically
20887 the first time you read the message it is associated with.
20890 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
20891 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
20892 you'd like to be reminded of it next time you read mail.  This can be done
20893 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
20897 &lt;End of help on this topic&gt;
20898 </BODY>
20899 </HTML>
20900 ======= h_flag_answered =======
20901 <html>
20902 <title>STATUS FLAG: Answered</title>
20903 <body>
20904 <h1>STATUS FLAG: Answered</h1>
20906 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
20907 MESSAGE&nbsp;INDEX
20908 screen, is automatically set when you reply to a message.  This flag is not
20909 automatically cleared.
20912 &lt;End of help on this topic&gt;
20913 </BODY>
20914 </HTML>
20915 ======= h_flag_forwarded =======
20916 <html>
20917 <title>STATUS FLAG: Forwarded</title>
20918 <body>
20919 <h1>STATUS FLAG: Forwarded</h1>
20921 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
20922 MESSAGE&nbsp;INDEX
20923 screen, is automatically set when you forward a message.  This flag is not
20924 automatically cleared.
20927 &lt;End of help on this topic&gt;
20928 </BODY>
20929 </HTML>
20930 ======= h_flag_deleted =======
20931 <html>
20932 <title>STATUS FLAG: Deleted</title>
20933 <body>
20934 <h1>STATUS FLAG: Deleted</h1>
20936 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
20937 MESSAGE&nbsp;INDEX
20938 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
20939 It is cleared
20940 when you use the &quot;U&nbsp;Undelete&quot; command.
20943 Messages marked with this flag will be permanently removed from
20944 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
20945 command, or
20946 when you indicate acceptance of their removal upon leaving the folder.
20949 Note, there can be other actions implicit in the
20950 &quot;D&nbsp;Delete&quot; command,
20951 such as advancing to the next message, that may be momentarily undesirable.
20952 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
20953 flag <A HREF="h_common_flag">explicitly</A>.
20956 &lt;End of help on this topic&gt;
20957 </BODY>
20958 </HTML>
20959 ====== h_config_incoming_timeo ======
20960 <HTML>
20961 <HEAD>
20962 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
20963 </HEAD>
20964 <BODY>
20965 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
20967 This option has no effect unless the feature
20968 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20969 is set, which in turn has no effect unless
20970 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20971 is set.
20973 Sets the time in seconds that Alpine will
20974 attempt to open a network connection used for monitoring for Unseen
20975 messages in Incoming Folders. The default is 5.
20976 If a connection has not completed within this many seconds Alpine will
20977 give up and consider it a failed connection.
20979 <UL>   
20980 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20981 </UL><P>
20982 &lt;End of help on this topic&gt;
20983 </BODY>
20984 </HTML>
20985 ====== h_config_psleep ======
20986 <HTML>
20987 <HEAD>
20988 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
20989 </HEAD>
20990 <BODY>
20991 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
20994 In the good old days a mailcap viewer was used to examine an 
20995 attachment before saving it, and after viewing the attachment control 
20996 would return to the operating system when the viewer was closed. Therefore, 
20997 when the mailcap viewer returned control to the operating system, it 
20998 could be assumed that the user who opened the attachment was done
20999 examining it, and the copy of the attachment that was used, could be removed.
21002 However, today this assumption is not longer valid. Some viewers return 
21003 control to the operating system before they actually read the attachment
21004 to be examined. This causes Alpine to delete the attachment before it 
21005 is read by the viewer, causing the viewer to fail opening the attachment.
21008 In order to work around this problem, Alpine checks, after the viewer has 
21009 returned control to the operating system, if there is any process that is 
21010 using the attachment. This variable controls the number of seconds that 
21011 must elapse between checks. Once it is found that no process is using the 
21012 attachment, this is removed.
21015 The minimum value for this variable is 60 (checks will be made once per 
21016 minute), and the maximum value is 600 (checks will be made once every 10 
21017 minutes). The default value is 60.
21020 <UL>   
21021 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21022 </UL><P>
21023 &lt;End of help on this topic&gt;
21024 </BODY>
21025 </HTML>
21026 ====== h_config_incoming_interv ======
21027 <HTML>
21028 <HEAD>
21029 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21030 </HEAD>
21031 <BODY>
21032 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21034 This option has no effect unless the feature
21035 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21036 is set, which in turn has no effect unless
21037 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21038 is set.
21040 This option specifies, in seconds, how often Alpine will check
21041 for new mail and state changes in Incoming Folders when Incoming Folders
21042 Checking is turned on.
21043 The default is 3 minutes (180).
21044 This value applies only to folders that are local to the system that
21045 Alpine is running on or that are accessed using the IMAP protocol.
21046 The similar option
21047 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21048 applies to all other monitored folders.
21050 <UL>   
21051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21052 </UL><P>
21053 &lt;End of help on this topic&gt;
21054 </BODY>
21055 </HTML>
21056 ====== h_config_incoming_second_interv ======
21057 <HTML>
21058 <HEAD>
21059 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21060 </HEAD>
21061 <BODY>
21062 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21064 This option has no effect unless the feature
21065 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21066 is set, which in turn has no effect unless
21067 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21068 is set.
21070 This option together with the option
21071 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21072 specifies, in seconds, how often Alpine will check
21073 for new mail and state changes in Incoming Folders when Incoming Folders
21074 Checking is turned on.
21075 The default for this option is 3 minutes (180).
21076 For folders that are local to this system or
21077 that are accessed using the IMAP protocol
21078 the value of the option
21079 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21080 is used.
21081 For all other monitored folders, the value of this option is used.
21083 The reason there are two separate options is because it is usually
21084 less expensive to check local and IMAP folders than it is to check
21085 other types, like POP or NNTP folders.
21086 You may want to set this secondary value to a higher number than
21087 the primary check interval.
21089 <UL>   
21090 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21091 </UL><P>
21092 &lt;End of help on this topic&gt;
21093 </BODY>
21094 </HTML>
21095 ====== h_config_incoming_list ======
21096 <HTML>
21097 <HEAD>
21098 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21099 </HEAD>
21100 <BODY>
21101 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21103 This option has no effect unless the feature
21104 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21105 is set, which in turn has no effect unless
21106 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21107 is set.
21109 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21110 normally monitor all Incoming Folders.
21111 You may use this option to restrict the list of monitored folders to a
21112 subset of all Incoming Folders.
21114 <UL>   
21115 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21116 </UL><P>
21117 &lt;End of help on this topic&gt;
21118 </BODY>
21119 </HTML>
21120 ====== h_config_pers_name ======
21121 <HTML>
21122 <HEAD>
21123 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21124 </HEAD>
21125 <BODY>
21126 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21128 This value is used to determine the full name part of the "From" address
21129 on messages you send.
21130 <!--chtml if pinemode="os_windows"-->
21131  PC-Alpine requires that this be set in order to properly construct the "From" address.
21132 <!--chtml else-->
21133  If unset, Unix Alpine will obtain your full name from
21134  the system password file. PC-Alpine, on the other hand, requires that this be set.
21135 <!--chtml endif-->
21137 If you want to change the value of what gets included in the From header
21138 in messages you send (other than just the Personal Name)
21139 look <A HREF="h_config_change_your_from">here</A> for a description.
21140 <P><UL>
21141 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21142 </UL><P>
21143 &lt;End of help on this topic&gt;
21144 </BODY>
21145 </HTML>
21146 ====== h_config_pruned_folders ======
21147 <html>
21148 <header>
21149 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21150 </header>
21151 <body>
21152 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21154 This variable allows you to define a list of one or more folders that
21155 Alpine will offer to prune for you in the same way it automatically offers
21156 to prune your "sent-mail" folder each month.
21157 Each folder in this list must be a folder in your default folder collection
21158 (the first folder collection if you have more than one), and it is just
21159 the relative name of the folder in the collection, not the fully-qualified name.
21160 It is similar to sent-mail.
21161 Instead of something like
21163 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21165 the correct value to use would be
21167 <CENTER><SAMP>folder</SAMP></CENTER>
21169 There is an assumption here that your first collection is the folders in
21171 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21174 Once a month, for each folder listed, Alpine will offer to move
21175 the contents of the folder to a new folder of the same name but with
21176 the previous month's date appended.  Alpine will then look for any such
21177 date-appended folder names created for a previous month, and offer each
21178 one it finds for deletion.
21181 If you decline the first offer, no mail is moved and no new folder is
21182 created.
21185 The new folders will be created
21186 in your default folder collection.
21189 <UL>   
21190 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21191 </UL><P>
21192 &lt;End of help on this topic&gt;
21193 </body>
21194 </html>
21195 ====== h_config_upload_cmd ======
21196 <HTML>
21197 <HEAD>
21198 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21199 </HEAD>
21200 <BODY>
21201 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21203 This option affects the behavior of the Composer's &quot;Read File&quot; 
21204 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21205 commands.  It specifies
21206 a Unix program name, and any necessary command line arguments, that Alpine can
21207 use to transfer files from your personal computer into messages that you are
21208 composing.<P>
21210 <B>Note:</B> this facility is intended for use with serial line transfer 
21211 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21212 to work with TCP/IP file transfer programs such as ftp.<P>
21214 If a program is specified, the commands listed above are modified to offer a
21215 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21216 specified here must match the transfer program or protocol available on the
21217 personal computer.<P>
21219 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21220 the specified upload program finishes, Alpine expects the uploaded data to be
21221 contained in this file.<P>
21223 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21224 generates a
21225 temporary file name that it will pass to the specified Unix program.  Alpine
21226 will read the resulting uploaded text from this file and then delete it when
21227 the upload command is finished.<P>
21229 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21230 prompt
21231 you for the name of the file that is to contain the uploaded information that
21232 it is to attach.  Alpine will attach this file to the composition, but will
21233 <B>not</B> delete this file after the upload command is finished.<P>
21235 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21236 command
21237 line arguments.  Alpine will replace this symbol with the name of the file
21238 being used to exchange the uploaded information.  This token allows you to
21239 position the file name where it is required in the Unix program's command
21240 line arguments.<P>
21242 If the &quot;_FILE_&quot; token is not present in the specified command, the
21243 temporary file's name is automatically appended to the specified Unix
21244 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21245 <B>last</B> command line argument.
21246 <P><UL>
21247 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21248 </UL><P>
21249 &lt;End of help on this topic&gt;
21250 </BODY>
21251 </HTML>
21252 ====== h_config_upload_prefix ======
21253 <HTML>
21254 <HEAD>
21255 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21256 </HEAD>
21257 <BODY>
21258 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21260 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21261 It defines text to be written to the terminal emulator (via standard output)
21262 immediately prior to starting upload command.  This is useful for
21263 integrated serial line file transfer agents that permit command passing
21264 (e.g., Kermit's APC method).<P>
21266 The special token &quot;_FILE_&quot; may be included in the string specification.
21267 That symbol will be replaced with the (Alpine-created) name of the temporary
21268 file in which Alpine will expect to find the uploaded file.
21269 <P><UL>
21270 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21271 </UL><P>
21272 &lt;End of help on this topic&gt;
21273 </BODY>
21274 </HTML>
21275 ====== h_config_download_cmd ======
21276 <HTML>
21277 <HEAD>
21278 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21279 </HEAD>
21280 <BODY>
21281 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21283 This option affects the behavior of the Export command.  It specifies a Unix
21284 program name, and any necessary command line arguments, that Alpine can use to
21285 transfer the exported message to your personal computer's disk.<P>
21286 Note: this facility is intended for use with serial line transfer 
21287 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21288 to work with TCP/IP file transfer programs such as ftp.<P>
21289 If a program is specified, the Export command is modified to offer a
21290 subcommand (^V) to activate the transfer (in lieu of saving it to
21291  the machine where Alpine is running).  Obviously, the Unix program
21292 specified here must match the transfer program or protocol available on the
21293 personal computer.<P>
21295 When this subcommand is selected and before Alpine invokes the specified Unix
21296 program, Alpine will create a temporary file containing the text of the
21297 exported message.  Alpine uses this file to pass the exported message text to
21298 the specified Unix program.<P>
21300 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21301 line arguments.  Alpine will replace this symbol with the temporary file's name
21302 before executing the Unix program.  This token allows you to position the
21303 file name where it is required in the Unix program's command line arguments.
21305 If the &quot;_FILE_&quot; token is not present in the specified command, the
21306 temporary file's name is automatically appended to the specified Unix
21307 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21308 <B>last</B> command line argument.
21309 <P><UL>
21310 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21311 </UL><P>
21312 &lt;End of help on this topic&gt;
21313 </BODY>
21314 </HTML>
21315 ====== h_config_download_prefix ======
21316 <HTML>
21317 <HEAD>
21318 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21319 </HEAD>
21320 <BODY>
21321 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21323 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21324 It defines text to be written to the terminal emulator (via standard output)
21325 immediately prior to starting the download command.  This is useful for
21326 integrated serial line file transfer agents that permit command passing
21327 (e.g., Kermit's APC method).
21329 The special token &quot;_FILE_&quot; may be included in the string 
21330 specification.
21331 That symbol will be replaced with the (Alpine-created) name of the temporary
21332 file into which Alpine will place the message to be downloaded.
21333 <P><UL>
21334 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21335 </UL><P>
21336 &lt;End of help on this topic&gt;
21337 </BODY>
21338 </HTML>
21339 ====== h_config_mailcap_path ======
21340 <HTML>
21341 <HEAD>
21342 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21343 </HEAD>
21344 <BODY>
21345 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21346 This variable is used to replace Alpine's default mailcap file search path.
21347 It takes one or more file names (full paths must be specified) in which to
21348 look for mail capability data.  The default search path can be found in this
21349 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21350 If there is more than one file name listed, list members should be delimited
21351 by 
21352 <!--chtml if pinemode="os_windows"-->
21353 a semi-colon (;) under Windows; for example:<PRE>
21354         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21355 </PRE>
21356 <!--chtml else-->
21357 a colon (:) under UNIX; for example:<PRE>
21358         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21359 </PRE>
21360 <!--chtml endif-->
21361 <P><UL>
21362 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21363 </UL>
21365 &lt;End of help on this topic&gt;
21366 </BODY>
21367 </HTML>
21368 ====== h_config_mimetype_path ======
21369 <HTML>
21370 <HEAD>
21371 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21372 </HEAD>
21373 <BODY>
21374 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21376 This variable is used to replace Alpine's default mime.types file search path.
21377 It takes one or more file names (full paths must be specified) in which to
21378 look for file-name-extension to MIME type mapping data.  The default search
21379 path can be found in this
21380 <A HREF="h_news_config">Alpine Configuration</A> help.
21384 If there is more than one file name listed, list members should be delimited
21385 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21387 &lt;End of help on this topic&gt;
21388 </BODY></HTML>
21389 ====== h_config_set_att_ansi ======
21390 <HTML><HEAD>
21391 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21392 </HEAD>
21393 <BODY>
21394 <H1>OPTION: Set printer to attached ansi printer</H1>
21396 Type "S" to set your printer to "attached-to-ansi".<BR>
21397 It is OK to include "attached-to-ansi" in your personal list below.
21399 &lt;End of help on this topic&gt;
21400 </BODY></HTML>
21401 ====== h_config_set_att_ansi2 ======
21402 <HTML><HEAD>
21403 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21404 </HEAD>
21405 <BODY>
21406 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21408 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21409 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21410 list below.
21414 This is the same as the "attached-to-ansi" option except that a
21415 formfeed character will not be appended to the end of the print job.
21416 If your printer already ejects the paper by itself at the end of the
21417 job, you may prefer the "no-formfeed" form of this printer so that you
21418 don't get an extra blank page between print jobs.
21421 &lt;End of help on this topic&gt;
21422 </BODY></HTML>
21423 ====== h_config_set_att_wyse ======
21424 <HTML><HEAD>
21425 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21426 </HEAD>
21427 <BODY>
21428 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21430 Type "S" to set your printer to "attached-to-wyse".<BR>
21431 It is OK to include "attached-to-wyse" in your personal list below.
21433 This is very similar to "attached-to-ansi".
21434 The only difference is in the control characters sent to turn the printer
21435 on and off.
21436 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21437 to turn on the printer and ESC LEFT_BRACKET 4 i
21438 to turn it off.
21439 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21440 &lt;End of help on this topic&gt;
21441 </BODY></HTML>
21442 ====== h_config_set_att_wyse2 ======
21443 <HTML><HEAD>
21444 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21445 </HEAD>
21446 <BODY>
21447 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21449 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21450 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21451 list below.
21455 This is the same as the "attached-to-wyse" option except that a
21456 formfeed character will not be appended to the end of the print job.
21457 If your printer already ejects the paper by itself at the end of the
21458 job, you may prefer the "no-formfeed" form of this printer so that you
21459 don't get an extra blank page between print jobs.
21462 &lt;End of help on this topic&gt;
21463 </BODY></HTML>
21464 ====== h_config_set_stand_print ======
21465 <HTML>
21466 <HEAD>
21467 <TITLE>OPTION: Set default printer</TITLE>
21468 </HEAD>
21469 <H1>OPTION: Set default printer</H1>
21470 <BODY>
21471 Move to the printer you want and type "S" to set it to be your
21472 default printer.  This list is not modifiable by you and has been
21473 set up by the system administrators.  If there is more than one printer
21474 listed in the Command List, you will be able to cycle through that
21475 whole list at the time you print, starting with your default.
21476 It is OK to include entries from this Standard list in your personal
21477 list below.
21479 &lt;End of help on this topic&gt;
21480 </BODY>
21481 </HTML>
21482 ====== h_config_set_custom_print ======
21483 <HTML>
21484 <HEAD>
21485 <TITLE>OPTION: Set default printer</TITLE>
21486 </HEAD>
21487 <H1>OPTION: Set default printer</H1>
21488 <BODY>
21489 You may add as many print commands as you want to your personal list.
21490 Specify one of them as your default printer by moving to the printer
21491 you want and typing "S".  If there is more than one printer listed
21492 in the Command List, you will be able to cycle through that list at
21493 the time you print, starting with your default.  It is OK to include
21494 entries from the Standard list above or to include the command
21495 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21496 "attached-to-wyse-no-formfeed" as one of the entries here.
21498 &lt;End of help on this topic&gt;
21499 </BODY>
21500 </HTML>
21501 ====== h_config_user_id =====
21502 <HTML>
21503 <HEAD>
21504 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21505 </HEAD>
21506 <BODY>
21507 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21509 This value is used as part of the "From" address on messages you send.
21510 It is also the default login name for remote IMAP server access.  Set this
21511 to the username part you want to appear on outgoing email.
21513 If you want to change the value of what gets included in the From header
21514 in messages you send (other than just the User ID)
21515 look <A HREF="h_config_change_your_from">here</A> for a description.
21517 <P><UL>   
21518 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21519 </UL><P>
21520 &lt;End of help on this topic&gt;
21521 </BODY>
21522 </HTML>
21523 ====== h_config_user_dom =====
21524 <HTML>
21525 <HEAD>
21526 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21527 </HEAD>
21528 <BODY>
21529 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21531 This value specifies the domain part (right-hand side) of your return
21532 address on outgoing email and is also used as the default domain for email
21533 composed to a local user.
21534 <!--chtml if pinemode="os_windows"-->
21535  This value is required for PC-Alpine. If you are unsure as to what this should be,
21536  contact your local help desk, system administrator, or Internet Service Provider.
21537 <!--chtml else-->
21538  If unset, Unix Alpine will obtain the domain from
21539  the system.  Often this value will be set for your whole site by the
21540  system administrator.<P>
21541 <!--chtml endif-->
21542 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21543 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21545 If you want to change the value of what gets included in the From header
21546 in messages you send (other than just the User Domain)
21547 look <A HREF="h_config_change_your_from">here</A> for a description.
21548 <P><UL>
21549 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21550 </UL><P>
21551 &lt;End of help on this topic&gt;
21552 </BODY>
21553 </HTML>
21554 ====== h_config_smtp_server =====
21555 <HTML>
21556 <HEAD>
21557 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21558 </HEAD>
21559 <BODY>
21560 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21561 This value specifies the name of one or more SMTP 
21562 (Simple Mail Transfer Protocol) servers for sending mail. 
21563 <!--chtml if pinemode="os_windows"-->
21564 You must have an SMTP server for use with PC-Alpine.
21565 SMTP servers are
21566 normally set up by a system administrator for use by all members of a given
21567 campus or department.
21568 Contact your local help desk to ask what SMTP
21569 servers you should use.  
21570 <!--chtml else-->
21571 Unix Alpine users may not need to set an SMTP server.
21572 Alpine will attempt to execute the program (usually sendmail) that is used
21573 to insert mail into the mail system.
21574 If this works for you, you may leave this option blank.
21575 If there is an SMTP server running on the Unix host you may be able to
21576 improve sending performance slightly by setting the SMTP server option
21577 to &quot;localhost&quot; or to the actual name of the Unix host.
21579 If the Unix host doesn't work the way Alpine was expecting you will need to
21580 set the value of this option.
21581 SMTP servers are
21582 normally set up by a system administrator for use by all members of a given
21583 campus or department.
21584 Contact your local help desk to ask what SMTP
21585 servers you should use.  
21586 <!--chtml endif-->
21588 Your SMTP server may offer SMTP AUTH authentication.
21589 It may even require it.
21590 If your SMTP server offers SMTP AUTH authentication you may specify a
21591 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21592 This parameter requires an associated value,
21593 the username identifier with which to establish the server
21594 connection.
21595 An example might be:
21598 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21601 If AUTH authentication is offered by the server, this will cause Alpine to
21602 attempt to use it.
21603 If AUTH authentication is not offered by the server, this will cause Alpine
21604 to fail sending with an error similar to:
21607 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21610 Another type of authentication that is used by some ISPs is called
21611 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21612 which means that you have to authenticate
21613 yourself to the POP or IMAP server by opening a mailbox before you
21614 can send mail.
21615 To do this, you usually only have to open your INBOX.
21618 You may tell Alpine to use the
21619 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21620 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21621 parameter
21622 in this option.
21623 At this time &quot;/submit&quot; is simply equivalent to specifying
21624 port 587, though it may imply more than that at some point in the future.
21625 Some ISPs are blocking port 25 in order to reduce the amount of spam
21626 being sent to their users.
21627 You may find that the submit option allows you to get around such a block.
21630 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21633 To specify any non-standard port number on the SMTP server you may follow
21634 the hostname with a colon followed by the portnumber.
21637 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21640 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21641 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21642 If that fails then a non-encrypted connection will be attempted instead.
21643 You may specify that a TLS connection is required if you wish.
21644 If you append &quot;/tls&quot; to the name then the connection will fail
21645 instead of falling back to a non-secure connection.
21648 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
21652 For more details about server name possibilities see
21653 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21656 <UL>
21657 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21658 </UL>
21660 &lt;End of help on this topic&gt;
21661 </BODY>
21662 </HTML>
21663 ====== h_config_nntp_server =====
21664 <HTML>
21665 <HEAD>
21666 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
21667 <BODY>
21668 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
21670 This value specifies the name of one or more NNTP
21671 (Network News Transfer Protocol)
21672 servers for reading and posting USENET news.
21673 NNTP servers are normally
21674 set up by a system administrator for use by all members of a given campus
21675 or department.
21676 Contact your local help desk to ask what NNTP servers you should use.  
21677 <!--chtml if pinemode="os_windows"--><!--chtml else-->
21678 Often Unix Alpine users will find that this variable has been
21679 set for the whole system (and they don't have to worry about it).  
21680 <!--chtml endif-->
21681 When you define an NNTP server here, Alpine implicitly defines a news
21682 collection for you, assuming that server as the news server and assuming
21683 that you will use the NNTP protocol and a local newsrc configuration file
21684 for reading news.
21685 For more about reading news with Alpine, see
21686 <A HREF="h_reading_news">how to use Alpine to read news</A>.
21688 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
21689 or &quot;AUTHINFO USER&quot; authentication.
21690 It may even require it.
21691 If your NNTP server does offer such authentication you may specify a user name
21692 parameter to cause Alpine to attempt to authenticate.
21693 The same is true for the server name in a folder collection that uses NNTP.
21694 This parameter requires an associated value,
21695 the username identifier with which to establish the server connection.
21696 An example might be:
21699 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
21702 If authentication is offered by the server, this will cause Alpine to
21703 attempt to use it.
21704 If authentication is not offered by the server, this will cause Alpine
21705 to fail with an error similar to:
21708 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
21710 For more details about the server name possibilities see
21711 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21712 <P><UL>
21713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21714 </UL><P>
21715 &lt;End of help on this topic&gt;
21716 </BODY>
21717 </HTML>
21718 ====== h_config_inbox_path =====
21719 <HTML>
21720 <HEAD>
21721 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
21722 </HEAD>
21723 <BODY>
21724 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
21726 This value overrides the default value of your INBOX name/path/location.
21727 <!--chtml if pinemode="os_windows"-->
21728 PC-Alpine users must specify an inbox path and it must be a folder on an
21729 IMAP server.  
21730 <!--chtml else-->
21731 Unix and VMS Alpine users will often find that this variable
21732 has been pre-configured by your system administrator.  
21733 <!--chtml endif-->
21734 You may be able to specify an alternate INBOX that is either a local folder 
21735 or a folder on an IMAP server.
21737 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
21738 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
21739 mail server.
21741 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21742 details on the syntax of folder definitions.
21744 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
21745 mail is disappearing.
21746 <P><UL>
21747 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21748 </UL><P>
21749 &lt;End of help on this topic&gt;
21750 </BODY>
21751 </HTML>
21752 ====== h_config_change_your_from =====
21753 <HTML>
21754 <HEAD>
21755 <TITLE>How to Change your From Address</TITLE>
21756 </HEAD>
21757 <BODY>
21758 <H1>How to Change your From Address</H1>
21760 If the From address that Alpine includes in mail that you send is not correct,
21761 you may want to configure a different default value for the From address.
21762 You may follow these directions to change the default:
21765 <UL>
21766   <LI> Go to the Main Alpine Menu
21767   <LI> From there type the Setup Command
21768   <LI> From there type the Config Command
21769 </UL>
21772 You've probably already seen this SETUP CONFIGURATION screen.
21773 If not, there are many options you may want to set here.
21774 To set the value of the From header you may use the
21775 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
21776 Find it by scrolling down a few pages or use the WhereIs command to
21777 search for &quot;customized&quot;.
21778 You may want to read the help text associated with the option.
21780 To add a custom From header, type the Add command and enter the
21781 full header line, including the leading &quot;From:&nbsp;&quot;.
21782 For example:
21784 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21786 Now exit the Setup command and try sending mail to yourself to see
21787 what the From line looks like.
21789 When you are in the composer you may edit the custom From line by typing
21790 Ctrl-R while your cursor is in the headers of the message and then moving
21791 to the From line and editing.
21792 If you want to leave the default value the same but add the possibility
21793 of being able to edit the header when you compose, add just the header
21794 name without a value.
21795 For example:
21797 <CENTER><SAMP>From:</SAMP></CENTER>
21799 If you change your From address you may also find it useful to add the
21800 changed From address to the
21801 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
21802 configuration option.
21804 <UL>   
21805 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21806 </UL><P>
21807 &lt;End of help on this topic&gt;
21808 </BODY>
21809 </HTML>
21810 ====== h_config_default_fcc =====
21811 <HTML>
21812 <HEAD>
21813 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
21814 </HEAD>
21815 <BODY>
21816 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
21818 This value specifies where a copy of outgoing mail should be saved.  If
21819 this is not a path name, it will be in the default collection for saves.
21820 Any valid folder specification, local or IMAP, is allowed.  This default
21821 folder carbon copy only applies when the 
21822 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
21823 is set to use the default folder.  
21824 <!--chtml if pinemode="os_windows"-->
21825 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
21826 <!--chtml else-->
21827 Unix Alpine default
21828 is normally &quot;sent-mail&quot; in the default folder collection. 
21829 <!--chtml endif-->
21831 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
21832 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
21833 IMAP server (remember that in order to later access this remote folder through Alpine, it
21834 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21835 for more information). An example:<p>
21836 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
21838 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
21840 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21841 details on the syntax of folder definitions.
21843 <UL>   
21844 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21845 </UL><P>
21846 &lt;End of help on this topic&gt;
21847 </BODY>
21848 </HTML>
21849 ====== h_config_def_save_folder =====
21850 <HTML>
21851 <HEAD>
21852 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
21853 </HEAD>
21854 <BODY>
21855 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
21857 This option determines the default folder name for save-message operations 
21858 (&quot;saves&quot;).
21860 If this is not a path name, it will be in the default collection for saves.
21861 Any valid folder specification, local or IMAP, is allowed.  This default
21862 folder only applies when the
21863 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
21864 doesn't override it.  
21865 <!--chtml if pinemode="os_windows"-->
21866 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
21867 <!--chtml else-->
21868 Unix Alpine default
21869 is normally &quot;saved-messages&quot; in the default folder collection.
21870 <!--chtml endif-->
21871 If you access your email through an IMAP server, especially if you often switch between Unix
21872 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
21873 IMAP server (remember that in order to later access this remote folder through Alpine, it
21874 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21875 for more information). An example:<p>
21876 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
21878 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21879 details on the syntax of folder definitions.
21881 <UL>   
21882 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21883 </UL><P>
21884 &lt;End of help on this topic&gt;
21885 </BODY>
21886 </HTML>
21887 ====== h_config_postponed_folder =====
21888 <HTML>
21889 <HEAD>
21890 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
21891 </HEAD>
21892 <BODY>
21893 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
21895 This value overrides the default name for the folder where postponed
21896 messages are saved.  If this is not a path name, it will be in the default
21897 collection for message Saves.  Any valid folder specification, local or
21898 remote, is allowed. 
21899 PC-Alpine default
21900 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
21901 The Unix Alpine default is normally &quot;postponed-msgs&quot;
21902 in the default collection. 
21904 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
21905 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
21906 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
21907 in all Alpine copies you use. 
21908 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
21909 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
21910 for more information). An
21911 example:<p> 
21912 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
21914 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21915 details on the syntax of folder definitions.
21917 <UL>   
21918 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21919 </UL><P>
21920 &lt;End of help on this topic&gt;
21921 </BODY>
21922 </HTML>
21923 ====== h_config_read_message_folder =====
21924 <HTML>
21925 <HEAD>
21926 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
21927 </HEAD>
21928 <BODY>
21929 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
21931 By virtue of specifying a folder name here, Alpine will be configured to
21932 save all messages that you have read during a session into the designated
21933 &quot;read messages&quot; folder.  This allows you to more easily distinguish
21934 between your really new email (in your INBOX) and those that you have
21935 already read.  Depending on how you define the 
21936 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21937 setting, you may or may not be asked when you quit
21938 Alpine if you want read messages to be moved to this folder.  In either
21939 case, moving the messages means they will be deleted from your INBOX.
21941 If this is not a path name, it will be in the default collection for
21942 saves.  Any valid folder specification, local or remote (via IMAP), is
21943 allowed.  There is no default for the name of the read message folder.
21945 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21946 details on the syntax of folder definitions.
21948 <UL>   
21949 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21950 </UL><P>
21951 &lt;End of help on this topic&gt;
21952 </BODY>
21953 </HTML>
21954 ====== h_config_form_folder =====
21955 <HTML>
21956 <HEAD>
21957 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
21958 </HEAD>
21959 <BODY>
21960 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
21962 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
21963 contain messages that you have composed and that are intended to be
21964 sent in their original form repeatedly.
21967 Setting this variable will alter Alpine's usual behavior when you
21968 execute the Compose command.  Normally, Alpine offers a chance to
21969 continue a postponed or interrupted message should one or the other
21970 exist.  When this variable is set to a folder name that exists, Alpine
21971 will also offer the chance to select a message from the folder to
21972 insert into the composer (much like when continuing a postponed message).
21973 The difference, however, is that Alpine will not automatically delete
21974 the selected message from the Form Letter Folder.
21976 Setting this variable will also affect Alpine's behavior when you
21977 Postpone a message from the composer.  Normally, Alpine simply stashes
21978 the message away in your
21979 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
21980 Regardless of the specified folder's existence, Alpine will ask which
21981 folder you intend the message to be stored in.  Choose the
21982 &quot;F&quot; option to store the message in your Form Letter Folder.
21983 This is the most common way to add a message to the folder.
21986 Another method of adding messages to the folder is via the Alpine
21987 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
21988 you expect to send in the same form again, you can enter the Form
21989 Letter Folder's name in this field.  Alpine, as usual, will copy the
21990 message as it's sent.  Note, when you later select this message from 
21991 your Form Letter Folder, it will have the same recipients as the original
21992 message.
21995 To delete a message from the Form Letter Folder, you can either select
21996 the folder from a suitable FOLDER LIST screen, or use the Delete
21997 command in the MESSAGE INDEX offered when selecting from the folder as
21998 part of the Compose command.  You can delete a Form Letter Folder just
21999 as any other folder from a suitable FOLDER LIST screen.
22002 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22003 facility can be used
22004 to replace the Form Letter Folder.
22007 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22008 details on the syntax of folder definitions.
22011 <UL>   
22012 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22013 </UL><P>
22014 &lt;End of help on this topic&gt;
22015 </BODY>
22016 </HTML>
22017 ====== h_config_archived_folders =====
22018 <HTML>
22019 <HEAD>
22020 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22021 </HEAD>
22022 <BODY>
22023 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22025 This is like
22026 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22027 only more general.  You may archive
22028 any of the folders in your incoming collection.  This is a list of folder
22029 pairs, with the first separated from the second in the pair by a space.
22030 The first folder in a pair is the folder you want to archive, and the
22031 second folder is the folder that read messages from the first should be
22032 moved to.  Depending on how you define the
22033 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22034 setting, you may or may not be asked when you
22035 leave the first folder if you want read messages to be moved to the
22036 second folder.  In either case, moving the messages means they will be
22037 deleted from the first folder.
22039 The name of the first folder in each pair can be either the technical
22040 specification of the folder (like what appears in your configuration file)
22041 or (much easier) the nickname that you gave the folder when you made it
22042 an incoming folder.
22044 For example:<p>
22045 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22046 <p>or, using nicknames:<p>
22047 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22049 If these are not path names, they will be in the default collection for
22050 saves. Any valid folder specification, local or remote (via IMAP), is
22051 allowed. There is no default.
22053 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22054 details on the syntax of folder definitions.
22056 <UL>   
22057 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22058 </UL><P>
22059 &lt;End of help on this topic&gt;
22060 </BODY>
22061 </HTML>
22062 ====== h_config_newsrc_path ======
22063 <HTML>
22064 <HEAD>
22065 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22066 </HEAD>
22067 <BODY>
22068 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22070 This option overrides the default name Alpine uses for your "newsrc" news
22071 status and subscription file.  If set, Alpine will take this value as the
22072 full pathname for the desired newsrc file.<P>
22074 If this option is <B>not</B> set, 
22075 <!--chtml if pinemode="os_windows"-->
22076 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22077 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22078 directory as your pinerc file for NEWSRC.
22079 <!--chtml else-->
22080 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22081 your account's home directory).
22082 <!--chtml endif-->
22083 <P><UL>
22084 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22085 </UL>
22087 &lt;End of help on this topic&gt;
22088 </BODY>
22089 </HTML>
22090 ====== h_config_literal_sig =====
22091 <HTML>
22092 <HEAD>
22093 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22094 </HEAD>
22095 <BODY>
22096 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22098 With this option your actual signature, as opposed to
22099 the name of a file containing your signature,
22100 is stored in the Alpine configuration file.
22101 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22104 This is simply a different way to store the signature.
22105 The signature is stored inside your Alpine configuration file instead of in
22106 a separate file.
22107 Tokens work the same way they do with the
22108 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22109 help.
22112 The Setup/Signature command on Alpine's MAIN MENU will edit
22113 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22114 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22115 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22116 instead.
22119 The two character sequence &#92;n (backslash followed by
22120 the character n) will be used to signify a line-break in your signature.
22121 You don't have to enter the &#92;n, but it will be visible in the
22122 SETUP CONFIGURATION window after you are done editing the signature.
22125 <UL>   
22126 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22127 </UL><P>
22128 &lt;End of help on this topic&gt;
22129 </BODY>
22130 </HTML>
22131 ====== h_config_signature_file =====
22132 <HTML>
22133 <HEAD>
22134 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22135 </HEAD>
22136 <BODY>
22137 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22139 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22140 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22141 You can tell that that is the case because the value of the
22142 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22144 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22146 You may either use all Literal Signatures (signatures stored in your
22147 configuration file) throughout Alpine, or all signature files.
22148 You can't mix the two.
22150 This is the name of a file that will be automatically inserted into
22151 outgoing messages.
22152 It typically contains information such as your
22153 name, email address and organizational affiliation.
22154 Alpine adds the
22155 signature into the message as soon as you enter the composer so you
22156 can choose to remove it or edit it on a message by message basis.
22157 Signature file placement in message replies is controlled by the
22158 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22159 setting in the feature list.
22162 The default file name is
22163 <!--chtml if pinemode="os_windows"-->
22164 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22165 PINERC file is a local file.
22166 If your PINERC file is remote, then it will be in the directory specified
22167 by the &quot;-aux local_directory&quot; command line option.
22168 <!--chtml else-->
22169 &quot;.signature&quot;.
22170 <!--chtml endif-->
22173 To create or edit your signature file choose Setup from the MAIN MENU
22174 and then select S for Signature (Main/Setup/Signature).  This puts you
22175 into the Signature Editor where you can enter a <EM>few</EM> lines of
22176 text containing your identity and affiliation.
22179 If the filename is followed by a vertical bar (|) then instead
22180 of reading the contents of the file the file is assumed to be a
22181 program that will produce the text to be used on its standard output.
22182 The program can't have any arguments and doesn't receive any input from Alpine,
22183 but the rest of the processing works as if the contents came from a file.
22186 Instead of storing the data in a local file, the
22187 signature data may be stored remotely in an IMAP folder.
22188 In order to do this, 
22189 you must use a remote name for the file.
22190 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22192 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22195 The syntax used here is the same as the syntax used for remote configuration
22196 files from the command line.
22197 Note that you may not access an existing signature file remotely,
22198 you have to create a new <EM>folder</EM> that contains the signature data.
22199 If the name you use here for the signature file is a remote name, then when
22200 you edit the file from the Setup/Signature command the data will be stored
22201 remotely in the folder.
22202 You aren't required to do anything special to create the folder, it
22203 gets created automatically if you use a remote name.
22206 Besides regular text, the signature file may also contain
22207 (or a signature program may produce) tokens that
22208 are replaced with text that usually depends on the message you are replying
22209 to or forwarding.
22210 For example, if the signature file contains the token
22212 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22214 anywhere in the text, then that token is replaced by the date
22215 the message you are replying to or forwarding was sent.
22216 If it contains
22218 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22220 that is replaced with the current date.
22221 The first is an example of a token that depends on the message you
22222 are replying to (or forwarding) and the second is an example which
22223 doesn't depend on anything other than the current date.
22224 You have to be a little careful with this facility since tokens that
22225 depend on the message you are replying to or forwarding will be replaced
22226 by nothing in the case where you are composing a new message from scratch.
22227 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22228 in this respect.
22229 It allows you to use different signature files in different cases.
22232 The list of tokens available for use in the signature file is
22233 <A HREF="h_index_tokens">here</A>.
22236 Instead of, or along with the use of &quot;roles&quot; to give you
22237 different signature files in different situations, there is also
22238 a way to conditionally include text based
22239 on whether or not a token would result in specific replacement text.
22240 For example, you could include some text based on whether or not
22241 the _NEWS_ token would result in any newsgroups if it was used.
22242 This is explained in detail
22243 <A HREF="h_reply_token_conditionals">here</A>.
22244 This isn't for the faint of heart.
22246 In the very unlikely event that you want to include a literal token
22247 in the signature you must precede it with a backslash character.
22248 For example,
22250 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22252 would produce something like
22254 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22256 It is not possible to have a literal backslash followed by an expanded token.
22258 An alternate method for storing the signature data is available by using the
22259 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22260 This variable will be used by default.
22262 <UL>   
22263 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22264 </UL><P>
22265 &lt;End of help on this topic&gt;
22266 </BODY>
22267 </HTML>
22268 ====== h_config_init_cmd_list =====
22269 <HTML>
22270 <HEAD>
22271 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22272 </HEAD>
22273 <BODY>
22274 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22276 The initial keystroke--or command--list option lets you start Alpine at
22277 any place you like.
22278 Whatever keystrokes you specify here will be executed
22279 by Alpine upon startup as a macro.
22280 The words SPACE, TAB, DOWN, UP, LEFT, and
22281 RIGHT indicate the pressing of those keys.
22282 CR indicates the pressing of the RETURN key.
22283 F1 through F12 represent the function keys, and ^ followed
22284 by a character indicates that key pressed along with the control key (in
22285 other words, ^P means Ctrl-P).
22286 As a shortcut notation, an element of the list may be several characters
22287 surrounded by double-quotes (").
22288 That will be expanded into the individual keystrokes
22289 (excluding the double-quote characters).
22290 For example, the quoted-string
22292 <P><CENTER>"ABC"</CENTER>
22295 is interpreted the same as the three separate list members
22297 <P><CENTER>A and B and C</CENTER>
22300 which is also the same as
22302 <P><CENTER>A,B,C</CENTER>
22305 An example: To view message 1 on startup,
22306 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22308 <P><CENTER>I,J,1,CR,V</CENTER>
22311 An equivalent version of this is
22313 <P><CENTER>"IJ1",CR,V</CENTER>
22316 Restrictions: You cannot pre-type into the composer with the initial
22317 keystroke list, and you cannot mix function key commands with letter
22318 commands.
22320 <P><UL>   
22321 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22322 </UL>
22324 &lt;End of help on this topic&gt;
22325 </BODY>
22326 </HTML>
22327 ====== h_config_comp_hdrs =====
22328 <html>
22329 <header>
22330 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22331 </header>
22332 <body>
22333 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22335 You can control which headers you want visible when composing outgoing
22336 email using this option.
22337 You can specify any of the regular set, any
22338 <A HREF="h_compose_richhdr">Rich Header</A>,
22339 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22340 that you have already defined.
22341 If you use this setting at all, you must specify all the
22342 headers you want to see, you can't just add to the regular header set.
22343 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22345 Note that the "Newsgroups:" header will be abbreviated in the Composer
22346 display, but should be spelled out in full here.<p>
22347 <UL>   
22348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22349 </UL><P>
22350 &lt;End of help on this topic&gt;
22351 </body>
22352 </html>
22353 ====== h_config_custom_hdrs =====
22354 <HTML>
22355 <HEAD>
22356 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22357 </HEAD>
22358 <BODY>
22359 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22361 You may add your own custom headers to outgoing messages.
22362 Each header you specify here must include the header tag 
22363 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22364 and may optionally include a value for that header.
22365 If you want to see these custom headers each time you compose a message,
22366 you must add them to your
22367 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22368 otherwise they become part
22369 of the rich header set that you only see when you press the
22370 <A HREF="h_compose_richhdr">Rich Header</A>
22371 <!--chtml if pinemode="function_key"-->(F5)
22372 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22373 (If you are looking for a way to change which headers are <EM>displayed</EM>
22374 when you view a message, take a look at the
22375 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22376 option instead.)
22377 Here's an example that shows how you might set your From address
22379 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22381 and another showing how you might set a Reply-To address
22383 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22385 You may also set non-standard header values here.
22386 For example, you could add
22388 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22390 or even
22392 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22394 If you include a value after the colon then that header will be included
22395 in your outgoing messages unless you delete it before sending.
22396 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22397 it will not be included in outgoing messages unless you edit a value
22398 in manually.
22399 For example, if
22401 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22403 is in the list, then the Reply-To header will be available for editing
22404 but won't be included unless a value is added while in the composer.
22406 It's actually a little more complicated than that.
22407 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22408 defaults.
22409 If the message you are about to compose already has a value for a header,
22410 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22411 For example, if you are Replying to a message the Subject field
22412 will already be filled in.
22413 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22414 custom subject will <EM>NOT</EM> be used.
22415 The subject derived from the subject of the message you are Replying
22416 to will be used instead.
22418 It is also possible to make header setting even more complicated and more
22419 automatic by using
22420 <A HREF="h_rules_roles">Roles</A>,
22421 but if all you want to do is set a default value for a header, you don't
22422 need to think about Roles.
22424 If you change your From address you may also find it useful to add the
22425 changed From address to the
22426 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22427 configuration option.
22429 Limitation: Because commas are used to separate the list of
22430 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22431 header contain a comma.
22432 Nor is there currently an &quot;escape&quot; mechanism provided
22433 to make this work.
22434 <P><UL>
22435 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22436 </UL>
22438 &lt;End of help on this topic&gt;
22439 </BODY>
22440 </HTML>
22441 ====== h_config_viewer_headers =====
22442 <HTML>
22443 <HEAD>
22444 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22445 </HEAD>
22446 <BODY>
22447 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22449 You may change the default list of headers that are viewed by listing
22450 the headers you want to view here.  If the headers in your
22451 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22452 will be shown.  The order of the headers you list will be honored.  If
22453 the special value &quot;all-except&quot; is included as the first
22454 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22455 message except those in the list will be shown.  The values are all
22456 case insensitive.
22459 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22460 then the original default headers are ignored.  So, if you just wanted
22461 to add the header Organization to the list, you would have to list
22462 Organization plus all of the other headers originally in the default
22463 list.  If you just included Organization and nothing else, then you
22464 would see only the Organization header, nothing else.
22467 The default list of headers includes:
22468 <UL>
22469   <LI>From
22470   <LI>Resent-From
22471   <LI>To
22472   <LI>Resent-To
22473   <LI>Cc
22474   <LI>Resent-cc
22475   <LI>Bcc
22476   <LI>Newsgroups
22477   <LI>Followup-To
22478   <LI>Date
22479   <LI>Resent-Date
22480   <LI>Subject
22481   <LI>Resent-Subject
22482   <LI>Reply-To
22483 </UL>
22486 If you are looking for a way to control which headers are included in
22487 outgoing mail and are visible or not in the composer, take a look at the
22488 options
22489 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22490 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22491 this option.
22493 <UL>   
22494 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22495 </UL><P>
22496 &lt;End of help on this topic&gt;
22497 </BODY>
22498 </HTML>
22499 ====== h_config_viewer_margin_left =====
22500 <HTML>
22501 <HEAD>
22502 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22503 </HEAD>
22504 <BODY>
22505 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22507 This variable controls the left-hand vertical margin's width in
22508 Alpine's Message Viewing screen.
22509 Its value is the number of space characters preceding each displayed line.
22510 For consistency with
22511 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22512 you may specify the column number to start in
22513 (column numbering begins with number 1)
22514 instead of the width of the margin by appending a lower case letter
22515 &quot;c&quot; to the number.
22516 For example, a value of &quot;2c&quot; means to start the text in column two,
22517 which is entirely equivalent to a value of &quot;1&quot;, which means to
22518 leave a margin of 1 space.
22520 The default is a left margin of 0 (zero).
22521 Misconfigurations (for example, negative values or values with starting
22522 left columns greater than the ending right column)
22523 are silently ignored.
22524 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22525 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22526 instead.
22529 &lt;End of help on this topic&gt;
22530 </BODY>
22531 </HTML>
22532 ====== h_config_viewer_margin_right =====
22533 <HTML>
22534 <HEAD>
22535 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22536 </HEAD>
22537 <BODY>
22538 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22540 This variable controls the right-hand vertical margin's width in
22541 Alpine's Message Viewing screen.
22542 Its value is the number of space characters following each displayed line.
22543 You may specify the column number to end the text in
22544 (column numbering begins with number 1)
22545 instead of the width of the margin by appending a lower case letter
22546 &quot;c&quot; to the number.
22547 For example, a value of &quot;76c&quot; means to end the text in column 76.
22548 If the screen is 80 characters wide, this is equivalent to a value
22549 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22550 However, if you use different size screens at different times, then these
22551 two values are not equivalent.
22553 The default right margin is 4.
22554 Misconfigurations (for example, negative values or values with starting
22555 left columns greater than the ending right column)
22556 are silently ignored.
22557 If the number of columns for text between the
22558 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22559 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22560 instead.
22563 &lt;End of help on this topic&gt;
22564 </BODY>
22565 </HTML>
22566 ====== h_config_quote_suppression =====
22567 <HTML>
22568 <HEAD>
22569 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22570 </HEAD>
22571 <BODY>
22572 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22574 This option should be used with care.
22575 It will cause some of the quoted text to be eliminated from the
22576 display when viewing a message in the MESSAGE TEXT screen.
22577 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22578 value &quot;5&quot;,
22579 this will cause quoted text that is longer than five lines to be truncated.
22580 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22581 Quoted text of more than six lines will have the first five lines displayed
22582 followed by a line that looks something like
22584 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22586 As a special case, if exactly one line of quoted text would be hidden, the
22587 entire quote will be shown instead.
22588 So for the above example, quoted text that is exactly six lines long will
22589 will be shown in its entirety.
22590 (In other words, instead of hiding a single line and adding a line
22591 that announces that one line was hidden, the line is just shown.)
22593 If the sender of a message has carefully chosen the quotes that he or she
22594 includes, hiding those quotes may change the meaning of the message.
22595 For that reason, Alpine requires that when you want to set the value of this
22596 variable to something less than four lines, you actually have to set it
22597 to the negative of that number.
22598 So if you want to set this option to &quot;3&quot;, you actually have to
22599 set it to &quot;-3&quot;.
22600 The only purpose of this is to get you to think about whether or not you
22601 really want to do this!
22602 If you want to delete all quoted text you set the value of this option
22603 to the special value &quot;-10&quot;.
22605 The legal values for this option are
22607 <TABLE>   
22608 <TR>
22609   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22610   <TD> Default, don't hide anything </TD>
22611 </TR>
22612 <TR>
22613   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22614   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22615 </TR>
22616 <TR>
22617   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22618   <TD> Suppress if more than that many lines </TD>
22619 </TR>
22620 <TR>
22621   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22622   <TD> Suppress all quoted lines </TD>
22623 </TR>
22624 </TABLE>
22626 If you set this option to a non-default value you may sometimes wish to
22627 view the quoted text that is not shown.
22628 When this is the case, the
22629 <A HREF="h_common_hdrmode">HdrMode Command</A>
22630 may be used to show the hidden text.
22631 Typing the &quot;H&quot; command once will show the hidden text.
22632 Typing a second &quot;H&quot; will also turn on Full Header mode.
22633 The presence or absence of the HdrMode command is determined by the
22634 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22635 Feature-List option in your Alpine configuration, so you will want to
22636 be sure that is turned on if you use quote suppression.
22638 For the purposes of this option, a quote is a line that begins with the
22639 character &quot;&gt;&quot;.
22641 Quotes are only suppressed when displaying a message on the screen.
22642 The entire quote will be left intact when printing or forwarding or something
22643 similar.
22645 &lt;End of help on this topic&gt;
22646 </BODY>
22647 </HTML>
22648 ====== h_config_saved_msg_name_rule =====
22649 <HTML>
22650 <HEAD>
22651 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
22652 </HEAD>
22653 <BODY>
22654 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
22656 This option determines the default folder name when saving
22657 a message.
22660 The default option is &quot;default-folder&quot;, which is the folder
22661 called &quot;saved-messages&quot; in Unix Alpine and
22662 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
22663 the Alpine option called
22664 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
22667 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
22668 get the chosen option's value for the message being saved (or for the
22669 first message being saved if using an aggregrate save).
22670 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
22671 value of who the message came from (i.e. the from address).
22672 Alpine then attempts to save the message to a folder matching that value.
22673 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
22674 &quot;by-sender&quot;.
22675 The opposite is also true.
22676 If &quot;by-recipient&quot; is chosen and the message was posted to a
22677 newsgroup, Alpine will use the newsgroup name.
22678 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
22679 &quot;by-from&quot;.
22682 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
22683 to use the personal name part of the address instead of the mailbox part.
22684 If any of the &quot;by-nick&quot; options are chosen, the
22685 address is looked up in your address book and if found, the
22686 nickname for that entry is used.
22687 Only simple address book entries are checked, not distribution lists.
22688 Similarly, if any of the
22689 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
22690 address book entry is used.
22691 If by-realname, or the by-nick or by-fcc lookups result in no value,
22692 then if the chosen option ends with the &quot;then-from&quot;,
22693 &quot;then-sender&quot;, &quot;then-replyto&quot;,
22694 or &quot;then-recip&quot; suffix, Alpine
22695 reverts to the same behavior as &quot;by-from&quot;,
22696 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
22697 depending on which option was specified.
22698 If the chosen option doesn't end with one of
22699 the &quot;then-&quot; suffixes, then Alpine reverts to the default
22700 folder when no match is found in the address book.
22703 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
22704 to save to the folder that you saved to the last time you saved a
22705 message.  The first time you save a message in an Alpine session, Alpine
22706 attempts to save the message to the default folder.
22709 Here is an example to make some of the options clearer.
22710 If the message is From
22712 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
22714 and this rule is set to &quot;by-from&quot;, then the default folder offered
22715 in the save dialog would be &quot;flint&quot;.
22717 If this rule is set to &quot;by-realname-of-from&quot; then the default would
22718 be &quot;Fred Flintstone&quot;.
22720 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
22721 for the address &quot;flint@bedrock.org&quot; in your address book.
22722 If an entry is found and it has a nickname associated with it, that nickname
22723 will be offered as the default folder.
22724 If not, the default saved message folder will be offered as the default.
22726 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
22727 for the address &quot;flint@bedrock.org&quot; in your address book.
22728 If an entry is found and it has an Fcc associated with it, that Fcc
22729 will be offered as the default folder.
22730 If not, the default saved message folder will be offered as the default.
22732 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
22733 for the address &quot;flint@bedrock.org&quot; in your address book.
22734 If an entry is found and it has a nickname associated with it, that nickname
22735 will be offered as the default folder.
22736 If it is not found (or has no nickname) then the default offered will be
22737 the same as it would be for the &quot;by-from&quot; rule.
22738 That is, it would be &quot;flint&quot;
22740 <UL>   
22741 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22742 </UL><P>
22743 &lt;End of help on this topic&gt;
22744 </BODY>
22745 </HTML>
22746 ====== h_config_fcc_rule =====
22747 <HTML>
22748 <HEAD>
22749 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
22750 </HEAD>
22751 <BODY>
22752 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
22754 This option determines the default name for folder carbon copy. Choose
22755 one:
22757 <DL>
22758 <DT>default-fcc</DT>
22759 <DD>This is the normal default, the value of which is set in the
22760 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
22761 configuration.
22762 </DD>
22764 <DT>last-fcc-used</DT>
22765 <DD> Causes Alpine to use the folder that was last
22766 used in the fcc field
22767 </DD>
22769 <DT>by-nickname</DT>
22770 <DD>Means that Alpine will use the nickname
22771 from your address book that matches the first address in the To line.
22772 If there is no match, it will use the value of the
22773 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
22774 </DD>
22776 <DT>by-recipient</DT>
22777 <DD>Means Alpine will form a folder name
22778 based on the left hand side of the first address in the To line.
22779 </DD>
22781 <DT>by-nick-then-recip</DT>
22782 <DD>Means that it will use the
22783 matching nickname from your address book if there is one, otherwise it
22784 will extract the recipient name from the address and use that (like
22785 by-recipient).
22786 </DD>
22788 <DT>current-folder</DT>
22789 <DD>Causes a copy to be written to
22790 the currently open folder, unless that is the INBOX.  In the case
22791 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
22792 used instead.
22793 </DD>
22794 </DL>
22797 Note: Whatever the fcc specified by the rule here, it will be
22798 over-ridden by any fcc entries you have in your address book.
22801 <UL>   
22802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22803 </UL><P>
22804 &lt;End of help on this topic&gt;
22805 </BODY>
22806 </HTML>
22807 ====== h_config_sort_key =====
22808 <HTML>
22809 <HEAD>
22810 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
22811 </HEAD>
22812 <BODY>
22813 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
22815 This option determines the order in which messages will be displayed in
22816 the MESSAGE INDEX screen.  Choose from:
22818 <UL>
22819  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22820  <LI> <A HREF="h_index_sort_date">Date</A>
22821  <LI> <A HREF="h_index_sort_subj">Subject</A>
22822  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22823  <LI> <A HREF="h_index_sort_thread">Thread</A>
22824  <LI> <A HREF="h_index_sort_from">From</A>
22825  <LI> <A HREF="h_index_sort_size">Size</A>
22826  <LI> <A HREF="h_index_sort_score">Score</A>
22827  <LI> <A HREF="h_index_sort_to">To</A>
22828  <LI> <A HREF="h_index_sort_cc">Cc</A>
22829 </UL>
22832 Each type of sort may also be reversed.
22833 Normal default is by &quot;Arrival&quot;.
22836 A possible point of confusion arises when you change the configuration
22837 of the <!--#echo var="VAR_sort-key"-->.
22838 The folder will normally be re-sorted when you go back to viewing the
22839 index.
22840 However, if you have manually sorted the folder with the
22841 Sort
22842 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22843 command, then it will not be re-sorted until the next time it is opened.
22846 <UL>   
22847 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22848 </UL><P>
22849 &lt;End of help on this topic&gt;
22850 </BODY>
22851 </HTML>
22852 ====== h_config_other_startup =====
22853 <HTML>
22854 <HEAD>
22855 <TITLE>OPTION: Set Startup Rule</TITLE>
22856 </HEAD>
22857 <BODY>
22858 <H1>OPTION: Set Startup Rule</H1>
22860 This option determines which message will be the <EM>current message</EM> when
22861 the folder is first opened.
22862 It works the same way that the option
22863 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
22864 works, so look there for help.
22865 It may be used for any folder, not just incoming folders.
22868 <UL>   
22869 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22870 </UL><P>
22871 &lt;End of help on this topic&gt;
22872 </BODY>
22873 </HTML>
22874 ====== h_config_perfolder_sort =====
22875 <HTML>
22876 <HEAD>
22877 <TITLE>Set Sort Order</TITLE>
22878 </HEAD>
22879 <BODY>
22880 <H1>Set Sort Order</H1>
22882 This option determines the order in which messages will be displayed in
22883 the MESSAGE INDEX screen when the Current Folder Type set in the
22884 Pattern is a match. Choose from:
22886 <UL>
22887  <LI> <A HREF="h_index_sort_default">Default</A>
22888  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22889  <LI> <A HREF="h_index_sort_date">Date</A>
22890  <LI> <A HREF="h_index_sort_subj">Subject</A>
22891  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22892  <LI> <A HREF="h_index_sort_thread">Thread</A>
22893  <LI> <A HREF="h_index_sort_from">From</A>
22894  <LI> <A HREF="h_index_sort_size">Size</A>
22895  <LI> <A HREF="h_index_sort_score">Score</A>
22896  <LI> <A HREF="h_index_sort_to">To</A>
22897  <LI> <A HREF="h_index_sort_cc">Cc</A>
22898 </UL>
22901 Each type of sort may also be reversed.
22902 Normal default is by &quot;Arrival&quot;.
22905 A possible point of confusion arises when you change the configuration
22906 of the Sort Order for the currently open folder.
22907 The folder will normally be re-sorted when you go back to viewing the
22908 index.
22909 However, if you have manually sorted the folder with the
22910 Sort
22911 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22912 command, then it will not be re-sorted until the next time it is opened.
22915 <UL>   
22916 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22917 </UL><P>
22918 &lt;End of help on this topic&gt;
22919 </BODY>
22920 </HTML>
22921 ====== h_config_fld_sort_rule =====
22922 <HTML>
22923 <HEAD>
22924 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
22925 </HEAD>
22926 <BODY>
22927 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
22929 This option controls the order in which folder list entries will be
22930 presented in the FOLDER LIST screen.  Choose one of the following:
22932 <DL>
22933 <DT>Alphabetical</DT>
22934 <DD>sort by alphabetical name independent of type
22935 </DD>
22937 <DT>Alpha-with-dirs-last</DT>
22938 <DD>sort by alphabetical name grouping directory entries
22939 to the end of the list
22940 </DD>
22942 <DT>Alpha-with-dirs-first</DT>
22943 <DD>sort by alphabetical name grouping directory entries
22944 to the start of the list
22945 </DD>
22946 </DL>
22948 The normal default is &quot;Alphabetical&quot;.
22951 <UL>   
22952 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22953 </UL><P>
22954 &lt;End of help on this topic&gt;
22955 </BODY>
22956 </HTML>
22957 ====== h_config_ab_sort_rule =====
22958 <HTML>
22959 <HEAD>
22960 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
22961 </HEAD>
22962 <BODY>
22963 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
22965 This option controls the order in which address book entries will be
22966 presented.  Choose one of the following:
22968 <DL>
22969 <DT>fullname</DT>
22970 <DD>use fullname field, lists mixed in
22971 </DD>
22973 <DT>fullname-with-lists-last</DT>
22974 <DD>use fullname field, but put lists at end
22975 </DD>
22977 <DT>nickname</DT>
22978 <DD>use nickname field, lists mixed in
22979 </DD>
22981 <DT>nickname-with-lists-last</DT>
22982 <DD>use nickname field, but put lists at end
22983 </DD>
22985 <DT>dont-sort</DT>
22986 <DD>don't change order of file
22987 </DD>
22988 </DL>
22991 The normal default is &quot;fullname-with-lists-last&quot;.
22992 If you use an address book from more than one computer and those
22993 computers sort the address book differently then the sort order
22994 will be the order where the last change to the address book was
22995 made.
22996 There are two reasons the sorting might be different on different
22997 systems.
22998 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
22999 places.
23000 Second, the collation rules on the two computers may be different.
23001 For example, one system might ignore special characters while the other
23002 doesn't or one may sort upper and lower case letters together while
23003 the other doesn't.
23004 In any case, the order you see is the order on the system where the
23005 last change was made, for example by an address book edit or a
23006 Take Address command.
23009 <UL>   
23010 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23011 </UL><P>
23012 &lt;End of help on this topic&gt;
23013 </BODY>
23014 </HTML>
23015 ====== h_config_post_char_set =====
23016 <HTML>
23017 <HEAD>
23018 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23019 </HEAD>
23020 <BODY>
23021 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23023 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23024 when sending messages.
23028 When sending a message the text typed in the composer is
23029 labeled with the character set specified by this option.
23030 If the composed text is not fully representable in the 
23031 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23032 instead;
23035 Attachments are labeled with your
23036 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23039 Generally, there should be little need to set this option.
23040 If left unset, the
23041 default behavior is to label composed text as specifically as
23042 possible.  That is, if the composed text has no non-ASCII characters,
23043 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23044 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23045 attempt to automatically detect a number of character sets including ISO-8859-15,
23046 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23047 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23048 If the message contains a mix of character sets,
23049 it is labeled as &quot;UTF-8.&quot;
23053 This setting is provided to allow you to force a particular character set that
23054 Alpine does not automatically detect. For example, if a message is representable
23055 in more than one character set then Alpine may choose a different default
23056 than you want.
23057 Lastly, by setting this option explicitly to
23058 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23059 &quot;UTF-8&quot; instead of something more specific.
23062 In the Setup/Config screen you may choose from a list of all the
23063 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23066 The options
23067 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23068 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23069 are closely related.
23070 Setting the feature
23071 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23072 should cause this option to be ignored.
23075 <UL>   
23076 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23077 </UL><P>
23078 &lt;End of help on this topic&gt;
23079 </BODY>
23080 </HTML>
23081 ====== h_config_unk_char_set =====
23082 <HTML>
23083 <HEAD>
23084 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23085 </HEAD>
23086 <BODY>
23087 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23089 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23090 when reading or replying to messages.
23094 A text message should either be made up of all US-ASCII characters
23095 or it should contain a charset label which tells the software which
23096 character set encoding to use to interpret the message.
23097 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23098 This message is outside of the standards so any attempt to read it could fail.
23099 When Alpine attempts to read such a message it will try to interpret the
23100 text in the character set you specify here.
23101 For example, if you have correspondents who send you unlabeled messages that
23102 are usually made up of characters from the WINDOWS-1251 character set, setting
23103 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23104 allow you to read those messages.
23105 Of course, if the unlabeled message is actually in some other character set,
23106 then you may see garbage on your screen.
23108 Instead of just unlabeled text, this option also affects text which is labeled
23109 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23110 or &quot;US-ASCII&quot;.
23113 In the Setup/Config screen you may choose from a list of all the
23114 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23117 <UL>   
23118 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23119 </UL><P>
23120 &lt;End of help on this topic&gt;
23121 </BODY>
23122 </HTML>
23123 ====== h_config_char_set =====
23124 <HTML>
23125 <HEAD>
23126 <TITLE>OPTION: Display Character Set</TITLE>
23127 </HEAD>
23128 <BODY>
23129 <H1>OPTION: Display Character Set</H1>
23131 The Display Character Set configuration option is used when viewing messages.
23133 Alpine uses Unicode characters internally and 
23134 it is a goal for Alpine to handle email in many different languages.
23135 Alpine will properly display only left-to-right character sets
23136 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23137 font is in use, in the sense that
23138 characters are assumed to take up zero, one, or two character cell
23139 widths from left to right on the screen. This is true even in PC-Alpine.
23142 Alpine recognizes some local character sets that are right-to-left
23143 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23144 (Arabic) and properly converts texts in these character sets to/from
23145 Unicode; however, there are known display bugs with these character
23146 sets.
23149 There are three possible configuration character settings and some
23150 environment variable settings that can affect how Alpine
23151 handles international characters.
23152 The first two of these are only available in UNIX Alpine.
23153 The three configuration options are
23154 Display Character Set,
23155 Keyboard Character Set, and
23156 <!--#echo var="VAR_posting-character-set"-->.
23157 The Keyboard Character Set defaults to being the same value
23158 as the Display Character Set, and that is usually correct, because
23159 the keyboard almost always produces characters in the same character set
23160 as the display displays.
23161 The Display Character Set is the character set that Alpine
23162 will attempt to use when sending characters to the display.
23165 By default, the Display Character Set variable is not set and UNIX Alpine
23166 will attempt to get this information from the environment.
23167 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23168 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23169 An explicit configuration setting for Display Character Set will,
23170 of course, override any default setting.
23172 For PC-Alpine the Display Character Set
23173 and the Keyboard Character Set
23174 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23177 It is probably best to use UNIX Alpine in a terminal emulator
23178 capable of displaying UTF-8 characters, since that will allow you to
23179 view just about any received text that is correctly formatted (note,
23180 however, the above comments about known index display bugs with certain
23181 character sets). You'll need to have an emulator that uses a UTF-8 font
23182 and you'll need to set up your environment to use a UTF-8 charmap. For
23183 example, on a Linux system you might include
23185 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23188 or something similar in your UNIX startup files.
23189 You'd also have to select a UTF-8 font in your terminal emulator.
23192 The types of values that the character set variables may be set to are
23193 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23194 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23195 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23196 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23197 In the Setup/Config screen you may choose from a list of all the
23198 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23199 Here is a list of many of the possible character sets:
23202 <TABLE>
23203 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23204 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23205 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23206 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23207 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23208 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23209 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23210 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23211 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23212 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23213 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23214 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23215 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23216 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23217 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23218 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23219 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23220 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23221 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23222 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23223 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23224 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23225 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23226 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23227 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23228 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23229 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23230 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23231 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23232 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23233 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23234 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23235 </TABLE>
23238 When reading incoming email, Alpine understands many different
23239 character sets and is able to convert the incoming mail into Unicode.
23240 The Unicode will be converted to the Display Character Set
23241 for display on your terminal.
23242 Characters typed at the keyboard will be converted from the
23243 Keyboard Character Set to Unicode for Alpine's internal
23244 use.
23245 You may find that you can read some malformed messages that do not
23246 contain a character set label by setting the option
23247 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23250 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23251 The default behavior obtained by leaving this variable unset is usually
23252 what is wanted. In that default case, Alpine will attempt
23253 to label the message with the most specific character set from the
23254 rather arbitrary set
23256 US-ASCII, ISO-8859-15,
23257 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23258 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23261 For example, if the message is made up of only US-ASCII characters, it
23262 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23263 that will be the label. If that doesn't work the same is tried for the
23264 remaining members of the list.
23267 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23268 explicit value instead.
23269 For example, if you usually send messages in Greek, setting this
23270 option to ISO-8859-7 will result in messages being labeled as
23271 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23272 are only Greek characters, or UTF-8 if there are some characters
23273 that aren't representable in ISO-8859-7.
23274 Another possibility is to set this option explicitly to UTF-8.
23275 In that case
23276 Alpine labels only ascii messages as US-ASCII and all other
23277 messages as UTF-8.
23280 The options
23281 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23282 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23283 are closely related to this option.
23284 Setting the feature
23285 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23286 should cause this option to be ignored.
23289 When displaying a message, Alpine compares this setting to the character
23290 set specified in the message.  If not all of the
23291 characters in the message can be displayed using the Display Character Set
23292 then Alpine places an editorial
23293 comment in the displayed text (enclosed in square-brackets) indicating
23294 that some characters may not be displayed correctly.
23295 This comment may be eliminated by turning on the option
23296 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
23299 <UL>   
23300 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23301 </UL><P>
23302 &lt;End of help on this topic&gt;
23303 </BODY>
23304 </HTML>
23305 ====== h_config_key_char_set =====
23306 <HTML>
23307 <HEAD>
23308 <TITLE>OPTION: Keyboard Character Set</TITLE>
23309 </HEAD>
23310 <BODY>
23311 <H1>OPTION: Keyboard Character Set</H1>
23313 UNIX Alpine only.
23315 The Keyboard Character Set identifies the character set of the characters
23316 coming from your keyboard.
23317 It defaults to having the same value as your
23318 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23319 which in turn defaults to a value obtained from your environment.
23320 It is unlikely that you will need to use this option, because the keyboard
23321 almost always produces the same kind of characters as the display displays.
23324 This character set is also used when accessing files in your local
23325 file system.
23326 The names of the files are assumed to be in the same character set as
23327 what the keyboard produces, as well as the contents of the files.
23330 In the Setup/Config screen you may choose from a list of all the
23331 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23334 The options
23335 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23336 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23337 are closely related.
23338 Setting the feature
23339 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23340 should cause this option to be ignored.
23343 <UL>   
23344 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23345 </UL><P>
23346 &lt;End of help on this topic&gt;
23347 </BODY>
23348 </HTML>
23349 ====== h_config_editor =====
23350 <HTML>
23351 <HEAD>
23352 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23353 </HEAD>
23354 <BODY>
23355 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23357 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23358 normally an alternative to Alpine's internal composer (Pico).  You could use
23359 this setting to specify an alternate editor to use occasionally or if you
23360 have a favorite editor and want to use it all the time (see the 
23361 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23362 If you specify multiple editors for this option, ^_ will invoke the first one 
23363 of those specified that exists and is executable.  When specifying a program 
23364 for use here, make sure that the format of the text it saves -- which, when 
23365 you exit it, will become the message body in Alpine -- is appropriate 
23366 for the body of an email message; avoid proprietary formats that may result in 
23367 a message body that the recipient of your message will be unable to decipher.
23369 <!--chtml if pinemode="os_windows"-->
23370 <!--chtml else-->
23371 If you are in doubt about what editors are available on your system, or which 
23372 of them may be appropriate for specification here, ask your local computing 
23373 support staff.  
23374 <!--chtml endif-->
23376 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23377 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23378 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23379 use that.
23381 <P><UL>
23382 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23383 </UL>
23385 &lt;End of help on this topic&gt;
23386 </BODY>
23387 </HTML>
23388 ====== h_config_speller =====
23389 <HTML>
23390 <HEAD>
23391 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23392 </HEAD>
23393 <BODY>
23394 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23396 UNIX Alpine only.
23398 For PC-Alpine, you must install the aspell library code that you
23399 may get from
23400 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23402 This option affects the behavior of the ^T (spell check) command in the
23403 Composer.  It specifies the program invoked by ^T in the Composer.
23404 By default, Alpine uses
23406 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23408 if it knows where to find &quot;aspell&quot;.
23409 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23410 then the command used is
23412 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23414 Otherwise, the ancient &quot;spell&quot; command is used.
23416 If you specify a value for this command (with full pathname) then that is what
23417 will be used instead of any of the defaults.
23418 When invoking this
23419 spell-checking program, Alpine appends a tempfile name (where the message is
23420 passed) to the command line. Alpine expects the speller to correct the
23421 spelling in that file. When you exit from that program Alpine will read the
23422 tempfile back into the composer.
23424 Don't set this speller option to the standard Unix spell command.
23425 That won't work because spell works in a different way.
23428 <UL>   
23429 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23430 </UL><P>
23431 &lt;End of help on this topic&gt;
23432 </BODY>
23433 </HTML>
23434 ====== h_config_aspell_dictionary =====
23435 <HTML>
23436 <HEAD>
23437 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
23438 </HEAD>
23439 <BODY>
23440 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
23442 PC Alpine only.
23444 This option specifies a list of dictionaries you will use with
23445 aspell. A sample entry is &quot;en_US&quot; for american english, or
23446 &quot;en_GB&quot; for brittish english.
23449 <UL>   
23450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23451 </UL><P>
23452 &lt;End of help on this topic&gt;
23453 </BODY>
23454 </HTML>
23455 ====== h_config_display_filters =====
23456 <HTML>
23457 <HEAD>
23458 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23459 </HEAD>
23460 <BODY>
23461 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23463 This option defines a list of text-filtering commands (programs or
23464 scripts) that may be used to filter text portions of received messages
23465 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23466 display screen, exporting to a text file).  
23467 For security reasons, the full path name of the
23468 filter command must be specified.
23471 The command is executed and the message is piped into its standard input. 
23472 The standard output of the command is read back by Alpine.  The
23473 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23475 <P> 
23476 The filter's use is based on the configured &quot;trigger&quot; string.  The
23477 format of a filter definition is:
23479 <P>   
23480 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23483 You can specify as many filters as you wish, separating them with a comma.  
23484 Each filter can have only one trigger and command.  Thus, two trigger 
23485 strings that invoke the same command require separate filter 
23486 specifications. 
23488 <P> 
23489 The &quot;trigger&quot; is simply text that, if found in the message,
23490 will invoke the associated command.  If the trigger contains any space
23491 characters, it must be placed within quotes.  Likewise, should you
23492 wish a filter to be invoked unconditionally, define the trigger as the
23493 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23494 trigger string is found anywhere in the text of the message the filter
23495 is invoked.  Placing the trigger text within the tokens defined below
23496 changes where within the text the trigger must be before considering
23497 it a match.
23499 <P>  
23500 Trigger Modifying Tokens:
23501 <DL>
23502 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23503 <DD>This token tells Alpine to invoke the supplied command
23504 if the text is in a character set matching <VAR>string</VAR>
23505 (e.g., ISO-8859-2 or ISO-2022-JP).
23506 </DD>
23509 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23510 <DD>This token tells Alpine to invoke the supplied command
23511 if the enclosed <VAR>string</VAR> is found to be the first
23512 non-whitespace text.
23513 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23514 the space character.
23515 </DD>
23517 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23518 <DD>This token tells Alpine to invoke the supplied command
23519 if the enclosed <VAR>string</VAR> is found at the beginning
23520 of any line in the text.
23521 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23522 the space character.
23523 </DD>
23524 </DL>
23527 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23528 the command line to be invoked if the trigger string is found.  Below
23529 are tokens that Alpine will recognize and replace with special values
23530 when the command is actually invoked.
23533 Command Modifying Tokens:
23535 <DL>
23536 <DT>_TMPFILE_</DT>
23537 <DD>When the command is executed, this token is 
23538 replaced with the path and name of the temporary 
23539 file containing the text to be filtered.  Alpine 
23540 expects the filter to replace this data with the 
23541 filter's result.
23544 NOTE: Use of this token implies that the text to 
23545 be filtered is not piped into standard input of the 
23546 executed command and its standard output is ignored. 
23547 Alpine restores the tty modes before invoking the
23548 filter in case the filter interacts with the user
23549 via its own standard input and output.  
23550 </DD>
23551                         
23552 <DT>_RESULTFILE_</DT>
23553 <DD>When the command is executed, this token is 
23554 replaced with the path and name of a temporary 
23555 file intended to contain a status message from the 
23556 filter.  Alpine displays this in the message status 
23557 field. 
23558 </DD>
23560 <DT>_DATAFILE_</DT>
23561 <DD>When the command is executed, this token is 
23562 replaced with the path and name of a temporary 
23563 file that Alpine creates once per session and deletes 
23564 upon exit.  The file is intended to be used by the 
23565 filter to store state information between instances 
23566 of the filter.
23567 </DD>
23568    
23569 <DT>_PREPENDKEY_</DT>
23570 <DD>When the command is executed, this token indicates that a random
23571 number will be passed down the input stream before the message text.
23572 This number could be used as a session key.  It is sent in this way to
23573 improve security.  The number is unique to the current Alpine session
23574 and is only generated once per session.
23575 </DD>
23577 <DT>_SILENT_</DT>
23578 <DD>When the filter is executed, this token tells Alpine not to repaint
23579 the screen while the command is being executed. This can be used with 
23580 filters that do not interact with the user, and therefore repainting 
23581 the screen is not necessary. 
23582 </DD>
23583 </DL>
23586 The feature
23587 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23589 Performance caveat/considerations:
23590 <BR>
23591 Testing for the trigger and invoking the filter doesn't come for free.
23592 There is overhead associated with searching for the trigger string, testing
23593 for the filter's existence and actually piping the text through the filter.
23594 The impact can be reduced if the Trigger Modifying Tokens above are 
23595 employed.
23597 &lt;End of help on this topic&gt;
23598 </BODY>
23599 </HTML>
23600 ====== h_config_sending_filter =====
23601 <HTML>
23602 <HEAD>
23603 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23604 </HEAD>
23605 <BODY>
23606 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23607       
23608 This option defines a list of text-filtering commands (programs and
23609 scripts) that may be selectively invoked to process a message just before
23610 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23611 select which filter (or none) to apply to the message before it is sent. 
23612 For security reasons, the full path of the filter program must be
23613 specified.
23616 Command Modifying Tokens:
23618 <DL>
23619 <DT>_RECIPIENTS_</DT>
23620 <DD>When the command is executed, this token is replaced 
23621 with the space delimited list of recipients of the 
23622 message being sent. 
23623 </DD>
23624         
23625 <DT>_TMPFILE_</DT>
23626 <DD>
23627 When the command is executed, this token is 
23628 replaced with the path and name of the temporary 
23629 file containing the text to be filtered.  Alpine 
23630 expects the filter to replace this data with the 
23631 filter's result.
23634 NOTE: Use of this token implies that the text to 
23635 be filtered is not piped into standard input of the 
23636 executed command and its standard output is ignored. 
23637 Alpine restores the tty modes before invoking the
23638 filter in case the filter interacts with the user
23639 via its own standard input and output.  
23640 </DD>
23641                         
23642 <DT>_RESULTFILE_</DT>
23643 <DD>When the command is executed, this token is 
23644 replaced with the path and name of a temporary 
23645 file intended to contain a status message from the 
23646 filter.  Alpine displays this in the message status 
23647 field. 
23648 </DD>
23650 <DT>_DATAFILE_</DT>
23651 <DD>When the command is executed, this token is replaced 
23652 in the command line with the path and name of a 
23653 temporary file that Alpine creates once per session 
23654 and deletes upon exit.  The file is intended to be 
23655 used by the filter to store state information between 
23656 instances of the filter.
23657 </DD>
23658    
23659 <DT>_PREPENDKEY_</DT>
23660 <DD>When the command is executed, this token indicates 
23661 that a random number will be passed down the input 
23662 stream before the message text.  This number could 
23663 be used as a session key.  It is sent in this way 
23664 to improve security.  The number is unique to the 
23665 current Alpine session and is only generated once per 
23666 session. 
23667 </DD>
23669 <DT>_INCLUDEALLHDRS_</DT>
23670 <DD>When the command is executed, this token indicates 
23671 that the headers of the message will be passed down the input stream
23672 before the message text.
23673 </DD>
23675 <DT>_MIMETYPE_</DT>
23676 <DD>When the command is executed, this token is replaced in the
23677 command name with a temporary file name used to accept any new MIME
23678 Content-Type information necessitated by the output of the filter.
23679 Upon the filter's exit, if the file contains new MIME type
23680 information, Alpine verifies its format and replaces the outgoing
23681 message's MIME type information with that contained in the file. This
23682 is basically a cheap way of sending something other than Text/Plain.
23683 </DD>
23684 </DL>
23686 <P>   
23687 NOTE: Only the body text, which is visible in the Composer, is piped
23688 through this filter.  Attachments are not sent to the filter.
23689 <P>   
23690 Sending filters are not used if the feature
23691 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
23693 <UL>   
23694 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23695 </UL><P>
23696 &lt;End of help on this topic&gt;
23697 </BODY>
23698 </HTML>
23699 ====== h_config_keywords =====
23700 <HTML>
23701 <HEAD>
23702 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
23703 </HEAD>
23704 <BODY>
23705 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
23707 You may define your own set of keywords and optionally set them on a
23708 message by message basis.
23709 These are similar to the &quot;Important&quot; flag which the user
23710 may set using the Flag command.
23711 The difference is that the Important flag is always present for each folder.
23712 User-defined keywords are chosen by the user.
23713 You may set up the list of possible keywords here, or you may add keywords
23714 from the Flag Details screen that you
23715 can get to after typing the
23716 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
23717 command.
23718 After the keywords have been defined,
23719 then you use the <A HREF="h_common_flag">Flag command</A>
23720 to set or clear the keywords in each message.
23721 The behavior of the flag command may be modified by using the
23722 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
23723 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
23726 Keywords may be used when Selecting messages (Select Keyword).
23727 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
23728 Filter Rules may be used to set keywords automatically.
23729 Keywords may be displayed as part of the Subject of a message by using
23730 the SUBJKEY or SUBJKEYINIT tokens in the
23731 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
23732 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
23733 option may be used to modify the display of keywords using
23734 SUBJKEY and SUBJKEYINIT slightly.
23735 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
23736 screen by using the KEY or KEYINIT tokens.
23737 It is also possible to color keywords in the index using the
23738 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
23739 Keywords are not supported by all mail servers.
23742 You may give keywords nicknames if you wish.
23743 If the keyword definition you type in contains a SPACE character, then the
23744 actual value of the keyword is everything after the last SPACE and the
23745 nickname for that keyword is everything before the last SPACE.
23746 For example, suppose you are trying to interoperate with another email program
23747 that uses a particular keyword with an unpleasant name.
23748 Maybe it uses a keyword called
23750 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
23752 but for you that keyword means that the message is work-related.
23753 You could define a keyword to have the value
23755 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
23757 and then you would use the name &quot;Work&quot; when dealing with
23758 that keyword in Alpine.
23759 If you defined it as
23761 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
23763 the nickname would be everything before the last SPACE, that is the nickname
23764 would be &quot;My Work&quot;.
23766 Some commonly used keywords begin with dollar signs.
23767 This presents a slight complication, because the dollar sign is normally used
23768 to signify
23769 <A HREF="h_news_config">environment variable expansion</A>
23770 in the Alpine configuration.
23771 In order to specify a keyword that begins with a dollar sign you must
23772 precede the dollar sign with a second dollar sign to escape its special
23773 meaning.
23774 For example, if you want to include the keyword
23776 <CENTER><SAMP>$Label1</SAMP></CENTER>
23778 as one of your possible keywords, you must enter the text
23780 <CENTER><SAMP>$$Label1</SAMP></CENTER>
23783 instead.
23785 There are a couple limitations.
23786 First, not all servers support keywords.
23787 Second, some servers (including the IMAP server included with Alpine)
23788 have a per folder limit on the number of keywords that may be defined.
23789 This count commonly includes every keyword you have ever used in the
23790 folder, even if it is no longer being used.
23791 In other words, you can add keywords but you cannot remove them easily.
23792 If you have changed keywords over the life of a folder and find that
23793 you have reached such a limit, one possible solution might be to copy
23794 all of the messages to a newly created folder (using Alpine) and then
23795 delete the original and rename the new folder.
23796 The reason this might work is that only the keywords currently set in
23797 any of the messages will be used in the new folder, hopefully putting you
23798 under the limit.
23801 <UL>   
23802 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23803 </UL><P>
23804 &lt;End of help on this topic&gt;
23805 </BODY>
23806 </HTML>
23807 ====== h_config_alt_addresses =====
23808 <HTML>
23809 <HEAD>
23810 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
23811 </HEAD>
23812 <BODY>
23813 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
23815 This option provides a place for you to list alternate email addresses
23816 you may have.
23817 Each address in the list should be the actual email address part of an
23818 address, without the full name field or the angle brackets.
23819 For example:
23822 <CENTER><SAMP>user@example.com</SAMP></CENTER>
23825 The matching is case-insensitive, so this would match any of
23826 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
23827 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
23830 If set, the option affects the behavior of the Reply
23831 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
23832 a message has been addressed specifically to you.
23835 In the default INDEX display
23836 the personal name (or email address) of
23837 the person listed in the message's &quot;From:&quot; header
23838 field is usually displayed except when that address is yours or one of your
23839 alternate addresses.
23840 In that case you will usually see the name of
23841 the first person specified in the
23842 message's &quot;To:&quot; header field
23843 with the prefix &quot;To: &quot; prepended.
23846 With respect to Reply, the reply-to-all option will exclude addresses
23847 listed here.
23850 The feature
23851 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
23852 is somewhat related to this option.
23855 In addition to a list of actual addresses,
23856 you may use regular expressions (as used with egrep with the ignore case flag)
23857 to describe the addresses you want to match.
23858 Alpine will somewhat arbitrarily interpret your entry as a regular
23859 expression if it contains any of the characters
23860 *, |, +, ?, {, [, ^, $, or &#92;.
23861 Otherwise, it will be treated literally.
23862 The feature
23863 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
23864 may be used to turn off regular expression processing regardless of whether or not
23865 special characters appear in the entry.
23868 A description of how regular expressions work is beyond the
23869 scope of this help text, but some examples follow.
23872 The entry
23875 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
23878 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
23879 address with a domain name of <SAMP>example.com</SAMP> (such as
23880 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
23881 one of your alternate addresses.
23882 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
23883 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
23884 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
23885 Complicating things further, the dollar sign
23886 is special in the Alpine configuration (it signifies environment variable expansion)
23887 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
23888 Quotes around the whole expression will not escape the dollar sign successfully.
23889 So this example should look like
23892 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
23896 The entry
23899 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
23902 would match
23903 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
23904 as <SAMP>fred@example.com</SAMP>.
23907 You could match all addresses that look like
23908 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
23909 entry
23912 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
23915 Notice that you have to escape the plus sign with a backslash because plus
23916 is a special character in regular expressions.
23917 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
23918 the expression
23921 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
23924 would do it, but it would be easier to just add fred@example.com as a
23925 separate entry.
23928 One more example, a match of all first-level subdomains, is given by
23931 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
23935 Because the regular expression matching is based on an old library
23936 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
23937 but they should be close.
23940 <UL>   
23941 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23942 </UL><P>
23943 &lt;End of help on this topic&gt;
23944 </BODY>
23945 </HTML>
23946 ====== h_config_abook_formats =====
23947 <HTML>
23948 <HEAD>
23949 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
23950 </HEAD>
23951 <BODY>
23952 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
23954 This option specifies the format that address books are displayed in.
23955 Normally, address books are displayed with the nicknames in the first
23956 column, the fullnames in the second column, and addresses in the third
23957 column.  The system figures out reasonable defaults for the widths of
23958 the columns.  An address book may be given a different format by
23959 listing special tokens in the order you want them to display.  The
23960 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
23961 So, for example, to get the default behavior you could list
23964 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
23967 (You can also use the token DEFAULT to get the default behavior for
23968 an address book format.)
23971 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
23972 is a list, so if you have more than one address book you may have a
23973 separate format for each by putting its format at the corresponding
23974 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
23978 Listed first are the personal address books, then the global address
23979 books.  So, if you have two personal address books and one global
23980 address book, you may have up to three formats in the
23981 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
23982 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
23983 are address books, the last element is used repeatedly.
23987 Each of the tokens may also be optionally followed by parentheses with
23988 either a number or a percentage inside the parentheses.  For example,
23989 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
23990 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
23991 of the available space (the screen width minus the space for
23992 inter-column spaces) to the fullnames column, while plain
23993 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
23994 reasonable number of columns.
23997 There are always 2 spaces between every column, so if you use
23998 fixed column widths (like 13) you should remember to take that into
23999 account.
24002 <UL>   
24003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24004 </UL><P>
24005 &lt;End of help on this topic&gt;
24006 </BODY>
24007 </HTML>
24008 ====== h_config_set_index_format =====
24009 <HTML>
24010 <HEAD>
24011 <TITLE>Set Index Format</TITLE>
24012 </HEAD>
24013 <BODY>
24014 <H1>Set Index Format</H1>
24016 This option is used to customize the content of lines in the
24017 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24018 This action works exactly like the regular
24019 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24020 except that you can have a folder-specific value for it if you specify it here.
24021 Consult the help for
24022 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24023 for more information.
24026 <UL>   
24027 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24028 </UL><P>
24029 &lt;End of help on this topic&gt;
24030 </BODY>
24031 </HTML>
24032 ====== h_config_index_format =====
24033 <HTML>
24034 <HEAD>
24035 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24036 </HEAD>
24037 <BODY>
24038 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24040 This option is used to customize the content of lines in the
24041 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24042 to convey some amount of immediately relevant information about each 
24043 message in the current folder.
24046 Alpine provides a pre-defined set of informational fields with
24047 reasonable column widths automatically computed.  You can, however,
24048 replace this default set by listing special tokens in the order you
24049 want them displayed.
24052 The list of available tokens is
24053 <A HREF="h_index_tokens">here</A>.
24056 Spaces are used to separate listed tokens.  Additionally, you can
24057 specify how much of the screen's width the token's associated data
24058 should occupy on the index line by appending to the token a pair of
24059 parentheses enclosing either a number or percentage.  For example,
24060 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24061 column, and &quot;SUBJECT(20%)&quot; means to
24062 allocate 20% of the available space
24063 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24064 attempt to figure out a reasonable amount of space.
24067 There is always one space between every pair of columns, so if you use fixed
24068 column widths (like 13) you should remember to take that into account.
24069 Several of the fields are virtually fixed-width, so it doesn't make
24070 much sense to specify the width for them.  The fields STATUS,
24071 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24072 and DESCRIPSIZE all fall into that category.
24073 You <EM>may</EM> specify widths for those if you wish, but
24074 you're probably better off letting the system pick those widths.  <P>
24077 The default is equivalent to:
24080 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24083 This means that the four fields without percentages will be allocated
24084 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24085 the from and subject fields.  If one of those two fields is specified
24086 as a percentage and the other is left for the system to choose, then
24087 the percentage is taken as an absolute percentage of the screen, not
24088 of the space remaining after allocating the first four columns.  It
24089 doesn't usually make sense to do it that way.  If you leave off all
24090 the widths, then the subject and from fields (if both are present) are
24091 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24092 the default.
24095 What you are most likely to do with this configuration option is to
24096 specify which fields appear at all, which order they appear in, and the
24097 percentage of screen that is used for the from and subject fields if you
24098 don't like the 2 to 1 default.
24101 If you want to retain the default format that Pine 4.64 had, use
24104 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24106 <EM>and</EM> set the feature
24107 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24108 <UL>   
24109 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24110 </UL><P>
24111 &lt;End of help on this topic&gt;
24112 </BODY>
24113 </HTML>
24114 ====== h_config_reply_intro =====
24115 <HTML>
24116 <HEAD>
24117 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24118 </HEAD>
24119 <BODY>
24120 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24122 This option is used to customize the content of the introduction line
24123 that is included when replying to a message and including the original
24124 message in the reply.
24125 The normal default (what you will get if you delete this variable) looks
24126 something like:
24128 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24130 where the day of the week is only included if it is available in the
24131 original message.
24132 You can replace this default with text of your own.
24133 The text may contain tokens that are replaced with text
24134 that depends on the message you are replying to.
24135 For example, the default is equivalent to:
24137 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24140 Since this variable includes regular text mixed with special tokens
24141 the tokens have to be surrounded by underscore characters.
24142 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24143 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24144 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24146 The list of available tokens is
24147 <A HREF="h_index_tokens">here</A>.
24150 By default, the text is all on a single line and is followed by a blank line.
24151 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24152 than 80 characters when replying to a particular message, it is shortened.
24153 However, if you use the token
24155 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24158 anywhere in the value, no end of line or blank line is appended, and no
24159 shortening is done.
24160 The _NEWLINE_ token may be used to get rid of the blank line following
24161 the text, to add more blank lines, or to form a multi-line
24162 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24163 To clarify how _NEWLINE_ works recall that the default value is:
24165 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24168 That is equivalent to
24170 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24173 In the former case, two newlines are added automatically because
24174 no _NEWLINE_ token appears in the value of the option (for backwards
24175 compatibility). In the latter case, the newlines are explicit.
24176 If you want to remove the blank line that follows the
24177 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24178 _NEWLINE_ token like
24180 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24183 Because of the backwards compatibility problem, it is not possible to
24184 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24185 and that will cause the automatic adding of two newlines!
24186 If you want, you may embed newlines in the middle of the text, as well,
24187 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24190 By default, no attempt is made to localize the date.
24191 If you prefer a localized form you may find that one of the tokens
24192 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24193 If you want more control one of the many other date tokens, such as _DATEISO_,
24194 might be better.
24197 For the adventurous, there is a way to conditionally include text based
24198 on whether or not a token would result in specific replacement text.
24199 For example, you could include some text based on whether or not
24200 the _NEWS_ token would result in any newsgroups if it was used.
24201 It's explained in detail
24202 <A HREF="h_reply_token_conditionals">here</A>.
24205 In the very unlikely event that you want to include a literal token
24206 in the introduction line you must precede it with a backslash character.
24207 For example,
24209 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24211 would produce something like
24213 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24215 It is not possible to have a literal backslash followed by an expanded token.
24217 <UL>   
24218 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24219 </UL><P>
24220 &lt;End of help on this topic&gt;
24221 </BODY>
24222 </HTML>
24223 ====== h_config_remote_abook_history =====
24224 <HTML>
24225 <HEAD>
24226 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24227 </HEAD>
24228 <BODY>
24229 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24231 Sets how many extra copies of
24232 remote address book
24233 data will be kept in each remote address book folder.
24234 The default is three.
24235 These extra copies are simply old versions of the data. Each time a change
24236 is made a new copy of the address book data is appended to the folder. Old
24237 copies are trimmed, if possible, when Alpine exits.
24238 An old copy can be put back into use by
24239 deleting and expunging newer versions of the data from the folder.
24240 Don't delete the first message from the folder. It is a special header
24241 message for the remote address book and it must be there.
24242 This is to prevent regular folders from being used as remote address book
24243 folders and having their data destroyed.
24245 This option is also used to determine how many extra copies of remote
24246 Alpine configuration files are kept.
24248 <UL>   
24249 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24250 </UL><P>
24251 &lt;End of help on this topic&gt;
24252 </BODY>
24253 </HTML>
24254 ====== h_config_remote_abook_validity =====
24255 <HTML>
24256 <HEAD>
24257 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24258 </HEAD>
24259 <BODY>
24260 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24262 Sets the minimum number of minutes that a
24263 remote address book will be considered up to date.
24264 Whenever an entry contained in a remote address book is used,
24265 if more than this many minutes have
24266 passed since the last check the remote server will be queried to see if the
24267 address book has changed.
24268 If it has changed, the local copy is updated.
24269 The default value is five minutes.
24270 The special value of -1 means never check.
24271 The special value of zero means only check when the address book is first
24272 opened.
24274 No matter what the value, the validity check is always done when the
24275 address book is about to be changed by the user.
24276 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24277 while in the address book maintenance screen for the remote address book.
24279 <UL>   
24280 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24281 </UL><P>
24282 &lt;End of help on this topic&gt;
24283 </BODY>
24284 </HTML>
24285 ====== h_config_user_input_timeo =====
24286 <HTML>
24287 <HEAD>
24288 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24289 </HEAD>
24290 <BODY>
24291 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24293 If this is set to an integer greater than zero, then this is the number
24294 of <EM>hours</EM> to wait for user input before Alpine times out.
24295 If Alpine is
24296 in the midst of composing a message or is waiting for user response to
24297 a question, then it will not timeout.
24298 However, if Alpine is sitting idle waiting for
24299 the user to tell it what to do next and the user does not give any
24300 input for this many hours, Alpine will exit.
24301 No expunging or moving of read
24302 messages will take place.
24303 It will exit similarly to the way it would exit
24304 if it received a hangup signal.
24305 This may be useful for cleaning up unused Alpine sessions that have been
24306 forgotten by their owners.
24307 The Alpine developers envision system administrators
24308 setting this to a value of several hours (24?) so that it won't surprise
24309 a user who didn't want to be disconnected.
24311 <UL>   
24312 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24313 </UL><P>
24314 &lt;End of help on this topic&gt;
24315 </BODY>
24316 </HTML>
24317 ====== h_config_ssh_open_timeo =====
24318 <HTML>
24319 <HEAD>
24320 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24321 </HEAD>
24322 <BODY>
24323 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24325 Sets the time in seconds that Alpine will
24326 attempt to open a UNIX secure shell connection.
24327 The default is 15, the minimum non-zero value is 5,
24328 and the maximum is unlimited. If this is set to zero ssh connections
24329 will be completely disabled.
24331 <UL>   
24332 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24333 </UL><P>
24334 &lt;End of help on this topic&gt;
24335 </BODY>
24336 </HTML>
24337 ====== h_config_rsh_open_timeo =====
24338 <HTML>
24339 <HEAD>
24340 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24341 </HEAD>
24342 <BODY>
24343 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24345 Sets the time in seconds that Alpine will
24346 attempt to open a UNIX remote shell connection.
24347 The default is 15, the minimum non-zero value is 5,
24348 and the maximum is unlimited. If this is set to zero rsh connections
24349 will be completely disabled.
24350 This might be useful if rsh connections will never work in your environment
24351 but are causing delays due to firewalls or some other reason.
24353 <UL>   
24354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24355 </UL><P>
24356 &lt;End of help on this topic&gt;
24357 </BODY>
24358 </HTML>
24359 ====== h_config_tcp_open_timeo =====
24360 <HTML>
24361 <HEAD>
24362 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24363 </HEAD>
24364 <BODY>
24365 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24367 Sets the time in seconds that Alpine will
24368 attempt to open a network connection. The default is 30, the minimum is 5,
24369 and the maximum is system defined (typically 75). If a connection has not
24370 completed within this many seconds Alpine will give up and consider it a
24371 failed connection.
24373 <UL>   
24374 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24375 </UL><P>
24376 &lt;End of help on this topic&gt;
24377 </BODY>
24378 </HTML>
24379 ====== h_config_tcp_readwarn_timeo =====
24380 <HTML>
24381 <HEAD>
24382 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
24383 </HEAD>
24384 <BODY>
24385 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24387 Sets the time in seconds that Alpine will
24388 wait for a network read before warning you that things are moving slowly
24389 and possibly giving you the option to break the connection.
24390 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24391 1000 seconds.
24393 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24395 <UL>   
24396 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24397 </UL><P>
24398 &lt;End of help on this topic&gt;
24399 </BODY>
24400 </HTML>
24401 ====== h_config_tcp_writewarn_timeo =====
24402 <HTML>
24403 <HEAD>
24404 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24405 </HEAD>
24406 <BODY>
24407 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24409 Sets the time in seconds that Alpine will
24410 wait for a network write before warning you that things are moving slowly
24411 and possibly giving you the option to break the connection.
24412 The default is 0 which means it is unset. If set to a non-zero value, the
24413 minimum is 5 and the maximum is 1000.
24415 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24417 <UL>   
24418 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24419 </UL><P>
24420 &lt;End of help on this topic&gt;
24421 </BODY>
24422 </HTML>
24423 ====== h_config_tcp_query_timeo =====
24424 <HTML>
24425 <HEAD>
24426 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24427 </HEAD>
24428 <BODY>
24429 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24431 When Alpine times out a network read or write it will normally just display
24432 a message saying &quot;Still waiting&quot;.
24433 However, if enough time has elapsed since it started waiting it will offer
24434 to let you break the connection.
24435 That amount of time is set by this option, which defaults to 60 seconds,
24436 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24438 <UL>   
24439 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24440 </UL><P>
24441 &lt;End of help on this topic&gt;
24442 </BODY>
24443 </HTML>
24444 ====== h_config_incoming_folders =====
24445 <HTML>
24446 <HEAD>
24447 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24448 </HEAD>
24449 <BODY>
24450 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24452 This is a list of one or more folders other than <EM>INBOX</EM> that
24453 may receive new messages.
24454 It is related to the
24455 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24456 feature.
24457 This variable is normally manipulated with the Add, Delete, and Rename
24458 commands in the FOLDER LIST for the Incoming Message Folders collection.
24460 <UL>   
24461 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24462 </UL><P>
24463 &lt;End of help on this topic&gt;
24464 </BODY>
24465 </HTML>
24466 ====== h_config_folder_spec =====
24467 <HTML>
24468 <HEAD>
24469 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24470 </HEAD>
24471 <BODY>
24472 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24474 This is a list of one or more collections where saved mail is stored. 
24475 The first collection in this list is the default
24476 collection for <EM>Save</EM>s,
24477 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24479 This variable is normally manipulated using the Setup/collectionList screen.
24481 <UL>   
24482 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24483 </UL><P>
24484 &lt;End of help on this topic&gt;
24485 </BODY>
24486 </HTML>
24487 ====== h_config_news_spec =====
24488 <HTML>
24489 <HEAD>
24490 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24491 </HEAD>
24492 <BODY>
24493 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24495 This is a list of collections where news folders are located.
24497 This variable is normally manipulated using the Setup/collectionList screen.
24499 <UL>   
24500 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24501 </UL><P>
24502 &lt;End of help on this topic&gt;
24503 </BODY>
24504 </HTML>
24505 ====== h_config_address_book =====
24506 <HTML>
24507 <HEAD>
24508 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24509 </HEAD>
24510 <BODY>
24511 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24513 A list of personal address books.
24514 Each entry in the list is an
24515 optional nickname followed by a pathname or file name relative to the home
24516 directory.
24517 The nickname is separated from the rest of the line with whitespace.
24518 Instead of a local pathname or file name, a remote folder name can be given.
24519 This causes the address book to
24520 be a Remote address book.
24522 Use the Setup/AddressBook screen to modify this variable.
24524 <UL>   
24525 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24526 </UL><P>
24527 &lt;End of help on this topic&gt;
24528 </BODY>
24529 </HTML>
24530 ====== h_config_glob_addrbook =====
24531 <HTML>
24532 <HEAD>
24533 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24534 </HEAD>
24535 <BODY>
24536 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24538 A list of shared address books.  Each entry in the list is an
24539 optional nickname followed by a pathname or file name relative to the home
24540 directory.
24541 A SPACE character separates the nickname from the rest of the line.
24542 Instead of a local pathname or file name, a remote folder name can be given.
24543 This causes the address book to
24544 be a Remote address book.
24545 Global address books are
24546 defined to be ReadOnly.
24548 Use the Setup/AddressBook screen to modify this variable.
24550 <UL>   
24551 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24552 </UL><P>
24553 &lt;End of help on this topic&gt;
24554 </BODY>
24555 </HTML>
24556 ====== h_config_last_vers =====
24557 <HTML>
24558 <HEAD>
24559 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24560 </HEAD>
24561 <BODY>
24562 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24564 This is set automatically by Alpine. 
24565 It is used to keep track of the last version of Alpine that
24566 was run by the user.
24567 Whenever the version number increases, a new version message is printed out.
24568 This may not be set in the system-wide configuration files.
24570 <UL>   
24571 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24572 </UL><P>
24573 &lt;End of help on this topic&gt;
24574 </BODY>
24575 </HTML>
24576 ====== h_config_printer =====
24577 <HTML>
24578 <HEAD>
24579 <TITLE>OPTION: Printer</TITLE>
24580 </HEAD>
24581 <BODY>
24582 <H1>OPTION: Printer</H1>
24584 Your default printer selection.
24586 Use the Setup/Printer screen to modify this variable.
24588 <UL>   
24589 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24590 </UL><P>
24591 &lt;End of help on this topic&gt;
24592 </BODY>
24593 </HTML>
24594 ====== h_config_print_cat =====
24595 <HTML>
24596 <HEAD>
24597 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24598 </HEAD>
24599 <BODY>
24600 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24602 This is an internal Alpine variable.
24603 It will be equal to 1, 2, or 3 depending on whether the default printer is
24604 attached, standard, or a personal print command.
24606 Use the Setup/Printer screen to modify this variable.
24608 <UL>   
24609 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24610 </UL><P>
24611 &lt;End of help on this topic&gt;
24612 </BODY>
24613 </HTML>
24614 ====== h_config_print_command =====
24615 <HTML>
24616 <HEAD>
24617 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24618 </HEAD>
24619 <BODY>
24620 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24622 List of personal print commands.
24624 Use the Setup/Printer screen to modify this variable.
24626 <UL>   
24627 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24628 </UL><P>
24629 &lt;End of help on this topic&gt;
24630 </BODY>
24631 </HTML>
24632 ====== h_config_pat_old =====
24633 <HTML>
24634 <HEAD>
24635 <TITLE>OPTION: Patterns</TITLE>
24636 </HEAD>
24637 <BODY>
24638 <H1>OPTION: Patterns</H1>
24640 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24641 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24642 and Patterns-Other.
24643 Patterns-Scores and Patterns-Filters have been replaced since then by
24644 Patterns-Scores2 and Patterns-Filters2.
24646 Use the Setup/Rules screens to modify these variable.
24648 <UL>   
24649 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24650 </UL><P>
24651 &lt;End of help on this topic&gt;
24652 </BODY>
24653 </HTML>
24654 ====== h_config_pat_roles =====
24655 <HTML>
24656 <HEAD>
24657 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
24658 </HEAD>
24659 <BODY>
24660 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
24662 List of rules used for roles.
24663 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
24664 other options.
24666 Use the Setup/Rules/Roles screen to modify this variable.
24668 <UL>   
24669 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24670 </UL><P>
24671 &lt;End of help on this topic&gt;
24672 </BODY>
24673 </HTML>
24674 ====== h_config_pat_filts =====
24675 <HTML>
24676 <HEAD>
24677 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
24678 </HEAD>
24679 <BODY>
24680 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
24682 List of rules used for filters.
24684 Use the Setup/Rules/Filters screen to modify this variable.
24686 <UL>   
24687 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24688 </UL><P>
24689 &lt;End of help on this topic&gt;
24690 </BODY>
24691 </HTML>
24692 ====== h_config_pat_scores =====
24693 <HTML>
24694 <HEAD>
24695 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
24696 </HEAD>
24697 <BODY>
24698 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
24700 List of rules used for scoring.
24702 Use the Setup/Rules/SetScores screen to modify this variable.
24704 <UL>   
24705 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24706 </UL><P>
24707 &lt;End of help on this topic&gt;
24708 </BODY>
24709 </HTML>
24710 ====== h_config_pat_other =====
24711 <HTML>
24712 <HEAD>
24713 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
24714 </HEAD>
24715 <BODY>
24716 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
24718 List of rules used for miscellaneous configuration.
24720 Use the Setup/Rules/Other screen to modify this variable.
24722 <UL>   
24723 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24724 </UL><P>
24725 &lt;End of help on this topic&gt;
24726 </BODY>
24727 </HTML>
24728 ====== h_config_pat_incols =====
24729 <HTML>
24730 <HEAD>
24731 <TITLE>OPTION: patterns-indexcolors</TITLE>
24732 </HEAD>
24733 <BODY>
24734 <H1>OPTION: patterns-indexcolors</H1>
24736 List of rules used for coloring lines in the index.
24738 Use the Setup/Rules/Indexcolor screen to modify this variable.
24740 <UL>   
24741 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24742 </UL><P>
24743 &lt;End of help on this topic&gt;
24744 </BODY>
24745 </HTML>
24746 ====== h_config_pat_srch =====
24747 <HTML>
24748 <HEAD>
24749 <TITLE>OPTION: patterns-search</TITLE>
24750 </HEAD>
24751 <BODY>
24752 <H1>OPTION: patterns-search</H1>
24754 List of rules used only for searching with the Select command in the MESSAGE INDEX.
24756 Use the Setup/Rules/searCh screen to modify this variable.
24758 <UL>   
24759 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24760 </UL><P>
24761 &lt;End of help on this topic&gt;
24762 </BODY>
24763 </HTML>
24764 ====== h_config_font_name =====
24765 <HTML>
24766 <HEAD>
24767 <TITLE>OPTION: Font Name</TITLE>
24768 </HEAD>
24769 <BODY>
24770 <H1>OPTION: Font Name</H1>
24772 PC-Alpine only.
24774 Name of normal font.
24776 Use the pulldown Config menu to modify this variable.
24778 <UL>   
24779 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24780 </UL><P>
24781 &lt;End of help on this topic&gt;
24782 </BODY>
24783 </HTML>
24784 ====== h_config_font_size =====
24785 <HTML>
24786 <HEAD>
24787 <TITLE>OPTION: Font Size</TITLE>
24788 </HEAD>
24789 <BODY>
24790 <H1>OPTION: Font Size</H1>
24792 PC-Alpine only.
24794 Size of normal font.
24796 Use the pulldown Config menu to modify this variable.
24798 <UL>   
24799 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24800 </UL><P>
24801 &lt;End of help on this topic&gt;
24802 </BODY>
24803 </HTML>
24804 ====== h_config_font_style =====
24805 <HTML>
24806 <HEAD>
24807 <TITLE>OPTION: Font Style</TITLE>
24808 </HEAD>
24809 <BODY>
24810 <H1>OPTION: Font Style</H1>
24812 PC-Alpine only.
24814 Style of normal font.
24816 Use the pulldown Config menu to modify this variable.
24818 <UL>   
24819 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24820 </UL><P>
24821 &lt;End of help on this topic&gt;
24822 </BODY>
24823 </HTML>
24824 ====== h_config_font_char_set =====
24825 <HTML>
24826 <HEAD>
24827 <TITLE>OPTION: Font Character Set</TITLE>
24828 </HEAD>
24829 <BODY>
24830 <H1>OPTION: Font Character Set</H1>
24832 PC-Alpine only.
24834 Character set of normal font.
24836 Use the pulldown Config menu to modify this variable.
24838 <UL>   
24839 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24840 </UL><P>
24841 &lt;End of help on this topic&gt;
24842 </BODY>
24843 </HTML>
24844 ====== h_config_print_font_name =====
24845 <HTML>
24846 <HEAD>
24847 <TITLE>OPTION: Print-Font-Name</TITLE>
24848 </HEAD>
24849 <BODY>
24850 <H1>OPTION: Print-Font-Name</H1>
24852 PC-Alpine only.
24854 Name of printer font.
24856 Use the pulldown Config menu to modify this variable.
24858 <UL>   
24859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24860 </UL><P>
24861 &lt;End of help on this topic&gt;
24862 </BODY>
24863 </HTML>
24864 ====== h_config_print_font_size =====
24865 <HTML>
24866 <HEAD>
24867 <TITLE>OPTION: Print-Font-Size</TITLE>
24868 </HEAD>
24869 <BODY>
24870 <H1>OPTION: Print-Font-Size</H1>
24872 PC-Alpine only.
24874 Size of printer font.
24876 Use the pulldown Config menu to modify this variable.
24878 <UL>   
24879 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24880 </UL><P>
24881 &lt;End of help on this topic&gt;
24882 </BODY>
24883 </HTML>
24884 ====== h_config_print_font_style =====
24885 <HTML>
24886 <HEAD>
24887 <TITLE>OPTION: Print-Font-Style</TITLE>
24888 </HEAD>
24889 <BODY>
24890 <H1>OPTION: Print-Font-Style</H1>
24892 PC-Alpine only.
24894 Style of printer font.
24896 Use the pulldown Config menu to modify this variable.
24898 <UL>   
24899 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24900 </UL><P>
24901 &lt;End of help on this topic&gt;
24902 </BODY>
24903 </HTML>
24904 ====== h_config_print_font_char_set =====
24905 <HTML>
24906 <HEAD>
24907 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
24908 </HEAD>
24909 <BODY>
24910 <H1>OPTION: Print-Font-Char-Set</H1>
24912 PC-Alpine only.
24914 Character set of printer font.
24916 Use the pulldown Config menu to modify this variable.
24918 <UL>   
24919 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24920 </UL><P>
24921 &lt;End of help on this topic&gt;
24922 </BODY>
24923 </HTML>
24924 ====== h_config_window_position =====
24925 <HTML>
24926 <HEAD>
24927 <TITLE>OPTION: Window-Position</TITLE>
24928 </HEAD>
24929 <BODY>
24930 <H1>OPTION: Window-Position</H1>
24932 PC-Alpine only.
24934 Position on the screen of the Alpine window.
24936 Alpine normally maintains this variable itself, and it is set automatically. 
24937 This variable is provided to those who wish to use the same window position 
24938 across different machines from the same configuration.
24939 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
24940 must also be set for this setting to be used.
24942 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
24943 C is the number of columns, R is the number of rows, and X and Y specify the
24944 top left corner of the window.
24946 <UL>   
24947 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24948 </UL><P>
24949 &lt;End of help on this topic&gt;
24950 </BODY>
24951 </HTML>
24952 ====== h_config_cursor_style =====
24953 <HTML>
24954 <HEAD>
24955 <TITLE>OPTION: Cursor Style</TITLE>
24956 </HEAD>
24957 <BODY>
24958 <H1>OPTION: Cursor Style</H1>
24960 PC-Alpine only.
24962 Cursor style.
24964 Use the pulldown Config menu to modify this variable.
24966 <UL>   
24967 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24968 </UL><P>
24969 &lt;End of help on this topic&gt;
24970 </BODY>
24971 </HTML>
24972 ====== h_config_ldap_servers =====
24973 <HTML>
24974 <HEAD>
24975 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
24976 </HEAD>
24977 <BODY>
24978 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
24980 List of LDAP servers and associated data.
24982 Use the Setup/Directory screen to modify this variable.
24984 <UL>   
24985 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24986 </UL><P>
24987 &lt;End of help on this topic&gt;
24988 </BODY>
24989 </HTML>
24990 ====== h_config_sendmail_path =====
24991 <HTML>
24992 <HEAD>
24993 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
24994 </HEAD>
24995 <BODY>
24996 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
24998 This names the path to an
24999 alternative program, and any necessary arguments, to be used in posting
25000 mail messages. See the Technical notes for more information.
25002 <UL>   
25003 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25004 </UL><P>
25005 &lt;End of help on this topic&gt;
25006 </BODY>
25007 </HTML>
25008 ====== h_config_oper_dir =====
25009 <HTML>
25010 <HEAD>
25011 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25012 </HEAD>
25013 <BODY>
25014 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25016 This names the root of the
25017 tree to which you are restricted when reading and writing folders and
25018 files. It is usually used in the system-wide,
25019 <EM>fixed</EM> configuration file.
25021 <UL>   
25022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25023 </UL><P>
25024 &lt;End of help on this topic&gt;
25025 </BODY>
25026 </HTML>
25027 ====== h_config_rshpath =====
25028 <HTML>
25029 <HEAD>
25030 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25031 </HEAD>
25032 <BODY>
25033 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25035 Sets the name of the command used to open a UNIX remote shell
25036 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25038 <UL>   
25039 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25040 </UL><P>
25041 &lt;End of help on this topic&gt;
25042 </BODY>
25043 </HTML>
25044 ====== h_config_rshcmd =====
25045 <HTML>
25046 <HEAD>
25047 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25048 </HEAD>
25049 <BODY>
25050 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25052 Sets the format of the command used to
25053 open a UNIX remote shell connection. The default is
25054 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25055 provided command. The first is for the command's pathname, the second is
25056 for the host to connnect to, the third is for the user to connect as, and
25057 the fourth is for the connection method (typically <CODE>imap</CODE>).
25059 <UL>   
25060 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25061 </UL><P>
25062 &lt;End of help on this topic&gt;
25063 </BODY>
25064 </HTML>
25065 ====== h_config_sshpath =====
25066 <HTML>
25067 <HEAD>
25068 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25069 </HEAD>
25070 <BODY>
25071 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25073 Sets the name of the command used to open a UNIX secure shell
25074 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25076 <UL>   
25077 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25078 </UL><P>
25079 &lt;End of help on this topic&gt;
25080 </BODY>
25081 </HTML>
25082 ====== h_config_sshcmd =====
25083 <HTML>
25084 <HEAD>
25085 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25086 </HEAD>
25087 <BODY>
25088 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25090 Sets the format of the command used to
25091 open a UNIX secure shell connection. The default is
25092 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25093 provided command. The first is for the command's pathname, the second is
25094 for the host to connnect to, the third is for the user to connect as, and
25095 the fourth is for the connection method (typically <CODE>imap</CODE>).
25097 <UL>   
25098 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25099 </UL><P>
25100 &lt;End of help on this topic&gt;
25101 </BODY>
25102 </HTML>
25103 ====== h_config_new_ver_quell =====
25104 <HTML>
25105 <HEAD>
25106 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25107 </HEAD>
25108 <BODY>
25109 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25111 When a new version of Alpine is run for the first time it offers a
25112 special explanatory screen to the user upon startup.  This option
25113 helps control when and if that special screen appears for users that
25114 have previously run Alpine.  It takes as its value an Alpine version
25115 number.  Alpine versions less than the specified value will supress this
25116 special screen while versions equal to or greater than that specified
25117 will behave normally.
25119 <UL>   
25120 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25121 </UL><P>
25122 &lt;End of help on this topic&gt;
25123 </BODY>
25124 </HTML>
25125 ====== h_config_disable_drivers =====
25126 <HTML>
25127 <HEAD>
25128 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25129 </HEAD>
25130 <BODY>
25131 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25133 This variable is a list of mail drivers that will be disabled.
25134 The candidates for disabling are listed below.
25135 There may be more in the future if you compile Alpine with
25136 a newer version of the c-client library.
25139 <UL>
25140 <LI> mbox
25141 <LI> mbx
25142 <LI> mh
25143 <LI> mmdf
25144 <LI> mtx
25145 <LI> mx
25146 <LI> news
25147 <LI> phile
25148 <LI> tenex
25149 <LI> unix
25150 </UL>
25153 The <EM>mbox</EM> driver enables the following behavior: if there is a
25154 file called <CODE>mbox</CODE>
25155 in your home directory, and if that file is either empty or in Unix mailbox
25156 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25157 will automatically transfer mail from the system mail spool directory into the
25158 <CODE>mbox</CODE> file and
25159 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25160 this will not happen.
25163 It is not recommended to disable the driver that supports the system default
25164 mailbox format. On most non-SCO systems, that driver is the
25165 <EM>unix</EM> driver.
25166 On most SCO systems, it is the <EM>mmdf</EM> driver.
25167 The system default driver may be
25168 configured to something else on your system; check with your system manager
25169 for additional information.
25172 It is most likely not very useful for you to disable any of the drivers other
25173 than possibly <EM>mbox</EM>.
25174 You could disable some of the others if you know for
25175 certain that you don't need them but the performance gain in doing so
25176 is very modest.
25178 <UL>   
25179 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25180 </UL><P>
25181 &lt;End of help on this topic&gt;
25182 </BODY>
25183 </HTML>
25184 ====== h_config_disable_auths =====
25185 <HTML>
25186 <HEAD>
25187 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25188 </HEAD>
25189 <BODY>
25190 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25192 This variable is a list of SASL (Simple Authentication and Security
25193 Layer) authenticators that will be disabled.
25194 SASL is a mechanism for
25195 authenticating to IMAP, POP3, SMTP, and other network servers.
25198 Alpine matches its list of supported authenticators with the server to
25199 determine the most secure authenticator that is supported by both.
25200 If no matching authenticators are found, Alpine will revert to plaintext
25201 login (or, in the case of SMTP, will be unable to authenticate at all).
25203 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25206 Normally, you will not disable any authenticators.
25207 There are two exceptions:
25209 <OL>
25210 <LI> You use a broken server that advertises an authenticator,
25211 but does not actually implement it.
25212 <LI> You have a Kerberos-capable version of Alpine and the server is
25213 also Kerberos-capable, but you can not obtain Kerberos
25214 credentials on the server machine, thus you desire to disable
25215 GSSAPI (which in turn disables Alpine's Kerberos support).
25216 </OL>
25218 It is never necessary to disable authenticators, since Alpine will try
25219 other authenticators before giving up.
25220 However, disabling the relevant authenticator avoids annoying error messages.
25222 <UL>   
25223 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25224 </UL><P>
25225 &lt;End of help on this topic&gt;
25226 </BODY>
25227 </HTML>
25228 ====== h_config_abook_metafile =====
25229 <HTML>
25230 <HEAD>
25231 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25232 </HEAD>
25233 <BODY>
25234 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25236 This is usually set by Alpine and is the name of a file
25237 that contains data about
25238 remote address books and remote configuration files.
25240 <UL>   
25241 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25242 </UL><P>
25243 &lt;End of help on this topic&gt;
25244 </BODY>
25245 </HTML>
25246 ====== h_config_composer_wrap_column =====
25247 <HTML>
25248 <HEAD>
25249 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25250 </HEAD>
25251 <BODY>
25252 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25255 This option specifies an aspect of Alpine's Composer.  This gives the
25256 maximum width that auto-wrapped lines will have.  It's also the maximum
25257 width of lines justified using the <A HREF="h_compose_justify">^J
25258 Justify</A> command.  The normal default
25259 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25260 in order to
25261 prevent very long lines from being sent in outgoing mail.  When the mail
25262 is actually sent, trailing spaces will be stripped off of each line.
25265 <UL>   
25266 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25267 </UL><P>
25268 &lt;End of help on this topic&gt;
25269 </BODY>
25270 </HTML>
25271 ====== h_config_deadlets =====
25272 <HTML>
25273 <HEAD>
25274 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25275 </HEAD>
25276 <BODY>
25277 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25280 This option affects Alpine's behavior when you cancel a message being
25281 composed.  Alpine's usual behavior is to write the canceled message to
25282 a file named 
25283 <!--chtml if pinemode="os_windows"-->
25284 &quot;DEADLETR&quot;,
25285 <!--chtml else-->
25286 &quot;dead.letter&quot; in your home directory,
25287 <!--chtml endif-->
25288 overwriting any previous message.
25290 If you set this option to a value higher than one, then that many copies
25291 of dead letter files will be saved.
25292 For example, if you set this option to &quot;3&quot; then you may have
25293 files named
25294 <!--chtml if pinemode="os_windows"-->
25295 &quot;DEADLETR&quot;,
25296 &quot;DEADLETR2&quot;, and
25297 &quot;DEADLETR3&quot;.
25298 <!--chtml else-->
25299 &quot;dead.letter&quot;,
25300 &quot;dead.letter2&quot;, and
25301 &quot;dead.letter3&quot; in your home directory.
25302 <!--chtml endif-->
25303 In this example, the most recently cancelled message will be in
25304 <!--chtml if pinemode="os_windows"-->
25305 &quot;DEADLETR&quot;,
25306 <!--chtml else-->
25307 &quot;dead.letter&quot;,
25308 <!--chtml endif-->
25309 and the third most recently cancelled message will be in
25310 <!--chtml if pinemode="os_windows"-->
25311 &quot;DEADLETR3&quot;.
25312 <!--chtml else-->
25313 &quot;dead.letter3&quot;.
25314 <!--chtml endif-->
25315 The fourth most recently cancelled message will no longer be saved.
25318 If you set this option to zero, then NO record of canceled messages is
25319 maintained.
25321 If the feature
25322 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
25323 is set, that overrides whatever you set for this option.
25324 If this option had existed at the time, then the Quell feature would not
25325 have been added, but it is still there for backwards compatibility.
25326 So, in order for this option to have the desired effect, make sure the
25327 Quell feature is turned off.
25330 <UL>   
25331 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25332 </UL><P>
25333 &lt;End of help on this topic&gt;
25334 </BODY>
25335 </HTML>
25336 ====== h_config_maxremstream =====
25337 <HTML>
25338 <HEAD>
25339 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
25340 </HEAD>
25341 <BODY>
25342 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
25344 This option affects low-level behavior of Alpine.
25345 The default value for this option is <EM>3</EM>.
25346 If your INBOX is accessed using the IMAP protocol
25347 from an IMAP server, that connection is kept open throughout the
25348 duration of your Alpine session, independent of the value of this option.
25349 The same is true of any 
25350 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25351 you have defined.
25352 This option controls Alpine's behavior when connecting to remote IMAP folders
25353 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
25354 It specifies the maximum number of remote IMAP connections (other than
25355 those mentioned above) that Alpine will use for accessing the rest of your
25356 folders.
25357 If you set this option to zero, you will turn off most remote connection
25358 re-use.
25359 It's difficult to understand exactly what this option does, and it is usually
25360 fine to leave it set to its default value.
25361 It is probably more likely that you will be interested in setting the
25362 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
25363 instead of changing the value of this option.
25364 A slightly longer explanation of what is going on with this option
25365 is given in the next paragraphs.
25368 There are some time costs involved in opening and closing remote IMAP 
25369 folders, the main costs being the time you have to wait for the connection
25370 to the server and the time for the folder to open.
25371 Opening a folder may involve not only the time the server takes to do its
25372 processing but time that Alpine uses to do filtering.
25373 These times can vary widely.
25374 They depend on how loaded the server is, how large
25375 the folder being opened is, and how you set up filtering, among other things.
25376 Once Alpine has opened a connection to a particular folder, it will attempt
25377 to keep that connection open in case you use it again.
25378 In order to do this,
25379 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
25380 this option) IMAP connections you have alloted for this purpose.
25382 For example, suppose the value of this option is set to &quot;2&quot;.
25383 If your INBOX is accessed on a remote server using the IMAP protocol, that
25384 doesn't count as one of the remote connections but it is always kept open.
25385 If you then open another IMAP folder, that would be your first
25386 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25387 If you open a third folder the second will be left open, in case you
25388 return to it.
25389 You won't be able to tell it has been left open.
25390 It will appear to be closed when you leave the folder but the connection
25391 will remain in the background.
25392 Now suppose you go back to the second folder (the first folder after the
25393 INBOX).
25394 A connection to that folder is still open so you won't have to wait
25395 for the startup time to open it.
25396 Meanwhile, the connection to the third folder will be left behind.
25397 Now, if you open a fourth folder, you will bump into the
25398 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25399 than INBOX and you have the option set to &quot;2&quot;.
25400 The connection that is being used for
25401 the third folder will be re-used for this new fourth folder.
25402 If you go back to the third folder after this, it is no longer already
25403 connected when you get there.
25404 You'll still save some time since Alpine will re-use the connection to the
25405 fourth folder and you have already logged in on that connection,
25406 but the folder will have to be re-opened from scratch.
25408 If a folder is large and the startup cost is dominated by the time it takes
25409 to open that folder or to run filters on it, then it will pay to make the
25410 value of this option large enough to keep it open.
25411 On the other hand, if you only revisit a handful of folders or if
25412 the folders are small, then it might
25413 make more sense to keep this number small so that the reconnect
25414 time (the time to start up a new connection and authenticate)
25415 is eliminated instead.
25417 You may also need to consider the impact on the server.
25418 On the surface, a larger number here may cause a larger impact on the
25419 server, since you will have more connections open to the server.
25420 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25421 associated with reopening a folder, but the <EM>server</EM> will be
25422 avoiding those costs as well.
25424 When twenty five minutes pass without any active use of an IMAP connection
25425 being saved for possible re-use, that connection will be shut down,
25428 <UL>   
25429 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25430 </UL><P>
25431 &lt;End of help on this topic&gt;
25432 </BODY>
25433 </HTML>
25434 ====== h_config_permlocked =====
25435 <HTML>
25436 <HEAD>
25437 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25438 </HEAD>
25439 <BODY>
25440 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25442 This option affects low-level behavior of Alpine.
25443 There is no default value for this option.
25444 It is related to the options
25445 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25446 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25447 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25450 Note: changes made to this list take effect the next time you open a
25451 folder in the list.
25454 This is a list of folders that will be permanently kept open once they
25455 are first opened.
25456 The names in this list may be either the nickname of an Incoming folder
25457 or the full technical specification of a folder.
25458 The folders in this list need not be remote IMAP folders, they could usefully
25459 be local folders, as well.
25460 If a folder in the list is a newsgroup or is not accessed either locally
25461 or via IMAP, then the entry will be ignored.
25462 For example, folders accessed via NNTP or POP3 will not be kept open, since
25463 the way that new mail is found with those protocols involves closing and
25464 reopening the connection.
25466 Once a Stay Open folder has been opened, new-mail checking will continue
25467 to happen on that folder for the rest of the Alpine session.
25468 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25469 need to be added explicitly.
25471 Another difference that you may notice between a Stay Open folder and a
25472 non-Stay Open folder is which message is selected as the current message
25473 when you enter the folder index.
25474 Normally, the starting position for an incoming folder (which most Stay Open
25475 folders will likely be) is controlled by the
25476 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25477 However, if a folder is a Stay Open folder, when you re-enter the folder
25478 after the first time the current message will be the same as it was when
25479 you left the folder.
25480 An exception is made if you use the TAB command to get to the folder.
25481 In that case, the message number will be incremented by one from what it
25482 was when you left the folder.
25484 The above special behavior is thought to be useful.
25485 However, it is special and different from what you might at first expect.
25486 The feature
25487 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25488 may be used to turn off this special treatment.
25490 If the message that was current when you left the folder no longer exists,
25491 then the regular startup rule will be used instead.
25494 <UL>   
25495 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25496 </UL><P>
25497 &lt;End of help on this topic&gt;
25498 </BODY>
25499 </HTML>
25500 ====== h_config_viewer_overlap =====
25501 <html>
25502 <header>
25503 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25504 </header>
25505 <body>
25506 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25508 This option specifies an aspect of Alpine's Message Viewing screen.  When
25509 the space bar is used to page forward in a message, the number of lines
25510 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25511 bottom of the screen.  That is, if this was set to two lines, then the
25512 bottom two lines of the screen would be repeated on the top of the next
25513 screen.  The normal default value is "2".<p>
25514 <UL>   
25515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25516 </UL><P>
25517 &lt;End of help on this topic&gt;
25518 </body>
25519 </html>
25520 ====== h_config_scroll_margin =====
25521 <HTML>
25522 <HEAD>
25523 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25524 </HEAD>
25525 <BODY>
25526 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25528 This option controls when Alpine's line-by-line scrolling occurs.
25529 Typically, when a selected item is at the top or bottom screen edge
25530 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25531 displayed items are scrolled down or up by a single line.
25534 This option allows you to tell Alpine the number of lines from the top and
25535 bottom screen edge that line-by-line paging should occcur.  For example,
25536 setting this value to one (1) will cause Alpine to scroll the display
25537 vertically when you move to select an item on the display's top or
25538 bottom edge.
25541 By default, this variable is zero, indicating that scrolling happens
25542 when you move up or down to select an item immediately off the display's
25543 top or bottom edge.
25546 <UL>   
25547 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25548 </UL><P>
25549 &lt;End of help on this topic&gt;
25550 </BODY>
25551 </HTML>
25552 ====== h_config_wordseps =====
25553 <HTML>
25554 <HEAD>
25555 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25556 </HEAD>
25557 <BODY>
25558 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25560 This option affects how a &quot;word&quot; is defined in the composer.
25561 The definition of a word is used when using the Forward Word and Backward
25562 Word commands in the composer, as well as when using the spell checker.
25563 Whitespace is always considered a word separator.
25564 Punctuation (like question marks, periods, commas, and so on) is always
25565 a word separator if it comes at the end of a word.
25566 By default, a punctuation character that is in the middle of a word does
25567 not break up that word as long as the character before and the character
25568 after it are both alphanumeric.
25569 If you add a character to this option it will be considered a
25570 word separator even when it occurs in the middle of an alphanumeric word.
25571 For example, if you want to skip through each part of an address instead
25572 of skipping the whole address at once you might want to include &quot;@&quot;
25573 and &quot;.&quot; in this list.
25574 If you want the word-skipper to stop on each part of a UNIX filename you
25575 could add &quot;/&quot; to the list.
25576 The equal sign and dash are other possibilities you might find helpful.
25578 <UL>   
25579 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25580 </UL><P>
25581 &lt;End of help on this topic&gt;
25582 </BODY>
25583 </HTML>
25584 ====== h_config_reply_indent_string =====
25585 <HTML>
25586 <HEAD>
25587 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25588 </HEAD>
25589 <BODY>
25590 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25592 This option specifies an aspect of Alpine's Reply command.
25593 When a message is replied to and the text of the message is included, the
25594 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25595 to each line indicating it is quoted text.
25596 (In case you haven't seen this before, &quot;string&quot; is a technical term
25597 that means chunk of text.)
25600 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25601 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25602 use one of the standard values,
25603 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25606 This option specifies a different value for that string.
25607 If you wish to use a string that begins or ends with a space,
25608 enclose the string in double quotes.
25611 Besides simple text, the prepended string can be based
25612 on the message being replied to.
25613 The following tokens are substituted for the message's corresponding value:
25615 <DL>
25616 <DT>_FROM_</DT>
25617 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25618 If the name is longer than six characters, only the first six characters are
25619 used.
25620 </DD>
25622 <DT>_NICK_</DT>
25623 <DD>This token gets replaced with the nickname of the message sender's
25624 address as found in your addressbook.
25625 If no addressbook entry is found,
25626 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25627 If the nickname is longer than six characters, only the first six characters are
25628 used.
25629 </DD>
25631 <DT>_INIT_</DT>
25632 <DD>This token gets replaced with the initials of the sender of the message.
25633 </DD>
25635 </DL>
25637 NOTE: When the
25638 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25639 feature is enabled, you are given the opportunity to edit the string, whether 
25640 it is the default or one automatically generated using the above tokens.
25642 If you change your <!--#echo var="VAR_reply-indent-string"-->
25643 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25644 quoted text will not be flowed
25645 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
25646 when you reply.
25647 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
25648 set to the default value.
25650 <UL>   
25651 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25652 </UL><P>
25653 &lt;End of help on this topic&gt;
25654 </BODY>
25655 </HTML>
25656 ====== h_config_quote_replace_string =====
25657 <HTML>
25658 <HEAD>
25659 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
25660 </HEAD>
25661 <BODY>
25662 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
25664 This option specifies what string to use as a quote when <b>viewing</b> a
25665 message.  The standard way of quoting messages when replying is the string
25666 &quot;&gt;&nbsp;&quot; (quote space).
25667 With this variable set, viewing a message will
25668 replace occurrences of 
25669 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
25670 This setting works best when
25671 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
25672 or the equivalent setting in your correspondents' mail programs
25673 is set to the default
25674 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
25675 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
25677 By default, this setting will only work on messages that are flowed, which is
25678 the default way of sending messages for many mail clients including
25679 Alpine.  Enable the feature
25680 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
25681 to also have quote-replacement performed on non-flowed messages.
25684 Setting this option will replace  &quot;&gt;&quot; and 
25685 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
25686 spaces. To preserve those spaces enclose the full string in double quotes.
25688 No padding to separate the text of the message from the quote string is
25689 added. This means that if you do not add trailing spaces to the value of
25690 this variable, text will be displayed right next to the quote string,
25691 which may be undesirable. This can be avoided by adding a new string
25692 separated by a space from your selection of quote string replacement. This
25693 last string will be used for padding. For example, setting this variable to 
25694 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
25695 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
25696 a space from the last quote string to make it more readable.
25698 One possible setting for this variable could be
25699 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
25700 would have the effect of indenting each level of quoting four spaces and
25701 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
25702 more discernible by setting colors for quoted text.
25704 Replying to or forwarding the viewed message will preserve the original
25705 formatting of the message, so quote-replacement will not be performed on
25706 messages that are being composed.
25708 <UL>   
25709 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25710 </UL><P>
25711 &lt;End of help on this topic&gt;
25712 </BODY>
25713 </HTML>
25714 ====== h_config_empty_hdr_msg =====
25715 <HTML>
25716 <HEAD>
25717 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
25718 </HEAD>
25719 <BODY>
25720 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
25722 When sending, if both the To and Cc fields are empty and you
25723 are sending the message to a Bcc,
25724 Alpine will put a special address in the To line.  The default value is:
25727 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
25730 The reason for this is to avoid embarrassment caused by some Internet
25731 mail transfer software that interprets a &quot;missing&quot;
25732 <SAMP>To:</SAMP> header as an error and replaces it with an
25733 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
25734 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
25735 Bcc.  You may change the part of this message that comes before the
25736 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
25737 variable to something else.
25740 The normal default is &quot;undisclosed-recipients&quot;.
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_status_msg_delay =====
25750 <HTML>
25751 <HEAD>
25752 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
25753 </HEAD>
25754 <BODY>
25755 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
25757 This option has evolved over time, causing the possible values to be
25758 counter-intuitive.
25759 Read carefully before you set this option.
25760 First we explain what the option does, then there is a longer discussion
25761 following that.
25763 If this is set to zero, the default value, it has <EM>no</EM> effect.
25764 Positive and negative values serve two similar, but different purposes.
25766 If it is set to a positive number, it causes the cursor to move to the
25767 status line whenever a status message is printed and pause there for this
25768 many seconds.
25769 It will probably only be useful if the 
25770 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
25771 also turned on.
25772 Setting this option to a positive number can only be used to
25773 <EM>increase</EM> the status message delay.
25774 This may be useful for Braille displays, or other non-traditional displays.
25776 If it is set to a negative number the interpretation is a bit complicated.
25777 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
25778 allow you to read important status messages.
25779 Of course, this may cause you to miss some important messages.
25780 If you see a message flash by but miss what it says you can use the
25781 Journal command from the MAIN MENU to read it.
25782 If you set this option to a negative value, the delay will be
25783 no more than one second less than the absolute value
25784 of the value you set.
25785 So if you set it to -1, the delay will be no more than zero seconds, no
25786 delay at all.
25787 If you set it to -2, the delay will be no more than 1 second.
25788 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
25789 If the delay that Alpine would have used by default is less than this delay,
25790 then the smaller delay set by Alpine will be used.
25791 Setting this option to a negative value can only reduce the amount of
25792 delay, never increase it.
25794 Here is a more detailed explanation.
25795 Status messages are the messages that show up spontaneously in the
25796 status message line, usually the third line from the bottom of the screen.
25797 By default, Alpine assigns each status message it produces a minimum
25798 display time.
25799 Some status messages have a minimum display time of zero.
25800 You can see an example of such a message by paging up in this help text
25801 until you reach the top of the screen.
25802 If you try to page past the top you will see the message
25804 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
25806 in the status line.
25807 If there is another more important use of the status message line this message
25808 might be replaced quickly, or it even might not be shown at all.
25809 However, if there is no reason to get rid of the message, it might stay
25810 there for several seconds while you read the help.
25811 An example where it is replaced immediately happens when you page up in
25812 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
25813 command right after paging up.
25814 The message will disappear immediately without causing a delay (unless you
25815 have set this option to a positive value) to allow you to type input for
25816 the &quot;WhereIs&quot; command.
25817 Since it isn't a very important message, Alpine has set its minimum display
25818 time to zero seconds.
25820 Other messages have minimum display times of three or more seconds.
25821 These are usually error messages that Alpine thinks you ought to see.
25822 For example, it might be a message about a failed Save or a failed folder open.
25823 It is often the case that this minimum display time won't delay you in
25824 any way because the status message line is not needed for another reason.
25825 However, there are times when Alpine has to delay what it is doing in
25826 order to display a status message for the minimum display time.
25827 This happens when a message is being displayed and Alpine wants to ask
25828 for input from the keyboard.
25829 For example, when you Save a message you use the status message line.
25830 You get a prompt there asking for the name of the folder to save to.
25831 If there is a status message being displayed that has not
25832 yet displayed for its minimum
25833 time Alpine will display that status message surrounded with the characters
25834 &gt; and &lt; to show you that it is delaying.
25835 That might happen, for example, if you tried to save to a folder that
25836 caused an error, then followed that immediately with another Save command.
25837 You might find yourself waiting for a status message like
25839 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
25841 to finish displaying for three seconds.
25842 If that is something you find happening to you frequently, you may use
25843 negative values of this option to decrease or eliminate that delay, at
25844 the risk of missing the message.
25846 <UL>   
25847 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25848 </UL><P>
25849 &lt;End of help on this topic&gt;
25850 </BODY>
25851 </HTML>
25852 ====== h_config_active_msg_interval =====
25853 <HTML>
25854 <HEAD>
25855 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
25856 </HEAD>
25857 <BODY>
25858 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
25860 When Alpine is delayed for some reason it usually shows that
25861 something is happening with a small animated display in the status
25862 message line near the bottom of the screen.
25863 This option sets how frequently the characters (for example, a spinning bar)
25864 in the active status message lines are updated.
25865 At most, it can be set to be udpated 20 times per second. 
25868 Setting this value to zero will prevent display of the animations
25869 altogether.
25872 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
25873 can be used to remove the randomness from this animated display.
25876 <UL>   
25877 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25878 </UL><P>
25879 &lt;End of help on this topic&gt;
25880 </BODY>
25881 </HTML>
25882 ====== h_config_mailchecknoncurr =====
25883 <HTML>
25884 <HEADER>
25885 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
25886 </HEADER>
25887 <BODY>
25888 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
25890 This option is closely related to the
25891 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25892 option, as well as the
25893 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
25894 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
25895 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
25896 new-mail checking is disabled and this option will have no effect.
25898 Normally this option is set to zero, which means that the value used will be
25899 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
25900 If you set this option to a value different from zero
25901 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
25902 then that is the check interval that will be used
25903 for folders that are not the currently open folder or the INBOX.
25904 You may not even have any folders that are noncurrent and not the INBOX.
25905 If you do, it is likely that they are due to
25906 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25907 you have configured.
25908 This option also affects the rate of mail checking done on cached
25909 connections to folders you previously had open but are no longer actively
25910 using.
25911 You aren't expected to understand that last sentence, but if you are interested
25912 take a look at
25913 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
25914 and the related options.
25916 <UL>   
25917 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25918 </UL><P>
25919 &lt;End of help on this topic&gt;
25920 </BODY>
25921 </HTML>
25922 ====== h_config_fifopath =====
25923 <HTML>
25924 <HEADER>
25925 <TITLE>OPTION: NewMail FIFO Path</TITLE>
25926 </HEADER>
25927 <BODY>
25928 <H1>OPTION: NewMail FIFO Path</H1>
25930 This option is only available in UNIX Alpine.
25931 However, there is a very similar feature built in to PC-Alpine.
25932 In PC-Alpine's Config menu at the top of the screen
25933 is an option called &quot;New Mail Window&quot;.
25935 You may have Alpine create a FIFO special file (also called a named pipe) where
25936 it will send a one-line message each time a new message is received in
25937 the current folder, the INBOX, or any open
25938 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
25939 To protect against two different Alpines both writing to the same FIFO, Alpine
25940 will only create the FIFO and write to it if it doesn't already exist.
25942 A possible way to use this option would be to have a separate window
25943 on your screen running the command
25945 <CENTER><SAMP>cat filename</SAMP></CENTER>
25947 where &quot;filename&quot; is the name of the file given for this option.
25948 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
25949 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
25950 You may be tempted to use &quot;tail -f filename&quot; to view the new
25951 mail log.
25952 However, the common implementations of the tail command will not do what you
25953 are hoping.
25955 The width of the messages produced for the FIFO may be altered with the
25956 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
25958 On some systems, fifos may only be created in a local filesystem.
25959 In other words, they may not be in NFS filesystems.
25960 This requirement is not universal.
25961 If the system you are using supports it, it should work.
25962 (It is often the case that your home directory is in an NFS filesystem.
25963 If that is the case, you might try using a file in the &quot;/tmp&quot;
25964 filesystem, which is usually a local filesytem.)
25965 Even when it is possible to use an NFS-mounted filesystem as a place to name
25966 the fifo (for example, your home directory), it will still be the case that
25967 the reader (probably the &quot;cat&quot; command) and the
25968 writer (Alpine) of the fifo must be running on the same system.
25970 <UL>   
25971 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25972 </UL><P>
25973 &lt;End of help on this topic&gt;
25974 </BODY>
25975 </HTML>
25976 ====== h_config_newmailwidth =====
25977 <HTML>
25978 <HEADER>
25979 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
25980 </HEADER>
25981 <BODY>
25982 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
25984 For UNIX Alpine, this option is only useful if you have turned on the
25985 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
25986 That option causes new mail messages to be sent to a fifo file.
25987 Those messages will be 80 characters wide by default.
25988 You can change the width of those messages by changing this option.
25989 For example, if you are reading those messages in another window you might
25990 want to set this width to the width of that other window.
25992 If you are using PC-Alpine, it has an option in the Config menu to turn
25993 on the &quot;New Mail Window&quot;.
25994 This present option also controls the width of that window.
25996 <UL>   
25997 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25998 </UL><P>
25999 &lt;End of help on this topic&gt;
26000 </BODY>
26001 </HTML>
26002 ====== h_config_mailcheck =====
26003 <HTML>
26004 <HEADER>
26005 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26006 </HEADER>
26007 <BODY>
26008 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26010 This option specifies, in seconds,
26011 how often Alpine will check for new mail.
26012 If set to zero, new-mail checking is disabled.
26013 (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
26014 current message is the last message of the folder.)
26015 There is a minimum value for this option, normally 15 seconds.
26016 The default value is normally 150 seconds.
26017 The higher you set this option, the easier it is on the server.
26019 There are some situations where automatic new-mail checking does not work.
26020 See the discussion about new-mail checking in
26021 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26023 The new-mail checking will not happen exactly at the frequency that you specify.
26024 For example, Alpine may elect to defer a non-INBOX mail check if you
26025 are busy typing.
26026 Or, it may check more frequently than you have specified if that is
26027 thought to be necessary to keep the server from closing the connection
26028 to the folder due to inactivity.
26029 If Alpine checks for new mail as a side effect of another command, it will reset
26030 the timer, so that new-mail checking may seem to happen irregularly instead of
26031 every X seconds like clockwork.
26033 If you are anxious to know about new mail as soon as possible, set the check
26034 interval low, and you'll know about the new mail by approximately
26035 that amount of time after it arrives.
26036 If you aren't so worried about knowing right away, set this option to a
26037 higher value.
26038 That will save the server some processing time and may save you some of
26039 the time you spend waiting for new-mail checks to happen if you are
26040 dealing with a slow server or slow network connection.
26042 If you suspect that new-mail checking is causing slow downs for you,
26043 you may want to look into the options
26044 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26045 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26046 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26047 which refine when mail checking is done.
26049 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26050 there is a minimum time
26051 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26052 between new-mail checks.
26053 Because of this minimum you may notice that new mail does not
26054 appear promptly when you expect it.
26055 The reason for this is to protect the server from over-zealous opening and
26056 closing of the Mail Drop folder, since that is a costly operation.
26058 <UL>   
26059 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26060 </UL><P>
26061 &lt;End of help on this topic&gt;
26062 </BODY>
26063 </HTML>
26064 ====== h_config_quell_checks_comp =====
26065 <HTML>
26066 <HEAD>
26067 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26068 </HEAD>
26069 <BODY>
26070 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26072 This option is closely related to the
26073 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26074 option, the
26075 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26076 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26078 If this option is set, then the normal new-mail checking that happens
26079 while you are composing will not happen for folders other than your
26080 INBOX (which depends on the setting
26081 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26083 You might want to set this option if you are experiencing delays while
26084 composing that you think might be related to the speed of the new-mail
26085 checks.
26087 Even with this option turned on, an occasional new-mail check may be done
26088 in order to keep the server from killing the connection to the folder.
26089 For example, IMAP servers may remove a connection to a folder if there
26090 has been no activity on the connection for 30 minutes or more.
26091 Instead of letting that happen, Alpine will check for new mail before the
26092 30 minutes is up even though you have turned on this feature to quell
26093 those checks.
26095 Besides new-mail checks, checkpoint operations on the folders
26096 will also be quelled when you set this option.
26097 The purpose of checkpointing is to write the changes to a folder out to
26098 disk periodically in order to avoid losing those changes when system or
26099 software problems occur.
26100 New-mail checking and checkpointing while you are not composing are not
26101 affected by this option.
26104 &lt;End of help on this topic&gt;
26105 </BODY>
26106 </HTML>
26107 ====== h_config_quell_checks_comp_inbox =====
26108 <HTML>
26109 <HEAD>
26110 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26111 </HEAD>
26112 <BODY>
26113 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26115 This option is closely related to the
26116 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26117 option, the
26118 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26119 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26121 If this option is set, then the normal new-mail checking that happens
26122 while you are composing will not happen for your INBOX.
26123 Checking of other folders is controlled in a similar way with the
26124 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26126 You might want to set this option if you are experiencing delays while
26127 composing that you think might be related to the speed of the new-mail
26128 checks.
26130 Even with this option turned on, an occasional new-mail check may be done
26131 in order to keep the server from killing the connection to the folder.
26132 For example, IMAP servers may remove a connection to a folder if there
26133 has been no activity on the connection for 30 minutes or more.
26134 Instead of letting that happen, Alpine will check for new mail before the
26135 30 minutes is up even though you have turned on this feature to quell
26136 those checks.
26138 Besides new-mail checks, checkpoint operations on the INBOX
26139 will also be quelled when you set this option.
26140 The purpose of checkpointing is to write the changes to a folder out to
26141 disk periodically in order to avoid losing those changes when system or
26142 software problems occur.
26143 New-mail checking and checkpointing while you are not composing are not
26144 affected by this option.
26146 &lt;End of help on this topic&gt;
26147 </BODY>
26148 </HTML>
26149 ====== h_config_maildropcheck =====
26150 <HTML>
26151 <HEADER>
26152 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26153 </HEADER>
26154 <BODY>
26155 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26157 New-mail checking for a
26158 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26159 mail checking for a regular folder.
26160 One of the differences is that the connection to the Mail Drop is not
26161 kept open and so the cost of checking
26162 (delay for you and additional load for the server) may be significant.
26163 Because of this additional cost we set a minimum time that
26164 must pass between checks.
26165 This minimum only applies to the automatic checking done by Alpine.
26166 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26167 at the end of a folder index, then the check is done right away.
26169 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26170 new-mail checks.
26171 You may want to set this minimum high in order to avoid experiencing some
26172 of the delays associated with the checks.
26173 Note that the time between checks is still controlled by the regular
26174 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26175 When Alpine is about to do an automatic check for new mail (because
26176 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26177 new-mail check
26178 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26179 the Mail Drop is checked for new mail as well.
26180 Therefore, it is only useful to set this option to a value that is higher
26181 than the <!--#echo var="VAR_mail-check-interval"-->.
26183 If this option is set to zero, automatic Mail Drop new-mail
26184 checking is disabled.
26185 There is a minimum value, normally 60 seconds.
26186 The default value is normally 60 seconds as well.
26187 This applies to the INBOX and to the currently open folder if that is
26188 different from the INBOX.
26191 <UL>   
26192 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26193 </UL><P>
26194 &lt;End of help on this topic&gt;
26195 </BODY>
26196 </HTML>
26197 ====== h_config_nntprange =====
26198 <HTML>
26199 <HEADER>
26200 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26201 </HEADER>
26202 <BODY>
26203 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26205 This option applies only to newsgroups accessed using the NNTP protocol.
26206 It does not, for example,
26207 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26210 When you open a connection to a News server using the NNTP protocol, you
26211 normally have access to all of the articles in each newsgroup.
26212 If a server keeps a large backlog of messages it may speed performance
26213 some to restrict attention to only the newer messages in a group.
26214 This option allows you to set how many article numbers should be checked
26215 when opening a newsgroup.
26216 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26217 of messages you ever want to see.
26218 For example, if you only ever wanted to look at the last 500 messages in each
26219 newsgroup you could set this option to 500.
26220 In actuality, it isn't quite that.
26221 Instead, for performance reasons, it specifies the range of article
26222 numbers to be checked, beginning
26223 with the highest numbered article and going backwards from there.
26224 If there are messages that have been canceled or deleted
26225 their article numbers are still counted as part of the range.
26227 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26228 numbers
26229 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26231 to be considered when reading a newsgroup.
26232 The number of messages that show up in your index will be less than or equal
26233 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26236 The purpose of this option is simply to speed up access when reading news.
26237 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26238 numbers, and can avoid downloading any information about the ignored articles.
26239 There is a cost you pay for this speedup.
26240 That cost is that there is no way for you to see those ignored articles.
26241 The articles that come before the range you specify are invisible to you and
26242 to Alpine, as if they did not exist at all.
26243 There is no way to see those messages using, for example, an unexclude command
26244 or something similar.
26245 The only way to see those articles is to set this option high enough (or
26246 set it to zero) and then to reopen the newsgroup.
26249 If this option is set to 0 (which is also the default),
26250 then the range is unlimited.
26251 This option applies globally to all NNTP servers and to all newsgroups
26252 on those servers.
26253 There is no way to set different values for different newsgroups or servers.
26256 <UL>   
26257 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26258 </UL><P>
26259 &lt;End of help on this topic&gt;
26260 </BODY>
26261 </HTML>
26262 ====== h_config_news_active =====
26263 <html>
26264 <header>
26265 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26266 </header>
26267 <body>
26268 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26270 This option tells Alpine where to look for the "active file" for newsgroups
26271 when accessing news locally, rather than via NNTP.  The default path is
26272 usually "/usr/lib/news/active".<p>
26273 <UL>   
26274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26275 </UL><P>
26276 &lt;End of help on this topic&gt;
26277 </body>
26278 </html>
26279 ====== h_config_news_spool =====
26280 <html>
26281 <header>
26282 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26283 </header>
26284 <body>
26285 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26287 This option tells Alpine where to look for the "news spool" for newsgroups
26288 when accessing news locally, rather than via NNTP.  The default path is
26289 usually "/var/spool/news".<p>
26290 <UL>   
26291 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26292 </UL><P>
26293 &lt;End of help on this topic&gt;
26294 </body>
26295 </html>
26296 ====== h_config_image_viewer =====
26297 <html>
26298 <header>
26299 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26300 </header>
26301 <body>
26302 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26303 <body>
26304 This option specifies the program Alpine should call to view MIME
26305 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26306 no longer needed, but remains for backward compatibility.  The more
26307 general method for associating external printing and viewing programs with
26308 specific MIME data types is to use the system's (or your personal)
26309 "mailcap" configuration file.<p>
26310 <UL>   
26311 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26312 </UL><P>
26313 &lt;End of help on this topic&gt;
26314 </body>
26315 </html>
26316 ====== h_config_domain_name =====
26317 <HTML>
26318 <HEAD>
26319 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
26320 </HEAD>
26321 <BODY>
26322 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
26324 This option is used only if the 
26325 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
26326 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
26327 strips the hostname from your return (&quot;From&quot;) address and when 
26328 completing unqualified addresses that you enter into the composer.
26330 If you set this, see also the <A HREF="h_config_quell_local_lookup">
26331 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
26334 <!--chtml if pinemode="os_windows"-->
26335 <P>This option is not applicable to PC-Alpine.
26336 <!--chtml else-->
26338 <!--chtml endif-->
26339 <UL>
26340 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26341 </UL>
26343 &lt;End of help on this topic&gt;
26344 </BODY>
26345 </HTML>
26346 ====== h_config_prune_date =====
26347 <HTML>
26348 <HEAD>
26349 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
26350 </HEAD>
26351 <BODY>
26352 <H1>OPTION: Last-Time-Prune Question</H1>
26354 This value records the last time you were asked about deleting old
26355 sent-mail.
26356 It is set automatically by Alpine at the beginning of each month.
26357 In the past, if you wished to suppress the monthly sent-mail
26358 pruning feature, you could set this to a date in the future.
26359 This value is relative to the year 1900, so 
26360 to set this, for example, to October 2005, use 105.10.
26362 You can still do that if you wish, or you can use the
26363 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
26364 a little more convenient to use.
26366 <UL>   
26367 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26368 </UL><P>
26369 &lt;End of help on this topic&gt;
26370 </BODY>
26371 </HTML>
26372 ====== h_config_goto_default =====
26373 <HTML>
26374 <HEAD>
26375 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
26376 </HEAD>
26377 <BODY>
26378 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
26380 This value affects Alpine's behavior when you use the Goto command.
26381 Alpine's usual behavior has two parts.  If your current folder is
26382 &quot;Inbox&quot;, Alpine will offer the last open folder as the
26383 default.  If the current folder is other than &quot;Inbox&quot;,
26384 &quot;Inbox&quot; is offered as the default.
26387 The available options include:
26389 <DL>
26391  <DT>folder-in-first-collection</DT>
26393  <DD> Alpine will offer the most recently visited folder in the default
26394 collection found in the &quot;Collection List&quot; screen as the default.
26395 </DD>
26397  <DT> inbox-or-folder-in-first-collection</DT>
26399  <DD> If the current folder is &quot;Inbox&quot;,
26400 Alpine will offer the most recently visited folder in the
26401 default collection found in the &quot;Collection List&quot; screen.
26402 If the current folder is other than &quot;Inbox&quot;,
26403 &quot;Inbox&quot; is offered as the default.
26404 </DD>
26406  <DT> inbox-or-folder-in-recent-collection</DT>
26408  <DD> This is Alpine's default behavior.
26409 If the current folder is &quot;Inbox&quot;,
26410 Alpine will offer the last open
26411 folder as the default.
26412 If the current folder is other than &quot;Inbox&quot;,
26413 &quot;Inbox&quot; is offered as the default.
26414 </DD>
26416  <DT> first-collection-with-inbox-default</DT>
26418  <DD> Instead of offering the most recently visited folder in the default
26419 collection, the default collection is offered but with &quot;Inbox&quot; as
26420 the default folder.
26421 If you type in a folder name it will be in the default collection.
26422 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26423 </DD>
26425  <DT> most-recent-folder</DT>
26427  <DD> The last accepted value simply causes the most recently opened
26428 folder to be offered as the default regardless of the currently opened
26429 folder.
26430 </DD>
26431 </DL>
26434 NOTE: The default while a newsgroup is open remains the same; the last
26435 open newsgroup.
26438 <UL>   
26439 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26440 </UL><P>
26441 &lt;End of help on this topic&gt;
26442 </BODY>
26443 </HTML>
26444 ====== h_config_thread_lastreply_char =====
26445 <HTML>
26446 <HEAD>
26447 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26448 </HEAD>
26449 <BODY>
26450 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26452 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26453 INDEX display when using a
26454 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26455 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26456 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26457 The value of this option is a single character.
26458 This character is used instead of the vertical line character when there are
26459 no more replies directly to the parent of the current message.
26460 It can be used to &quot;round-off&quot; the bottom of the vertical line
26461 by setting it to a character such as a backslash (&#92;) or
26462 a backquote (&#96;).
26463 The default value of this option is the backslash character (&#92;).
26464 This option may not be set to the Empty Value.
26465 In that case, the default will be used instead.
26468 <UL>   
26469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26470 </UL><P>
26471 &lt;End of help on this topic&gt;
26472 </BODY>
26473 </HTML>
26474 ====== h_config_thread_indicator_char =====
26475 <HTML>
26476 <HEAD>
26477 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26478 </HEAD>
26479 <BODY>
26480 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26482 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26483 INDEX display when using a
26484 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26485 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26486 The value of this option is a single character.
26487 This character is used to indicate that part of a thread (a conversation) is
26488 hidden beneath a message.
26489 The message could be expanded
26490 if desired with the &quot;/&quot; Collapse/Expand command.
26491 By default, the value of this option is the greater than sign (&gt;).
26493 If this option is set to the Empty Value, then the column (and the following
26494 blank column) will be deleted from the display.
26497 This option is closely related to the
26498 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26499 Another similar option that affects the thread display is the
26500 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
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_exp_char =====
26510 <HTML>
26511 <HEAD>
26512 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26513 </HEAD>
26514 <BODY>
26515 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26517 The <!--#echo var="VAR_threading-expanded-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;.
26521 The value of this option is a single character.
26522 This character is used to indicate that part of a thread has been expanded
26523 and could be collapsed if desired with
26524 the &quot;/&quot; Collapse/Expand command.
26525 By default, the value of this option is a dot (.).
26527 If this option is set to the Empty Value, then the column (and the following
26528 blank column) will be deleted from the display.
26531 This option is closely related to the
26532 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26533 Another similar option that affects the thread display is the
26534 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26537 <UL>   
26538 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26539 </UL><P>
26540 &lt;End of help on this topic&gt;
26541 </BODY>
26542 </HTML>
26543 ====== h_config_thread_index_style =====
26544 <HTML>
26545 <HEAD>
26546 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26547 </HEAD>
26548 <BODY>
26549 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26551 When a folder is sorted by Threads or OrderedSubject,
26552 this option will affect the INDEX displays.
26555 The possible values for this option are:
26557 <DL>
26558 <DT>regular-index-with-expanded-threads</DT>
26559 <DD>This is the default display.
26560 If the configuration option
26561 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26562 is set to something other than &quot;none&quot;, then this setting
26563 will cause Alpine to start off with a MESSAGE INDEX with all of
26564 the threads expanded.
26565 That is, each message will have a line in the MESSAGE INDEX display.
26566 The Collapse/Expand command (/) may be used to manually collapse or
26567 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26569 This setting affects the display when the folder is first threaded.
26570 The collapsed state may also be re-initialized by re-sorting the folder manually
26571 using the SortIndex command ($).
26572 After re-sorting the threads will once again all be expanded, even if you
26573 have previously collapsed some of them.
26575 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26576 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26577 in a different order.
26578 </DD>
26580 <DT>regular-index-with-collapsed-threads</DT>
26581 <DD>If the configuration option
26582 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26583 is set to something other than &quot;none&quot;, then this setting
26584 will cause Alpine to start out with all of the threads collapsed instead of
26585 starting out with all of the threads expanded.
26586 The Collapse/Expand command (/) may be used to manually collapse or
26587 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26589 This setting affects the display when the folder is first threaded.
26590 The collapsed state may also be re-initialized by re-sorting the folder manually
26591 using the SortIndex command ($).
26592 After re-sorting the threads will once again all be collapsed, even if you
26593 have previously expanded some of them.
26594 </DD>
26596 <DT>separate-index-screen-always</DT>
26597 <DD>With this setting and the next, you will see an index of threads
26598 instead of an
26599 index of messages, provided you have sorted by Threads or OrderedSubject.
26601 The THREAD INDEX contains a '*' in the first column if any message in the thread
26602 is marked Important.
26603 If not, it contains a '+' if any message in the thread is to you.
26604 The second column is blank. The third column contains a 'D' if all of the
26605 messages in the thread are deleted.
26606 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26608 When you view a particular thread from the THREAD INDEX you will be
26609 in the MESSAGE INDEX display
26610 but the index will only contain messages from the thread you are viewing.
26611 </DD>
26613 <DT>separate-index-screen-except-for-single-messages</DT>
26614 <DD>This is very similar to the option above.
26615 When you are in the THREAD INDEX, one of the available commands
26616 is &quot;ViewThd&quot;.
26617 With the setting &quot;separate-index-screen-always&quot; (the option above)
26618 when you view a particular thread you will be in the
26619 MESSAGE INDEX display and the index will only contain messages from
26620 the thread you are viewing.
26621 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26622 will be an index with only one message in it.
26623 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26624 setting instead, then that index that contains a single message
26625 will be skipped and you will go directly from the THREAD INDEX into the
26626 MESSAGE TEXT screen.
26627 </DD>
26629 </DL>
26632 <UL>   
26633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26634 </UL><P>
26635 &lt;End of help on this topic&gt;
26636 </BODY>
26637 </HTML>
26638 ====== h_config_thread_disp_style =====
26639 <HTML>
26640 <HEAD>
26641 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26642 </HEAD>
26643 <BODY>
26644 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
26646 When a folder is sorted by Threads or OrderedSubject,
26647 this option will affect the MESSAGE INDEX display.
26648 By default, Alpine will display the MESSAGE INDEX in the
26649 &quot;show-thread-structure&quot; style if a folder is sorted
26650 by Threads or OrderedSubject.
26653 The possible values for this option are:
26655 <DL>
26656 <DT>none</DT>
26657 <DD>Regular index display.
26658 The same index line as would be displayed without threading is used.
26659 The only difference will be in the order of the messages.
26660 </DD>
26662 <DT>show-thread-structure</DT>
26663 <DD>Threaded Subjects will be indented and vertical bars and horizontal
26664 lines will be added to make it easier to see the relationships among
26665 the messages in a thread (a conversation).
26666 </DD>
26668 <DT>mutt-like</DT>
26669 <DD>This is the same as the option above except that the Subject
26670 is suppressed (is blank) if it matches the previous Subject in the thread.
26671 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
26672 Here is an example of what a mutt-like index might look like.
26673 In this example, the first column represents the message number, the
26674 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
26675 is set to &quot;regular-index-with-expanded-threads&quot;, and the
26676 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
26677 is set to a backslash:
26678 <PRE>
26679 &nbsp;&nbsp;&nbsp;1    Some topic
26680 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
26681 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
26682 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
26683 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
26684 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
26685 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
26686 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
26687 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
26688 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
26689 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
26690 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
26691 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
26692 &nbsp;&nbsp;&nbsp;14    Next topic
26693 </PRE>
26694 </DD>
26696 <DT>indent-subject-1</DT>
26697 <DD>Threaded Subjects will be indented one space per level of the conversation.
26698 The bars and lines that show up in the show-thread-structure display will
26699 not be there with this style.
26700 </DD>
26702 <DT>indent-subject-2</DT>
26703 <DD>Same as above but indent two spaces per level instead of one space.
26704 </DD>
26706 <DT>indent-from-1</DT>
26707 <DD>Similar to indent-subject-1, except that instead of indenting the
26708 Subject field one space the From field of a thread will be indented one
26709 space per level of the conversation.
26710 </DD>
26712 <DT>indent-from-2</DT>
26713 <DD>Same as above but indent two spaces per level instead of one space.
26714 </DD>
26716 <DT>show-structure-in-from</DT>
26717 <DD>The structure of the thread is illustrated with indenting, vertical bars,
26718 and horizontal lines just like with the show-thread-structure option, but
26719 the From field is used to show the relationships instead of the Subject field. 
26720 </DD>
26722 </DL>
26725 <UL>   
26726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26727 </UL><P>
26728 &lt;End of help on this topic&gt;
26729 </BODY>
26730 </HTML>
26731 ====== h_config_pruning_rule =====
26732 <HTML>
26733 <HEAD>
26734 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
26735 </HEAD>
26736 <BODY>
26737 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
26739 By default, Alpine will ask at the beginning of each month whether or not
26740 you want to rename your sent-mail folder to a name like sent-mail-month-year.
26741 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
26742 change the format of the folder to sent-mail-yyyy-mm.)
26743 It will also ask whether you would like to delete old sent-mail folders.
26744 If you have defined
26745 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
26747 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
26748 Alpine will also ask about pruning those folders.
26751 With this option you may provide an automatic answer to these questions.
26752 The default value is to ask you what you'd like to do.
26755 The six possible values for this option are:
26757 <DL>
26758 <DT>ask about rename, ask about deleting</DT>
26759 <DD>This is the default.
26760 Alpine will ask whether you want to rename the folders and whether you
26761 want to delete each of the old folders.
26762 </DD>
26764 <DT>ask about rename, don't delete</DT>
26765 <DD>Alpine will ask whether you want to rename the folders, but won't
26766 ask about or delete old folders.
26767 </DD>
26769 <DT>always rename, ask about deleting</DT>
26770 <DD>This means you want to always answer yes and have Alpine automatically
26771 rename the folder if possible.
26772 You will also be asked about deleting old folders.
26773 </DD>
26775 <DT>always rename, don't delete</DT>
26776 <DD>This means you want to always answer yes and have Alpine automatically
26777 rename the folder if possible.
26778 There will be no deleting of old folders.
26779 </DD>
26781 <DT>don't rename, ask about deleting</DT>
26782 <DD>This means you want to always answer no.
26783 Alpine will not rename the folder.
26784 You will be asked about deleting old folders.
26785 </DD>
26787 <DT>don't rename, don't delete</DT>
26788 <DD>This means you want to always answer no.
26789 Alpine will not rename the folder.
26790 There will be no deleting of old folders, either.
26791 </DD>
26792 </DL>
26795 <UL>   
26796 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26797 </UL><P>
26798 &lt;End of help on this topic&gt;
26799 </BODY>
26800 </HTML>
26801 ====== h_config_reopen_rule =====
26802 <HTML>
26803 <HEAD>
26804 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
26805 </HEAD>
26806 <BODY>
26807 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
26809 Alpine normally checks for new mail in the currently open folder
26810 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
26813 There are some situations where automatic new-mail checking does not work.
26814 For example, if a mail folder is opened using the POP protocol or a newsgroup
26815 is being read using the NNTP protocol, then new-mail checking is disabled.
26818 It may be possible to check for new mail in these cases by reopening the
26819 folder.
26820 Alpine does not do this for you automatically, but you may do the commands
26821 manually to cause this to happen.
26822 You reopen by going back to the folder list screen from the message
26823 index screen with the &quot;&lt;&quot; command,
26824 and then going back into the message index screen with
26825 the &quot;&gt;&quot; command.
26826 (Actually, any method you would normally use to open a folder will work the
26827 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
26828 For example, the GoTo Folder command will work, or you may use L to go to the
26829 Folder List screen and Carriage Return to reopen the folder.)
26832 There are some cases where Alpine knows that reopening the folder should
26833 be useful as a way to discover new mail.
26834 At the time of this writing, connections made using the POP protocol,
26835 news reading using the NNTP protocol, local news reading, and local
26836 ReadOnly folders that are in the traditional UNIX or the MMDF format all
26837 fall into this category.
26838 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
26839 has no way of knowing, so it might also just be an exercise in futility.
26840 All remote, ReadOnly folders other than those listed just above fall into this
26841 category.
26842 The setting of this option together with the type of folder
26843 controls how Alpine will react to the apparent attempt to reopen a folder.
26846 If you don't reopen, then you will just be back in
26847 the message index with no change.
26848 You left the index and came back, but the folder remained &quot;open&quot;
26849 the whole time.
26850 However, if you do reopen the folder, the folder is closed and then reopened.
26851 In this case, the current state of the open folder is lost.
26852 The New status, Important and Answered flags,
26853 selected state, Zoom state, collapsed or expanded state of threads,
26854 current message number,
26855 and any other temporary state is all lost when the reopen happens.
26856 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
26859 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
26860 several places.
26861 That really implies the case where Alpine knows it is a good way to discover
26862 new mail, which is more than just POP and NNTP, but POP and NNTP are
26863 the cases of most interest.
26864 This option probably has more possible values than it deserves. They are:
26866 <DL>
26867 <DT>Always reopen</DT>
26868 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
26869 whenever you type a command that implies a reopen, regardless of the
26870 access method.
26871 In other words, it is assumed you would always answer Yes if asked
26872 about reopening.
26873 </DD>
26875 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
26876 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26877 will ask you whether to reopen other remote folders,
26878 with a default answer of Yes.
26879 </DD>
26881 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
26882 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26883 will ask you whether to reopen other remote folders,
26884 with a default answer of No.
26885 </DD>
26887 <DT>Yes for POP/NNTP, No for other remote</DT>
26888 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
26889 will assume a No answer for all other remote folders.
26890 </DD>
26892 <DT>Always ask [Yes]</DT>
26893 <DD>Alpine will not differentiate based on access method.
26894 It will always ask for all remote folders, with a default answer of Yes.
26895 </DD>
26897 <DT>Always ask [No]</DT>
26898 <DD>Alpine will not differentiate based on access method.
26899 It will always ask for all remote folders, with a default answer of No.
26900 </DD>
26902 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
26903 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
26904 of Yes.
26905 It will never attempt to reopen other remote folders.
26906 </DD>
26908 <DT>Ask about POP/NNTP [No], No for other remote</DT>
26909 <DD>This is the default.
26910 Alpine will ask if the access method is POP or NNTP, with a default answer
26911 of No.
26912 It will never attempt to reopen other remote folders.
26913 </DD>
26915 <DT>Never reopen</DT>
26916 <DD>Alpine will never attempt to reopen already open folders.
26917 </DD>
26918 </DL>
26921 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
26922 any of the other situations where it is likely that reopening is a good way
26923 to discover new mail.
26926 There is an alternative that may be of useful in some situations.
26927 Instead of manually checking for new mail you can set up a
26928 <A HREF="h_maildrop">Mail Drop</A>
26929 and automatically check for new mail.
26932 <UL>   
26933 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26934 </UL><P>
26935 &lt;End of help on this topic&gt;
26936 </BODY>
26937 </HTML>
26938 ====== h_config_inc_startup =====
26939 <HTML>
26940 <HEAD>
26941 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
26942 </HEAD>
26943 <BODY>
26944 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
26946 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
26947 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
26948 It determines which message will be the <EM>current message</EM> when
26949 the folder is first opened.
26950 The default value is &quot;first-unseen&quot;.
26953 The seven possible values for this option are:
26955 <DL>
26956 <DT>first-unseen</DT>
26957 <DD>The current message is set to the first
26958 unseen message that has not been marked deleted, or the last message if
26959 all of the messages have been seen previously.
26960 Messages which have not been seen or which have been seen but re-marked
26961 as New are considered unseen messages.
26962 See the note at the bottom of this help about newsgroups.
26963 </DD>
26965 <DT>first-recent</DT>
26966 <DD>Similar to the default, but rather than starting on the first
26967 unseen message Alpine starts on the first <EM>recent</EM> message.
26968 A message is recent if it arrived since the last time the folder was
26969 open.  This value causes the current message to be set to the first
26970 recent message if there is one, otherwise to the last
26971 message in the folder.
26972 </DD>
26974 <DT>first-important</DT>
26975 <DD>This will result in the current message being set to the first
26976 message marked Important (but not Deleted).
26977 If no messages are marked Important, then it will be the last message.
26978 Messages are marked Important by <EM>you</EM>, not by the sender, using
26980 <A HREF="h_common_flag">Flag command</A>.
26981 Or they may be marked Important by an Alpine
26982 <A HREF="h_mainhelp_filtering">Filter</A>
26983 that you have set up.
26984 </DD>
26986 <DT>first-important-or-unseen</DT>
26987 <DD>This selects the first of the first unseen and the first important
26988 messages.
26989 </DD>
26991 <DT>first-important-or-recent</DT>
26992 <DD>This selects the first of the first recent and the first important
26993 messages.
26994 </DD>
26996 <DT>first</DT>
26997 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
26998 If all messages are deleted you start on the last message.
26999 </DD>
27001 <DT>last</DT>
27002 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27003 If all messages are deleted you start on the last message.
27004 </DD>
27005 </DL>
27008 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27009 &quot;first-recent&quot; are the same and are affected by whether or not the
27010 feature 
27011 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27012 is turned on. 
27013 Also, there is no permanent storage in news for an Important flag.
27014 This means that no messages will be marked Important when a newsgroup is
27015 first opened.
27018 <UL>   
27019 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27020 </UL><P>
27021 &lt;End of help on this topic&gt;
27022 </BODY>
27023 </HTML>
27024 ====== h_config_browser =====
27025 <HTML>
27026 <HEAD>
27027 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27028 </HEAD>
27029 <BODY>
27030 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27031 <!--chtml if pinemode="os_windows"-->
27032 PC-Alpine users do not need to enter anything here, unless:<UL>
27033 <LI> they want to override, for use with Alpine, the application defined
27034 in the Windows operating system for handling URLs; or
27035 <LI> they are (planning on) using the same configuration file with 
27036 Unix Alpine.
27037 </UL>
27039 Note that if using a viewer that has a space in its path, you should
27040 use the DOS name for that directory or file. Example:
27041 <PRE>
27042 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27043 </PRE>
27044 <HR><P>
27045 <!--chtml endif-->
27046 This option affects Alpine's handling of URLs that are found in 
27047 messages you read.  Normally, only URLs Alpine can handle directly
27048 are automatically offered for selection in the &quot;Message
27049 Text&quot; screen.  When one or more applications
27050 capable of deciphering URLs on their command line are added here, Alpine
27051 will choose the first available to display URLs it cannot handle directly.
27052 A viewer's availability is based on its being specified with a <B>full
27053 directory path</B> and the evaluation of any optionally supplied
27054 parameters described below.
27057 Additionally, to support various connection methods and applications, each
27058 entry in this list can optionally begin with one or more of
27059 the following special tokens.  The allowed tokens include:
27062 <DL>
27063 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27064 <DD>
27065 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27066 evaluate a viewer's availability.  The command specified by the test
27067 string is run and if its resulting exit status is non-zero, Alpine will
27068 not consider the associated viewer for use.
27069 </DD>
27071 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27072 <DD>
27073 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27074 URL schemes that are to be used with the associated viewer.  This is
27075 the way to configure Alpine to recognize URLs other than the built-in set.
27077 It can also be used to override Alpine's built-in handlers.
27078 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27079 and Alpine would use (provided it passed all other criteria) the associated
27080 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27082 </DD>
27083 </DL>
27086 By default, Alpine will simply append a space character followed by the
27087 selected URL prior to launching the command in your specified SHELL.  You can
27088 optionally specify where in the command the selected URL should appear
27089 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27090 will be replaced with the selected URL before the command is handed
27091 to the shell.  If such replacement occurs, the default appending of the
27092 selected URL does not take place.
27095 NOTE: If the viewer you specify has any command-line arguments,
27096 including the &quot;_URL_&quot; token, you will need to add a
27097 double-quote character before the command path and after the last
27098 argument (see the &quot;lynx&quot; example below).
27101 So, here are some example entries:
27102 <PRE>
27103 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27104               &quot;/usr/local/bin/lynx _URL_&quot;
27105               C:&#92;BIN&#92;NETSCAPE.BAT
27106 </PRE>
27108 This example shows that for the first viewer in the list to be used
27109 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27110 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27111 If neither condition is met,
27112 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27113 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27114 If the path to &quot;lynx&quot; is invalid,
27115 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27116 Note that the last
27117 entry is a DOS/Windows path.  This is one way to support Alpine running
27118 on more than one architecture with the same configuration file.<P>
27120 <!--chtml if pinemode="os_windows"-->
27121 <!--chtml else-->
27122 Note that depending on the type of browser used and the method of 
27123 its invocation (such as whether it will open in a separate window) from
27124 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27125 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27126 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27127 In other words, launching the browser from Alpine may make Alpine 
27128 &quot;disappear&quot; (although it is still &quot;running&quot;)
27129 until you close the browser again.<P>  
27130 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27131 environment: for advanced users and  systems administrators</A>
27132 </UL>
27133 <!--chtml endif-->
27134 <P>If you are unsure what browsers are available on your system or how to 
27135 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27136 local computing support staff.
27137 <P><UL>
27138 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27139 </UL>
27141 &lt;End of help on this topic&gt;
27142 </BODY>
27143 </HTML>
27144 ====== h_config_browser_xterm =====
27145 <HTML>
27146 <HEAD>
27147 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27148 </HEAD>
27149 <BODY>
27150 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27151 environment: for advanced users and  systems administrators</H1>
27152 If you are using Alpine with an X-terminal (emulator) and want to define an 
27153 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27154 you may want to do so in a manner that causes any <B>already</B> 
27155 invoked viewer application to be used for viewing URLs you select from Alpine 
27156 messages, and a <B>new</B> URL-viewer process to be 
27157 started <B>only</B> if the same application has <B>not already</B> 
27158 been launched -- for one reason, to avoid file-locking contentions among 
27159 multiple invocations of the same URL-viewer application.  
27160 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27161 option does not do this.)  A method of doing that would be:<OL>
27162 <LI> use 
27163 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27164 check (using commands appropriate for your Unix shell
27165 in place of <VAR>test-string</VAR>) for the presence of a 
27166 lockfile created by the URL-viewer application -- which implies that the 
27167 application is already running, though this is not foolproof. 
27168 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27169 application with its appropriate command line option(s) to 
27170 show the URL selected from the Alpine message in an already open window of 
27171 that application, or perhaps in a new window of that application.  
27173 <LI> In the 
27174 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27175 application without those command line options, but this time using the 
27176 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27177 is defined.
27178 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27179 windows environment (for instance, using VT-100 terminal emulation), you 
27180 may wish to specify a non-X windows URL-viewer application such as Lynx
27181 as the last entry.
27182 </OL><BR>
27183 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27184 the command shell, the URL-viewer application(s), and possibly the specific 
27185 version of the latter, you are using.  
27187 Relevant command 
27188 line options for the Netscape browser for showing URLs (selected from Alpine) 
27189 when Netscape is already running are discussed in the document
27190 &quot;Remote Control of UNIX Netscape&quot; 
27191 found at the URL (as of 12 Aug. 1998):
27194 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27196 <P>(If the URL-viewer application is 
27197 <B>not</B> running on the same host as Alpine, but being launched from an 
27198 applications server, you may not be able to use the command line options for 
27199 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27201 <!--chtml if this-method="shown-to-work"-->
27202 An example using the Korn shell and the Netscape browser (first entry wrapped 
27203 because of its length, but should all appear on one line):
27205 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27207 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27208               &quot;/usr/local/bin/lynx '_URL_'&quot;
27210 <!--chtml endif-->
27212 <UL>   
27213 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27214 </UL><P>
27215 &lt;End of help on this topic&gt;
27216 </BODY>
27217 </HTML>
27218 ====== h_config_enable_full_hdr =====
27219 <HTML>
27220 <HEAD>
27221 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27222 </HEAD>
27223 <BODY>
27224 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27226 This feature enables the &quot;H Full Headers&quot; command which toggles between
27227 the display of all headers in the message and the normal edited view of
27228 headers.  The Full Header command also controls which headers are included
27229 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27230 Full Header mode will respect the
27231 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27232 feature setting.)
27234 If Full Header mode is turned on and you Forward a message, you will
27235 be asked if you'd like to forward the message as an attachment, as opposed
27236 to including the text of the message in the body of your new message.
27238 If you have also turned on the
27239 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27240 option then the Full Headers command actually rotates through three states
27241 instead of just two.
27242 The first is the normal view with long quotes suppressed.
27243 The second is the normal view but with the long quotes included.
27244 The last enables the display of all headers in the message.
27245 When using Export, Pipe, Print, Forward, or Reply the quotes are
27246 never suppressed, so the first two states are identical.
27248 Normally, the Header Mode will reset
27249 to the default behavior when moving to a new message.
27250 The mode can be made to persist from message to message by setting the feature
27251 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
27253 <UL>   
27254 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27255 </UL><P>
27256 &lt;End of help on this topic&gt;
27257 </BODY>
27258 </HTML>
27259 ====== h_config_enable_full_hdr_and_text =====
27260 <HTML>
27261 <HEAD>
27262 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27263 </HEAD>
27264 <BODY>
27265 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27267 This feature affects how the &quot;H Full Headers&quot; command displays
27268 message text.  If set, the raw message text will be displayed.  This
27269 especially affects MIME formatted email, where the entire MIME format
27270 will be displayed.  This feature similarly affects how messages are
27271 included for the Export, Pipe, Print, Forward, and Reply functions.
27273 When viewing a raw message that has attachments with this feature set,
27274 you will not be able to view attachments without first leaving full 
27275 headers mode.  This is because MIME parsing is not done on the raw message.
27277 <UL>   
27278 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27279 </UL><P>
27280 &lt;End of help on this topic&gt;
27281 </BODY>
27282 </HTML>
27283 ====== h_config_enable_pipe =====
27284 <HTML>
27285 <HEAD>
27286 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27287 </HEAD>
27288 <BODY>
27289 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27291 This feature enables the "| Pipe" command that sends the current message
27292 to the specified command for external processing.
27295 A short description of how the pipe command works is given
27296 <A HREF="h_pipe_command">here</A>.
27299 <UL>   
27300 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27301 </UL><P>
27302 &lt;End of help on this topic&gt;
27303 </BODY>
27304 </HTML>
27305 ====== h_config_quell_full_hdr_reset =====
27306 <HTML>
27307 <HEAD>
27308 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
27309 </HEAD>
27310 <BODY>
27311 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
27313 The <A HREF="h_common_hdrmode">HdrMode Command</A>
27314 normally resets to the default state when switching to a new message.
27315 For example, if you've used the &quot;H&quot; command to turn on Full
27316 Headers for a message you are viewing, and then you type the Next command
27317 to look at the next message, the full headers will no longer be shown.
27318 Setting this feature disables that reset.
27319 Instead, the Header Mode remains the same from message to message.
27322 The presence or absence of the HdrMode command is determined by the
27323 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
27324 Feature-List option.
27326 <UL>   
27327 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27328 </UL><P>
27329 &lt;End of help on this topic&gt;
27330 </BODY>
27331 </HTML>
27332 ====== h_config_enable_tab_complete =====
27333 <HTML>
27334 <HEAD>
27335 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
27336 </HEAD>
27337 <BODY>
27338 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
27340 This feature enables the TAB key when at a prompt for a filename. In this
27341 case, TAB will cause the partial name already entered to be automatically
27342 completed, provided the partial name is unambiguous.
27343 This feature is on by default.
27345 Similarly, this feature also enables TAB completion of address book
27346 nicknames when at a prompt for a nickname,
27347 or when typing in an address field in the composer.
27349 &lt;End of help on this topic&gt;
27350 </BODY>
27351 </HTML>
27352 ====== h_config_quit_wo_confirm =====
27353 <HTML>
27354 <HEAD>
27355 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
27356 </HEAD>
27357 <BODY>
27358 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
27360 This feature controls whether or not Alpine will ask for confirmation when a
27361 Quit command is received.
27363 &lt;End of help on this topic&gt;
27364 </BODY>
27365 </HTML>
27366 ====== h_config_quote_replace_noflow =====
27367 <HTML>
27368 <HEAD>
27369 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
27370 </HEAD>
27371 <BODY>
27372 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
27374 This feature, which is only active when
27375 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
27376 also set,
27377 enables quote-replacement on non-flowed messages.  It is off
27378 by default because a non-flowed message is more dependent on its format,
27379 and thus quote-replacement may cause less-than-pleasing results.
27380 Setting this feature will cause quote-replacement similar to that of flowed
27381 messages, but with the added possibility of long lines being wrapped
27382 into new lines if the Quote-Replacement-String is longer than the string
27383 it is replacing, which is &quot;&gt;&nbsp;&quot;.
27385 &lt;End of help on this topic&gt;
27386 </BODY>
27387 </HTML>
27388 ====== h_config_enable_jump =====
27389 <HTML>
27390 <HEAD>
27391 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27392 </HEAD>
27393 <BODY>
27394 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27396 When this feature is set you may enter a number (followed by RETURN)
27397 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27398 screens.  In other words, it obviates the need for typing the "J" for the
27399 Jump command.
27401 &lt;End of help on this topic&gt;
27402 </BODY>
27403 </HTML>
27404 ====== h_config_enable_alt_ed =====
27405 <HTML>
27406 <HEAD>
27407 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27408 </HEAD>
27409 <BODY>
27410 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27412 If this feature is set (the default), and the 
27413 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27414 <B>is not</B> set, entering
27415 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27416 for the name of the editor you would like to use.
27418 If the environment variable $EDITOR is set, its value will be offered as
27419 a default.
27421 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27422 <B>is</B> set, the ^_ key will activate the specified
27423 editor without prompting, in which case it is not necessary to
27424 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27426 <UL>   
27427 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27428 </UL><P>
27429 &lt;End of help on this topic&gt;
27430 </BODY>
27431 </HTML>
27432 ====== h_config_alt_ed_now =====
27433 <HTML>
27434 <HEAD>
27435 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27436 </HEAD>
27437 <BODY>
27438 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27440 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27441 variable are both set, Alpine will
27442 automatically activate the specified editor when the cursor is moved from
27443 the header of the message being composed into the message text.  For
27444 replies, the alternate editor will be activated immediately.  If this
27445 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27446 automatically ask for the name of an alternate editor when the cursor
27447 is moved out of the header being composed, or if a reply is being done.
27449 <P><UL>
27450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27451 </UL>
27453 &lt;End of help on this topic&gt;
27454 </BODY>
27455 </HTML>
27456 ====== h_config_enable_bounce =====
27457 <HTML>
27458 <HEAD>
27459 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27460 </HEAD>
27461 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27462 <BODY>
27464 Setting this feature enables the "B Bounce" command, which will prompt
27465 for an address and *remail* the message to the new recipient.  This command
27466 is used to re-direct messages that you have received in error, or need to
27467 be redirected for some other reason (e.g. list moderation).  The final
27468 recipient will see a header indicating that you have Resent the msg, but
27469 the message's From: header will show the original author of the message,
27470 and replies to it will go back to that author, and not to you.
27472 &lt;End of help on this topic&gt;
27473 </BODY>
27474 </HTML>
27475 ====== h_config_enable_agg_ops =====
27476 <HTML>
27477 <HEAD>
27478 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27479 </HEAD>
27480 <BODY>
27481 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27483 When this feature is set you may use the commands and subcommands that relate to
27484 performing operations on more than one message at a time.  We call these
27485 &quot;aggregate operations&quot;.  In particular, the 
27486 <!--chtml if pinemode="function_key"-->&quot;F5
27487 <!--chtml else-->&quot;;
27488 <!--chtml endif--> Select&quot;, 
27490 <!--chtml if pinemode="function_key"-->
27491 &quot;F6
27492 <!--chtml else-->
27493 &quot;A 
27494 <!--chtml endif-->
27495 Apply&quot;, and 
27496 <!--chtml if pinemode="function_key"-->
27497 &quot;F4
27498 <!--chtml else-->
27499 &quot;Z 
27500 <!--chtml endif-->
27501 Zoom&quot; commands are enabled by this feature.  Select is used to
27502 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27503 then be used to apply any message command to all of the selected/tagged
27504 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27505 view between just those Selected and all messages in the folder.
27507 This feature also enables the 
27508 <!--chtml if pinemode="function_key"-->
27509 &quot;F7&quot; 
27510 <!--chtml else-->
27511 &quot;^X&quot; 
27512 <!--chtml endif-->
27514 subcommand in the MESSAGE INDEX 
27515 WhereIs command that causes all messages matching the WhereIs argument to 
27516 become selected; and the Select, Select Current, and ZoomMode commands in the
27517 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27519 Some related help topics are
27520 <UL>
27521 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27522 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27523 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27524 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27525 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27526 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27527 </UL>
27529 <UL>   
27530 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27531 </UL><P>
27532 &lt;End of help on this topic&gt;
27533 </BODY>
27534 </HTML>
27536 ====== h_config_enable_flag =====
27537 <HTML>
27538 <HEAD>
27539 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27540 </HEAD>
27541 <BODY>
27542 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27544 Setting this feature enables the
27545 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27546 command that allows you to
27547 manipulate the status flags associated with a message.  By default, Flag
27548 will set the "Important" flag, which results in an asterisk being
27549 displayed in column one of the MESSAGE INDEX for such messages.
27551 &lt;End of help on this topic&gt;
27552 </BODY>
27553 </HTML>
27554 ====== h_config_flag_screen_default =====
27555 <HTML>
27556 <HEAD>
27557 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27558 </HEAD>
27559 <BODY>
27560 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27562 The feature modifies the behavior of the
27563 <a href="h_common_flag">Flag</a>
27564 command (provided it too is
27565 <A HREF="h_config_enable_flag">enabled</A>).
27566 By default, when the "* Flag" command is selected,
27567 Alpine offers a prompt to set one of several flags and also offers the
27568 option of entering the detailed flag manipulation screen via the "^T"
27569 key. Enabling this feature causes Alpine to immediately enter the detailed
27570 flag screen rather than first offer the simple prompt.
27572 <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.
27574 &lt;End of help on this topic&gt;
27575 </BODY>
27576 </HTML>
27577 ====== h_config_flag_screen_kw_shortcut =====
27578 <HTML>
27579 <HEAD>
27580 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27581 </HEAD>
27582 <BODY>
27583 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27585 This feature modifies the behavior of the
27586 <a href="h_common_flag">Flag</a> command
27587 and the <A HREF="h_index_cmd_select">Select</A> command.
27588 This feature is set by default.
27589 When this feature is not set, when the "* Flag" command is selected,
27590 Alpine offers a prompt to set one of several flags and also offers the
27591 option of entering the detailed flag manipulation screen via the "^T"
27592 key.
27593 If you have
27594 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27595 defined, then enabling this feature adds a shortcut way to set or unset
27596 keywords.
27597 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27598 a keyword if you've given it a nickname) and that will set the keyword.
27600 An example is easier to understand than the explanation.
27601 The flag command can always be used to set the system flags.
27602 For example, to set the Answered flag you would type
27604 <CENTER><SAMP>* A</SAMP></CENTER>
27606 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27607 option in the Config screen.
27608 By default, to set a keyword like &quot;Work&quot; you would usually
27609 have to go to the Flag Details screen using
27610 the &quot;^T To Flag Details&quot; command.
27611 Instead, if you have enabled this feature, you may type
27613 <CENTER><SAMP>* W</SAMP></CENTER>
27615 to set the Work flag, or
27617 <CENTER><SAMP>* ! W</SAMP></CENTER>
27619 to unset it.
27620 Just like for the other flag setting commands, the case of the letter does
27621 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
27622 keyword.
27624 Notice that you can only use this trick for one keyword that begins
27625 with &quot;W&quot;.
27626 If you happen to have a &quot;Work&quot; keyword and another keyword that is
27627 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
27628 your list of keywords.
27629 Also, there are five letters that are reserved for system
27630 flags and the NOT command.
27631 If you type &quot;* A&quot; it will always set the Answered flag, not
27632 your &quot;Aardvark&quot; keyword.
27633 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
27634 the Flag Details screen.
27636 Because enabling the
27637 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
27638 option causes Alpine to skip directly to the Flag Details screen when the
27639 Flag command is used, 
27640 setting it will cause this feature to have no effect at all.
27642 Similarly, when Selecting by Keyword, setting this option will allow you
27643 to use Keyword initials instead of full keywords.
27645 &lt;End of help on this topic&gt;
27646 </BODY>
27647 </HTML>
27648 ====== h_config_can_suspend =====
27649 <HTML>
27650 <HEAD>
27651 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
27652 </HEAD>
27653 <BODY>
27654 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
27656 Setting this feature will allow you to type ^Z (Control Z) to 
27657 <!--chtml if pinemode="os_windows"-->
27658 minimize Alpine into its icon, bringing into focus whatever
27659 application is running behind the PC-Alpine window.
27660 <!--chtml else-->
27661 temporarily suspend Alpine.
27664 This does not exit Alpine, but puts it in the background to watch
27665 for new mail and such.  Normally, you type a command, such
27666 as &quot;fg&quot; at your system prompt to return to your Alpine session.
27669 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
27670 adjusts whether Alpine is placed into the background of the shell its 
27671 running in or starts a news shell.
27672 <!--chtml endif-->
27675 <UL>   
27676 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27677 </UL><P>
27678 &lt;End of help on this topic&gt;
27679 </BODY>
27680 </HTML>
27681 ====== h_config_take_lastfirst ======
27682 <HTML>
27683 <HEAD>
27684 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
27685 </HEAD>
27686 <BODY>
27687 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
27689 Normally, when TakeAddr is used to copy an address from a message into
27690 an address book entry, Alpine will attempt to rewrite the full name of the
27691 address in the form
27694 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
27696 instead of<P>
27698 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
27701 It does this because many people find it useful to sort by Last name
27702 instead of First name.  If this feature is set, then the TakeAddr command
27703 will not attempt to reverse the name in this manner.
27705 &lt;End of help on this topic&gt;
27706 </BODY></HTML>
27707 ====== h_config_disable_regex ======
27708 <HTML>
27709 <HEAD>
27710 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
27711 </HEAD>
27712 <BODY>
27713 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
27715 Normally, the
27716 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
27717 option is interpreted as a regular expression.
27718 One type of address that might cause trouble is an address that
27719 contains a plus sign.
27720 If you want to have an address with a plus as one of your
27721 <!--#echo var="VAR_alt-addresses"-->
27722 and you don't want to use regular expressions, then setting this
27723 feature will cause Alpine to treat the addresses you list literally instead.
27725 &lt;End of help on this topic&gt;
27726 </BODY></HTML>
27727 ====== h_config_take_fullname ======
27728 <HTML>
27729 <HEAD>
27730 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
27731 </HEAD>
27732 <BODY>
27733 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
27735 Normally, when TakeAddr is used to copy an address or addresses
27736 from a message into an address book entry, Alpine will try to preserve
27737 the full name associated with each address in the list of addresses.
27738 The reason for this is so that if the entry is a list or later becomes a
27739 list, then information about the individual addresses in the list
27740 is preserved.
27741 If you would rather just have the simple addresses in the list of addresses,
27742 set this feature. For example, with the default setting you might
27743 see something like this in the ADDRESS BOOK editor after you type TakeAddr
27745 <PRE>
27746  Nickname  : nick
27747  Fullname  : Bedrock Elders
27748  Fcc       :
27749  Comment   :
27750  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
27751              Barney Rubble &lt;rubble@bedrock.org&gt;
27752 </PRE>
27754 but with this feature set it would look like
27756 <PRE>
27757  Nickname  : nick
27758  Fullname  : Bedrock Elders
27759  Fcc       :
27760  Comment   :
27761  Addresses : flint@bedrock.org,
27762              rubble@bedrock.org
27763 </PRE>
27765 instead. Note the difference in the Addresses field.
27767 &lt;End of help on this topic&gt;
27768 </BODY></HTML>
27769 ====== h_config_print_from ======
27770 <HTML>
27771 <HEAD>
27772 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
27773 </HEAD>
27774 <BODY>
27775 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
27777 If this feature is set, then the Berkeley-mail style From line is included
27778 at the start of each message that is printed.  This line looks something
27779 like the following, with the address replaced by the address from the
27780 From line of the message being printed:
27782 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
27783 14:11:06 1998
27785 &lt;End of help on this topic&gt;
27786 </BODY>
27787 </HTML>
27788 ====== h_config_expanded_distlists ======
27789 <HTML>
27790 <HEAD>
27791 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
27792 </HEAD>
27793 <BODY>
27794 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
27795 If this feature is set, then distribution lists in the address book
27796 screen will always be expanded automatically.
27798 &lt;End of help on this topic&gt;
27799 </BODY>
27800 </HTML>
27801 ====== h_config_compose_news_wo_conf ======
27802 <HTML>
27803 <HEAD>
27804 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
27805 </HEAD>
27806 <BODY>
27807 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
27808 This feature controls one aspect of Alpine's Composer.  If you enter the
27809 composer while reading a newsgroup, you will normally be prompted to
27810 determine whether you intend the new message to be posted to the current
27811 newsgroup or not.  If this feature is set, Alpine will not prompt you
27812 in this situation, and will assume that you do indeed wish to post
27813 to the newsgroup you are reading.
27815 &lt;End of help on this topic&gt;
27816 </BODY>
27817 </HTML>
27818 ====== h_config_compose_rejects_unqual ======
27819 <HTML>
27820 <HEAD>
27821 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
27822 </HEAD>
27823 <BODY>
27824 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
27826 This feature controls one aspect of the message composer; in particular,
27827 what happens when an unqualified name is entered into an address header.
27828 If set, unqualified names entered as addresses will be treated as errors
27829 unless they match an addressbook nickname.  Alpine will not attempt to turn
27830 them into complete addresses by adding your local domain.<P>
27832 A complete (fully qualified) address is one containing a username followed
27833 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
27834 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
27835 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
27837 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
27841 When you enter a fully qualified address, Alpine does not interpret or
27842 modify it, but simply passes it on to the mail-transport-agent (MTA) for
27843 your system.  Alpine conforms to the Internet standards governing message
27844 headers and will not send an unqualifed name to the MTA.  Therefore, when
27845 you enter an unqualified name, Alpine will normally attempt to turn it into
27846 a fully qualified address, first by checking to see if you have entered a
27847 matching nickname in your addressbook, or failing that, by simply adding
27848 your own domain to the name entered.  So if your address is
27849 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
27850 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
27851 that into &quot;fred@example.com&quot;.<P>
27853 There are situations where it is not desirable for Alpine to interpret such
27854 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
27855 turned out to be a typo (intended to be an addressbook nickname), but
27856 there actually was a &quot;fred&quot; in your local domain, the message might 
27857 be mis-delivered without your realizing it.  In order to reduce the likelihood
27858 of such accidents, setting this feature will cause Alpine to treat such
27859 addresses as errors, and require that you explicitly enter the full local
27860 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
27861 matches an address book nickname.<P>
27863 Consider this a safety feature against mis-directed mail.
27865 <UL>   
27866 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27867 </UL><P>
27868 &lt;End of help on this topic&gt;
27869 </BODY>
27870 </HTML>
27871 ====== h_config_quell_local_lookup ======
27872 <HTML>
27873 <HEAD>
27874 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
27875 </HEAD>
27876 <BODY>
27877 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
27879 This feature controls an aspect of Alpine's Composer, and if needed, will
27880 usually be set by your system manager in Alpine's system-wide configuration
27881 file. Specifically, if this feature is set, Alpine will not attempt to look
27882 in the system password file to find a Full Name for the entered address.
27884 Normally, names you enter into address fields (e.g. To: or Cc:) are
27885 checked against your address book(s) to see if they match an address book
27886 nickname.  Failing that, (in Unix Alpine) the name is then checked against
27887 the Unix password file.  If the entered name matches a username in the
27888 system password file, Alpine extracts the corresponding Full Name information
27889 for that individual, and adds that to the address being entered.
27891 However, password file matching can have surprising (incorrect) results if
27892 other users of the system do not receive mail at the domain you are using.
27893 That is, if either the 
27894 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
27895 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
27896 option
27897 is set such that the administrative domain of other users on the system
27898 isn't accurately reflected, Alpine should be told that a passwd file match
27899 is coincidental, and Full Name info will be incorrect.  For example, a
27900 personal name from the password file could get falsely paired with the
27901 entered name as it is turned into an address in the configured domain.
27903 If you are seeing this behavior, enabling this feature will prevent Unix
27904 Alpine from looking up names in the password file to find the Full Name
27905 for incomplete addresses you enter.<P>
27906 <UL>
27907 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27908 </UL>
27910 &lt;End of help on this topic&gt;
27911 </BODY>
27912 </HTML>
27913 ====== h_config_tab_checks_recent ======
27914 <HTML>
27915 <HEAD>
27916 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
27917 </HEAD>
27918 <BODY>
27919 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
27921 In a FOLDER LIST screen, the TAB key usually just changes which
27922 folder is highlighted.
27923 If this feature is set, then the TAB key will cause the number of
27924 recent messages and the total number of messages in the highlighted folder
27925 to be displayed instead.
27928 &lt;End of help on this topic&gt;
27929 </BODY>
27930 </HTML>
27931 ====== h_config_maildrops_preserve_state ======
27932 <HTML>
27933 <HEAD>
27934 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
27935 </HEAD>
27936 <BODY>
27937 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
27939 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
27940 Normally, when mail is moved from a Mail Drop folder to a destination
27941 folder, it is delivered as new mail.
27942 Any Seen/New, Answered, Important/Flagged state that has changed will be
27943 ignored.
27944 All of the mail will be considered unSeen, unAnswered, and unImportant after
27945 it is moved.
27947 If this feature is set, then the state changes that have been made
27948 to the messages in the Mail Drop folder will be preserved.
27950 In any case, messages that are already marked Deleted when the
27951 mail is to be moved from the Mail Drop will be ignored.
27953 &lt;End of help on this topic&gt;
27954 </BODY>
27955 </HTML>
27956 ====== h_config_preopen_stayopens ======
27957 <HTML>
27958 <HEAD>
27959 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
27960 </HEAD>
27961 <BODY>
27962 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
27964 This feature is related to the option
27965 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
27966 Normally, Stay Open folders are only opened on demand, when the user
27967 asks to open them.
27968 From then on they are kept open for the duration of the session.
27969 However, if this feature is set, then the Stay Open folders will all be
27970 opened at startup, at the same time that the INBOX is opened.
27973 &lt;End of help on this topic&gt;
27974 </BODY>
27975 </HTML>
27976 ====== h_config_expunge_inbox ======
27977 <HTML>
27978 <HEAD>
27979 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
27980 </HEAD>
27981 <BODY>
27982 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
27984 The INBOX is normally treated differently from regular folders in several
27985 ways.
27986 One of the differences is that the normal &quot;close&quot; sequence of
27987 events is deferred until Alpine is exited, instead of happening when you
27988 leave the INBOX to view another folder.
27989 The &quot;close&quot; sequence normally includes the Expunging
27990 of deleted messages
27991 (either automatically or after a prompt, controlled by the features
27992 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
27993 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
27994 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
27995 handling of the
27996 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
27999 If this feature is set the &quot;close&quot; sequence handling will take
28000 place every time you leave the INBOX.
28001 The INBOX will still be kept open, but the offer to Expunge and the archiving
28002 to the <!--#echo var="VAR_read-message-folder"-->
28003 will take place each time you leave the INBOX instead of only once at the
28004 end of the session.
28007 &lt;End of help on this topic&gt;
28008 </BODY>
28009 </HTML>
28010 ====== h_config_expunge_stayopens ======
28011 <HTML>
28012 <HEAD>
28013 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28014 </HEAD>
28015 <BODY>
28016 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28018 This feature is related to the option
28019 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28020 Stay Open folders are treated differently from regular folders in several
28021 ways.
28022 One of the differences is that the normal &quot;close&quot; sequence of
28023 events is deferred until Alpine is exited, instead of happening when you
28024 leave the folder to view another folder.
28025 The &quot;close&quot; sequence normally includes the Expunging
28026 of deleted messages
28027 (either automatically or after a prompt, controlled by the features
28028 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28029 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28030 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28031 handling of
28032 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28035 If this feature is set the &quot;close&quot; sequence handling will take
28036 place when you leave the Stay Open folder.
28037 The folder will still be kept open, but the offer to Expunge and the archiving
28038 will take place each time you leave the folder instead of only once at the
28039 end of the session.
28040 This feature does not affect the INBOX, which will still only be processed
28041 when you exit Alpine.
28042 However, there is a similar feature that affects only the INBOX called
28043 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28046 &lt;End of help on this topic&gt;
28047 </BODY>
28048 </HTML>
28049 ====== h_config_preserve_start_stop ======
28050 <HTML>
28051 <HEAD>
28052 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28053 </HEAD>
28054 <BODY>
28055 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28057 This feature controls how special control key characters, typically
28058 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28059 are known as the "stop" and "start" characters and are sometimes used in
28060 communications paths to control data flow between devices that operate at
28061 different speeds.
28065 By default, Alpine turns the system's handling of these special characters
28066 off except during printing.  However, if you see Alpine reporting input errors
28067 such as:
28069 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28071 and, at the same time, see your display become garbled, then it is likely
28072 that setting this option will solve the problem.  Be aware, though, that
28073 enabling this feature will also cause Alpine to ostensibly "hang" 
28074 whenever the Ctrl-S key combination is entered as the system is now
28075 interpreting such input as a "stop output" command.  To "start
28076 output"  again, simply type Ctrl-Q. 
28078 &lt;End of help on this topic&gt;
28079 </BODY>
28080 </HTML>
28081 ====== h_config_enable_incoming ======
28082 <HTML>
28083 <HEAD>
28084 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28085 </HEAD>
28086 <BODY>
28087 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28089 Alpine's Incoming Message Folders collection
28090 provides a convenient way to access multiple incoming folders.
28091 It is also useful if you have accounts on multiple computers.
28094 If set, this feature defines a pseudo-folder collection called
28095 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28096 in this collection will be your INBOX, which will no longer show up in
28097 your Default folder collection.
28100 You may add more folders to the Incoming Message Folders collection by
28101 using the
28102 <!--chtml if pinemode="function_key"-->
28103 &quot;F10
28104 <!--chtml else-->
28105 &quot;A
28106 <!--chtml endif-->
28107 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28108 the host the folder is stored on (which defaults to the same host used
28109 for your INBOX), a nickname, and the actual folder name.  Once a set
28110 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28111 or MESSAGE TEXT screens) may be used to scan the folders for those
28112 with Recent messages.  If you add more folders to
28113 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28114 no effect.
28116 NOTE: Normally the software that actually delivers mail (the stuff that happens
28117 before Alpine is involved) is in a better position to do delivery filtering
28118 than is Alpine itself.
28119 If possible, you may want to look at programs such as
28120 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28121 filtering programs.
28122 If you'd prefer to have Alpine do the filtering for you, you may set that
28124 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28126 <UL>   
28127 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28128 </UL><P>
28129 &lt;End of help on this topic&gt;
28130 </BODY>
28131 </HTML>
28132 ====== h_config_enable_incoming_checking ======
28133 <HTML>
28134 <HEAD>
28135 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28136 </HEAD>
28137 <BODY>
28138 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28140 This feature is only operational if you have enabled the optional
28141 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28142 If you do have Incoming Message Folders and you also set this feature,
28143 then the number of Unseen messages in each folder will be displayed
28144 in the FOLDER LIST screen for the Incoming Message Folders.
28145 The number of Unseen messages in a folder will be displayed in parentheses
28146 to the right of the name of each folder.
28147 If there are no Unseen messages in a folder then only the name
28148 is displayed, not a set of parentheses with zero inside them.
28149 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28150 the Incoming Message Folders to cause an immediate update.
28152 If a check for Unseen messages fails for a particular folder then Alpine
28153 will no longer attempt to check that folder for the duration of the
28154 session and this will be indicated by a question mark inside the
28155 parentheses.
28157 The features
28158 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28159 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28160 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28161 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28162 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28163 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28164 all affect how this feature behaves.
28166 <UL>   
28167 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28168 </UL><P>
28169 &lt;End of help on this topic&gt;
28170 </BODY>
28171 </HTML>
28172 ====== h_config_incoming_checking_total ======
28173 <HTML>
28174 <HEAD>
28175 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28176 </HEAD>
28177 <BODY>
28178 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28180 This option has no effect unless the feature
28181 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28182 is set, which in turn has no effect unless
28183 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28184 is set.
28186 When incoming folder checking is turned on the default is to display
28187 the number of unseen messages in each folder.
28188 More precisely, it is the number of undeleted unseen messages.
28189 Using this option you may also display the total number of messages
28190 in each folder.
28191 Instead of a single number representing the number of unseen messages
28192 you will get two numbers separated by a slash character.
28193 The first is the number of unseen messages and the second is the
28194 total number of messages.
28196 You may also use the recent message count instead of the unseen message
28197 count by turning on the feature
28198 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
28200 <UL>   
28201 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28202 </UL><P>
28203 &lt;End of help on this topic&gt;
28204 </BODY>
28205 </HTML>
28206 ====== h_config_incoming_checking_recent ======
28207 <HTML>
28208 <HEAD>
28209 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28210 </HEAD>
28211 <BODY>
28212 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28214 This option has no effect unless the feature
28215 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28216 is set, which in turn has no effect unless
28217 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28218 is set.
28220 When incoming folder checking is turned on the default is to display
28221 the number of unseen messages in each folder.
28222 More precisely, it is the number of undeleted unseen messages.
28223 Using this option you may display the number of recent messages instead
28224 of the number of unseen messages.
28225 A message is only counted as recent if this is the first session to
28226 see it, so the recent count might be less than the unseen count.
28227 The difference between the two would be accounted for by the unseen messages
28228 in the folder which were there previously but have not been looked at yet.
28230 If you simultaneously run more than one email client at a time
28231 (for example, you run more than one Alpine in parallel) then turning
28232 this feature on can cause some confusion.
28233 The confusion stems from the fact that each message is only considered to be
28234 recent in one session.
28235 That means that the counts of new messages may be different in the two
28236 Alpines running side by side, because each incoming message will only be
28237 counted as recent in one of the two sessions.
28239 You may also display the total number of messages
28240 in each folder by using the
28241 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28242 option.
28244 <UL>   
28245 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28246 </UL><P>
28247 &lt;End of help on this topic&gt;
28248 </BODY>
28249 </HTML>
28250 ====== h_config_attach_in_reply ======
28251 <HTML>
28252 <HEAD>
28253 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28254 </HEAD>
28255 <BODY>
28256 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28258 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28259 attachments that were part of the original message will automatically be
28260 included in the Reply.
28262 &lt;End of help on this topic&gt;
28263 </BODY>
28264 </HTML>
28265 ====== h_config_include_header =====
28266 <HTML>
28267 <HEAD>
28268 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28269 </HEAD>
28270 <BODY>
28271 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28273 This feature controls an aspect of Alpine's Reply command. If set, and the
28274 original message is being included in the reply, then headers from that
28275 message will also be part of the reply.
28277 &lt;End of help on this topic&gt;
28278 </HEAD>
28279 </HTML>
28280 ====== h_config_sig_at_bottom =====
28281 <HTML>
28282 <HEAD>        
28283 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28284 </HEAD>
28285 <BODY>
28286 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28288 This feature controls an aspect of Alpine's Reply command.  If this feature
28289 is set, and the original message is being included in the reply, then the
28290 contents of your signature file (if any) will be inserted after the included
28291 message.
28293 This feature does not affect the results of a Forward command.
28295 &lt;End of help on this topic&gt;
28296 </BODY>
28297 </HTML>
28298 ====== h_config_sigdashes =====
28299 <HTML>
28300 <HEAD>
28301 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
28302 </HEAD>
28303 <BODY>
28304 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
28306 This feature enables support for the common USENET news convention 
28307 of preceding a message signature with the special line consisting of 
28308 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
28311 When enabled and a
28312 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
28313 Alpine will insert the special line before including the file's text (unless
28314 the special line already exists somewhere in the file's text).
28317 In addition, when you Reply or Followup to a message containing one of
28318 these special lines and choose to include its text, Alpine will observe
28319 the convention of not including text beyond the special line in your
28320 reply.
28321 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28322 mode is enabled and turned on, then Alpine <EM>will</EM>
28323 include the text beyond the special line regardless of the setting of
28324 this feature.
28327 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
28328 for a related feature.
28331 <UL>   
28332 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28333 </UL><P>
28334 &lt;End of help on this topic&gt;
28335 </BODY>
28336 </HTML>
28337 ====== h_config_new_thread_blank_subject =====
28338 <HTML>
28339 <HEAD>
28340 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
28341 </HEAD>
28342 <BODY>
28343 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
28345 When this feature is enabled (the default) Alpine will create a new thread
28346 every time that the subject line becomes empty at any time during composition.
28349 This behavior is particularly useful in case you are replying to a message.
28350 Replying to a message causes the message to be in the same thread than the
28351 original message that is being replied to. However, many authors want to create
28352 a new message (in a different thread) while replying to a message, and they do
28353 this by changing the full subject, by first deleting the original subject and
28354 typing the new subject of the current message.
28357 Enabling this feature causes that any time that the subject is deleted, the 
28358 message being composed will be considered the first message of a new thread.
28361 <UL>   
28362 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28363 </UL><P>
28364 &lt;End of help on this topic&gt;
28365 </BODY>
28366 </HTML>
28367 ====== h_config_strip_sigdashes =====
28368 <HTML>
28369 <HEAD>
28370 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
28371 </HEAD>
28372 <BODY>
28373 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
28375 This feature doesn't do anything if the feature
28376 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
28377 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
28378 then turning on this feature enables support for the convention
28379 of not including text beyond the sigdashes line when Replying or Following
28380 up to a message and including the text of that message.
28381 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28382 mode is enabled and turned on, then Alpine <EM>will</EM>
28383 include the text beyond the special line regardless of the setting of
28384 this feature.
28386 In other words, this is a way to turn on the signature stripping behavior
28387 without also turning on the dashes-adding behavior.
28389 <UL>   
28390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28391 </UL><P>
28392 &lt;End of help on this topic&gt;
28393 </BODY>
28394 </HTML>
28395 ====== h_config_forward_as_attachment =====
28396 <HTML>
28397 <HEAD>
28398 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28399 </HEAD>
28400 <BODY>
28401 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28403 This feature affects the way forwarded message text is handled.  When set, rather than 
28404 include the text of the forwarded message below any additional text you provide in the
28405 composer, the forwarded message is attached in its entirety to the message you send.
28407 This is useful in that it keeps the text you provide in the composer distinct from the
28408 text of the forwarded message.  Similarly, it allows the recipient to 
28409 conveniently operate on the forwarded message.  For example, they might reply directly to
28410 the sender of the forwarded message, or process it as part of a spam report.
28411 <UL>   
28412 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28413 </UL><P>
28414 &lt;End of help on this topic&gt;
28415 </BODY>
28416 </HTML>
28417 ====== h_config_preserve_field =====
28418 <HTML>
28419 <HEAD>
28420 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28421 </HEAD>
28422 <BODY>
28423 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28425 This feature affects Alpine's behavior when one replies to a message. 
28426 When you receive a message, some or all of the recipients of the message 
28427 have been added to the To: and Cc: fields. If you reply to such message, 
28428 and this feature is disabled, then the original sender of the message is 
28429 added to the To: field, and all other recipients are added to the Cc: 
28430 field, while your address is added to the From: field.
28433 However, if this feature is enabled, then Alpine will preserve the 
28434 original fields as sent in the original message, so the Cc: and To: 
28435 fields will be preserved. The sender's address will be added to the To: 
28436 field, while your address is added to the From: field.
28439 The behavior of this feature is that replies to all messages will behave 
28440 in the way described above. If you only intend this to happen on a per 
28441 message basis, then keep this feature disabled, and when replying to a 
28442 message you will see a new option in the menu for the &quot;Reply to all 
28443 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28444 make Alpine toggle its question so you can preserve the To: and Cc: 
28445 fields for that message only.
28447 <UL>   
28448 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28449 </UL><P>
28450 &lt;End of help on this topic&gt;
28451 </BODY>
28452 </HTML>
28453 ====== h_config_sub_lists =====
28454 <HTML>
28455 <HEAD>
28456 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28457 </HEAD>
28458 <BODY>
28459 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28461 This feature affects the subcommands available when Saving, 
28462 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28463 available. This command allows you to type in a substring of the folder
28464 you are looking for and when you type ^X it will display all folders
28465 that contain that substring in their names.
28466 This feature is set by default.
28469 &lt;End of help on this topic&gt;
28470 </BODY>
28471 </HTML>
28472 ====== h_config_scramble_message_id =====
28473 <HTML>
28474 <HEAD>
28475 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28476 </HEAD>
28477 <BODY>
28478 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28480 Normally the Message-ID header that Alpine generates when sending a message
28481 contains the name of the computer from which the message is being sent.
28482 Some believe that this hostname could be used by spammers or could
28483 be used by others for nefarious purposes.
28484 If this feature is set, that name will be transformed with a simple
28485 Rot13 transformation.
28486 The result will still have the correct syntax for a Message-ID but the
28487 part of the MessageID that is often a domain name will not be an actual
28488 domain name because the letters will be scrambled.
28490 In addition, other information such as the name program, version, and
28491 a code for operating system used to build Alpine, will be encoded using
28492 the Rot13 transformation, except for the version number which will be
28493 encoded using a Rot5 transformation.
28495 It is possible (but unlikely?) that some spam detection
28496 software will use that as a reason to reject the mail as spam.
28497 It has also been reported that some spam detection software uses the
28498 fact that there are no dots after the &quot;@&quot; as a reason to reject
28499 messages.
28500 If your PC-Alpine Message-ID is using a name without a dot that is because
28501 that is what Windows thinks is your &quot;Full computer name&quot;.
28502 The method used to set this varies from one type of Windows to another but
28503 check under Settings -> Control Panel -> System and
28504 look for Network Identification or Computer Name or something similar.
28505 How to set it is beyond the scope of Alpine.
28508 &lt;End of help on this topic&gt;
28509 </BODY>
28510 </HTML>
28511 ====== h_downgrade_multipart_to_text =====
28512 <HTML>
28513 <HEAD>
28514 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28515 </HEAD>
28516 <BODY>
28517 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28520 This feature affects Alpine's behavior when sending mail.  Internet
28521 standards require Alpine to translate all non-ASCII characters in
28522 messages that it sends using MIME encoding.  This encoding can be
28523 ostensibly broken for recipients if any agent between Alpine and the
28524 recipient, such as an email list expander, appends text to the
28525 message, such as list information or advertising.  When sending such
28526 messages Alpine attempts to protect such encoding by placing extra
28527 MIME boundaries around the message text.
28529 These extra boundaries are invisible to recipients that 
28530 use MIME-aware email programs (the vast majority).  However, if
28531 you correspond with users of email programs that are not MIME-aware,
28532 or do not handle the extra boundaries gracefully, you can
28533 use this feature to prevent Alpine from including the extra
28534 MIME information.  Of course, it will increase the likelihood
28535 that non-ASCII text you send may appear corrupt to the recipient.
28537 &lt;End of help on this topic&gt;
28538 </BODY>
28539 </HTML>
28540 ====== h_config_show_sort =====
28541 <HTML>
28542 <HEAD>
28543 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28544 </HEAD>
28545 <BODY>
28546 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28548 If this feature is set and there is sufficient space on the screen,
28549 a short indication of the current sort order will be
28550 added in the titlebar (the top line on the screen), before the name
28551 of the folder.
28552 For example, with the default Arrival sort in effect,
28553 the display would have the characters
28555 <P><CENTER>[A]</CENTER><P>
28557 added between the title of the screen and the folder name.
28558 The letters are the same as the letters you may type to manually
28559 sort a folder with the SortIndex command ($).
28560 The letters in the table below are the ones that may show
28561 up in the titlebar line.
28563 <TABLE>   
28564 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28565 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28566 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28567 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28568 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28569 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28570 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28571 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28572 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28573 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28574 </TABLE>
28576 If the sort order is Reversed, the letter above will be preceded by the letter
28577 &quot;R&quot;, for example
28579 <P><CENTER>[RS]</CENTER><P>
28581 means that a Reverse Subject sort is in effect.
28582 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28583 left out, and just an &quot;R&quot; is shown.
28585 <P><CENTER>[R]</CENTER>
28588 &lt;End of help on this topic&gt;
28589 </BODY>
28590 </HTML>
28591 ====== h_config_disable_reset_disp =====
28592 <HTML>
28593 <HEAD>
28594 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28595 </HEAD>
28596 <BODY>
28597 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28599 UNIX Alpine only.
28601 This feature affects Alpine's behavior when using
28602 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28603 Normally, before the display filter is run, the terminal mode is reset
28604 to what it was before you started Alpine.
28605 This may be necessary if the filter requires the use of the terminal.
28606 For example, it may need to interact with you.
28607 If you set this feature, then the terminal mode will not be reset.
28608 One thing that turning on this feature should fix is the coloring of
28609 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28610 breaks because the terminal reset resets the color state of the terminal.
28613 &lt;End of help on this topic&gt;
28614 </BODY>
28615 </HTML>
28616 ====== h_config_disable_sender =====
28617 <HTML>
28618 <HEAD>
28619 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28620 </HEAD>
28621 <BODY>
28622 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
28624 This feature affects Alpine's generation of the &quot;Sender:&quot; or
28625 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
28626 header fields.
28627 By default, Alpine will generate such a header in situations where the
28628 username or domain are not the same as
28629 the &quot;From:&quot; header on the message.
28630 With this feature set,
28631 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
28632 This may be desirable on a system that is virtually hosting many domains,
28633 and the sysadmin has other methods available for tracking a message to
28634 its originator.
28636 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
28639 &lt;End of help on this topic&gt;
28640 </BODY>
28641 </HTML>
28642 ====== h_config_use_sender_not_x =====
28643 <HTML>
28644 <HEAD>
28645 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
28646 </HEAD>
28647 <BODY>
28648 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
28650 Normally Alpine adds a header line
28651 labeled &quot;X-X-Sender&quot;, if the sender is
28652 different from the From: line.
28653 The standard specifies that this header
28654 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
28655 Setting this feature causes
28656 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
28658 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
28661 &lt;End of help on this topic&gt;
28662 </BODY>
28663 </HTML>
28664 ====== h_config_use_fk =====
28665 <HTML>
28666 <HEAD>
28667 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
28668 </HEAD>
28669 <BODY>
28670 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
28672 This feature specifies that Alpine will respond to function keys instead of
28673 the normal single-letter commands. In this mode, the key menus at the
28674 bottom of each screen will show function key designations instead of the
28675 normal mnemonic key.
28678 &lt;End of help on this topic&gt;
28679 </BODY>
28680 </HTML>
28681 ====== h_config_cancel_confirm =====
28682 <HTML>
28683 <HEAD>
28684 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
28685 </HEAD>
28686 <BODY>
28687 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
28689 This feature affects what happens when you type ^C to cancel a composition.
28690 By default, if you attempt to cancel a composition by typing ^C, you will be
28691 asked to confirm the cancellation by typing a &quot;C&quot;
28692 for <EM>C</EM>onfirm.
28693 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
28694 risky because the &quot;^C Y&quot; needed to cancel a message
28695 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
28697 If this feature is set the confirmation asked for
28698 will be a &quot;<EM>Y</EM>es&quot;
28699 instead of a &quot;<EM>C</EM>onfirm&quot; response.
28702 &lt;End of help on this topic&gt;
28703 </BODY>
28704 </HTML>
28705 ====== h_config_compose_maps_del =====
28706 <HTML>
28707 <HEAD>
28708 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
28709 </HEAD>
28710 <BODY>
28711 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
28713 This feature affects the behavior of the DELETE key.
28714 If set, Delete will be equivalent to ^D, and delete
28715 the current character.  Normally Alpine defines the Delete key
28716 to be equivalent to ^H, which deletes the <EM>previous</EM>
28717 character.
28720 &lt;End of help on this topic&gt;
28721 </BODY>
28722 </HTML>
28723 ====== h_config_compose_bg_post =====
28724 <HTML>
28725 <HEAD>
28726 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
28727 </HEAD>
28728 <BODY>
28729 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
28731 This feature affects the behavior of Alpine's mail sending.  If set, this
28732 feature enables a subcommand in the composer's "Send?" confirmation
28733 prompt.  The subcommand allows you to tell Alpine to handle the actual
28734 posting in the background.  While this feature usually allows posting
28735 to appear to happen very fast, it has no affect on the actual delivery
28736 time it takes a message to arrive at its destination.
28739 Please Note:
28740 <OL>
28741  <LI>This feature will have no effect if the feature
28742        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
28743        is set.
28744  <LI>This feature isn't supported on all systems.  All DOS and Windows,
28745        as well as several Unix ports, do not recognize this feature.
28746  <LI>Error handling is significantly different when this feature is
28747         enabled.  Any message posting failure results in the message
28748         being appended to your &quot;Interrupted&quot; mail folder.  When you
28749         type the <A HREF="h_common_compose">C</A>ompose command,
28750         Alpine will notice this folder and
28751         offer to extract any messages contained.  Upon continuing a 
28752         failed message, Alpine will display the nature of the failure 
28753         in the status message line.
28754  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
28755         for message data to
28756         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
28757         if you typically run close to any sort of disk-space limits or quotas.
28758 </OL>
28760 &lt;End of help on this topic&gt;
28761 </BODY>
28762 </HTML>
28763 ====== h_config_compose_dsn =====
28764 <HTML>
28765 <HEAD>
28766 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
28767 </HEAD>
28768 <BODY>
28769 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
28771 This feature affects the behavior of Alpine's mail sending.  If set, this
28772 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
28773 prompt.  The subcommand allows you to tell Alpine to request the type of
28774 Delivery Status Notification (DSN) that you would like.  Most users will
28775 be happy with the default, and need not enable this feature.
28777 If the feature
28778 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28779 then this feature has no effect and the type of DSN is not selectable.
28782 Turning on this feature and then turning on the DSNOpts from the send
28783 prompt reveals four on-off toggles at the bottom of the screen.
28784 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
28785 that no notification be returned to you, even if there is a delivery
28786 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
28787 server that you are willing (or not) to receive delay notifications, which
28788 happen when there is an unusual delay at some mail server (in that mail
28789 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
28790 Success requests that you be sent a DSN message when the message is
28791 successfully delivered to the recipients mailbox.  Setting NoErrRets will
28792 automatically turn off Delay and Success notification, and will flip the
28793 toggles to show that.  Similarly, turning on Delay and/or Success will
28794 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
28795 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
28796 the full message be returned in any failed DSN.  RetHdrs requests that
28797 only the headers be returned in any failed DSN.  Notice that this command
28798 applies only to failed delivery status reports.  For delay or success
28799 reports, the full message is never returned, only the headers are returned.
28802 If you don't enable the DSN feature or if you don't turn it on for a
28803 particular message, the default is that you will be notified about failures,
28804 you might be notified about delays, and you won't be notified about
28805 successes.  You will usually receive the full message back when there is
28806 a failure.
28809 If you turn on the DSNOpts the default is to return as much information as
28810 possible to you.  That is, by default, the Success and Delay options are
28811 turned on and the full message will be returned on failure.
28814 The sending prompt will display the current DSN request (if any) in a
28815 shorthand form.  It will be:
28817 <P><CENTER>[Never]</CENTER>
28820 if you have requested NoErrRets.  Otherwise, it will look something like:
28822 <P><CENTER>[FDS-Hdrs]</CENTER>
28825 The &quot;F&quot; will always be there, indicating that you will be notified
28826 of failures.  (Alpine doesn't provide a way to request no failure notification
28827 and at the same time request either success or delay notification.  The only
28828 way to request no failure notifications is to request no notifications at
28829 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
28830 requested Delay and/or Success notification.  If one of those is missing,
28831 that means you are requesting no notification of the corresponding type.
28832 After the dash it will say either Hdrs or Full.  Hdrs means to return only
28833 the headers and Full means to return the full message (applies to
28834 failure notifications only).
28837 NOTE: This feature relies on your system's mail transport agent or
28838 configured
28839 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
28840 having the negotiation mechanism introduced in
28841 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
28842 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
28843 are using doesn't support DSN, a short warning will be shown to you on
28844 the message line at the bottom of the screen after you send your message,
28845 but your message will have been sent anyway.
28848 Note that DSNs don't provide a mechanism to request read receipts.  That
28849 is, if you request notification on success you are notified when the
28850 message is delivered to the mailbox, not when the message is read.
28853 ESMTP allows for graceful migration to upgraded mail transfer agents, but
28854 it is possible that this feature might cause problems for some servers. 
28857 &lt;End of help on this topic&gt;
28858 </BODY>
28859 </HTML>
28860 ====== h_config_auto_zoom =====
28861 <HTML>
28862 <HEAD>
28863 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
28864 </HEAD>
28865 <BODY>
28866 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
28868 This feature affects the behavior of the Select command.
28869 If set, the select command will automatically perform a zoom
28870 after the select is complete.
28871 This feature is set by default.
28873 Some related help topics are
28874 <UL>
28875 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28876 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28877 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28878 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28879 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28880 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28881 </UL>
28884 &lt;End of help on this topic&gt;
28885 </BODY>
28886 </HTML>
28887 ====== h_config_auto_unzoom =====
28888 <HTML>
28889 <HEAD>
28890 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
28891 </HEAD>
28892 <BODY>
28893 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
28895 This feature affects the behavior of the Apply command.  If set, and if
28896 you are currently looking at a Zoomed Index view of selected messages,
28897 the Apply command will do the operation you specify, but then will
28898 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
28899 the normal Index view after the Apply. 
28900 This feature is set by default.
28903 Some related help topics are
28904 <UL>
28905 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28906 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28907 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28908 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28909 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28910 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28911 </UL>
28913 &lt;End of help on this topic&gt;
28914 </BODY>
28915 </HTML>
28916 ====== h_config_auto_unselect =====
28917 <HTML>
28918 <HEAD>
28919 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
28920 </HEAD>
28921 <BODY>
28922 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
28924 This feature affects the behavior of the Apply command.  If set,
28925 the Apply command will do the operation you specify, but then will
28926 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
28927 the normal Index view after the Apply. 
28930 Some related help topics are
28931 <UL>
28932 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28933 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28934 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28935 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28936 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28937 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28938 </UL>
28940 &lt;End of help on this topic&gt;
28941 </BODY>
28942 </HTML>
28943 ====== h_config_fast_recent =====
28944 <HTML>
28945 <HEAD>
28946 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
28947 </HEAD>
28948 <BODY>
28949 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
28951 This feature controls the behavior of the TAB key when traversing folders
28952 in the optional 
28953 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
28954 collection or in optional <!--#echo var="VAR_news-collections"-->.
28957 When the TAB
28958 (<A HREF="h_common_nextnew">NextNew</A>)
28959 key is pressed, the default behavior is to
28960 explicitly examine the status of the folder for the number of recent
28961 messages (messages delivered since the last time it was viewed).
28962 Depending on the size and number of messages in the folder, this test
28963 can be time consuming.
28966 Enabling this feature will cause Alpine to only test for the existence of
28967 any recent messages rather than to obtain the count.  This is much faster
28968 in many cases.  The downside is that you're not given the number of recent
28969 messages when prompted to view the next folder.
28970 If the feature
28971 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
28972 is turned on, then the present feature will have no effect.
28975 <UL>   
28976 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28977 </UL><P>
28978 &lt;End of help on this topic&gt;
28979 </BODY>
28980 </HTML>
28981 ====== h_config_arrow_nav =====
28982 <HTML>
28983 <HEAD>
28984 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
28985 </HEAD>
28986 <BODY>
28987 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
28989 This feature controls the behavior of the left and right arrow keys.
28990 If set, the left and right arrow keys will operate like the usual
28991 navigation keys &lt; and &gt;.
28992 This feature is set by default.
28995 If you set this feature, and do not like the changed behavior of the up/down 
28996 arrow 
28997 keys when navigating through the FOLDER LIST screen -- 
28998 <B>first</B> from column to column, if more than one folder is 
28999 displayed per row, 
29000 and <B>then</B> from row to row -- you may either also wish to set the feature 
29001 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29002 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29003 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29004 folders in each column.
29006 <UL>   
29007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29008 </UL><P>
29009 &lt;End of help on this topic&gt;
29010 </BODY>
29011 </HTML>
29012 ====== h_config_relaxed_arrow_nav =====
29013 <HTML>
29014 <HEAD>
29015 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29016 </HEAD>
29017 <BODY>
29018 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29020 This feature controls the behavior of the left, right, up and down
29021 arrow keys in the FOLDER LIST screen when the &quot;<A
29022 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29023 set.
29024 This feature is set by default.
29028 When this feature is set, the left and right
29029 arrow keys in the FOLDER LIST screen
29030 move the highlight bar to the left or right, and the up and
29031 down arrows move it up or down.
29034 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29035 feature is not set;
29036 the left and right arrow keys in the Folder List screen strictly
29037 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29038 and down arrow keys move the highlight bar to the previous and next
29039 folder or directory name.
29042 <UL>   
29043 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29044 </UL><P>
29045 &lt;End of help on this topic&gt;
29046 </BODY>
29047 </HTML>
29048 ====== h_config_alt_compose_menu =====
29049 <HTML>
29050 <HEAD>
29051 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29052 </HEAD>
29053 <BODY>
29054 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29056 This feature controls the menu that is displayed when Compose is selected.
29057 If set, a list of options will be presented, with each option representing
29058 the type of composition that could be used. This feature is most useful for
29059 users who want to avoid being prompted with each option separately, or who
29060 want to avoid the checking of remote postponed or form letter folders.
29061 The possible types of composition are:
29064 New, for starting a new composition. Note that if New is selected and roles
29065 are set, roles are checked for matches and applied according to the setting
29066 of the matching role.
29069 Interrupted, for continuing an interrupted composition. This option is only
29070 offered if an interrupted message folder is detected.
29073 Postponed, for continuing postponed compositions. This option is offered
29074 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29075 the postponed folder actually exists. This option is especially handy
29076 for avoiding having to check for the existence of a remote postponed folder.
29079 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29080 is set in the config, and is not checked for existence for reasons similar
29081 to those explained by the postponed option.
29084 setRole, for selecting a role to apply to a composition.
29087 &lt;End of help on this topic&gt;
29088 </BODY>
29089 </HTML>
29090 ====== h_config_alt_role_menu =====
29091 <HTML>
29092 <HEAD>
29093 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29094 </HEAD>
29095 <BODY>
29096 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29098 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29099 a role and compose a new message using that role.
29100 When this feature is set, the role command will first ask whether you want to
29101 Compose a new message, Forward the current message, Reply to the
29102 current message, or Bounce the current message.
29103 If you are not in the MESSAGE INDEX and are not viewing a message,
29104 then there is no current message and the question will be skipped.
29105 After you have chosen to Compose, Forward, Reply, or Bounce you will
29106 then choose the role to be used.
29108 When Bouncing the &quot;Set From&quot; address is used for the
29109 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29110 provided that the option
29111 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29112 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29113 set.
29114 Other actions of the role are ignored when Bouncing.
29117 &lt;End of help on this topic&gt;
29118 </BODY>
29119 </HTML>
29120 ====== h_config_always_spell_check =====
29121 <HTML>
29122 <HEAD>
29123 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29124 </HEAD>
29125 <BODY>
29126 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29128 When this feature is set, every composed message will be spell-checked before
29129 being sent.
29131 &lt;End of help on this topic&gt;
29132 </BODY>
29133 </HTML>
29134 ====== h_config_quell_asterisks =====
29135 <HTML>
29136 <HEAD>
29137 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29138 </HEAD>
29139 <BODY>
29140 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29142 When you are running Alpine you will sometimes be asked for a password
29143 in a prompt on the third line from the bottom of the screen.
29144 Normally each password character you type will cause an asterisk to echo
29145 on the screen. That gives you some feedback to know that your typing is
29146 being recognized.
29147 There is a very slight security risk in doing it this way because someone
29148 watching over your shoulder might be able to see how many characters there
29149 are in your password.
29150 If you'd like to suppress the echoing of the asterisks set this feature.
29152 &lt;End of help on this topic&gt;
29153 </BODY>
29154 </HTML>
29155 ====== h_config_quell_flowed_text =====
29156 <HTML>
29157 <HEAD>
29158 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29159 </HEAD>
29160 <BODY>
29161 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29163 Alpine generates flowed text where possible.
29164 The method for generating flowed text is defined by
29165 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29166 the benefit of doing so is
29167 to send message text that can properly be viewed both on normal width displays
29168 and on displays with smaller or larger than normal screen widths.
29169 With flowed text, a space at the end of a line tells the receiving mail
29170 client that the following line belongs to the same paragraph.
29171 Quoted text will also be affected, with only the innermost
29172 level of &quot;&gt;&quot; quoting being followed by a space.
29173 However, if you have changed the
29174 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29175 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29176 quoted text will not be flowed.
29177 For this reason, we recommend that you leave your
29178 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29180 This feature turns off the generation of flowed text, as it might be
29181 desired to more tightly control how a message is displayed on the receiving end.
29183 If this feature is <EM>not</EM> set, you can control on a message by message
29184 basis whether or not flowed text is generated.
29185 You do this by typing ^V at the Send confirmation prompt that you get
29186 after typing ^X to send a message.
29187 ^V is a toggle that turns flowing off and back on if typed again.
29188 If for some reason flowing cannot be done on a particular message, then the
29189 ^V command will not be available.
29190 This would be the case, for example, if this feature was set, or if your
29191 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29192 If the feature
29193 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29194 then the opportunity to control on a message by message basis
29195 whether or not flowed text is generated is lost.
29197 When this feature is not set and you have typed ^V to turn off flowing,
29198 the Send confirmation prompt will change to look like
29200 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29202 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29203 also turn off the sending of flowed text messages, but it differs in that
29204 it also trims all trailing white space from a message before sending it.
29206 If alternate editors are used extensively, be aware that a message will still
29207 be sent flowed if this feature is unset.  In most cases this will be fine,
29208 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29209 use that.
29211 &lt;End of help on this topic&gt;
29212 </BODY>
29213 </HTML>
29214 ====== h_config_strip_ws_before_send =====
29215 <HTML>
29216 <HEAD>
29217 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29218 </HEAD>
29219 <BODY>
29220 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29222 By default, trailing whitespace is not stripped from
29223 a message before sending.  Trailing whitespace should have no effect on an
29224 email message, and in flowed text can aid in delimiting paragraphs.
29225 However, the old behavior of stripping trailing whitespace was in place
29226 to better deal with older clients that couldn't handle certain types of
29227 text encodings.  This feature restores the old behavior
29229 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29230 generated by default but can be turned off via the
29231 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29232 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29233 of flowed text.
29235 &lt;End of help on this topic&gt;
29236 </BODY>
29237 </HTML>
29238 ====== h_config_del_from_dot =====
29239 <HTML>
29240 <HEAD>
29241 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
29242 </HEAD>
29243 <BODY>
29244 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
29246 This feature controls the behavior of the Ctrl-K command in the composer.
29247 If set, ^K will cut from the current cursor position to the end of the line,
29248 rather than cutting the entire line.
29251 &lt;End of help on this topic&gt;
29252 </BODY>
29253 </HTML>
29254 ====== h_config_print_index =====
29255 <HTML>
29256 <HEAD>
29257 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
29258 </HEAD>
29259 <BODY>
29260 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
29262 This feature controls the behavior of the Print command when in the
29263 MESSAGE INDEX screen.  If set, the print command will give you a prompt
29264 asking if you wish to print the message index, or the currently highlighted
29265 message. If not set, the message will be printed.
29268 &lt;End of help on this topic&gt;
29269 </BODY>
29270 </HTML>
29271 ====== h_config_allow_talk =====
29272 <HTML>
29273 <HEAD>
29274 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
29275 </HEAD>
29276 <BODY>
29277 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
29279 UNIX Alpine only.
29281 By default, permission for others to &quot;talk&quot; to your terminal is turned
29282 off when you are running Alpine.  When this feature is set, permission is
29283 instead turned on.  If enabled, you may see unexpected messages in the
29284 middle of your Alpine screen from someone attempting to contact you via the
29285 &quot;talk&quot; program.
29288 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
29289 talk daemon on your system will attempt to print a message on your screen 
29290 when someone else is trying to contact you.  If you wish to see these
29291 messages while you are running Alpine, you should enable this feature.
29294 If you do enable this feature and see a &quot;talk&quot; message, you must 
29295 suspend or quit Alpine before you can respond.
29298 &lt;End of help on this topic&gt;
29299 </BODY>
29300 </HTML>
29301 ====== h_config_send_filter_dflt =====
29302 <HTML>
29303 <HEAD>
29304 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
29305 </HEAD>
29306 <BODY>
29307 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
29308 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
29309 configured, setting this feature will cause
29310 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
29311 instead of unfiltered, the usual default.
29313 <UL>   
29314 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29315 </UL><P>
29316 &lt;End of help on this topic&gt;
29317 </BODY>
29318 </HTML>
29319 ====== h_config_custom_print =====
29320 <HTML>
29321 <HEAD>
29322 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
29323 </HEAD>
29324 <BODY>
29325 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
29327 When this feature is set, the print command will have an additional
29328 subcommand called "C CustomPrint".  If selected, you will have
29329 the opportunity to enter any system print command --instead of being 
29330 restricted to using those that have been previously configured in the 
29331 printer setup menu.
29334 &lt;End of help on this topic&gt;
29335 </BODY>
29336 </HTML>
29337 ====== h_config_enable_dot_files =====
29338 <HTML>
29339 <HEAD>
29340 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
29341 </HEAD>
29342 <BODY>
29343 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
29345 When this feature is set, files beginning with dot (".") will be
29346 visible in the file browser.  For example, you'll be able to select them
29347 when using the browser to add an attachment to a message.
29349 &lt;End of help on this topic&gt;
29350 </BODY>
29351 </HTML>
29352 ====== h_config_enable_dot_folders =====
29353 <HTML>
29354 <HEAD>        
29355 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
29356 </HEAD>
29357 <BODY>
29358 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
29360 When this feature is set, folders beginning with dot (".") may be added
29361 and viewed.
29363 &lt;End of help on this topic&gt;
29364 </BODY>
29365 </HTML>
29366 ====== h_config_ff_between_msgs =====
29367 <HTML>
29368 <HEAD>
29369 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
29370 </HEAD>
29371 <BODY>
29372 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
29374 Setting this feature causes a formfeed to be printed between messages when
29375 printing multiple messages (with Apply Print command).
29377 &lt;End of help on this topic&gt;
29378 </BODY>
29379 </HTML>
29380 ====== h_config_blank_keymenu =====
29381 <HTML>
29382 <HEAD>
29383 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
29384 </HEAD>
29385 <BODY>
29386 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
29388 If this feature is set the command key menu that normally appears on the
29389 bottom two lines of the screen will not usually be there.  Asking for
29390 help with ^G or ? will cause the key menu to appear instead of causing
29391 the help message to come up.  If you want to actually see the help text,
29392 another ^G or ? will show it to you.  After the key menu has popped
29393 up with the help key it will remain there for an O for Other command but
29394 disappear if any other command is typed.
29396 &lt;End of help on this topic&gt;
29397 </BODY>
29398 </HTML>
29399 ====== h_config_enable_mouse =====
29400 <HTML>
29401 <HEAD>
29402 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29403 </HEAD>
29404 <BODY>
29405 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29407 This feature controls whether or not an X terminal mouse can be used with
29408 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29409 being used, the left mouse button on the mouse can be used to select text
29410 or commands.
29411 Clicking on a command at the bottom of the screen will behave as if you had
29412 typed that command.
29413 Clicking on an index line will move the current message highlight to
29414 that line.
29415 Double-clicking on an index line will view the message.
29416 Double-clicking on a link will view the link.
29418 This type of mouse support will also work in some terminal emulators which are
29419 not actually X terminals, but which have extra code to support the xterm
29420 style mouse.
29421 For those emulators you not only need to turn this feature on but you also
29422 have to set the $DISPLAY environment variable even though it isn't needed
29423 for your terminal.
29424 That will cause Alpine to think that it is an xterm and to properly interpret the
29425 escape sequences sent by the mouse.
29427 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29428 also modified.  It is sometimes possible to hold the shift key down while clicking
29429 left or middle mouse buttons for the normal xterm cut/paste operations. 
29430 There is also an Alpine command to toggle this mode on or off.
29431 The command is Ctrl-&#92; (Control-backslash).
29433 &lt;End of help on this topic&gt;
29434 </BODY>
29435 </HTML>
29436 ====== h_config_enable_xterm_newmail =====
29437 <HTML>
29438 <HEAD>        
29439 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29440 </HEAD>
29441 <BODY>
29442 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29444 This feature controls whether or not Alpine will attempt to announce new
29445 mail arrival when it is running in an X terminal window and that window
29446 is iconified.  If set, and the $DISPLAY variable indicates that an X
29447 terminal is being used, Alpine will send appropriate escape sequences to
29448 the X terminal to modify the label on Alpine's icon to indicate that new
29449 mail has arrived. Alpine will also modify the Alpine window's title to
29450 indicate new mail.
29451 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29453 &lt;End of help on this topic&gt;
29454 </BODY></HTML>
29455 ====== h_config_enable_newmail_short_text =====
29456 <HTML>
29457 <HEAD>        
29458 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29459 </HEAD>
29460 <BODY>
29461 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29463 This feature controls the text to be displayed in an icon in the event
29464 of a new message arrival.  Normally, the message will
29465 be the one that is displayed on the screen.  This feature shortens the
29466 message to a count of the number of new messages in brackets.  This may be
29467 more useful for those who use the window's title bar in the task bar as a
29468 new mail indicator.  This feature is only useful if the
29469 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29470 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29471 feature, this feature is only relevant when run in an xterm environment.
29473 &lt;End of help on this topic&gt;
29474 </BODY></HTML>
29475 ====== h_config_copy_to_to_from =====
29476 <HTML>
29477 <HEAD>
29478 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29479 </HEAD>
29480 <BODY>
29481 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29483 This feature affects the From address used when Replying to a message.
29484 It is probably only useful if you have some
29485 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29486 defined.
29487 When enabled, it checks to see if any of the addresses in the To or Cc
29488 fields of the message you are replying to is one of your addresses.
29489 If it is, and there is only one of them, then that address is used as
29490 the From address in the message you are composing.
29491 In other words, you will be using a From address that is the same
29492 as the To address that was used to get the mail to you in the first place.
29495 If a role is being used and it has a From address defined, that From address will
29496 be used rather than the one derived from this feature.
29499 <UL>   
29500 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29501 </UL><P>
29502 &lt;End of help on this topic&gt;
29503 </BODY>
29504 </HTML>
29505 ====== h_config_prefix_editing =====
29506 <HTML>
29507 <HEAD>
29508 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29509 </HEAD>
29510 <BODY>
29511 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29513 This feature affects the Reply command's &quot;Include original message
29514 in Reply?&quot; prompt.  When enabled, it causes the
29515 &quot;Edit Indent String&quot; sub-command to appear which allows 
29516 you to edit the string Alpine would otherwise use to denote included 
29517 text from the message being replied to.<P>
29519 Thus, you can change Alpine's default message quote character (usually
29520 an angle bracket) on a per message basis. So you could change your quoted message to
29521 look, for example, like this:<p>
29523 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29525 John: I just wanted to say hello and to congratulate you
29526 John: on a job well done!</pre><p>
29528 The configuration option
29529 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29530 may be used to change what appears as the default string to be edited.
29532 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29533 currently being replied to.
29535 If you change your <!--#echo var="VAR_reply-indent-string"-->
29536 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29537 quoted text will not be flowed
29538 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29539 when you reply.
29540 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
29541 set to the default value.
29543 <UL>   
29544 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29545 </UL><P>
29546 &lt;End of help on this topic&gt;
29547 </BODY>
29548 </HTML>
29549 ====== h_config_enable_search_and_repl =====
29550 <HTML>
29551 <HEAD>
29552 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
29553 </HEAD>
29554 <BODY>
29555 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
29557 This feature modifies the behavior of Alpine's composer.  Setting this
29558 feature causes Alpine to offer the "^R Replace" subcommand, which
29559 allows you to search and replace text strings in a message you are composing, 
29560 inside the "^W Where is" command.  
29564 To search and replace text, first enter the text to be replaced at the 
29565 "Search: " prompt.  Then, rather than pressing Enter to just search for that
29566 text, press ^R, which turns the prompt into 
29570 Search (to replace): 
29574 and then press Enter.  The cursor will highlight the first occurrence 
29575 of the text string you entered, and the prompt will show: 
29579 Replace "<your text string>" with : 
29583 where <your text string> is what you entered at the previous prompt;
29584 here, enter the replacement text.  To only replace the highlighted 
29585 occurrence, simply press Enter now; to replace all occurrences in the 
29586 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
29587 each replacement.
29591 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
29592 ^X toggles between "Replace All" and "Replace One."
29596 If you previously searched for text in a message, it will be offered for 
29597 re-use as part of the prompt, shown in [ ] brackets.
29600 &lt;End of help on this topic&gt;
29601 </BODY>
29602 </HTML>
29603 ====== h_config_enable_view_attach =====
29604 <HTML>
29605 <HEAD>
29606 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
29607 </HEAD>
29608 <BODY>
29609 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
29611 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29612 Setting this feature causes Alpine to present attachments in boldface.
29613 The first available attachment is displayed in inverse.  This is the
29614 "selected" attachment.  Pressing RETURN will cause Alpine to display
29615 the selected attachment.  Use the arrow keys to change which of the
29616 attachments displayed in boldface is the current selection.
29620 Speaking of arrow keys, the Up and Down Arrows will select the next
29621 and previous attachments if one is available on the screen for selection.
29622 Otherwise, they will simply adjust the viewed text one line up or down.
29626 Similarly, when selectable items are present in a message, the Ctrl-F key
29627 can be used to select the next item in the message independent of which
29628 portion of the viewed message is currently displayed. The Ctrl-B key can
29629 be used to select the previous item in the same way. 
29630 <P> 
29631 &lt;End of help on this topic&gt;
29632 </BODY>
29633 </HTML>
29634 ====== h_config_enable_y_print =====
29635 <HTML>
29636 <HEAD>
29637 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
29638 </HEAD>
29639 <BODY>
29640 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
29642 This feature modifies the behavior of Alpine's Print command.
29644 By default, Alpine's print command is available by pressing the "%" key.  
29645 (This command is a substantial change from Pine versions before 4.00 -- 
29646 where the print command was "Y" -- based on numerous complaints about 
29647 printing being invoked inadvertently, since Y also means "Yes.")  
29651 This feature is supplied to mitigate any disruption or anxiety users 
29652 might feel as a result of this change.  
29656 Enabling this feature will cause Alpine to recognize both the old
29657 command, "Y" for Prynt, as well the new "%" method for invoking
29658 printing.  Note, key menu labels are not changed as a result of
29659 enabling this feature.
29663 &lt;End of help on this topic&gt;
29664 </BODY>
29665 </HTML>
29666 ====== h_config_enable_lessthan_exit =====
29667 <HTML>
29668 <HEAD>
29669 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
29670 </HEAD>
29671 <BODY>
29672 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
29674 If this feature is set, then on screens where there is an Exit command
29675 but no < command, the < key will perform the same function as the Exit
29676 command.
29677 This feature is set by default.
29679 &lt;End of help on this topic&gt;
29680 </BODY>
29681 </HTML>
29682 ====== h_config_enable_view_url =====
29683 <HTML>
29684 <HEAD>
29685 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
29686 </HEAD>
29687 <BODY>
29688 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
29689 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29690 When this feature is set (the default) Alpine will select possible URLs from the
29691 displayed text and display them in boldface for selection.
29693 The first available URL is displayed in inverse.  This is the
29694 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
29695 the selected URL via either built-in means as with mailto:, imap:,
29696 news:, and nntp:, or via an external application as defined
29697 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29698 variable.
29700 Use the arrow keys to change which of the URLs displayed in boldface
29701 is the current selection.
29703 Speaking of arrow keys, the Up and Down Arrows will select the next
29704 and previous URL if one is available on the screen for selection (unless 
29705 you have set the feature 
29706 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
29707 Otherwise, they will simply adjust the viewed text one line up or down.
29709 Similarly, when selectable items are present in a message, the Ctrl-F
29710 key can be used to select the next item in the message independent
29711 of which portion of the viewed message is currently displayed. The
29712 Ctrl-B key can be used to select the previous item in the same way.
29714 <UL>   
29715 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29716 </UL><P>
29717 &lt;End of help on this topic&gt;
29718 </BODY>
29719 </HTML>
29720 ====== h_config_enable_view_web_host =====
29721 <HTML>
29722 <HEAD>
29723 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
29724 </HEAD>
29725 <BODY>
29726 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
29728 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29729 When this feature is set (the default) Alpine will select possible web hostnames
29730 from the displayed text and display them in boldface for selection.  
29731 This can be useful when you receive messages referencing World Wide Web 
29732 sites without the use of complete URLs; for example, specifying only 
29733 &quot;www.patches.freeiz.com/alpine/&quot; (which will <B>not</B> become a 
29734 selectable 
29735 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
29736 rather than explicitly
29737 &quot;http://www.patches.freeiz.com/alpine/&quot;.  
29739 The first available hostname is displayed in inverse.  This is the
29740 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
29741 the selected hostname via an external application as defined
29742 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29743 variable.
29745 Use the arrow keys (unless you have set the feature 
29746 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29747 to change which of the hostnames displayed in
29748 boldface is the current selection.
29750 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29751 key can be used to select the next web hostname in the message independent
29752 of which portion of the viewed message is currently displayed. The
29753 Ctrl-B key can be used to select the previous web hostnames in the same way.
29755 <UL>   
29756 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29757 </UL><P>
29758 &lt;End of help on this topic&gt;
29759 </BODY>
29760 </HTML>
29761 ====== h_config_enable_view_addresses =====
29762 <HTML>
29763 <HEAD>
29764 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
29765 </HEAD>
29766 <BODY>
29767 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
29769 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29770 Setting this feature causes Alpine to select possible email addresses
29771 from the displayed text and display them in boldface for selection.  
29774 The first available email address is displayed in inverse.  This is the
29775 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
29776 the message composition screen with the To: field filled in with the
29777 selected address.
29779 Use the arrow keys (unless you have set the feature 
29780 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29781 to change which of the hostnames displayed in
29782 boldface is the current selection.
29784 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29785 key can be used to select the next web hostname in the message independent
29786 of which portion of the viewed message is currently displayed. The
29787 Ctrl-B key can be used to select the previous web hostnames in the same way.
29789 <UL>   
29790 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29791 </UL><P>
29792 &lt;End of help on this topic&gt;
29793 </BODY>
29794 </HTML>
29795 ====== h_config_enable_view_arrows =====
29796 <HTML>
29797 <HEAD>
29798 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
29799 </HEAD>
29800 <BODY>
29801 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
29803 This feature modifies Up and Down arrow key behavior in Alpine's
29804 MESSAGE TEXT screen when selectable Attachments, URL's, or
29805 web-hostnames are presented. Alpine's usual behavior is to move to
29806 the next or previous selectable item if currently displayed or
29807 simply to adjust the screen view by one line.
29811 Setting this feature causes the UP and Down arrow key to behave as
29812 if no selectable items were present in the message.
29816 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
29817 item) functionality is unchanged.
29820 &lt;End of help on this topic&gt;
29821 </BODY>
29822 <HTML>
29823 ====== h_config_quell_charset_warning =====
29824 <HTML>
29825 <HEAD>
29826 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
29827 </HEAD>
29828 <BODY>
29829 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
29831 By default, if the message you are viewing contains characters that are
29832 not representable in your
29833 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
29834 then Alpine will
29835 add a warning to the start of the displayed text.
29836 If this option is set, then that editorial message will be suppressed.
29838 Setting this feature also suppresses the comment about the character set
29839 in header lines.
29840 For example, when viewing a message you might see
29842 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
29844 in the From header if your Character-Set is something other than ISO-8859-2.
29845 If you set this feature, the comment about the character set will
29846 no longer be there.
29848 &lt;End of help on this topic&gt;
29849 </BODY>
29850 </HTML>
29851 ====== h_config_quell_host_after_url =====
29852 <HTML>
29853 <HEAD>
29854 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
29855 </HEAD>
29856 <BODY>
29857 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
29859 By default, links in HTML text are displayed with the host the link
29860 references appended, within square brackets, to the link text.  Alpine
29861 does this to help indicate where a link will take you, particularly when
29862 the link text might suggest a different destination.
29865 Setting this feature will prevent the server name from being appended
29866 to the displayed text.
29869 &lt;End of help on this topic&gt;
29870 </BODY>
29871 </HTML>
29872 ====== h_config_prefer_plain_text =====
29873 <HTML>
29874 <HEAD>
29875 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
29876 </HEAD>
29877 <BODY>
29878 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
29880 A message being viewed may contain alternate versions of the same content.
29881 Those alternate versions are supposed to be ordered by the sending software such that the
29882 first alternative is the least preferred and the last alternative is the
29883 most preferred. Alpine will normally display the most-preferred version that
29884 it knows how to display. This is most often encountered where the two
29885 alternate versions are a plain text version and an HTML version, with the
29886 HTML version listed last as the most preferred.
29888 If this option is set, then any plain text version will be preferred to
29889 all other versions.
29891 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
29892 which will temporarily change the sense of this option.
29893 If this option is set you will first see the plain text version of a
29894 message.
29895 If you then type the &quot;A&quot; command, you will see the most preferred version,
29896 most likely HTML, instead.
29897 Typing the &quot;A&quot; command a second time will switch it back.
29898 Alternatively, if the present option is not set you will originally see
29899 the most preferred version of the message and typing &quot;A&quot; will switch to
29900 the plain text version.
29902 &lt;End of help on this topic&gt;
29903 </BODY>
29904 </HTML>
29905 ====== h_config_pass_control =====
29906 <HTML>
29907 <HEAD>
29908 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
29909 </HEAD>
29910 <BODY>
29911 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
29913 It is probably not useful to set this option.
29914 This is a legacy option left behind &quot;just in case&quot;.
29915 Multi-byte characters that have an octet that has the same
29916 value as a control character are permitted through whether or not
29917 this option is turned on.
29919 This feature controls how certain characters contained in messages are
29920 displayed.
29921 If set, all characters in a message will be sent to the
29922 screen. Normally, control characters are displayed as shown below to
29923 avoid a garbled screen and to 
29924 avoid inadvertently changing terminal setup parameters.
29925 Control characters are usually displayed as two character sequences like
29926 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
29927 for Control-C,
29928 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
29929 for ESCAPE,
29930 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
29931 for DELETE, and
29932 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
29933 for the character with value 133 (0x85).
29934 (The DEL character is displayed as ^?, regular control characters are displayed
29935 as the character ^ followed by the character obtained by adding the
29936 five low-order bits of the character to 0x40, and the C1
29937 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
29938 character obtained by adding the
29939 five low-order bits of the character to 0x40.)
29940 Sometimes, in cases where changing a single control character into a
29941 two-character sequence would confuse Alpine's display routines,
29942 a question mark is substituted for the control character.
29944 If you wish to filter out regular control characters but pass the
29945 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29946 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.
29948 &lt;End of help on this topic&gt;
29949 </BODY>
29950 </HTML>
29951 ====== h_config_pass_c1_control =====
29952 <HTML>
29953 <HEAD>
29954 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
29955 </HEAD>
29956 <BODY>
29957 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
29959 It is probably not useful to set this option.
29960 This is a legacy option left behind &quot;just in case&quot;.
29961 Multi-byte characters that have an octet that has the same
29962 value as a control character are permitted through whether or not
29963 this option is turned on.
29965 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29966 is set, then this feature has no effect.
29967 However, if you wish to filter out regular control characters but pass the
29968 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29969 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29970 unset and set this feature.
29972 &lt;End of help on this topic&gt;
29973 </BODY>
29974 </HTML>
29975 ====== h_config_fcc_on_bounce =====
29976 <HTML>
29977 <HEAD>
29978 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
29979 </HEAD>
29980 <BODY>
29981 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
29983 This feature controls an aspect of Alpine's behavior when bouncing a
29984 message. If set, normal FCC ("File Carbon Copy") processing will be
29985 done, just as if you had composed a message to the address you are
29986 bouncing to.  If not set, no FCC of the message will be saved. 
29988 &lt;End of help on this topic&gt;
29989 </BODY>
29990 </HTML>
29991 ====== h_config_show_cursor =====
29992 <HTML>
29993 <HEAD>
29994 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
29995 </HEAD>
29996 <BODY>
29997 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
29999 This feature controls an aspect of Alpine's displays.  If set, the system
30000 cursor will move to convenient locations in the displays.  For example,
30001 to the beginning of the status field of the highlighted index line, or
30002 to the highlighted word after a successful WhereIs command.  It is intended
30003 to draw your attention to an "interesting" spot on the screen.
30005 &lt;End of help on this topic&gt;
30006 </BODY>
30007 </HTML>
30008 ====== h_config_sort_fcc_alpha =====
30009 <HTML>
30010 <HEAD>
30011 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30012 </HEAD>
30013 <BODY>
30014 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30016 This feature controls an aspect of Alpine's FOLDER LIST screen.
30017 If set, the default Fcc folder will be sorted alphabetically with the other
30018 folders instead of appearing right after the INBOX.
30020 &lt;End of help on this topic&gt;
30021 </BODY>
30022 </HTML>
30023 ====== h_config_sort_save_alpha =====
30024 <HTML>
30025 <HEAD>
30026 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30027 </HEAD>
30028 <BODY>
30029 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30031 This feature controls an aspect of Alpine's FOLDER LIST screen.
30032 If set, the default save folder will be sorted alphabetically with the other
30033 folders instead of appearing right after the INBOX (and default FCC folder).
30035 &lt;End of help on this topic&gt;
30036 </BODY>
30037 </HTML>
30038 ====== h_config_single_list =====
30039 <HTML>
30040 <HEAD>
30041 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30042 </HEAD>
30043 <BODY>
30044 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30046 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30047 the folders will be listed one per line instead of several per line
30048 in the FOLDER LIST display.
30050 &lt;End of help on this topic&gt;
30051 </BODY>
30052 </HTML>
30053 ====== h_config_vertical_list =====
30054 <HTML>
30055 <HEAD>
30056 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30057 </HEAD>
30058 <BODY>
30059 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30061 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30062 the folders will be listed alphabetically down the columns rather
30063 than across the columns as is the default.
30065 &lt;End of help on this topic&gt;
30066 </BODY>
30067 </HTML>
30068 ====== h_config_verbose_post =====
30069 <HTML>
30070 <HEAD>
30071 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30072 </HEAD>
30073 <BODY>
30074 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30075 This feature controls an aspect of Alpine's message sending.  When enabled,
30076 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30077 intended to cause the SMTP server to provide a more detailed account of
30078 the transaction.  This feature is typically only useful to system
30079 administrators and other support personel as an aid in troublshooting
30080 problems.
30082 Note, this feature relies on a specific capability of the system's mail
30083 transport agent or configured 
30084 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30085 It is possible that this
30086 feature will cause problems for some tranport agents, and may result in
30087 sending failure.  In addition, as the verbose output comes from the mail
30088 transport agent, it is likely to vary from one system to another. 
30089 <P><UL>
30090 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30091 </UL><P>
30092 &lt;End of help on this topic&gt;
30093 </BODY>
30094 </HTML>
30095 ====== h_config_auto_reply_to =====
30096 <HTML>
30097 <HEAD>
30098 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30099 </HEAD>
30100 <BODY>
30101 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30103 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30104 will not prompt when a message being replied to contains a "Reply-To:"
30105 header value, but will simply use its value (as opposed to using the
30106 "From:" field's value).
30110 Note: Using the "Reply-To:" address is usually the preferred behavior,
30111 however, some mailing list managers choose to place the list's address in
30112 the "Reply-To:" field of any message sent out to the list.  In such
30113 cases, this feature makes it all too easy for personal replies to be
30114 inadvertently sent to the entire mail list, so be careful! 
30116 &lt;End of help on this topic&gt;
30117 </BODY>
30118 </HTML>
30119 ====== h_config_del_skips_del =====
30120 <HTML>
30121 <HEAD>
30122 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30123 </HEAD>
30124 <BODY>
30125 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30127 This feature controls an aspect of Alpine's Delete command.  If set, this
30128 feature will cause the Delete command to advance past following messages that
30129 are marked deleted.  In other words, pressing "D" will both mark the
30130 current message deleted and advance to the next message that is not marked
30131 deleted.
30132 This feature is set by default.
30134 &lt;End of help on this topic&gt;
30135 </BODY></HTML>
30136 ====== h_config_expunge_manually =====
30137 <HTML>
30138 <HEAD>
30139 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30140 </HEAD>
30141 <BODY>
30142 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30144 Normally, when you close a folder that contains deleted messages you are
30145 asked if you want to expunge those messages from the folder permanently.
30146 If this feature is set, you won't be asked and the deleted messages will
30147 remain in the folder.
30148 If you choose to set this feature you will have to expunge the
30149 messages manually using the eXpunge command, which you can use while
30150 in the MESSAGE INDEX screen.
30151 If you do not expunge deleted messages the size of your
30152 folder will continue to increase until you are out of disk space.
30154 <UL>   
30155 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30156 </UL><P>
30157 &lt;End of help on this topic&gt;
30158 </BODY>
30159 </HTML>
30160 ====== h_config_auto_expunge =====
30161 <HTML>
30162 <HEAD>
30163 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30164 </HEAD>
30165 <BODY>
30166 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30168 This features controls an aspect of Alpine's eXpunge command.  If set, you
30169 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30170 place.
30171 Actually, this is only true for the INBOX folder and for folders in the
30172 Incoming Folders collection. See the feature
30173 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30175 <UL>   
30176 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30177 </UL><P>
30178 &lt;End of help on this topic&gt;
30179 </BODY>
30180 </HTML>
30181 ====== h_config_full_auto_expunge =====
30182 <HTML>
30183 <HEAD>
30184 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30185 </HEAD>
30186 <BODY>
30187 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30189 This features controls an aspect of Alpine's eXpunge command.  If set, you
30190 will <B>not</B> be prompted to confirm your intent before the expunge 
30191 takes place.  This feature sets this behavior for all folders, unlike the
30192 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30193 feature that works only for incoming folders.
30195 <UL>   
30196 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30197 </UL><P>
30198 &lt;End of help on this topic&gt;
30199 </BODY>
30200 </HTML>
30201 ====== h_config_auto_read_msgs =====
30202 <HTML>
30203 <HEAD>
30204 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30205 </HEAD>
30206 <BODY>
30207 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30208 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30209 and the 
30210 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30211 option is also set, then Alpine will
30212 automatically transfer all read messages to the designated folder and mark
30213 them as deleted in the INBOX.  Messages in the INBOX marked with an 
30214 &quot;N&quot; (meaning New, or unseen) are not affected.
30216 <UL>   
30217 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30218 </UL><P>
30219 &lt;End of help on this topic&gt;
30220 </BODY>
30221 </HTML>
30222 ====== h_config_auto_fcc_only =====
30223 <HTML>
30224 <HEAD>
30225 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
30226 </HEAD>
30227 <BODY>
30228 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
30229 This features controls an aspect of Alpine's composer.
30230 The only time this feature will be used is if you attempt to send mail
30231 that has no recipients but does have an Fcc.
30232 Normally, Alpine will ask if you really mean to copy the message only to
30233 the Fcc.
30234 That is, it asks if you really meant to have no recipients.
30235 If this feature is set, you
30236 will <B>not</B> be prompted to confirm your intent to make only a copy
30237 of a message with no recipients.
30239 This feature is closely related to
30240 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
30241 The difference between this feature and that feature is that this feature
30242 considers a Bcc to be a recipient while that feature will ask for confirmation
30243 even if there is a Bcc when there is no To, Cc, or Newsgroup.
30244 The default values also differ. This feature defaults to asking the question
30245 and you have to turn it off.
30246 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
30247 unless you turn it on.
30250 <UL>   
30251 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30252 </UL><P>
30253 &lt;End of help on this topic&gt;
30254 </BODY>
30255 </HTML>
30256 ====== h_config_mark_fcc_seen =====
30257 <HTML>
30258 <HEAD>
30259 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
30260 </HEAD>
30261 <BODY>
30262 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
30264 This features controls the way Fccs (File carbon copies) are
30265 made of the messages you send.
30268 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
30269 copy will be marked as Unseen.
30270 When you look at the folder it was saved in the message will appear to
30271 be a New message until you read it.
30272 When this feature is enabled, the message will be marked as having
30273 been Seen.
30276 <UL>   
30277 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30278 </UL><P>
30279 &lt;End of help on this topic&gt;
30280 </BODY>
30281 </HTML>
30282 ====== h_config_no_fcc_attach =====
30283 <HTML>
30284 <HEAD>
30285 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
30286 </HEAD>
30287 <BODY>
30288 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
30290 This features controls the way Fcc's (File carbon copies) are
30291 made of the messages you send.
30294 Normally, Alpine saves an exact copy of your message as it was sent.
30295 When this feature is enabled, the &quot;body&quot; of the message
30296 you send (the text you type in the composer) is preserved in the 
30297 copy as before, however all attachments are replaced with text
30298 explaining what had been sent rather than the attachments themselves.
30301 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
30302 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
30303 allows you to interactively set whether or not attachments are saved
30304 to the Fcc'd copy.
30307 <UL>   
30308 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30309 </UL><P>
30310 &lt;End of help on this topic&gt;
30311 </BODY>
30312 </HTML>
30313 ====== h_config_read_in_newsrc_order =====
30314 <HTML>
30315 <HEAD>
30316 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
30317 </HEAD>
30318 <BODY>
30319 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
30321 This feature controls the order in which newsgroups will be presented.  If
30322 set, they will be presented in the same order as they occur in your 
30323 <!--chtml if pinemode="os_windows"-->
30324 &quot;NEWSRC&quot;
30325 <!--chtml else-->
30326 &quot;.newsrc&quot;
30327 <!--chtml endif-->
30328 file (the default location of which can be changed with the 
30329 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
30331 If not set, the newsgroups will be presented in alphabetical order.
30333 <UL>   
30334 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30335 </UL><P>
30336 &lt;End of help on this topic&gt;
30337 </BODY>
30338 </HTML>
30339 ====== h_config_quell_tz_comment =====
30340 <HTML>
30341 <HEAD>
30342 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
30343 </HEAD>
30344 <BODY>
30345 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
30347 Normally, when Alpine generates a Date header for outgoing mail,
30348 it will try to include the symbolic timezone at the end of the
30349 header inside parentheses.
30350 The symbolic timezone is often three characters long, but on
30351 some operating systems, it may be longer.
30352 Apparently there are some SMTP servers in the world that will reject an
30353 incoming message if it has a Date header longer than about 80 characters.
30354 If this feature is set, the symbolic timezone normally generated by
30355 Alpine will not be included.
30356 You probably don't need to worry about this feature unless you run into
30357 the problem described above.
30360 &lt;End of help on this topic&gt;
30361 </BODY>
30362 </HTML>
30363 ====== h_config_post_wo_validation =====
30364 <HTML>
30365 <HEAD>
30366 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
30367 </HEAD>
30368 <BODY>
30369 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
30371 This feature controls whether the NNTP server is queried as newsgroups
30372 are entered for posting.  Validation over slow links (e.g. dialup using
30373 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
30375 &lt;End of help on this topic&gt;
30376 </BODY>
30377 </HTML>
30378 ====== h_config_send_wo_confirm =====
30379 <HTML>
30380 <HEAD>
30381 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
30382 </HEAD>
30383 <BODY>
30384 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
30386 By default, when you send or post a message you will be asked to confirm
30387 with a question that looks something like:
30390 <CENTER><SAMP>Send message?</SAMP></CENTER>
30393 If this feature is set, you
30394 will <B>not</B> be prompted to confirm your intent to send
30395 and your message will be sent.
30397 If this feature is set it disables some possibilities and renders some
30398 other features meaningless.
30399 You will not be able to use
30400 <A HREF="h_config_sending_filter">Sending Filters</A>,
30401 Verbose sending mode,
30402 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30403 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30404 or ^V to turn off the generation of flowed text for this message.
30405 These options are normally available as suboptions in the Send prompt, but
30406 with no Send prompt the options are gone.
30409 A somewhat related feature is
30410 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30411 which may be used to eliminate the extra confirmation
30412 question when posting to a newsgroup.
30414 <UL>   
30415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30416 </UL><P>
30417 &lt;End of help on this topic&gt;
30418 </BODY>
30419 </HTML>
30420 ====== h_config_quell_filtering_done_message =====
30421 <HTML>
30422 <HEAD>
30423 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30424 </HEAD>
30425 <BODY>
30426 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30428 If you use Filter Rules that move messages or set status of messages
30429 you sometimes see a message from Alpine that looks like
30432 <CENTER><SAMP>filtering done</SAMP></CENTER>
30435 If this feature is set, this message will be suppressed.
30436 If the feature
30437 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30438 is set then this message will be suppressed regardless.
30441 <UL>   
30442 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30443 </UL><P>
30444 &lt;End of help on this topic&gt;
30445 </BODY>
30446 </HTML>
30447 ====== h_config_quell_filtering_messages =====
30448 <HTML>
30449 <HEAD>
30450 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30451 </HEAD>
30452 <BODY>
30453 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30455 If you use Filter Rules that move messages or set status of messages
30456 you sometimes see messages from Alpine that look like
30459 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30465 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30471 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30474 If this feature is set, these messages will be suppressed.
30475 The feature
30476 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30477 is related.
30480 <UL>   
30481 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30482 </UL><P>
30483 &lt;End of help on this topic&gt;
30484 </BODY>
30485 </HTML>
30486 ====== h_config_quell_post_prompt =====
30487 <HTML>
30488 <HEAD>
30489 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30490 </HEAD>
30491 <BODY>
30492 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30494 By default, when you post a message to a newsgroup you are asked to confirm
30495 that you want to post with the question
30498 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30501 If this feature is set, you
30502 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30503 and your message will be posted.
30506 <UL>   
30507 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30508 </UL><P>
30509 &lt;End of help on this topic&gt;
30510 </BODY>
30511 </HTML>
30512 ====== h_config_check_mail_onquit =====
30513 <HTML>
30514 <HEAD>
30515 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30516 </HEAD>
30517 <BODY>
30518 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30520 If this feature is set, Alpine will check for new mail after you give the
30521 Quit command.
30522 If new mail has arrived since the previous check, you will be notified
30523 and given the choice of quitting or not quitting.
30525 <UL>   
30526 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30527 </UL><P>
30528 &lt;End of help on this topic&gt;
30529 </BODY>
30530 </HTML>
30531 ====== h_config_inbox_no_confirm =====
30532 <HTML>
30533 <HEAD>
30534 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30535 </HEAD>
30536 <BODY>
30537 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30539 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30540 command and there are no more folders or newsgroups to visit, you are asked
30541 if you want to return to the INBOX.
30542 If this feature is set you will not be asked.
30543 It will be assumed that you do want to return to the INBOX.
30545 <UL>   
30546 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30547 </UL><P>
30548 &lt;End of help on this topic&gt;
30549 </BODY>
30550 </HTML>
30551 ====== h_config_dates_to_local =====
30552 <HTML>
30553 <HEAD>
30554 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
30555 </HEAD>
30556 <BODY>
30557 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
30559 Normally, the message dates that you see in the
30560 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
30561 For example, if a message was sent to you from a few timezones to the east
30562 it might appear that it was sent from the future;
30563 or if it was sent from somewhere to the west it might appear
30564 as if it is from yesterday even though it was sent only a few minutes ago.
30565 If this feature is set an attempt will be made to convert the dates
30566 to your local timezone to be displayed.
30568 Note that this does not affect the results of Select by Date or of
30569 anything else other than these displayed dates.
30570 When viewing the message you may look at the original unconverted value of the Date
30571 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
30573 <UL>   
30574 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30575 </UL><P>
30576 &lt;End of help on this topic&gt;
30577 </BODY>
30578 </HTML>
30579 ====== h_config_tab_no_prompt =====
30580 <HTML>
30581 <HEAD>
30582 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
30583 </HEAD>
30584 <BODY>
30585 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
30587 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30588 command and there is a problem checking a folder, you are asked
30589 whether you want to continue with the search in the following folder or not.
30590 This question gives you a chance to stop the NextNew processing.
30591 (The checking problem might be caused by the fact that the folder does not
30592 exist, or by an authentication problem, or by a server problem
30593 of some sort.)
30596 If this feature is set you will not be asked.
30597 It will be assumed that you do want to continue.
30599 <UL>   
30600 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30601 </UL><P>
30602 &lt;End of help on this topic&gt;
30603 </BODY>
30604 </HTML>
30605 ====== h_config_input_history =====
30606 <HTML>
30607 <HEAD>
30608 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
30609 </HEAD>
30610 <BODY>
30611 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
30613 Many of the prompts that ask for input in the status line near the
30614 bottom of the screen will respond to Up Arrow and Down Arrow
30615 with the history of previous entries.
30616 For example, in the MESSAGE INDEX screen when you use the WhereIs
30617 command the text you entered will be remembered and can be recalled
30618 by using the Up Arrow key.
30619 Another example, when saving a message the folders saved to will
30620 be remembered and can be recalled using the arrow keys.
30622 In the Save prompt, some users prefer that the Up and Down arrow keys
30623 be used for the Previous Collection and Next Collection commands
30624 instead of for a history of previous saves.
30625 If this option is set the Up and Down arrow keys will become synonyms for the
30626 Previous Collection and Next Collection (^P and ^N) commands in the
30627 prompt for the name of a folder to Save to or in the prompt for the
30628 name of a folder to GoTo.
30629 When this feature is not set (the default), ^P and ^N will change the
30630 collection and the arrow keys will show the history.
30632 <UL>   
30633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30634 </UL><P>
30635 &lt;End of help on this topic&gt;
30636 </BODY>
30637 </HTML>
30638 ====== h_config_confirm_role =====
30639 <HTML>
30640 <HEAD>
30641 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
30642 </HEAD>
30643 <BODY>
30644 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
30646 If you have roles, when you Reply to or Forward a message, or Compose
30647 a new message, Alpine
30648 will search through your roles for one that matches.
30649 Normally, if no matches are found you will be placed into the composer
30650 with no opportunity to select a role.
30651 If this feature is set, then you will be asked to confirm that you don't
30652 want a role.
30653 This will give you the opportunity to select a role (with the ^T command).
30654 If you confirm no role with a Return, you will be placed in
30655 the composer with no role.
30656 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
30657 These behave the same as if you pressed the Return.
30658 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
30659 match what you might type if there was a role match.)
30661 If you are using the alternate form of the Compose command called
30662 &quot;Role&quot;, then all of your roles will be available to you,
30663 independent of the value of this feauture and of the values set for all of
30664 Reply Use, Forward Use, and Compose Use.
30666 <UL>   
30667 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30668 </UL><P>
30669 &lt;End of help on this topic&gt;
30670 </BODY>
30671 </HTML>
30672 ====== h_config_news_cross_deletes =====
30673 <HTML>
30674 <HEAD>
30675 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
30676 </HEAD>
30677 <BODY>
30678 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
30680 This feature controls what Alpine does when you delete a message in a
30681 newsgroup that appears in more than one newsgroup.  Such a message
30682 is sometimes termed a &quot;crossposting&quot; in that it was posted
30683 across several newsgroups.
30686 Alpine's default behavior when you delete such a message is to remove
30687 only the copy in the current newsgroup from view when you use the
30688 &quot;Exclude&quot; command or the next time you visit the newsgroup.
30691 Enabling this feature causes Alpine to remove every occurrence of the
30692 message from all newsgroups it appears in and to which you are
30693 subscribed.
30696 NOTE: As currently implemented, enabling this feature may increase the
30697 time it takes the Expunge command and newsgroup closing to complete.
30700 <UL>   
30701 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30702 </UL><P>
30703 &lt;End of help on this topic&gt;
30704 </BODY>
30705 </HTML>
30706 ====== h_config_news_catchup =====
30707 <HTML>
30708 <HEAD>
30709 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
30710 </HEAD>
30711 <BODY>
30712 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
30714 This feature controls what Alpine does as it closes a newsgroup.
30715 When set, Alpine will offer to delete all messages from the newsgroup
30716 as you are quitting Alpine or opening a new folder.
30719 This feature is useful if you typically read all the interesting messages
30720 in a newsgroup each time you open it.  This feature saves you from
30721 having to delete each message in a newsgroup as you read it or from
30722 selecting all the messages and doing an
30723 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
30724 move on to the next folder or newsgroup.
30727 <UL>   
30728 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30729 </UL><P>
30730 &lt;End of help on this topic&gt;
30731 </BODY>
30732 </HTML>
30733 ====== h_config_next_thrd_wo_confirm =====
30734 <HTML>
30735 <HEAD>
30736 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
30737 </HEAD>
30738 <BODY>
30739 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
30741 This feature controls an aspect of Alpine's Next and Prev commands in
30742 the case where you are using one of the
30743 &quot;separate-index-screen&quot; styles for the configuration option
30744 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
30745 and currently have the folder sorted by a Threaded or OrderedSubject sort.
30746 When you are Viewing a particular thread you have a
30747 MESSAGE INDEX of only the messages in that thread.
30748 If you press the Next command with the last message in the thread highlighted
30749 you will normally be asked if you want to &quot;View next thread?&quot;,
30750 assuming there is a next thread to view.
30751 If this feature is set it will be assumed that you always want to view the
30752 next thread and you won't be asked to confirm that.
30753 Similarly, if the first message of the thread is highlighted and you
30754 press the Prev command, this feature will prevent the question
30755 &quot;View previous thread&quot;.
30757 This feature only has an effect in the MESSAGE INDEX screen.
30758 If you then view a particular message from that screen and press the
30759 Next command, you will be sent to the next thread without being asked,
30760 independent of the setting of this feature.
30762 The feature
30763 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
30765 &lt;End of help on this topic&gt;
30766 </BODY>
30767 </HTML>
30768 ====== h_config_kw_braces =====
30769 <HTML>
30770 <HEAD>
30771 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
30772 </HEAD>
30773 <BODY>
30774 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
30776 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
30777 TEXT screens.
30778 If you have modified the
30779 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
30780 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
30781 are used to display keywords or their initials along with the Subject; then
30782 this option may be used to modify the resulting display slightly.
30783 By default, the keywords or initials displayed for these tokens will be
30784 surrounded with curly braces ({ and }) and a trailing space.
30785 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
30786 a message, the &quot;SUBJKEY&quot; token will normally look like
30788 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
30790 and the SUBJKEYINIT token would look like
30792 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
30794 The default character before the keywords is the left brace ({) and the
30795 default after the keywords is the right brace followed by a space (} ).
30797 This option allows you to change that.
30798 You should set it to two values separated by a space.
30799 The values may be quoted if they include space characters.
30800 So, for example, the default value could be specified explicitly by setting this
30801 option to
30803 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
30805 The first part wouldn't need to be quoted (but it doesn't hurt).
30806 The second part does need the quotes because it includes a space character.
30807 If you wanted to change the braces to brackets you could use
30809 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
30811 Inside the quotes you can use backslash quote to mean quote, so
30813 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
30815 would produce
30817 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
30819 It is also possible to color keywords in the index using the
30820 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
30822 It is not possible to change the fact that a space character is used to
30823 separate the keywords if more than one keyword is set for a message.
30824 It is also not possible to change the fact that there are no separators
30825 between the keyword initials if more than one keyword is set.
30827 &lt;End of help on this topic&gt;
30828 </BODY>
30829 </HTML>
30830 ====== h_config_opening_sep =====
30831 <HTML>
30832 <HEAD>
30833 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
30834 </HEAD>
30835 <BODY>
30836 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
30838 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
30839 With some setups the text of the subject is followed
30840 by the opening text of the message if there is any room available in the index line.
30841 If you have configured your
30842 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
30843 to include one of the Subject tokens that causes this behavior
30844 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
30845 to modify what is displayed slightly.
30846 By default, the Subject is separated from the opening text of the message by
30847 the three characters space dash space;
30849 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
30851 Use this option to set it to something different.
30852 The value must be quoted if it includes any space characters.
30853 For example, the default value could be specified explicitly by setting this
30854 option to
30856 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
30858 &lt;End of help on this topic&gt;
30859 </BODY>
30860 </HTML>
30861 ====== h_config_select_wo_confirm =====
30862 <HTML>
30863 <HEAD>
30864 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
30865 </HEAD>
30866 <BODY>
30867 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
30869 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
30870 These commands all take text input to specify the name of the folder or
30871 file to be used, but allow you to press ^T for a list of possible names.
30872 If set, the selected name will be used immediately, without further
30873 opportunity to confirm or edit the name.
30875 Some related help topics are
30876 <UL>
30877 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30878 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30879 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30880 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
30881 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
30882 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
30883 </UL>
30885 &lt;End of help on this topic&gt;
30886 </BODY>
30887 </HTML>
30888 ====== h_config_save_part_wo_confirm =====
30889 <HTML>
30890 <HEAD>
30891 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
30892 </HEAD>
30893 <BODY>
30894 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
30896 This feature controls an aspect of Alpine's Save command.
30897 By default, when you Save a message that has some deleted parts, you will
30898 be asked to confirm that you want to Save with a prompt that looks like:
30900 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
30902 If this feature is set, you will not be asked.
30904 &lt;End of help on this topic&gt;
30905 </BODY>
30906 </HTML>
30907 ====== h_config_use_resentto =====
30908 <HTML>
30909 <HEAD>
30910 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
30911 </HEAD>
30912 <BODY>
30913 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
30915 This feature is turned off by default because turning it on causes problems
30916 with some deficient IMAP servers.
30917 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
30918 <A HREF="h_rule_patterns">Pattern</A>
30919 contains a To header pattern and this feature is turned on,
30920 then a check is made in the message to see
30921 if a Resent-To header is present, and that is used instead of the To header.
30922 If this feature is not turned on, then the regular To header will always
30923 be used.
30926 &lt;End of help on this topic&gt;
30927 </BODY>
30928 </HTML>
30929 ====== h_config_use_reg_start_for_stayopen =====
30930 <HTML>
30931 <HEAD>
30932 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
30933 </HEAD>
30934 <BODY>
30935 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
30937 This feature affects which message is selected as the current message
30938 when you enter a
30939 <A HREF="h_config_permlocked">Stay Open</A> folder.
30941 Normally, the starting position for an incoming folder (which most Stay Open
30942 folders will likely be) is controlled by the
30943 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
30944 However, if a folder is a Stay Open folder, when you re-enter the folder
30945 after the first time the current message will be the same as it was when
30946 you left the folder.
30947 An exception is made if you use the TAB command to get to the folder.
30948 In that case, the message number will be incremented by one from what it
30949 was when you left the folder.
30951 The above special behavior is thought to be useful.
30952 However, it is special and different from what you might at first expect.
30953 If this feature is set, then Stay Open folders will not be treated specially
30954 as far as the startup rule is concerned.
30957 &lt;End of help on this topic&gt;
30958 </BODY>
30959 </HTML>
30960 ====== h_config_use_current_dir =====
30961 <HTML>
30962 <HEAD>
30963 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
30964 </HEAD>
30965 <BODY>
30966 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
30968 This feature controls an aspect of several commands. 
30969 If set, your &quot;current working directory&quot; 
30970 <!--chtml if pinemode="running"-->
30971 (which, at least for your current Alpine &quot;session,&quot; 
30972 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
30973 <!--chtml endif-->
30974 will be used instead of your home directory 
30975 <!--chtml if pinemode="running"-->
30976 (which, in the present configuration of your system, is
30977  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
30978 <!--chtml endif-->
30979 for all of the following operations:<UL>
30980     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
30981     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
30982     <LI> <!--chtml if pinemode="function_key"-->F4
30983          <!--chtml else-->Ctrl-R
30984          <!--chtml endif--> file inclusion in the COMPOSER
30985     <LI> <!--chtml if pinemode="function_key"-->F5
30986          <!--chtml else-->Ctrl-J
30987          <!--chtml endif--> file attachment in the COMPOSER
30988 </UL>
30989 <!--chtml if pinemode="os_windows"-->
30991 If you are starting PC-Alpine from a desktop icon or the Start menu, 
30992 you can set the &quot;current drive&quot; 
30993 by specifying it in the &quot;Start in:&quot; 
30994 box found in the Shortcut tab of the Properties.  
30995 <!--chtml endif-->
30997 <UL>   
30998 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30999 </UL>
31002 &lt;End of help on this topic&gt;
31003 </BODY>
31004 </HTML>
31005 ====== h_config_save_wont_delete =====
31006 <HTML>
31007 <HEAD>
31008 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31009 </HEAD>
31010 <BODY>
31011 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31013 This feature controls one aspect of the Save command.  If set, Save will
31014 not mark the message &quot;deleted&quot; (its default behavior) after
31015 it has been copied to the designated folder.
31018 &lt;End of help on this topic&gt;
31019 </BODY>
31020 </HTML>
31021 ====== h_config_use_boring_spinner =====
31022 <HTML>
31023 <HEAD>
31024 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31025 </HEAD>
31026 <BODY>
31027 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31029 When Alpine is delayed for some reason it usually shows that
31030 something is happening with a small animated display in the status
31031 message line near the bottom of the screen.
31032 Setting this feature will cause that animation to be the same
31033 each time instead of having Alpine choose a random animation.
31034 You may turn the animation off altogether by setting the
31035 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31036 option to zero.
31039 &lt;End of help on this topic&gt;
31040 </BODY>
31041 </HTML>
31042 ====== h_config_unsel_wont_advance =====
31043 <HTML>
31044 <HEAD>
31045 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31046 </HEAD>
31047 <BODY>
31048 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31050 This feature controls one aspect of the Unselect Current message command.
31051 Normally, when the Unselect current message command (:) is typed when the
31052 current message is selected, the message will be unselected and the next
31053 message will become the current message.
31054 If this feature is set, the cursor will not advance to the next message.
31055 Instead, the current message will remain the current message after
31056 unselecting.
31059 &lt;End of help on this topic&gt;
31060 </BODY>
31061 </HTML>
31062 ====== h_config_prune_uses_iso =====
31063 <HTML>
31064 <HEAD>
31065 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31066 </HEAD>
31067 <BODY>
31068 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31070 By default, Alpine asks monthly whether or not you would like to rename
31071 some folders to a new name containing the date.
31072 It also asks whether or not you would like to delete some old folders.
31073 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31074 explanation.
31077 By default, the name used when renaming a folder looks like
31079 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31081 For example, the first time you run Alpine in May of 2004,
31082 the folder &quot;sent-mail&quot; might be renamed to
31084 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31086 If this feature is set, the name used will be of the form
31088 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31090 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31091 month (01, 02, ..., 12).
31092 For the April, 2004 example above, it would instead be
31094 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31096 because April is the 4th month of the year.
31097 A reason you might want to set this feature is so that the folders
31098 will sort in chronological order.
31101 &lt;End of help on this topic&gt;
31102 </BODY>
31103 </HTML>
31104 ====== h_config_save_advances =====
31105 <HTML>
31106 <HEAD>
31107 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31108 </HEAD>
31109 <BODY>
31110 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31112 This feature controls one aspect of the Save command.  If set, Save will
31113 (in addition to copying the current message to the designated folder) also
31114 advance to the next message.
31117 &lt;End of help on this topic&gt;
31118 </BODY>
31119 </HTML>
31120 ====== h_config_force_arrow =====
31121 <HTML>
31122 <HEAD>
31123 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31124 </HEAD>
31125 <BODY>
31126 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31128 This feature affects Alpine's MESSAGE INDEX display routine.
31129 If set, the normal inverse-video cursor will be
31130 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31131 second column of the index display.
31133 This is the same index cursor you get if you turn on
31134 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31135 line coloring will still be present if this feature is turned on and
31136 <!--#echo var="FEAT_assume-slow-link"--> is off.
31138 An alternative version of the Arrow cursor is available by including the
31139 <A HREF="h_config_index_arrow_color">ARROW</A>
31140 token in the
31141 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31143 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31144 but that is not implemented.
31147 &lt;End of help on this topic&gt;
31148 </BODY>
31149 </HTML>
31150 ====== h_config_force_low_speed =====
31151 <HTML>
31152 <HEAD>
31153 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31154 </HEAD>
31155 <BODY>
31156 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31158 UNIX Alpine only.
31160 This feature affects Alpine's display routines.  If set, the normal
31161 inverse-video cursor (used to highlight the current item in a list) will be
31162 replaced by an &quot;arrow&quot; cursor and other
31163 screen update optimizations for
31164 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31165 One of the optimizations is that colored index lines (set up with Indexcolor
31166 Rules) will not be colored.
31167 If you are just turning this feature on because you like using
31168 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31169 coloring by turning this feature off and the
31170 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
31173 &lt;End of help on this topic&gt;
31174 </BODY>
31175 </HTML>
31176 ====== h_config_show_delay_cue =====
31177 <HTML>
31178 <HEAD>
31179 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
31180 </HEAD>
31181 <BODY>
31182 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
31184 If set, this feature will cause an asterisk to appear in the upper
31185 left-hand corner of the screen whenever Alpine checks for new mail.
31186 Two asterisks whenever Alpine saves (checkpoints) the state of the current
31187 mailbox to disk.
31189 <!--chtml if pinemode="os_windows"-->
31191 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
31192 it is trying to open a network connection (e.g, to open your INBOX
31193 on an IMAP
31194 server) or read from the network connection.  A greater-than symbol,
31195 will be displayed when PC-Alpine is trying to write to the network
31196 connection (e.g, sending a command to your IMAP server).
31197 <!--chtml endif-->
31200 &lt;End of help on this topic&gt;
31201 </BODY>
31202 </HTML>
31203 ====== h_config_color_style =====
31204 <HTML>
31205 <HEAD>
31206 <TITLE>OPTION: Color Style</TITLE>
31207 </HEAD>
31208 <BODY>
31209 <H1>OPTION: Color Style</H1>
31211 UNIX Alpine only.
31213 If the terminal or terminal emulator you are using is capable of displaying
31214 colors, this option controls whether or not color will be used in Alpine.
31215 If you turn color on and things are set up correctly,
31216 you should see color appear on the screen immmediately.
31217 Modern terminal emulators are usually capable of displaying colors.
31219 The available options include:
31222 <DL>
31223 <DT>no-color</DT>
31224 <DD>Don't use color.
31225 </DD>
31227 <DT>use-termdef</DT>
31228 <DD>In order to decide if your terminal is capable of color, Alpine looks in
31229 the terminal capabilities database, TERMINFO or TERMCAP, depending on
31230 how Alpine was compiled.
31231 This is a good option to choose if you switch between a color and a non-color
31232 terminal with the same Alpine configuration.
31233 Alpine will know to use color on the color terminal because it is described
31234 in the termcap entry, and Alpine will know to use black and white on the
31235 non-color terminal.
31236 The Alpine Technical Notes
31237 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
31238 have more information on configuring a TERMCAP or TERMINFO
31239 entry for color Alpine.
31240 This is usually something a system administrator does.
31241 </DD>
31243 <DT>force-ansi-8color</DT>
31244 <DD>This is probably the setting that most people should use.
31245 Because setting up a termcap entry is confusing and because the
31246 terminal capabilities database is often not correctly configured for color,
31247 this choice and the next may be easier for you to use.
31248 If your terminal emulator responds to ANSI color escape sequences, which
31249 many do, this option will cause Alpine to believe your terminal will respond
31250 to the escape sequences that produce eight different foreground and background
31251 colors.
31252 The escape sequences used to set the foreground colors are
31254   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31256 where the color_number is an ASCII digit between 0 and 7.
31257 The numbers 0 through 7 should correspond to the colors black, red, green,
31258 yellow, blue, magenta, cyan, and white.
31259 Some terminal emulators use a pre-ANSI scheme that swaps
31260 the colors blue and red and the colors yellow and cyan.
31261 This will cause the default colors to be different, but other than that
31262 things should work fine.
31263 There is also a 9th color available, the last one shown, which is the default
31264 color from the terminal emulator.
31265 When used as a background color some people refer to this color as
31266 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
31267 shown in the color swatch of the SETUP COLOR screen.
31268 The foreground transparent color is shown as
31269 the color of the &quot;TRAN&quot; text.
31270 (The transparent color will not work correctly in a PC-Alpine configuration.)
31271 The escape sequences used to set the background colors are the same
31272 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
31273 The escape sequences for foreground and background default colors (transparent)
31274 are 39m and 49m.
31276 Note: With the Tera Term terminal emulator this setting works well.
31277 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
31278 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
31279 menu, in the &quot;Window&quot; submenu.
31280 </DD>
31282 <DT>force-ansi-16color</DT>
31283 <DD>Many terminal emulators know about the same eight colors above
31284 plus eight more.
31285 This option attempts to use all 16 colors.
31286 The same escape sequences as for the eight-color terminal are used
31287 for the first eight colors.
31288 The escape sequences used to set foreground colors 8-15 are the same as
31289 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
31290 The background color sequences for colors 8-15 are the same as for 0-7
31291 except the &quot;4&quot; is replaced with &quot;10&quot;.
31292 You can tell if the 16 colors are working by turning on this option
31293 and then going into one of the color configuration screens, for example,
31294 the configuration screen for Normal Color.
31295 If you see 16 different colors to select from (plus a 17th for
31296 the transparent color), it's working.
31297 </DD>
31299 <DT>force-xterm-256color</DT>
31300 <DD>Some versions of xterm (and some other terminal emulators)
31301 have support for 256 colors.
31302 The escape sequences used to set the foreground colors are
31304   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31306 where the color_number is an ASCII digit between 0 and 255.
31307 Background colors are the same with the 38 replaced with a 48.
31308 The numbers 0 through 15 are probably similar to the 16 color version
31309 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
31310 The terminal default (transparent) color is the 257th color at the bottom.
31311 Some terminal emulators will misinterpret these escape sequences causing
31312 the terminal to blink or overstrike characters or to do something else
31313 undesirable.
31315 The PuTTY terminal emulator has an option called &quot;Allow terminal to
31316 use xterm 256-colour mode&quot; which allows PuTTY to work well with
31317 this 256-color setting.
31319 </DD>
31320 </DL>
31323 The normal default is &quot;no-color&quot;.
31326 Once you've turned on color you may set the
31327 colors of many objects on the screen individually.
31328 For example, you may add colors to the status letters on the MESSAGE
31329 INDEX page.
31330 Most categories of color that Alpine supports are configurable here.
31331 For example, &quot;Normal Color&quot;
31332 is the color used to display most of the text in Alpine, and
31333 &quot;Reverse Color&quot; is used to display highlighted text, such as the
31334 current message in the MESSAGE INDEX.
31336 Lines in the MESSAGE INDEX may also be colored.
31337 Use Setup Rules to get to the Indexcolor configuration screen.
31340 <UL>   
31341 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31342 </UL><P>
31343 &lt;End of help on this topic&gt;
31344 </BODY>
31345 </HTML>
31346 ====== h_config_disable_index_locale_dates =====
31347 <HTML>
31348 <HEAD>
31349 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
31350 </HEAD>
31351 <BODY>
31352 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
31354 This feature affects the display of dates in the MESSAGE INDEX.
31355 Normally an attempt is made to localize the dates
31356 used in the MESSAGE INDEX display to your locale.
31357 This is controlled with the
31358 LC_TIME locale setting on a UNIX system.
31359 On Windows the Regional Options control panel may be used to set the date format.
31360 At the programming level, Alpine is using the strftime routine
31361 to print the parts of a date.
31363 If this feature is set, dates are displayed in English and
31364 with the conventions of the United States.
31367 <UL>   
31368 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31369 </UL><P>
31370 &lt;End of help on this topic&gt;
31371 </BODY>
31372 </HTML>
31373 ====== h_config_auto_open_unread =====
31374 <HTML>
31375 <HEAD>
31376 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
31377 </HEAD>
31378 <BODY>
31379 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
31381 This feature controls the behavior of the TAB key when traversing folders
31382 in the optional 
31383 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
31384 collection or in optional <!--#echo var="VAR_news-collections"-->.
31386 When the TAB
31387 (<A HREF="h_common_nextnew">NextNew</A>)
31388 key is pressed, and there
31389 are no more unseen messages in the current (incoming message or news)
31390 folder, Alpine will search the list of folders in the current collection for
31391 one containing New or Recent (new since the last time the folder was
31392 opened) messages.
31393 This behavior may be modified slightly with the
31394 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
31395 feature that causes Alpine to look for Unseen messages instead of Recent
31396 messages.
31397 Normally, when such a folder is found, Alpine will ask
31398 whether you wish to open the folder.  If this feature is set, Alpine will
31399 automatically open the folder without prompting.
31401 This feature also affects some other similar situations.
31402 If you have a
31403 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
31404 that is equal to one of the &quot;separate-&quot; values, and you are
31405 viewing a thread; then when you type the NextNew command and are at the
31406 end of the current thread you will automatically go to the next thread
31407 if this feature is set.
31408 By default, you would be asked if you want to view the next thread.
31409 You will also be asked at times whether or not you want to view the next
31410 thread after you delete the last message in the thread.
31411 Setting this feature will also cause that question to be skipped.
31414 <UL>   
31415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31416 </UL><P>
31417 &lt;End of help on this topic&gt;
31418 </BODY>
31419 </HTML>
31420 ====== h_config_auto_include_reply =====
31421 <HTML>
31422 <HEAD>
31423 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31424 </HEAD>
31425 <BODY>
31426 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31428 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31429 will ask whether you wish to include the original message in your reply.
31430 If this feature is set and the feature
31431 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31432 is <EM>not</EM> set, then the original message will be included in the reply
31433 automatically, without prompting.
31435 &lt;End of help on this topic&gt;
31436 </BODY>
31437 </HTML>
31438 ====== h_config_select_in_bold =====
31439 <HTML>
31440 <HEAD>
31441 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31442 </HEAD>
31443 <BODY>
31444 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31446 This feature controls an aspect of Alpine's 
31447 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31448 commands; in
31449 particular, the Select and WhereIs commands. Select and WhereIs (with the
31450 ^X subcommand) will search the current folder for messages meeting a
31451 specified criteria, and &quot;tag&quot; the resulting messages with an 
31452 &quot;X&quot; in the
31453 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31454 is set, instead of using the &quot;X&quot; to denote a selected message, 
31455 Alpine will
31456 attempt to display those index lines in boldface. Whether this is
31457 preferable to the &quot;X&quot; will depend on personal taste and the type of
31458 terminal being used.
31460 <UL>   
31461 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31462 </UL><P>
31463 &lt;End of help on this topic&gt;
31464 </BODY>
31465 </HTML>
31466 ====== h_config_alt_auth =====
31467 <HTML>
31468 <HEAD>
31469 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31470 </HEAD>
31471 <BODY>
31472 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31474 This feature affects how Alpine connects to IMAP servers.
31475 It's utility has largely been overtaken by events,
31476 but it may still be useful in some circumstances.
31477 If you only connect to modern IMAP servers that support
31478 &quot;TLS&quot; you can ignore this feature.
31481 Details:
31484 By default, Alpine will attempt to connect to an IMAP server on the
31485 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31486 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31487 then a secure (encrypted) session will be negotiated.
31490 With this feature enabled, before connecting on the normal IMAP port, Alpine
31491 will first attempt to connect to an alternate IMAP service port (993) used
31492 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31493 (SSL) method.
31494 If the SSL attempt fails, Alpine will then try the default
31495 behavior described in the previous paragraph.
31498 TLS negotiation on the normal port is preferred, and supersedes the use of
31499 SSL on port 993, but older servers may not provide TLS support.
31500 This feature may be convenient when accessing IMAP servers that do not support
31501 TLS, but do support SSL connections on port 993.
31502 However, it is important to understand that with this feature enabled,
31503 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
31504 but it will proceed to make an insecure connection if that is the only
31505 option offered by the server, or if the Alpine in question has been built
31506 without encryption capability.
31509 Note that this feature specifies a per-user (or system-wide) default
31510 behavior, but host/folder specification flags may be used to control the
31511 behavior of any specific connection.
31512 This feature interacts with some of
31513 the possible host/folder path specification flags as follows:
31516 The <SAMP>/tls</SAMP> host flag, for example,
31519 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
31521 will over-ride this feature for the specified host by bypassing the
31522 SSL connection attempt.
31523 Moreover, with <SAMP>/tls</SAMP> specified,
31524 the connection attempt will fail if the
31525 service on port 143 does not offer TLS support.
31528 The <SAMP>/ssl</SAMP> host flag, for example,
31531 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
31533 will insist on an SSL connection for the specified host,
31534 and will fail if the SSL service on port 993 is not available.
31535 Alpine will not subsequently retry a connection
31536 on port 143 if <SAMP>/ssl</SAMP> is specified.
31539 <UL>   
31540 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31541 </UL><P>
31542 &lt;End of help on this topic&gt;
31543 </BODY>
31544 </HTML>
31545 ====== h_config_file_dir ======
31546 <HTML>
31547 <HEAD>
31548 <TITLE>OPTION: File Directory</TITLE>
31549 </HEAD>
31550 <BODY>
31551 <H1>OPTION: File Directory</H1>
31553 PC-Alpine only.
31555 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
31556 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
31557 Message Index's &quot;E&nbsp;Export&quot; command.
31560 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
31561 component, Alpine assumes the file exists in the user's home directory.
31562 Under Windows operating systems, this definition isn't always clear.  This 
31563 feature allows you to explictly set where Alpine should look for files
31564 without a leading path.
31567 NOTE: this feature's value is ignored if either 
31568 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
31569 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
31572 <UL>   
31573 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31574 </UL><P>
31575 &lt;End of help on this topic&gt;
31576 </BODY>
31577 </HTML>
31578 ====== h_config_quote_all_froms =====
31579 <HTML>
31580 <HEAD>
31581 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
31582 </HEAD>
31583 <BODY>
31584 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
31586 This feature controls an aspect of the Save command (and also the way
31587 outgoing messages are saved to an FCC folder).  If set, Alpine will add
31588 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
31589 when they are saved to another folder, including lines syntactically
31590 distinguishable from the type of message separator line commonly used on
31591 Unix systems.
31594 The default behavior is that a &quot;>&quot; will be prepended only to lines
31595 beginning with &quot;From &quot; that might otherwise be confused with a message
31596 separator line on Unix systems.  If pine is the only mail program you use,
31597 this default is reasonable.  If another program you use has trouble
31598 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
31599 enable this feature.  This feature only applies to the common Unix mailbox
31600 format that uses message separator lines beginning with &quot;From &quot;.  If
31601 Alpine has been configured to use a different mailbox format (possibly
31602 incompatible with other mail programs), then this issue does not arise,
31603 and the feature is irrelevant.
31606 &lt;End of help on this topic&gt;
31607 </BODY>
31608 </HTML>
31609 ====== h_config_normal_color =====
31610 <HTML>
31611 <HEAD>
31612 <TITLE>OPTION: Normal Color</TITLE>
31613 </HEAD>
31614 <BODY>
31615 <H1>OPTION: Normal Color</H1>
31617 Sets the color Alpine normally uses.
31618 The foreground color is the color of the actual character and the
31619 background color is the color of the area behind the character.
31620 By default this color is black characters on a white background.
31622 <A HREF="h_color_setup">Descriptions of the available commands</A>
31624 Look <A HREF="h_edit_nav_cmds">here</A>
31625 to see the available Editing and Navigation commands.
31627 &lt;End of help on this topic&gt;
31628 </BODY>
31629 </HTML>
31630 ====== h_config_reverse_color =====
31631 <HTML>
31632 <HEAD>
31633 <TITLE>OPTION: Reverse Color</TITLE>
31634 </HEAD>
31635 <BODY>
31636 <H1>OPTION: Reverse Color</H1>
31638 Sets the color Alpine uses for reverse video characters.
31639 The foreground color is the color of the actual character and the
31640 background color is the color of the area behind the character.
31642 <A HREF="h_color_setup">Descriptions of the available commands</A>
31644 Look <A HREF="h_edit_nav_cmds">here</A>
31645 to see the available Editing and Navigation commands.
31647 &lt;End of help on this topic&gt;
31648 </BODY>
31649 </HTML>
31650 ====== h_config_title_color =====
31651 <HTML>
31652 <HEAD>
31653 <TITLE>OPTION: Title Color</TITLE>
31654 </HEAD>
31655 <BODY>
31656 <H1>OPTION: Title Color</H1>
31658 Sets the color Alpine uses for the titlebar (the top line on the screen).
31659 The foreground color is the color of the actual character and the
31660 background color is the color of the area behind the character.
31661 By default, the Title Color is black characters on a yellow background.
31663 The actual titlebar color may be different from the Title Color if
31664 the option
31665 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
31666 is set to some value other than the default.
31667 It may also be different if the current folder is closed and the
31668 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
31669 color is set to something different from the Title Color.
31671 <A HREF="h_color_setup">Descriptions of the available commands</A>
31673 Look <A HREF="h_edit_nav_cmds">here</A>
31674 to see the available Editing and Navigation commands.
31676 &lt;End of help on this topic&gt;
31677 </BODY>
31678 </HTML>
31679 ====== h_config_titleclosed_color =====
31680 <HTML>
31681 <HEAD>
31682 <TITLE>OPTION: Title Closed Color</TITLE>
31683 </HEAD>
31684 <BODY>
31685 <H1>OPTION: Title Closed Color</H1>
31687 Sets the color Alpine uses for the titlebar (the top line on the screen)
31688 when the current folder is closed.
31689 The foreground color is the color of the actual character and the
31690 background color is the color of the area behind the character.
31691 By default, the Title Color Closed Color is white characters on a red background.
31693 By setting this color to something noticeable you will be alerted to the
31694 fact that the current folder is closed, perhaps unexpectedly.
31696 &lt;End of help on this topic&gt;
31697 </BODY>
31698 </HTML>
31699 ====== h_config_status_color =====
31700 <HTML>
31701 <HEAD>
31702 <TITLE>OPTION: Status Color</TITLE>
31703 </HEAD>
31704 <BODY>
31705 <H1>OPTION: Status Color</H1>
31707 Sets the color Alpine uses for status messages written to the message
31708 line near the bottom of the screen.
31709 The foreground color is the color of the actual character and the
31710 background color is the color of the area behind the character.
31711 By default, the Status Color is the same as the Reverse Color.
31713 <A HREF="h_color_setup">Descriptions of the available commands</A>
31715 Look <A HREF="h_edit_nav_cmds">here</A>
31716 to see the available Editing and Navigation commands.
31718 &lt;End of help on this topic&gt;
31719 </BODY>
31720 </HTML>
31721 ====== h_config_index_opening_color =====
31722 <HTML>
31723 <HEAD>
31724 <TITLE>OPTION: Index Opening Color</TITLE>
31725 </HEAD>
31726 <BODY>
31727 <H1>OPTION: Index Opening Color</H1>
31729 With some setups the text of the subject is followed
31730 by the opening text of the message if there is any room available in the index line.
31731 If you have configured your
31732 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31733 to include one of the Subject tokens that causes this behavior
31734 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
31735 this opening text with this option.
31736 This coloring takes place for all but the current index line, and the Opening
31737 Color appears to be in front of any color from an Index Color Rule.
31739 By default the Index Opening Color is gray characters on a white background.
31742 <A HREF="h_color_setup">Descriptions of the available commands</A>
31744 Look <A HREF="h_edit_nav_cmds">here</A>
31745 to see the available Editing and Navigation commands.
31747 &lt;End of help on this topic&gt;
31748 </BODY>
31749 </HTML>
31750 ====== h_config_index_pri_color =====
31751 <HTML>
31752 <HEAD>
31753 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
31754 </HEAD>
31755 <BODY>
31756 <H1>OPTION: Index Priority Symbol Colors</H1>
31758 The X-Priority header is a non-standard header that is used in a
31759 somewhat standard way by many mail programs.
31760 Alpine expects the value of this header to be a digit with a value
31761 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
31762 Alpine can be made to display an indication of this priority in
31763 messages by use of one of the tokens
31764 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
31765 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
31766 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31769 You may set the color used to draw these tokens by use of the colors
31770 Index High Priority Symbol Color and Index Low Priority Symbol Color.
31771 This coloring takes place for all but the current index line, and the Priority
31772 Color appears to be in front of any color from an Index Color Rule.
31773 If the priority has a value of 1 or 2 the High Priority color will be
31774 used,
31775 and if the value is 4 or 5 the Low Priority color will be used.
31777 If you don't set these colors the index line will be colored in the same color as
31778 the bulk of the index line.
31781 <A HREF="h_color_setup">Descriptions of the available commands</A>
31783 Look <A HREF="h_edit_nav_cmds">here</A>
31784 to see the available Editing and Navigation commands.
31786 &lt;End of help on this topic&gt;
31787 </BODY>
31788 </HTML>
31789 ====== h_config_index_subject_color =====
31790 <HTML>
31791 <HEAD>
31792 <TITLE>OPTION: Index Subject Color</TITLE>
31793 </HEAD>
31794 <BODY>
31795 <H1>OPTION: Index Subject Color</H1>
31797 You may set the color used to draw the Subject part of the index line.
31798 This coloring takes place for all but the current index line, and the Subject
31799 Color appears to be in front of any color from an Index Color Rule.
31801 If you don't set this color it will be colored in the same color as
31802 the bulk of the index line.
31805 <A HREF="h_color_setup">Descriptions of the available commands</A>
31807 Look <A HREF="h_edit_nav_cmds">here</A>
31808 to see the available Editing and Navigation commands.
31810 &lt;End of help on this topic&gt;
31811 </BODY>
31812 </HTML>
31813 ====== h_config_index_from_color =====
31814 <HTML>
31815 <HEAD>
31816 <TITLE>OPTION: Index From Color</TITLE>
31817 </HEAD>
31818 <BODY>
31819 <H1>OPTION: Index From Color</H1>
31821 You may set the color used to draw the From part of the index line.
31822 This coloring takes place for all but the current index line, and the From
31823 Color appears to be in front of any color from an Index Color Rule.
31825 If you don't set this color it will be colored in the same color as
31826 the bulk of the index line.
31829 <A HREF="h_color_setup">Descriptions of the available commands</A>
31831 Look <A HREF="h_edit_nav_cmds">here</A>
31832 to see the available Editing and Navigation commands.
31834 &lt;End of help on this topic&gt;
31835 </BODY>
31836 </HTML>
31837 ====== h_config_index_arrow_color =====
31838 <HTML>
31839 <HEAD>
31840 <TITLE>OPTION: Index Arrow Color</TITLE>
31841 </HEAD>
31842 <BODY>
31843 <H1>OPTION: Index Arrow Color</H1>
31845 If you have configured your
31846 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31847 to include the &quot;ARROW&quot; token, you may set the color of
31848 the arrow displayed with this option.
31849 If you don't set the color it will be colored in the same color as
31850 the bulk of the index line.
31853 <A HREF="h_color_setup">Descriptions of the available commands</A>
31855 Look <A HREF="h_edit_nav_cmds">here</A>
31856 to see the available Editing and Navigation commands.
31858 &lt;End of help on this topic&gt;
31859 </BODY>
31860 </HTML>
31861 ====== h_config_index_color =====
31862 <HTML>
31863 <HEAD>
31864 <TITLE>OPTION: Index Colors</TITLE>
31865 </HEAD>
31866 <BODY>
31867 <H1>OPTION: Index Colors</H1>
31869 You may add color to the single character symbols that give the status
31870 of each message in the MESSAGE INDEX.
31871 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
31872 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
31873 screen depending on whether the message is addressed to you, and whether
31874 the message is marked Important, is Deleted, is Answered, or is New.
31875 The color for each of those characters may be specified by setting the
31876 &quot;Index-to-me&quot; Symbol Color,
31877 the &quot;Index-important&quot; Symbol Color,
31878 the &quot;Index-deleted&quot; Symbol Color,
31879 the &quot;Index-answered&quot; Symbol Color,
31880 and the &quot;Index-new&quot; Symbol Color.
31881 There are also two other symbol colors called &quot;Index-recent&quot;
31882 and &quot;Index-unseen&quot;.
31883 These two colors will only be used if you have configured your
31884 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31885 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
31887 The default colors for these symbols are:
31888 <TABLE>
31889 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
31890 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
31891 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31892 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
31893 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
31894 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31895 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31896 </TABLE>
31898 Besides coloring the message status symbols, you may also color the
31899 entire index line.
31900 This is done by using the
31901 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
31902 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
31903 When the entire line is colored that color will be &quot;behind&quot; the
31904 status symbol colors talked about in the paragraph above.
31906 You may also color
31907 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
31908 in the index using the
31909 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
31910 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
31911 the Subject using
31912 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
31913 the From field using
31914 <A HREF="h_config_index_from_color">Index From Color</A>;
31915 and the
31916 <A HREF="h_config_index_opening_color">Index Opening</A> text.
31918 <A HREF="h_color_setup">Descriptions of the available commands</A>
31920 Look <A HREF="h_edit_nav_cmds">here</A>
31921 to see the available Editing and Navigation commands.
31923 &lt;End of help on this topic&gt;
31924 </BODY>
31925 </HTML>
31926 ====== h_config_metamsg_color =====
31927 <HTML>
31928 <HEAD>
31929 <TITLE>OPTION: Meta-Message Color</TITLE>
31930 </HEAD>
31931 <BODY>
31932 <H1>OPTION: Meta-Message Color</H1>
31934 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
31935 that aren't part of the message itself.
31936 For example, an attachment that isn't shown might produce a meta
31937 message something like:
31939 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
31941 If you set the
31942 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
31943 option you might see
31945 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
31947 Warnings about suspicious looking URLs in HTML will also be colored
31948 with this color.
31950 The foreground color is the color of the actual character and the
31951 background color is the color of the area behind the character.
31952 By default, the Meta-Message Color is black characters on a yellow background.
31954 <A HREF="h_color_setup">Descriptions of the available commands</A>
31956 Look <A HREF="h_edit_nav_cmds">here</A>
31957 to see the available Editing and Navigation commands.
31959 &lt;End of help on this topic&gt;
31960 </BODY>
31961 </HTML>
31962 ====== h_config_keylabel_color =====
31963 <HTML>
31964 <HEAD>
31965 <TITLE>OPTION: KeyLabel Color</TITLE>
31966 </HEAD>
31967 <BODY>
31968 <H1>OPTION: KeyLabel Color</H1>
31970 Sets the color Alpine uses for the labels of the keys in the two-line
31971 menu at the bottom of the screen.
31972 For example, some of the screens have a &quot;P PrevMsg&quot; command.
31973 This option sets the color used when displaying &quot;PrevMsg&quot;.
31974 The foreground color is the color of the actual character and the
31975 background color is the color of the area behind the character.
31976 By default, the KeyLabel Color is the same as the Normal Color.
31978 WARNING: Some terminal emulators have the property that the screen will scroll
31979 down one line whenever a character is written to the character cell in the
31980 lower right corner of the screen.
31981 Alpine can usually avoid writing a character in that corner of the screen.
31982 However, if you have defined a KeyLabel Color then Alpine does have to write
31983 a character in that cell in order to color the cell correctly.
31984 If you find that your display sometimes scrolls up a line this could be
31985 the problem.
31986 The most obvious symptom is probably that the titlebar at the top of the
31987 screen scrolls off the screen.
31988 Try setting KeyLabel Color to Default to see if that fixes the problem.
31990 <A HREF="h_color_setup">Descriptions of the available commands</A>
31992 Look <A HREF="h_edit_nav_cmds">here</A>
31993 to see the available Editing and Navigation commands.
31995 &lt;End of help on this topic&gt;
31996 </BODY>
31997 </HTML>
31998 ====== h_config_keyname_color =====
31999 <HTML>
32000 <HEAD>
32001 <TITLE>OPTION: KeyName Color</TITLE>
32002 </HEAD>
32003 <BODY>
32004 <H1>OPTION: KeyName Color</H1>
32006 Sets the color Alpine uses for the names of the keys in the two-line
32007 menu at the bottom of the screen.
32008 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32009 This option sets the color used when displaying the &quot;P&quot;.
32010 The foreground color is the color of the actual character and the
32011 background color is the color of the area behind the character.
32012 By default, the KeyName Color is the same as the Reverse Color.
32014 <A HREF="h_color_setup">Descriptions of the available commands</A>
32016 Look <A HREF="h_edit_nav_cmds">here</A>
32017 to see the available Editing and Navigation commands.
32019 &lt;End of help on this topic&gt;
32020 </BODY>
32021 </HTML>
32022 ====== h_config_slctbl_color =====
32023 <HTML>
32024 <HEAD>
32025 <TITLE>OPTION: Selectable Item Color</TITLE>
32026 </HEAD>
32027 <BODY>
32028 <H1>OPTION: Selectable Item Color</H1>
32030 Sets the color Alpine uses for selectable items, such as URLs.
32031 The foreground color is the color of the actual character and the
32032 background color is the color of the area behind the character.
32033 By default, the Selectable Item Color is the same as the Normal Color,
32034 except that it is bold.
32036 <A HREF="h_color_setup">Descriptions of the available commands</A>
32038 Look <A HREF="h_edit_nav_cmds">here</A>
32039 to see the available Editing and Navigation commands.
32041 &lt;End of help on this topic&gt;
32042 </BODY>
32043 </HTML>
32044 ====== h_config_quote_color =====
32045 <HTML>
32046 <HEAD>
32047 <TITLE>OPTION: Quote Colors</TITLE>
32048 </HEAD>
32049 <BODY>
32050 <H1>OPTION: Quote Colors</H1>
32052 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32053 screen.
32054 If a line begins with a &gt; character (or space followed by &gt;)
32055 it is considered a quote.
32056 That line will be given the Quote1 Color (first level quote).
32057 If there is a second level of quoting then the Quote2 Color will be used.
32058 Alpine considers there to be a second level of quoting if that first &gt; is
32059 followed by another &gt; (or space followed by &gt;).
32060 If there are characters other than whitespace and &gt; signs, then it isn't
32061 considered another level of quoting.
32062 Similarly, if there is a third level of quoting the Quote3 Color will be
32063 used.
32064 If there are more levels after that the Quote Colors are re-used.
32065 If you define all three colors then it would repeat like Color1, Color2, Color3,
32066 Color1, Color2, Color3, ...
32067 If you only define the first two it would be
32068 Color1, Color2, Color1, Color2, ...
32069 If you define only the Quote1 Color, then the entire quote would be that
32070 color regardless of the quoting levels.
32071 By default, the Quote1 Color is black characters on a greenish-blue background;
32072 the Quote2 Color is black characters on a dull yellow background; and
32073 the Quote3 Color is black characters on a green background.
32075 <A HREF="h_color_setup">Descriptions of the available commands</A>
32077 Look <A HREF="h_edit_nav_cmds">here</A>
32078 to see the available Editing and Navigation commands.
32080 &lt;End of help on this topic&gt;
32081 </BODY>
32082 </HTML>
32083 ====== h_config_folder_color =====
32084 <HTML>
32085 <HEAD>
32086 <TITLE>OPTION: Folder Color</TITLE>
32087 </HEAD>
32088 <BODY>
32089 <H1>OPTION: Folder Color</H1>
32091 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32092 screen. By default, the Folder Color is the normal text color.
32095 If you set a color for this feature, other than the normal color
32096 (the default), or a color for
32097 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32098 will be colored according to the color specified in the
32099 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32100 case, the color will be the only indication that the colored name
32101 refers to a directory. The normal behavior is that Alpine
32102 indicates that a name refers to a directory by appending a
32103 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32104 the folder.
32107 If a folder is a directory, then the folder name will be painted
32108 according to the color defined by this variable, and a separator
32109 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32110 to the name. That
32111 indicator will be painted according to the color defined in the
32112 <A HREF="h_config_directory_color">Directory Color</A> option.
32115 &lt;End of help on this topic&gt;
32116 </BODY>
32117 </HTML>
32118 ====== h_config_directory_color =====
32119 <HTML>
32120 <HEAD>
32121 <TITLE>OPTION: Directory Color</TITLE>
32122 </HEAD>
32123 <BODY>
32124 <H1>OPTION: Directory Color</H1>
32126 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32127 screen. By default, the Folder Color is the normal text color.
32129 If you set a color for this feature, other than the normal color
32130 (the default), or a color for
32131 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32132 will be colored according to the color specified in the
32133 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32134 case, the color will be the only indication that the colored name
32135 refers to a directory. The normal behavior is that Alpine
32136 indicates that a name refers to a directory by appending a
32137 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32138 the folder.
32140 If a folder is a directory, then the folder name will be painted
32141 according to the color defined by the option
32142 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32143 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32144 after the name. That
32145 indicator will be painted according to the color defined in this
32146 option.
32148 &lt;End of help on this topic&gt;
32149 </BODY>
32150 </HTML>
32151 ====== h_config_folder_list_color =====
32152 <HTML>
32153 <HEAD>
32154 <TITLE>OPTION: Folder-List Color</TITLE>
32155 </HEAD>
32156 <BODY>
32157 <H1>OPTION: Folder-List Color</H1>
32159 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32160 screen. By default, the Folder-List Color is the normal text color.
32162 This text refers to the informative text that Alpine displays so you
32163 can recognize each collection. The color of the content of each collection
32164 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32165 and <A HREF="h_config_directory_color">Directory Color</A>.
32167 Unlike the options
32168 <A HREF="h_config_folder_color">Folder Color</A>
32169 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32170 this option does not affect the way that Alpine reports folders,
32171 directories and folders that are directories.
32173 &lt;End of help on this topic&gt;
32174 </BODY>
32175 </HTML>
32176 ====== h_config_incunseen_color =====
32177 <HTML>
32178 <HEAD>
32179 <TITLE>OPTION: Incoming Unseen Color</TITLE>
32180 </HEAD>
32181 <BODY>
32182 <H1>OPTION: Incoming Unseen Color</H1>
32184 If the option
32185 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
32186 is turned on it is possible to highlight the folders that contain
32187 unseen messages by coloring them with this color.
32188 By default, this is the same as the Normal Color and no highlighting is done.
32190 Usually the &quot;current&quot; folder (the folder the cursor is on)
32191 is highlighted using reverse video.
32192 If the current folder is colored because it contains unseen messages then
32193 the color used to show that it is also the current folder is controlled
32194 by the
32195 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
32196 feature at the top of the SETUP COLOR screen.
32198 <A HREF="h_color_setup">Descriptions of the available commands</A>
32200 Look <A HREF="h_edit_nav_cmds">here</A>
32201 to see the available Editing and Navigation commands.
32203 &lt;End of help on this topic&gt;
32204 </BODY>
32205 </HTML>
32206 ====== h_config_signature_color =====
32207 <HTML>
32208 <HEAD>
32209 <TITLE>OPTION: Signature Color</TITLE>
32210 </HEAD>
32211 <BODY>
32212 <H1>OPTION: Signature Color</H1>
32214 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
32215 screen. According to USENET conventions, the signature is defined as the
32216 paragraph following the &quot;sigdashes&quot;, that is, the special line
32217 consisting of the three characters
32218 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
32219 empty line right after the sigdashes to be considered as part of the
32220 signature.
32221 By default, the Signature Color is blue characters on a white background.
32223 <A HREF="h_color_setup">Descriptions of the available commands</A>
32225 Look <A HREF="h_edit_nav_cmds">here</A>
32226 to see the available Editing and Navigation commands.
32228 &lt;End of help on this topic&gt;
32229 </BODY>
32230 </HTML>
32231 ====== h_config_prompt_color =====
32232 <HTML>
32233 <HEAD>
32234 <TITLE>OPTION: Prompt Color</TITLE>
32235 </HEAD>
32236 <BODY>
32237 <H1>OPTION: Prompt Color</H1>
32239 Sets the color Alpine uses for confirmation prompts and questions that
32240 appear in the status line near the bottom of the screen.
32241 The foreground color is the color of the actual character and the
32242 background color is the color of the area behind the character.
32243 By default, the Prompt Color is the same as the Reverse Color.
32245 <A HREF="h_color_setup">Descriptions of the available commands</A>
32247 Look <A HREF="h_edit_nav_cmds">here</A>
32248 to see the available Editing and Navigation commands.
32250 &lt;End of help on this topic&gt;
32251 </BODY>
32252 </HTML>
32253 ====== h_config_header_general_color =====
32254 <HTML>
32255 <HEAD>
32256 <TITLE>OPTION: Header General Color</TITLE>
32257 </HEAD>
32258 <BODY>
32259 <H1>OPTION: Header General Color</H1>
32261 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
32262 screen.
32263 The foreground color is the color of the actual character and the
32264 background color is the color of the area behind the character.
32265 By default, this is the same as the Normal Color.
32267 It is also possible to set the colors for specific header fields, for
32268 example the Subject, using
32269 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
32270 If both a Header General Color and a specific Viewer Header Color are set
32271 the specific color will override the general color, as you would expect.
32273 <A HREF="h_color_setup">Descriptions of the available commands</A>
32275 Look <A HREF="h_edit_nav_cmds">here</A>
32276 to see the available Editing and Navigation commands.
32278 &lt;End of help on this topic&gt;
32279 </BODY>
32280 </HTML>
32281 ====== h_config_incol =====
32282 <HTML>
32283 <HEAD>
32284 <TITLE>Index Line Color</TITLE>
32285 </HEAD>
32286 <BODY>
32287 <H1>Index Line Color</H1>
32289 This option is used to set the color of a line in the index when the
32290 message for that line matches the Pattern.
32291 This colors the whole index line, except possibly the status letters,
32292 which may be colored separately using the
32293 <A HREF="h_color_setup">Setup Kolor</A> screen.
32294 The foreground color is the color of the actual characters and the
32295 background color is the color of the area behind the characters.
32297 <A HREF="h_color_setup">Descriptions of the available commands</A>
32299 Look <A HREF="h_edit_nav_cmds">here</A>
32300 to see the available Editing and Navigation commands.
32302 &lt;End of help on this topic&gt;
32303 </BODY>
32304 </HTML>
32305 ====== h_config_usetransparent_color =====
32306 <HTML>
32307 <HEAD>
32308 <TITLE>OPTION: Use Transparent Color</TITLE>
32309 </HEAD>
32310 <BODY>
32311 <H1>OPTION: Use Transparent Color</H1>
32313 This is a special color supported by some terminal emulators.
32314 It is intended to result in the default foreground or background color
32315 from the terminal emulator.
32316 This is the color the terminal was displaying characters in before you started Alpine.
32317 The reason it is called Transparent is because you could set the foreground color
32318 to some specific color, like Red, and then set the background color to the
32319 Transparent Color. If it works as expected, the background color from the terminal
32320 window in which Alpine is running will show through but with the Red characters
32321 in the foreground.
32323 <A HREF="h_color_setup">Descriptions of the available commands</A>
32325 Look <A HREF="h_edit_nav_cmds">here</A>
32326 to see the available Editing and Navigation commands.
32328 &lt;End of help on this topic&gt;
32329 </BODY>
32330 </HTML>
32331 ====== h_config_usenormal_color =====
32332 <HTML>
32333 <HEAD>
32334 <TITLE>OPTION: Use Normal Color</TITLE>
32335 </HEAD>
32336 <BODY>
32337 <H1>OPTION: Use Normal Color</H1>
32339 When you use this color value, the actual color used will be the same
32340 as the corresponding Normal Color.
32341 For example if your Normal Color is black on white and you set both
32342 the foreground and background colors here to use the Normal Color, you'll
32343 get black on white. If you later change the Normal Color to red on blue
32344 this color will also change to red on blue.
32346 <A HREF="h_color_setup">Descriptions of the available commands</A>
32348 Look <A HREF="h_edit_nav_cmds">here</A>
32349 to see the available Editing and Navigation commands.
32351 &lt;End of help on this topic&gt;
32352 </BODY>
32353 </HTML>
32354 ====== h_config_usenone_color =====
32355 <HTML>
32356 <HEAD>
32357 <TITLE>OPTION: Use None Color</TITLE>
32358 </HEAD>
32359 <BODY>
32360 <H1>OPTION: Use None Color</H1>
32362 This is a special color that simply means to leave the color alone.
32363 It is useful for Index symbols and for Keyword Colors used in the Subject
32364 field of an index line.
32365 The most likely use is to set an explicit foreground color and then set
32366 the background color to the None Color.
32367 That will cause the symbol or keyword to be drawn in the foreground color
32368 with a background equal to whatever color the rest of the index line is already
32369 drawn in.
32370 You will see no visible effect unless you have assigned Indexcolor Rules to
32371 color index lines or you have set an actual color for the Reverse Color.
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_dflt_color =====
32382 <HTML>
32383 <HEAD>
32384 <TITLE>OPTION: Default Color</TITLE>
32385 </HEAD>
32386 <BODY>
32387 <H1>OPTION: Default Color</H1>
32389 Setting default will cause the color to be the default color.
32390 Unsetting default is normally done by choosing a color, but in some cases
32391 you may want to declare the current default color to be your non-default
32392 choice.
32393 For example, the default Keyname Color is the same as the Reverse Color.
32394 Whenever the Reverse Color changes the Keyname Color will also change, unless
32395 you've changed it or unset the default box.
32397 <A HREF="h_color_setup">Descriptions of the available commands</A>
32399 Look <A HREF="h_edit_nav_cmds">here</A>
32400 to see the available Editing and Navigation commands.
32402 &lt;End of help on this topic&gt;
32403 </BODY>
32404 </HTML>
32405 ====== h_config_bold_slctbl =====
32406 <HTML>
32407 <HEAD>
32408 <TITLE>OPTION: Bold</TITLE>
32409 </HEAD>
32410 <BODY>
32411 <H1>OPTION: Bold</H1>
32413 The color for this particular section may have the Bold attribute turned
32414 on or off.
32415 Setting bold will cause the characters to be bold.
32417 <A HREF="h_color_setup">Descriptions of the available commands</A>
32419 Look <A HREF="h_edit_nav_cmds">here</A>
32420 to see the available Editing and Navigation commands.
32422 &lt;End of help on this topic&gt;
32423 </BODY>
32424 </HTML>
32425 ====== h_config_kw_color =====
32426 <HTML>
32427 <HEAD>
32428 <TITLE>OPTION: Keyword Colors</TITLE>
32429 </HEAD>
32430 <BODY>
32431 <H1>OPTION: Keyword Colors</H1>
32433 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32434 Keywords are displayed as part of the Subject by default.
32435 They are also displayed as part of the Subject if the tokens
32436 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32437 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32438 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32439 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32441 For example, you might have set up a Keyword
32442 &quot;Work&quot; using the
32443 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32444 You could cause that Keyword to show up as a special color
32445 by setting up the Keyword Color using this option, and then including it
32446 in the MESSAGE INDEX screen using one of the tokens listed above in the
32447 <!--#echo var="VAR_index-format"-->.
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_customhdr_color =====
32458 <HTML>
32459 <HEAD>
32460 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32461 </HEAD>
32462 <BODY>
32463 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32465 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32466 For example, you may set the color of the Subject header or the From header.
32467 The foreground color is the color of the actual character and the
32468 background color is the color of the area behind the character.
32470 In addition to setting the colors for particular headers (like the Subject)
32471 you may also set a color to be used for all headers unless overridden by a
32472 more specific Viewer Header Color.
32473 To do this use the
32474 <A HREF="h_config_header_general_color">Header General Color</A>.
32476 For Header Colors,
32477 there is an additional line on the
32478 screen labeled &quot;Pattern to match&quot;.
32479 If you leave that blank, then the whole field for that header will
32480 be colored.
32481 However, if you give a pattern to match, the coloring will only take place
32482 if there is a match for that pattern in the value of the field.
32483 For example, if you are working on a color for the Subject header and
32484 you fill in a pattern of &quot;important&quot;, then only Subjects that
32485 contain the word &quot;important&quot; will be colored.
32487 If the pattern you enter is a comma-separated list of patterns, then coloring
32488 happens if any of those patterns matches.
32490 <A HREF="h_color_setup">Descriptions of the available commands</A>
32492 Look <A HREF="h_edit_nav_cmds">here</A>
32493 to see the available Editing and Navigation commands.
32495 &lt;End of help on this topic&gt;
32496 </BODY>
32497 </HTML>
32498 ====== h_config_indextoken_color =====
32499 <HTML>
32500 <HEAD>
32501 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
32502 </HEAD>
32503 <BODY>
32504 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
32506 This option allows you to set up the color in which any token, not specified by the
32507 previous options, will be colored in the MESSAGE INDEX screen. 
32509 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
32510 a token that can be used in the index format. 
32511 The list of available tokens is <A HREF="h_index_tokens">here</A>.
32513 If you fail to enter a valid token your entry will be ignored, and you will be asked to
32514 enter a new one. Once you have entered a valid token, a line will be added to the
32515 configuration screen that you can use to set up the colors in which that token will
32516 be painted. This is done in the same way that you configure colors for other
32517 variables.
32519 <A HREF="h_color_setup">Descriptions of the available commands</A>
32521 Look <A HREF="h_edit_nav_cmds">here</A>
32522 to see the available Editing and Navigation commands.
32524 &lt;End of help on this topic&gt;
32525 </BODY>
32526 </HTML>
32527 ====== h_config_customhdr_pattern =====
32528 <HTML>
32529 <HEAD>
32530 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
32531 </HEAD>
32532 <BODY>
32533 <H1>OPTION: Viewer Header Color Pattern</H1>
32535 If you leave this blank, then the whole field for the header will
32536 be colored.
32537 If you give a pattern to match, the coloring will only take place
32538 if there is a match for that pattern in the value of the field.
32539 For example, if you are working on a color for the Subject header and
32540 you fill in a pattern of &quot;important&quot;, then only Subjects that
32541 contain the word &quot;important&quot; will be colored.
32543 For address headers (like From and To) and for the Newsgroups header,
32544 a pattern match will cause only the matched addresses or newsgroups to be
32545 colored.
32546 If there is no pattern to match, then all of the addresses or newsgroups
32547 in the relevant header will be colored.
32549 The matching pattern may be a comma-separated list of patterns to match
32550 instead of a single pattern.
32551 For example, you could use the pattern &quot;important,urgent&quot; which would
32552 cause a match if either the word &quot;important&quot; or the word
32553 &quot;urgent&quot; appeared in the value of the header.
32554 You could list several comma-separated email addresses in the Header
32555 From Color pattern so that those addresses will be colored when any of
32556 them appear in the From header.
32558 To add a new matching pattern or change the existing pattern use the 
32559 <!--chtml if pinemode="function_key"-->
32560 &quot;F4&quot;
32561 <!--chtml else-->
32562 &quot;C&quot;
32563 <!--chtml endif-->
32564 &quot;Change&quot; command that is available when the &quot;Pattern to
32565 match&quot; line is highlighted.
32567 <!--chtml if pinemode="function_key"-->
32568 &quot;F10&quot;
32569 <!--chtml else-->
32570 &quot;D&quot;
32571 <!--chtml endif-->
32572 &quot;Delete&quot; command may be used to quickly remove all patterns
32573 for a particular header.
32575 &lt;End of help on this topic&gt;
32576 </BODY>
32577 </HTML>
32578 ====== h_color_setup =====
32579 <HTML>
32580 <HEAD>
32581 <TITLE>SETUP COLOR COMMANDS</TITLE>
32582 </HEAD>
32583 <BODY>
32584 <H1>SETUP COLOR COMMANDS</H1>
32585 <!--chtml if pinemode="function_key"-->
32586 <PRE>
32587 Available Commands -- Group 1
32588 -------------------------------
32589 F1  Display this help text
32590 F2  Show other available commands
32591 F3  Exit to MAIN MENU
32592 F4  Select the highlighted foreground or background color
32593 F5  Move to previous line
32594 F6  Move to next line
32595 F7  Previous page
32596 F8  Next page
32597 F9  Add a config section for a header field
32598 F10 Restore all default colors (for all sections)
32599 F11 Print color configuration screen
32600 F12 Whereis (search for word)
32602 Available Commands -- Group 2
32603 -------------------------------
32604 F1  Display this help text
32605 F2  Show other available commands
32606 F5  Delete config section for highlighted header field
32607 F6  Shuffle the order of Header Color sections
32608 </PRE>
32609 <!--chtml else-->
32610 <PRE>
32611 General commands
32612 -------------------------------------------------
32613  ?  Display this help text     E  Exit back to MAIN MENU
32614  P  Previous Line              N  Next Line
32615  -  Previous page             Spc (space bar) Next page
32616  W  WhereIs (search for word)  %  Print color configuration screen
32618 Color Setup Commands
32619 ------------------------------------------------
32620  *  Select the highlighted foreground or background color
32621  A  Add a config section for a header field
32622  D  Delete config section for highlighted header field
32623  R  Restore all default colors (for all sections)
32624  $  Shuffle the order of Header Color sections
32625 </PRE>
32626 <!--chtml endif-->
32628 <H2>Description of the Setup Color Screen</H2>
32630 From this screen you may turn on color and set the colors of
32631 various parts of the Alpine display.
32632 For help on turning on color move your cursor into the Color Style section
32633 at the top of the Setup Color screen and ask for help.
32636 There are several sections in the Setup Color Screen.
32637 At the top are some settings that handle the style of color used
32638 with your terminal emulator (UNIX only), and some settings that
32639 control how the current indexline and the titlebar are colored.
32640 After that comes a long section called GENERAL COLORS that allows
32641 you to set the color of many elements in the Alpine screens.
32642 For example, the color of the titlebar, status messages,
32643 selectable links, quotes and signatures in messages, and so on.
32644 After that is a section called INDEX COLORS that allows you to
32645 set the colors of various pieces of the displayed index lines in
32646 the MESSAGE INDEX screen.
32647 The next section is HEADER COLORS. This is for coloring headers of
32648 messages in the MESSAGE TEXT screen in just about any way you would like.
32649 Finally, the KEYWORD COLORS section allows you to highlight
32650 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32651 in the MESSAGE INDEX screen.
32654 To change a color, highlight the color you want to change (for example,
32655 the Status Color) by moving
32656 the cursor into it.
32657 You may want to read the help text for the color to see a brief desription
32658 of what you are coloring.
32659 Then press &quot;C&quot; for Change to set the color to something new.
32660 That will put you into a screen with two columns of colors, one for
32661 the foreground color and one for the background color.
32662 The foreground color is just the color you want the actual characters
32663 to be and the background color is the color of the rest of the rectangle
32664 behind the characters.
32665 Select the foreground and background colors desired by using the Next and
32666 Prev keys to highlight the color, and the * command to select it.
32668 To set a color to its default value, set the X in the Default line at
32669 the bottom of the list of colors.
32672 The HEADER COLORS section is a little bit different from the others.
32673 Besides coloring the specific fields that Alpine knows about, you may also
32674 color specific header fields when viewing a message in the MESSAGE TEXT
32675 screen.
32676 For example, you may color the Subject header a particular color.
32677 There are a few commands for use with headers.
32678 The &quot;AddHeader&quot; command adds a section to the color
32679 configuration screen that allows you to set the color for that header.
32680 You'll be asked for the name of the header field you want to color.
32681 If you wanted to color the Subject, you would answer
32682 with the word &quot;subject&quot;.
32683 Once you've added a header field, the color setting works just like the
32684 other color fields, except that there is an additional line on the
32685 configuration screen labeled &quot;Pattern to match&quot;.
32686 If you leave that blank, then the whole field for that header will always
32687 be colored.
32688 However, if you give a pattern to match, the coloring will only take place
32689 if there is a match for that pattern in the value of the field.
32690 For example, if you are working on a color for the Subject header and
32691 you fill in a pattern of &quot;important&quot;, then only Subjects that
32692 contain the word &quot;important&quot; will be colored.
32694 The &quot;DeleteHdr&quot; command removes a header section from the
32695 configuration altogether.
32696 The &quot;Shuffle&quot; command changes the order of header sections.
32697 This is only necessary if you use header sections with pattern fields.
32698 For example, if you have two Subject sections, one with one pattern and
32699 another with another pattern, and the subject for a particular message
32700 happens to match both, then the color from the first match is used.
32703 The command &quot;RestoreDefs&quot; will restore all of the default colors.
32704 Each section will change to the default value used for that section when
32705 color is first enabled.
32706 When you restore all default colors the color settings for the Header Colors
32707 will be unset (since that's the default), but the header fields you've
32708 added will remain so that you may easily reset them.
32709 In order to get rid of them completely you'd have to use
32710 the &quot;DeleteHdr&quot; command.
32713 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
32714 may be set with matching rules and that is configured separately from
32715 the rest of the color settings described here.
32716 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
32717 instead of in the Setup/Kolor section.
32719 <P><UL>
32720 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32721 </UL><P>
32722 &lt;End of help on this topic&gt;
32723 </BODY>
32724 </HTML>
32725 ====== h_config_news_uses_recent ======
32726 <HTML>
32727 <HEAD>
32728 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
32729 </HEAD>
32730 <BODY>
32731 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
32733 This feature causes certain messages to be marked as "New" in the
32734 MESSAGE INDEX of newsgroups.
32735 This feature is set by default.
32739 When opening a newsgroup, Alpine will consult your "newsrc" file and
32740 determine the last message you have previously disposed of via the "D"
32741 key.  If this feature is set, any subsequent messages will be shown in the
32742 Index with an "N", and the first of these messages will be highlighted.
32743 Although this is only an approximation of true "New" or "Unseen"
32744 status, it provides a useful cue to distinguish more-or-less recent
32745 messages from those you have seen previously, but are not yet ready to
32746 mark deleted.
32750 Background: your "newsrc" file (used to store message status information
32751 for newsgroups) is only capable of storing a single flag, and Alpine uses
32752 this to record whether or not you are "done with" a message, as
32753 indicated by marking the message as "Deleted".  Unfortunately, this
32754 means that Alpine has no way to record exactly which messages you have
32755 previously seen, so it normally does not show the "N" status flag for
32756 any messages in a newsgroup. This feature enables a starting
32757 *approximation* of seen/unseen status that may be useful.
32759 &lt;End of help on this topic&gt;
32760 </BODY>
32761 </HTML>
32762 ====== h_config_expose_hidden_config =====
32763 <HTML>
32764 <HEAD>
32765 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
32766 </HEAD>
32767 <BODY>
32768 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
32770 If set, this causes configuration options and features that are normally
32771 hidden from view to be editable in the Setup/Config screen.
32774 The purpose of this feature is to allow you to change configuration
32775 features and variables that are normally hidden.
32776 This is particularly useful if you are using a remote configuration,
32777 where it is difficult to edit the contents manually, but it may also be used
32778 on a local pinerc configuration file.
32780 If set, several configuration variables and features that are normally
32781 hidden from view will show up in the Setup/Configuration screen.
32782 They will be at the bottom of the configuration screen.
32783 You can find them by searching for the words &quot;hidden configuration&quot;.
32786 Note that this is an advanced feature that should be used with care.
32787 The reason that this part of the configuration is normally hidden is because
32788 there is a significant potential for causing problems if you change these
32789 variables.
32790 If something breaks after a change try changing it back to see if that is
32791 what is causing the problem.
32792 There are also some variables that are normally hidden because they are
32793 manipulated through Alpine in other ways.
32794 For example, colors are normally set using the Setup/Kolors screen and
32795 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
32796 the Setup/AddressBooks screen, so there is little reason to edit these directly.
32797 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
32798 the Add, Delete, and Rename commands in the FOLDER LIST screen,
32799 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
32800 internally by Alpine and not set directly by the user.
32802 <UL>   
32803 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32804 </UL><P>
32805 &lt;End of help on this topic&gt;
32806 </BODY>
32807 </HTML>
32808 ====== h_config_disable_signature_edit =====
32809 <HTML>
32810 <HEAD>
32811 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
32812 </HEAD>
32813 <BODY>
32814 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
32816 If set, this disables the editing of signature files from within
32817 the Setup/Config screen.
32819 <UL>   
32820 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32821 </UL><P>
32822 &lt;End of help on this topic&gt;
32823 </BODY>
32824 </HTML>
32825 ====== h_config_disable_roles_templateedit =====
32826 <HTML>
32827 <HEAD>
32828 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
32829 </HEAD>
32830 <BODY>
32831 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
32833 If set, this disables the editing of template files within the
32834 Role setup screen.
32836 <UL>   
32837 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32838 </UL><P>
32839 &lt;End of help on this topic&gt;
32840 </BODY>
32841 </HTML>
32842 ====== h_config_disable_roles_sigedit =====
32843 <HTML>
32844 <HEAD>
32845 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
32846 </HEAD>
32847 <BODY>
32848 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
32850 If set, this disables the editing of signature files within the
32851 Role setup screen.
32853 <UL>   
32854 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32855 </UL><P>
32856 &lt;End of help on this topic&gt;
32857 </BODY>
32858 </HTML>
32859 ====== h_config_disable_roles_setup =====
32860 <HTML>
32861 <HEAD>
32862 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
32863 </HEAD>
32864 <BODY>
32865 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
32867 If set, this disables the Setup/Rules/Roles command.
32869 <UL>   
32870 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32871 </UL><P>
32872 &lt;End of help on this topic&gt;
32873 </BODY>
32874 </HTML>
32875 ====== h_config_disable_pipes_in_templates =====
32876 <HTML>
32877 <HEAD>
32878 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
32879 </HEAD>
32880 <BODY>
32881 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
32883 By default, if a template file name is followed by a vertical bar (|) then
32884 that causes the file to be executed to produce the text for the template.
32885 If this feature is set, then this is not allowed.
32887 <UL>   
32888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32889 </UL><P>
32890 &lt;End of help on this topic&gt;
32891 </BODY>
32892 </HTML>
32893 ====== h_config_disable_pipes_in_sigs =====
32894 <HTML>
32895 <HEAD>
32896 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
32897 </HEAD>
32898 <BODY>
32899 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
32901 By default, if a signature file name is followed by a vertical bar (|) then
32902 that causes the file to be executed to produce the text for the signature.
32903 If this feature is set, then this is not allowed.
32905 <UL>   
32906 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32907 </UL><P>
32908 &lt;End of help on this topic&gt;
32909 </BODY>
32910 </HTML>
32911 ====== h_config_disable_password_cmd =====
32912 <HTML>
32913 <HEAD>
32914 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
32915 </HEAD>
32916 <BODY>
32917 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
32919 If set, then the Setup/Newpassword command is disabled.
32921 <UL>   
32922 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32923 </UL><P>
32924 &lt;End of help on this topic&gt;
32925 </BODY>
32926 </HTML>
32927 ====== h_config_disable_password_caching =====
32928 <HTML>
32929 <HEAD>
32930 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
32931 </HEAD>
32932 <BODY>
32933 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
32935 Normally, loginname/password combinations are cached in Alpine so that
32936 you do not have to enter the same password more than once in a session.
32937 A disadvantage to this approach is that the password must be stored in
32938 the memory image of the running Alpine in order that it can be re-used.
32939 In the event that Alpine crashes and produces a core dump, and that core
32940 dump is readable by others, the loginname and password could be read
32941 from the core dump.
32943 If this feature is set, then the passwords will not be cached and you
32944 will have to retype the password whenever Alpine needs it.
32945 Even with this feature set there is still some chance that the core
32946 file will contain a password, so care should be taken to make the
32947 core files unreadable.
32949 NOTE: If PASSFILE caching is enabled, this does not disable it.
32950 That is a separate and independent feature.
32951 <UL>   
32952 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32953 </UL><P>
32954 &lt;End of help on this topic&gt;
32955 </BODY>
32956 </HTML>
32957 ====== h_config_disable_password_file_saving =====
32958 <HTML>
32959 <HEAD>
32960 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
32961 </HEAD>
32962 <BODY>
32963 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
32965 This feature changes the behavior of Alpine when a login name and password combination
32966 for a specific server is not found in the password file. The default behavior is that
32967 Alpine will ask the user if they wish to save this information in the password file for future
32968 use. It is assumed that if a user created a password file it is because they intend
32969 to use it, but in some instances a user might want to save some passwords and not others.
32970 In this case, enabling this feature will make Alpine not add any more passwords to the
32971 password file and will only use the passwords that it already saved. If you wish to allow
32972 Alpine to save more passwords in the password file, disable this feature.
32974 <UL>   
32975 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32976 </UL><P>
32977 &lt;End of help on this topic&gt;
32978 </BODY>
32979 </HTML>
32980 ====== h_config_disable_kb_lock =====
32981 <HTML>
32982 <HEAD>
32983 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
32984 </HEAD>
32985 <BODY>
32986 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
32988 If set, then the Keyboard Lock command is removed from the MAIN MENU.
32990 <UL>   
32991 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32992 </UL><P>
32993 &lt;End of help on this topic&gt;
32994 </BODY>
32995 </HTML>
32996 ====== h_config_disable_config_cmd =====
32997 <HTML>
32998 <HEAD>
32999 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33000 </HEAD>
33001 <BODY>
33002 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33004 If set, then the Setup/Config screen is disabled.
33006 <UL>   
33007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33008 </UL><P>
33009 &lt;End of help on this topic&gt;
33010 </BODY>
33011 </HTML>
33012 ====== h_config_allow_chg_from =====
33013 <HTML>
33014 <HEAD>
33015 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33016 </HEAD>
33017 <BODY>
33018 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33020 This feature affects Alpine's handling of the &quot;From:&quot; header field
33021 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33022 option.
33024 If this feature is set then the From line can be changed just like
33025 all the other header fields that can be changed.
33026 This feature defaults to <EM>ON</EM>.
33028 Even with this feature turned ON (the default) you will not be able 
33029 to change the From header unless you add it to your list of
33030 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33031 You may also want to change the
33032 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33033 if you want the From header to always show up in the composer without
33034 having to type the Rich Headers command first.
33036 Note that many sites restrict the use of this feature in order to
33037 reduce the chance of falsified addresses and misdirected mail.
33038 If you want to change the value of what gets included in the From header
33039 in messages you send
33040 look <A HREF="h_config_change_your_from">here</A> for a description.
33042 <UL>   
33043 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33044 </UL><P>
33045 &lt;End of help on this topic&gt;
33046 </BODY>
33047 </HTML>
33048 ====== h_config_disable_collate =====
33049 <HTML>
33050 <HEAD>
33051 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33052 </HEAD>
33053 <BODY>
33054 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33056 This is a hard to understand feature that should only be used in rare cases.
33057 Normally, the C function call
33059 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33061 is used by Alpine.
33062 If you want to try turning it off,
33063 setting this feature will turn it off.
33064 This part of the locale has to do with the sort order
33065 of characters in your locale.
33067 <UL>   
33068 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33069 </UL><P>
33070 &lt;End of help on this topic&gt;
33071 </BODY>
33072 </HTML>
33073 ====== h_config_quell_attach_extra_prompt =====
33074 <HTML>
33075 <HEAD>
33076 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33077 </HEAD>
33078 <BODY>
33079 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33081 By default, when you attempt to view an attachment externally
33082 from the &quot;Attachment View&quot; screen, you are asked if you
33083 really want to view the selected attachment.
33086 If this feature is set, you will <B>not</B> be prompted to confirm
33087 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33088 prompt. This feature was added for those wanting to preserve that
33089 behavior (along with 
33090 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
33093 <UL>   
33094 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33095 </UL><P>
33096 &lt;End of help on this topic&gt;
33097 </BODY>
33098 </HTML>
33099 ====== h_config_quell_attach_ext_warn =====
33100 <HTML>
33101 <HEAD>
33102 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33103 </HEAD>
33104 <BODY>
33105 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33108 This feature suppresses the extra warning you can get when trying
33109 to view an attachment for which there is no mime-type match.  Turning
33110 on this feature will just run the program according to extension
33111 instead of first warning the user that it will run according to the
33112 file's extension.
33114 This feature can be used along side 
33115 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33116 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
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_mailcap_params =====
33125 <HTML>
33126 <HEAD>
33127 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33128 </HEAD>
33129 <BODY>
33130 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33132 If set, this will allow mailcap named parameter substitution to occur
33133 in mailcap entries.
33134 By default, this is turned off to prevent security problems that may occur
33135 with some incorrect mailcap configurations.
33136 For more information, see RFC1524 and look for "named parameters" in the
33137 text of the RFC.
33139 <UL>   
33140 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33141 </UL><P>
33142 &lt;End of help on this topic&gt;
33143 </BODY>
33144 </HTML>
33145 ====== h_config_disable_shared =====
33146 <HTML>
33147 <HEAD>
33148 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33149 </HEAD>
33150 <BODY>
33151 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33153 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33154 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33155 will be disabled.
33156 The reason this feature exists is because there are some implementations
33157 of system password lookup routines that are very slow when presented with
33158 a long loginname that does not exist.
33159 This feature could be set to prevent the delay at startup time when the
33160 names above are searched for in the password file.
33162 <UL>   
33163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33164 </UL><P>
33165 &lt;End of help on this topic&gt;
33166 </BODY>
33167 </HTML>
33168 ====== h_config_hide_nntp_path =====
33169 <HTML>
33170 <HEAD>
33171 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
33172 </HEAD>
33173 <BODY>
33174 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
33176 Normally the Path header that Alpine generates when posting to a newsgroup
33177 contains the name of the computer from which the message is being sent and
33178 the user name.
33179 Some believe that this information is used by spammers.
33180 If this feature is set, that information will be replaced with the text
33182 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
33184 instead.
33186 It should be noted that many servers being connected to will still reveal
33187 the information that this feature attempts to protect.
33189 <UL>   
33190 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33191 </UL><P>
33192 &lt;End of help on this topic&gt;
33193 </BODY>
33194 </HTML>
33195 ====== h_config_no_bezerk_zone =====
33196 <HTML>
33197 <HEAD>
33198 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
33199 </HEAD>
33200 <BODY>
33201 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
33203 POSIX mandates a timezone in UNIX mailbox format folder delimiters
33204 (the line that begins with From <SPACE>).
33205 Some versions of Berkeley mail have trouble with this, and don't recognize
33206 the line as a message delimiter.
33207 If this feature is set, the timezone will be left off the delimiter line.
33209 <UL>   
33210 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33211 </UL><P>
33212 &lt;End of help on this topic&gt;
33213 </BODY>
33214 </HTML>
33215 ====== h_config_quell_domain_warn =====
33216 <HTML>
33217 <HEAD>
33218 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
33219 </HEAD>
33220 <BODY>
33221 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
33223 When your configuration is set up so that your domain name contains no dots,
33224 it is usually a configuration error.
33225 By default, Alpine will warn you about this when you start it up.
33226 You will see a warning message that looks like
33229 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
33232 If this feature is set, the warning is turned off.
33234 <UL>   
33235 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33236 </UL><P>
33237 &lt;End of help on this topic&gt;
33238 </BODY>
33239 </HTML>
33240 ====== h_config_quell_imap_env =====
33241 <HTML>
33242 <HEAD>
33243 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
33244 </HEAD>
33245 <BODY>
33246 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
33248 In the MESSAGE INDEX screen, if the open folder is being accessed
33249 using IMAP, Alpine normally tries to paint the index lines on the screen
33250 as soon as the information arrives from the IMAP server.
33251 This means that the index information makes it onto the screen more quickly
33252 than it otherwise would.
33253 This sometimes results in behavior that bothers some users.
33254 For example, when paging to a new page of the index, it may be possible for
33255 the lines to be painted on the screen in a random order, rather than from
33256 top to bottom.
33259 Setting this feature causes Alpine to wait for all of the information
33260 to be gathered before it paints the index screen.
33261 Once it collects all of the information, the screen will be painted quickly
33262 from top to bottom.
33264 <UL>   
33265 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33266 </UL><P>
33267 &lt;End of help on this topic&gt;
33268 </BODY>
33269 </HTML>
33270 ====== h_config_quell_news_env =====
33271 <HTML>
33272 <HEAD>
33273 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
33274 </HEAD>
33275 <BODY>
33276 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
33278 In the MESSAGE INDEX screen, if the open folder is being accessed
33279 using NNTP (News), Alpine normally tries to paint the index lines on the screen
33280 as soon as the information arrives from the NNTP server.
33281 This means that the index information makes it onto the screen more quickly
33282 than it otherwise would.
33283 This sometimes results in behavior that bothers some users.
33284 For example, when paging to a new page of the index, it may be possible for
33285 the lines to be painted on the screen in a random order, rather than from
33286 top to bottom.
33289 Setting this feature causes Alpine to wait for all of the information
33290 to be gathered before it paints the index screen.
33291 Once it collects all of the information, the screen will be painted quickly
33292 from top to bottom.
33294 <UL>   
33295 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33296 </UL><P>
33297 &lt;End of help on this topic&gt;
33298 </BODY>
33299 </HTML>
33300 ====== h_config_quell_content_id =====
33301 <HTML>
33302 <HEAD>
33303 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
33304 </HEAD>
33305 <BODY>
33306 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
33308 This feature changes the behavior of Alpine when sending messages.
33309 It is intended to work around a bug in Microsoft's Outlook XP mail user
33310 agent.
33311 As of this writing, Microsoft has acknowledged the bug but
33312 has not added it to the Knowledge Base.
33313 We have been told that there will be a post-SP1 hotfix for Outlook XP.
33314 This particular bug has bug fix number OfficeQFE:4781.
33315 The nature of the bug is that messages with attachments that
33316 contain a Content-ID header (which standard Alpine attachments do)
33317 do not show the attachment indicator (a paperclip) when viewed with
33318 Outlook XP.
33319 So the user has no indication that the message contains an attachment.
33322 If this feature is set then Alpine will remove most Content-ID headers
33323 before sending a message.
33324 If an attachment is of type MESSAGE, then the existing Content-ID headers
33325 inside the message will be left intact.
33326 This would only happen with Alpine if a message was forwarded as an attachment
33327 or if a message with a message attached was forwarded.
33328 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
33329 the Content-ID headers of the alternative parts will not be removed.
33332 Because the Content-ID header is a standard part of MIME it is possible
33333 that setting this feature will break something.
33334 For example, if an attachment has a Content-ID header that is necessary
33335 for the correct functioning of that attachment, it is possible that Alpine
33336 may remove that header when the attachment is forwarded.
33337 However, it seems fairly safe at this time.
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_winpos_in_config =====
33347 <HTML>
33348 <HEAD>
33349 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
33350 </HEAD>
33351 <BODY>
33352 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
33354 PC-Alpine only.
33357 Normally, PC-Alpine will store its window size and position in the
33358 Windows Registry.
33359 This is convenient if you want to use the same remote
33360 configuration from more than one PC.
33361 If you use multiple configuration files to start PC-Alpine, you may want
33362 to store the window size and position in the configuration file instead
33363 of in the Registry.
33364 Setting this feature causes the value to be stored in 
33365 <A HREF="h_config_window_position">Window-Position</A>.
33368 <UL>   
33369 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33370 </UL><P>
33371 &lt;End of help on this topic&gt;
33372 </BODY>
33373 </HTML>
33374 ====== h_config_quell_ssl_largeblocks =====
33375 <HTML>
33376 <HEAD>
33377 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
33378 </HEAD>
33379 <BODY>
33380 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
33382 PC-Alpine only.
33384 This feature changes the behavior of fetching messages
33385 and attachments so that the message data is fetched in chunks no larger
33386 than 12K bytes.
33387 This works around a bug in Microsoft's SSL/TLS support.
33388 Some versions of Microsoft SSL are not able to read full-sized (16K)
33389 SSL/TLS packets.
33390 Some servers will send such packets and this will
33391 cause PC-Alpine to crash with the error
33394 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
33397 Microsoft is aware of the problem and has developed a hotfix for it, it is
33398 discussed in article 300562 in the Microsoft Knowledge Base.
33400 <UL>   
33401 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33402 </UL><P>
33403 &lt;End of help on this topic&gt;
33404 </BODY>
33405 </HTML>
33406 ====== h_config_quell_partial =====
33407 <HTML>
33408 <HEAD>
33409 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
33410 </HEAD>
33411 <BODY>
33412 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
33414 Partial fetching is a feature of the IMAP protocol.
33415 By default, Alpine
33416 will use partial fetching when copying the contents of a message or attachment
33417 from the IMAP server to Alpine.
33418 This means that the fetch will be done in many
33419 small chunks instead of one big chunk. The main benefit of this approach is
33420 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
33421 to stop the fetch early. In some cases partial fetching may cause a performance
33422 problem so that the fetching of data takes significantly longer when partial
33423 fetching is used. Turning on this feature will turn off partial fetching.
33425 <UL>   
33426 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33427 </UL><P>
33428 &lt;End of help on this topic&gt;
33429 </BODY>
33430 </HTML>
33431 ====== h_config_quell_personal_name_prompt =====
33432 <HTML>
33433 <HEAD>
33434 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
33435 </HEAD>
33436 <BODY>
33437 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33439 PC-Alpine only.  This feature quells the prompting for a 
33440 <A HREF="h_config_pers_name">personal name</A>.  This
33441 prompt normally happens before composing a message, and only happens when
33442 there is no personal name already set.
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_user_id_prompt =====
33451 <HTML>
33452 <HEAD>
33453 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33454 </HEAD>
33455 <BODY>
33456 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33458 PC-Alpine only.  This feature quells the prompting for a 
33459 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33460 if the information can be obtained from the login name used
33461 to open the INBOX.  Normally, this prompt happens before composing
33462 a message, and only happens when there is no user-id already set
33463 in the configuration.
33465 With this feature set, composing a message is only possible after
33466 establishing a connection to the INBOX.
33468 <UL>   
33469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33470 </UL><P>
33471 &lt;End of help on this topic&gt;
33472 </BODY>
33473 </HTML>
33474 ====== h_config_save_aggregates =====
33475 <HTML>
33476 <HEAD>
33477 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33478 </HEAD>
33479 <BODY>
33480 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
33482 This feature will optimize an aggregate copy operation, if
33483 possible, by issuing a single IMAP <EM>COPY</EM> command with a
33484 list of the messages to be copied.
33485 This feature is set by default.
33486 This may reduce network traffic and elapsed time for the Save.
33487 <EM>However, many IMAP servers (including the UW IMAP server) do
33488 not preserve the order of messages when this optimization is applied.</EM>
33489 If this feature is not set, 
33490 Alpine will copy each message individually and the order of the messages
33491 will be preserved.
33493 <UL>   
33494 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33495 </UL><P>
33496 &lt;End of help on this topic&gt;
33497 </BODY>
33498 </HTML>
33499 ====== h_config_use_system_translation =====
33500 <HTML>
33501 <HEAD>
33502 <TITLE>FEATURE: Use System Translation</TITLE>
33503 </HEAD>
33504 <BODY>
33505 <H1>FEATURE: Use System Translation</H1>
33507 UNIX Alpine only.
33509 Alpine normally uses its own internal software to convert between the multi-byte
33510 representation of characters and the Unicode representation of those
33511 same characters.
33512 It converts from the multi-byte characters your keyboard produces to Unicode,
33513 and from Unicode to the multi-byte characters your display expects.
33514 Alpine also uses its own internal software to decide how much space on
33515 the screen a particular Unicode character will occupy.
33518 Setting this feature tells Alpine to use the system-supplied routines to
33519 perform these tasks instead.
33520 In particular there are three tasks and three system routines that will
33521 be used for these tasks.
33524 To convert from multi-byte to Unicode the routine
33527 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
33530 is used.
33531 To convert from Unicode to multi-byte the routine
33534 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
33537 is used.
33538 And to find the screen width a particular Unicode character will
33539 occupy the routine used is
33542 <CENTER><SAMP>wcwidth</SAMP></CENTER>
33545 This feature has been only lightly tested.
33546 The internal routines should normally be used unless you run into
33547 a problem that you think may be solved by using the system routines.
33548 Note that your environment needs to be set up for these
33549 routines to work correctly.
33550 In particular, the LANG or LC_CTYPE variable in your environment will
33551 need to be set.
33554 <UL>   
33555 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33556 </UL><P>
33557 &lt;End of help on this topic&gt;
33558 </BODY>
33559 </HTML>
33560 ====== h_config_suspend_spawns =====
33561 <HTML>
33562 <HEAD>
33563 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
33564 </HEAD>
33565 <BODY>
33566 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
33568 This feature affects Alpine's behavior when process suspension is enabled
33569 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
33570 temporarily interact with the operating system command &quot;shell&quot; 
33571 without
33572 quitting Alpine, and then subsequently resume the still-active Alpine session.
33575 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
33576 is set and subsequently the Ctrl-Z key
33577 is pressed, Alpine will normally suspend itself and return temporary control
33578 to Alpine's parent shell process.  However, if this feature is set, Alpine
33579 will instead create an inferior subshell process.  This is useful when the
33580 parent process is not intended to be used interactively.  Examples include
33581 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
33582 or via a menu system.<P>
33584 Note that one typically resumes a suspended Alpine by entering the Unix
33585 &quot;fg&quot; command, but if this feature is set, it will be necessary to
33586 enter the &quot;exit&quot; command instead.
33588 <UL>   
33589 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33590 </UL><P>
33591 &lt;End of help on this topic&gt;
33592 </BODY>
33593 </HTML>
33594 ====== h_config_8bit_smtp =====
33595 <HTML>
33596 <HEAD>
33597 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
33598 </HEAD>
33599 <BODY>
33600 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
33602 This feature affects Alpine's behavior when sending mail.
33603 By default, this feature is set.
33604 Internet standards
33605 require that all electronic mail messages traversing the global Internet
33606 consist of 7bit ASCII characters unless a pair of cooperating mail 
33607 transfer agents explicitly agree to allow 8bit messages.  In general, 
33608 then, exchanging messages in non-ASCII characters requires MIME encoding.
33610 However, there are now Internet standards that allow for unencoded 8bit
33611 exchange of messages between cooperating systems.  When this feature is set
33612 Alpine will try to negotiate unencoded 8bit transmission during the
33613 sending process.  Should the negotiation fail, Alpine will fall back to its
33614 ordinary encoding rules. 
33616 Note, this feature relies on your system's mail transport agent or
33617 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
33618 having the negotiation mechanism introduced in
33619 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
33620 &quot;8BITMIME&quot;. 
33622 ESMTP allows for graceful migration to upgraded mail transfer agents, but
33623 it is possible that this feature might cause problems for some servers. 
33624 <P><UL>
33625 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33626 </UL>
33627 <P>&lt;End of help on this topic&gt;
33628 </BODY>
33629 </HTML>
33630 ====== h_config_8bit_nntp =====
33631 <HTML>
33632 <HEAD>
33633 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
33634 </HEAD>
33635 <BODY>
33636 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
33638 This feature affects Alpine's behavior when posting news.  
33642 The Internet standard for exchanging USENET news messages (RFC-1036)
33643 specifies that USENET messages should conform to Internet mail standards
33644 and contain only 7bit characters, but much of the news transport software
33645 in use today is capable of successfully sending messages containing 8bit
33646 characters.  Hence, many people believe that it is appropriate to send 8bit
33647 news messages without any MIME encoding.
33651 Moreover, there is no Internet standard for explicitly negotiating 8bit
33652 transfer, as there is for Internet email.  Therefore, Alpine provides the
33653 option of posting unencoded 8bit news messages, though not as the default.
33654 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
33655 postings that contain 8bit characters. 
33659 Note, articles may cross a path or pass through news transport software
33660 that is unsafe or even hostile to 8bit characters.  At best this will only
33661 cause the posting to become garbled.  The safest way to transmit 8bit
33662 characters is to leave Alpine's MIME encoding turned on, but recipients
33663 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
33664 messages.
33666 &lt;End of help on this topic&gt;
33667 </BODY>
33668 </HTML>
33669 ====== h_config_mark_for_cc =====
33670 <HTML>
33671 <HEAD>
33672 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
33673 </HEAD>
33674 <BODY>
33675 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
33677 This feature affects Alpine's MESSAGE INDEX display.
33678 By default, a '+' is displayed in the first column if the
33679 message is addressed directly to you.
33680 When this feature is set and the message is not addressed to you, then a
33681 '-' character is displayed if the message is instead Cc'd directly
33682 to you.
33685 <UL>   
33686 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33687 </UL><P>
33688 &lt;End of help on this topic&gt;
33689 </BODY>
33690 </HTML>
33691 ====== h_config_tab_uses_unseen =====
33692 <HTML>
33693 <HEAD>
33694 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
33695 </HEAD>
33696 <BODY>
33697 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
33699 This feature affects Alpine's behavior when using the TAB
33700 <A HREF="h_common_nextnew">NextNew Command</A>
33701 to move from one folder to the next.
33702 Alpine's usual behavior is to search for folders
33703 with <EM>Recent</EM> messages in them.
33704 Recent messages are messages that have arrived since the last time the
33705 folder was opened.
33708 Setting this feature causes Alpine to search for <EM>Unseen</EM>
33709 messages instead of Recent messages.
33710 Unseen messages remain Unseen until you view them (or flag then as Seen with
33711 the <A HREF="h_common_flag">Flag Command</A>).
33712 Setting this feature allows you to locate messages you have not read
33713 instead of only recently received messages.
33714 When this feature is set, the feature
33715 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
33716 will have no effect, so the checking may be slower.
33719 Another reason why you might want to use this feature is that Alpine sometimes
33720 opens folders implicitly behind the scenes, and this clears the
33721 Recent status of all messages in the folder.
33722 One example where this happens is when Saving or filtering a
33723 message to another folder.
33724 If that message has some <A HREF="h_config_keywords">keywords</A>
33725 set, then because of some shortcomings
33726 in the IMAP specification, the best way to ensure that those keywords are
33727 still set in the saved copy of the message is to open the folder and
33728 set the keywords explicitly.
33729 Because this clears the Recent status of all messages in that folder the
33730 folder will not be found by the NextNew command unless this feature is set.
33733 &lt;End of help on this topic&gt;
33734 </BODY>
33735 </HTML>
33736 ====== h_config_tab_new_only =====
33737 <HTML>
33738 <HEAD>
33739 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
33740 </HEAD>
33741 <BODY>
33742 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
33744 This feature affects Alpine's behavior when using the TAB key to move from
33745 one message to the next.  Alpine's usual behavior is to select the next
33746 unread message or message flagged as "Important".
33750 Setting this feature causes Alpine to skip the messages flagged as important,
33751 and select unread messages exclusively.  Tab behavior when there are no
33752 new messages left to select remains unchanged.
33754 &lt;End of help on this topic&gt;
33755 </BODY>
33756 </HTML>
33757 ====== h_config_warn_if_subj_blank =====
33758 <HTML>
33759 <HEAD>
33760 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
33761 </HEAD>
33762 <BODY>
33763 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
33765 This feature affects Alpine's behavior when you send a message being
33766 composed.
33767 If this option is set, Alpine will check to see if the message about to be sent
33768 has a subject or not.
33769 If not, you will be asked if you want to send the message anyway.
33772 <UL>   
33773 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33774 </UL><P>
33775 &lt;End of help on this topic&gt;
33776 </BODY>
33777 </HTML>
33778 ====== h_config_warn_if_fcc_blank =====
33779 <HTML>
33780 <HEAD>
33781 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
33782 </HEAD>
33783 <BODY>
33784 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
33786 This feature affects Alpine's behavior when you send a message being
33787 composed.
33788 If this option is set, Alpine will check to see if the message about to be sent
33789 has an Fcc or not.
33790 If not, you will be asked if you want to send the message anyway.
33793 <UL>   
33794 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33795 </UL><P>
33796 &lt;End of help on this topic&gt;
33797 </BODY>
33798 </HTML>
33799 ====== h_config_warn_if_no_to_or_cc =====
33800 <HTML>
33801 <HEAD>
33802 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
33803 </HEAD>
33804 <BODY>
33805 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
33807 This feature affects Alpine's behavior when you send a message being
33808 composed.
33809 If this option is set, Alpine will check to see if the message about to be sent
33810 has either a To address, a Cc address, or a Newsgroup.
33811 If none of these is set,
33812 you will be asked if you want to send the message anyway.
33815 This feature is closely related to
33816 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
33817 Alpine will normally ask if you want to copy a message only to the Fcc.
33818 This feature also applies to cases where there is a Bcc but still no To, Cc,
33819 or Newsgroup.
33820 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
33821 message with only an Fcc, then you won't be asked about sending with
33822 a blank To and Cc and Newsgroups header even if this feature is set.
33823 Similarly, if you have already been asked if you want to send to the Fcc
33824 only and you have answered Yes, then you won't be asked again about sending with
33825 blank To, Cc, and Newsgroups headers even if this feature is set.
33828 <UL>   
33829 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33830 </UL><P>
33831 &lt;End of help on this topic&gt;
33832 </BODY>
33833 </HTML>
33834 ====== h_config_quell_dead_letter =====
33835 <HTML>
33836 <HEAD>
33837 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
33838 </HEAD>
33839 <BODY>
33840 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
33842 This feature affects Alpine's behavior when you cancel a message being
33843 composed.  Alpine's usual behavior is to write the canceled message to
33844 a file named 
33845 <!--chtml if pinemode="os_windows"-->
33846 &quot;DEADLETR&quot;,
33847 <!--chtml else-->
33848 &quot;dead.letter&quot; in your home directory,
33849 <!--chtml endif-->
33850 overwriting any previous message. Under
33851 some conditions (some routine), this can introduce a noticeable delay.
33852 Setting this feature will cause Alpine NOT to write canceled compositions
33853 into the file.
33855 NOTE: Enabling this feature means NO record of canceled messages is
33856 maintained.
33858 This feature affects the newer option
33859 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
33860 number of dead letter files to keep around.
33861 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
33863 <UL>   
33864 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33865 </UL><P>
33866 &lt;End of help on this topic&gt;
33867 </BODY>
33868 </HTML>
33869 ====== h_config_quell_beeps =====
33870 <HTML>
33871 <HEAD>
33872 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
33873 </HEAD>
33874 <BODY>
33875 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
33877 This feature affects Alpine's behavior when it displays status message
33878 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
33879 will not affect the display of such messages, but will cause those that
33880 emit a beep to become silent.
33883 <UL>   
33884 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33885 </UL><P>
33886 &lt;End of help on this topic&gt;
33887 </BODY>
33888 </HTML>
33889 ====== h_config_suppress_user_agent =====
33890 <HTML>
33891 <HEAD>
33892 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
33893 </HEAD>
33894 <BODY>
33895 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
33897 If this feature is set then Alpine will not generate a
33898 <CODE>User-Agent</CODE> header in outgoing messages.
33900 <UL>   
33901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33902 </UL><P>
33903 &lt;End of help on this topic&gt;
33904 </BODY>
33905 </HTML>
33906 ====== h_config_quell_lock_failure_warnings =====
33907 <HTML>
33908 <HEAD>
33909 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
33910 </HEAD>
33911 <BODY>
33912 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
33914 This feature affects Alpine's behavior when it encounters a problem
33915 acquiring a mail folder lock.  Typically, a secondary file associated
33916 with the mail folder being opened is created as part of the locking
33917 process.  On some systems, such file creation has been administratively
33918 precluded by the system configuration.
33920 Alpine issues a warning when such failures occur, which can become bothersome
33921 if the system is configured to disallow such actions.  Setting this
33922 feature causes Alpine to remain silent when this part of lock creation fails.
33924 WARNING: systems that have been configured in a way that precludes locking
33925 introduce some risk of mail folder corruption when more than one program
33926 attempts to modify the mail folder.  This is most likely to occur to one's
33927 INBOX or other incoming message folder. 
33929 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
33931 <UL>   
33932 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33933 </UL><P>
33934 &lt;End of help on this topic&gt;
33935 </BODY>
33936 </HTML>
33937 ====== h_config_enable_role_take ======
33938 <HTML>
33939 <HEAD>
33940 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
33941 </HEAD>
33942 <BODY>
33943 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
33945 Normally, the Take command takes addresses from a message and helps you
33946 put them into your Address Book.
33947 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
33948 you may find it useful
33949 to be able to Take information from a message's headers and put it into
33950 a new Rule.
33951 When this feature is set, you will be given an extra prompt that gives
33952 you the choice to Take into the Address Book or Take into a rule.
33953 <P><UL>
33954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33955 </UL>
33957 &lt;End of help on this topic&gt;
33958 </BODY>
33959 </HTML>
33960 ====== h_config_enable_take_export ======
33961 <HTML>
33962 <HEAD>
33963 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
33964 </HEAD>
33965 <BODY>
33966 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
33968 Normally, the Take command takes addresses from a message and helps you
33969 put them into your Address Book.
33970 When this feature is set, you will be given an extra prompt that gives you
33971 the choice to Take addresses into a file instead of your Address
33972 Book.
33973 Only the user@domain_name part of the address is put in the file.
33974 <P><UL>
33975 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33976 </UL>
33978 &lt;End of help on this topic&gt;
33979 </BODY>
33980 </HTML>
33981 ====== h_config_quell_folder_internal_msg ======
33982 <HTML>
33983 <HEAD>
33984 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
33985 </HEAD>
33986 <BODY>
33987 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
33989 This feature determines whether or not Alpine will create 
33990 &quot;pseudo messages&quot; in folders that are in standard Unix or 
33991 MMDF format. <P> 
33993 Alpine will normally create these pseudo messages when they are not already
33994 present in a standard Unix or MMDF folder.  Their purpose is to record
33995 certain mailbox state data needed for correct IMAP and POP server
33996 operation, and also for Alpine to be able to mark messages as Answered when
33997 the Reply has been postponed.<P>
33999 Sites that do not use IMAP/POP for remote mail access, and that need to
34000 support mail tools that are adversely affected by the presence of the
34001 pseudo-messages (e.g. some mail notification tools) may enable this
34002 feature to tell Alpine not to create them.  Note that Alpine's 
34003 &quot;Answered&quot; flag
34004 capability will be adversely affected if this is done.<P>
34006 Note too that, even if this feature is enabled, Alpine will not remove
34007 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34008 or ipopd servers.) This feature has no effect on folders that are not in
34009 standard Unix or MMDF format, as pseudo-messages are not needed in the
34010 other formats to record mailbox state information.
34011 <P><UL>
34012 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34013 </UL>
34015 &lt;End of help on this topic&gt;
34016 </BODY>
34017 </HTML>
34018 ====== h_config_mulnews_as_typed ======
34019 <HTML>
34020 <HEAD>
34021 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34022 </HEAD>
34023 <BODY>
34024 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34026 This feature will be of little use to most users.
34027 It has no effect unless the feature
34028 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34029 is set.
34031 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34032 then the setting of this feature may have an effect on the names of the
34033 newsrc files used.
34034 Normally, the name of the news server will be canonicalized before it is
34035 used in the newsrc file name.
34036 For example, if you type the news server name
34039 <CENTER><SAMP>servername</SAMP></CENTER>
34042 it is likely that the canonical name will be something like
34045 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34048 Or it may be the case that
34051 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34054 is really an alias (a DNS CNAME) for
34057 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34060 If this feature is not set, then the canonicalized names will be used.
34061 If this feature is set, then the name you typed in (or put in your
34062 configuration) will be used.
34064 <P><UL>
34065 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34066 </UL>
34068 &lt;End of help on this topic&gt;
34069 </BODY>
34070 </HTML>
34071 ====== h_config_quell_empty_dirs ======
34072 <HTML>
34073 <HEAD>
34074 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34075 </HEAD>
34076 <BODY>
34077 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34079 This feature causes Alpine to remove from the display any directories
34080 that do not contain at least one file or directory.  This can be useful
34081 to prevent overly cluttered folder lists when a collection is stored on
34082 a server that treats all names as both a folder and a directory.
34085 Note, enabling this feature can cause surprising behavior!  For example,
34086 you can still use Add to create a directory, but unless you immediately
34087 enter that directory and create a folder, that newly created directory
34088 may not be displayed next time you enter the folder list.
34091 The description above is not quite correct.
34092 Only directories which potentially may hold messages are hidden if empty.
34093 That is, a directory which is really just a directory and is not selectable
34094 as a folder will not be hidden.
34095 Such directories can occur on servers that treat most names as both a folder
34096 and a directory.
34097 These directories are typically created implicitly when a folder is created
34098 inside a directory that does not yet exist.
34101 <UL>   
34102 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34103 </UL><P>
34104 &lt;End of help on this topic&gt;
34105 </BODY>
34106 </HTML>
34107 ====== h_config_termcap_wins =====
34108 <HTML>
34109 <HEAD>
34110 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34111 </HEAD>
34112 <BODY>
34113 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34115 This feature may affect Alpine's low-level input routines.  Termcap (or
34116 terminfo, depending on how your copy of Alpine was compiled and linked)
34117 is the name of the database that describes terminal capabilities.  In
34118 particular, it describes the sequences of characters that various keys
34119 will emit.
34122 An example would be the Up Arrow key on the keyboard.  Up
34123 Arrow is not a distinct character on most Unix systems.  When you press
34124 the Up Arrow key a short sequence of characters are produced.  This
34125 sequence is supposed to be described in the termcap database by the
34126 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34127 are using terminfo instead of termcap).
34130 By default, Alpine defines some terminal
34131 escape sequences that are commonly used.  For example, the sequence
34132 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34133 &quot;ESC&nbsp;[&nbsp;A&quot;
34134 is also recognized as an Up Arrow key.  These are chosen because common
34135 terminals like VT100's or ANSI standard terminals produce these
34136 sequences when you press the Up Arrow key.
34139 If your system's termcap
34140 (terminfo) database assigns some other function to the sequence
34141 &quot;ESC&nbsp;O&nbsp;A&quot;
34142 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34143 database assigns a sequence that doesn't begin with an escape
34144 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34145 This usually works fine
34146 because most terminals emit the escape sequences that Alpine has defined
34147 by default.  We have also found that it is usually better to have these
34148 defaults take precedence over the definitions contained in the database
34149 because the defaults are more likely to be correct than the database.
34152 There are some terminals where this breaks down.  If you want Alpine to
34153 believe the definitions given in your termcap (terminfo) database in
34154 preference to the defaults the Alpine itself sets up, then you may turn
34155 this feature on.  Then, sequences of characters that are defined in
34156 both termcap (terminfo) and in Alpine's set of defaults will be
34157 interpreted the way that termcap (terminfo) says they should be
34158 interpreted.  Also, if your terminal capabilities database assigns a
34159 sequence that doesn't begin with escape, it will not be ignored.
34162 <UL>   
34163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34164 </UL><P>
34165 &lt;End of help on this topic&gt;
34166 </BODY>
34167 </HTML>
34168 ====== h_config_cruise_mode =====
34169 <HTML>
34170 <HEAD>
34171 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
34172 </HEAD>
34173 <BODY>
34174 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
34176 This feature affects Alpine's behavior when you hit the
34177 &quot;Space&nbsp;Bar&quot; at
34178 the end of a displayed message.  Typically, Alpine complains that the end
34179 of the text has already been reached.  Setting this feature causes such
34180 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
34181 taking you to the next &quot;interesting&quot; message,
34182 or scanning ahead to the 
34183 next incoming folder with &quot;interesting&quot; messages.
34186 <UL>   
34187 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34188 </UL><P>
34189 &lt;End of help on this topic&gt;
34190 </BODY>
34191 </HTML>
34192 ====== h_config_cruise_mode_delete =====
34193 <HTML>
34194 <HEAD>
34195 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
34196 </HEAD>
34197 <BODY>
34198 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
34200 This feature modifies the behavior of Alpine's 
34201 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
34202 Setting this feature causes Alpine to implicitly delete read
34203 messages when it moves on to display the next &quot;interesting&quot; message.
34205 NOTE: Beware when enabling this feature AND the 
34206 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
34207 feature.
34209 <UL>   
34210 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34211 </UL><P>
34212 &lt;End of help on this topic&gt;
34213 </BODY>
34214 </HTML>
34215 ====== h_config_slash_coll_entire =====
34216 <HTML>
34217 <HEAD>
34218 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
34219 </HEAD>
34220 <BODY>
34221 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
34223 The slash (/) command is available from the MESSAGE INDEX screen when
34224 the folder is sorted by either Threads or OrderedSubject, and the
34225 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
34226 is set to something other than &quot;none&quot;.
34227 Normally, the slash command Collapses or Expands the subthread that
34228 starts at the currently highlighted message, if any.
34229 If this option is set, then the slash command Collapses or Expands the
34230 <EM>entire</EM> current thread instead of just the subthread.
34231 The current thread is simply the top-level thread that contains the
34232 current message.
34235 <UL>   
34236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34237 </UL><P>
34238 &lt;End of help on this topic&gt;
34239 </BODY>
34240 </HTML>
34241 ====== h_config_color_thrd_import =====
34242 <HTML>
34243 <HEAD>
34244 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
34245 </HEAD>
34246 <BODY>
34247 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
34249 This option affects only the THREAD INDEX screen.
34250 Whether or not you ever see a THREAD INDEX screen depends on the setting
34251 of the configuration option
34252 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
34253 and on the sort order of the index.
34256 If a message within a thread is flagged as Important
34257 and this option is set, then
34258 the entire line in the THREAD INDEX will be colored the color of the
34259 Index-important Symbol, which can be set using the
34260 <A HREF="h_color_setup">Setup Kolor</A> screen.
34263 <UL>   
34264 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34265 </UL><P>
34266 &lt;End of help on this topic&gt;
34267 </BODY>
34268 </HTML>
34269 ====== h_config_allow_goto =====
34270 <HTML>
34271 <HEAD>        
34272 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
34273 </HEAD>
34274 <BODY>
34275 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
34277 This feature modifies the behavior of Alpine's file browser.  Setting this
34278 feature causes Alpine to offer the "G Goto" command in the file browser.
34279 That is the default.
34283 The Goto command allows you to explicitly type in the desired directory.
34285 &lt;End of help on this topic&gt;
34286 </BODY></HTML>
34287 ====== h_config_add_ldap =====
34288 <HTML>
34289 <HEAD>
34290 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
34291 </HEAD>
34292 <BODY>
34293 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
34295 If both the Directory option
34296 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
34297 and this feature are set,
34298 then when an implicit directory lookup is done from the
34299 composer you will automatically be prompted to add the result of the
34300 directory lookup to your address book.
34302 <UL>   
34303 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34304 </UL><P>
34305 &lt;End of help on this topic&gt;
34306 </BODY>
34307 </HTML>
34308 ===== h_patterns_compat_behavior =====
34309 <HTML>
34310 <HEAD>
34311 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
34312 </HEAD>
34313 <BODY>
34314 <H1>Rules Behavior Changes in Pine 4.50</H1>
34316 In Alpine, Rules that contain unrecognized elements
34317 are ignored.
34318 In most cases, the unrecognized elements will be something that was
34319 added as a new Rules feature in a later version of Alpine.
34320 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
34321 ignore rules that contained unrecognized elements.
34322 For example, a new element of Rules that was added in Pine 4.50 is
34323 Age interval.
34324 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
34325 all messages older than a week red.
34326 Now, if you run Pine 4.44 using that same configuration file, it will not
34327 recognize the Age interval and so will just ignore it.
34328 That means that all messages will match that rule so all messages will
34329 be colored red when using Pine version 4.44.
34332 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
34333 However, since the behavior still exists in versions prior to Pine 4.50 and
34334 since Filtering is a potentially destructive operation, another measure
34335 was taken to attempt to avoid unintentional Filtering of messages.
34336 The first time that you run Alpine or a Pine that is version 4.50 or greater,
34337 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
34338 will be copied to a new Filters configuration variable
34339 with a different name (&quot;Patterns-Filters2&quot;).
34340 From then on, Alpine will continue to use the new
34341 variable.
34342 Of course, Pine version 4.44 or lower will continue to use the old
34343 variable.
34344 That means that if you are using Alpine
34345 and also using a version of Pine that is older than 4.50, they will not
34346 share the configuration information about Filters.
34347 If you make a change in one version you won't see it in the other version.
34350 Since Scoring can be used to trigger Filtering, the same thing has been
34351 done for Score rules.
34352 The old configuration variable name is (&quot;Patterns-Scores&quot;)
34353 and the new name is (&quot;Patterns-Scores2&quot;).
34354 The same is not true of Role, Indexcolor, and Other rules that are
34355 thought to be less harmful when a mistake is made.
34358 &lt;End of help on this topic&gt;
34359 </BODY>
34360 </HTML>
34361 ======= h_config_filt_opts_sentdate =======
34362 <HTML>
34363 <HEAD>
34364 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
34365 </HEAD>
34366 <BODY>
34367 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
34369 By default, the Age interval of a Pattern uses a message's time of
34370 arrival to compute the age of the message.
34371 If this feature is set, the date in the message's Date header will
34372 be used instead.
34374 &lt;End of help on this topic&gt;
34375 </BODY>
34376 </HTML>
34377 ======= h_config_filt_opts_notdel =======
34378 <HTML>
34379 <HEAD>
34380 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
34381 </HEAD>
34382 <BODY>
34383 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
34385 If this option is set then a message will be moved into the
34386 specified folder only if it is not marked for deletion.
34387 This is useful if you have multiple Alpine sessions running
34388 simultaneously and you don't want messages to be filtered into a
34389 folder more than once.
34390 It is also useful if you want to filter
34391 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
34392 This method is not foolproof.
34393 There may be cases where a message
34394 gets marked deleted and so it is never filtered into the folder.
34395 For example, if you deleted it in another Alpine session or another mail
34396 program that didn't use the filtering rule.
34398 This option has no effect if the Filter Action is not set to Move.
34400 &lt;End of help on this topic&gt;
34401 </BODY>
34402 </HTML>
34403 ======= h_config_filt_opts_nonterm =======
34404 <HTML>
34405 <HEAD>
34406 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
34407 </HEAD>
34408 <BODY>
34409 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
34411 If this option is set then this is a non-terminating rule.
34412 Usually, for each message, Alpine searches through the Filter Rules until
34413 a match is found and then it performs the action associated with that rule.
34414 Rules following the match are not considered.
34415 If this option is set then the search for matches will continue at the next
34416 rule.
34418 If a non-terminating rule matches then the actions associated with
34419 that rule, except for any implied deletion of the message, are performed
34420 before the match for the next rule is checked.
34421 For example, if the non-terminating rule sets the Important status, then that
34422 status will be set when the next rule is considered.
34423 However, if the non-terminating rule Moves the message, the message will
34424 actually be copied instead of copied and deleted so that it is still there
34425 for the next rule.
34426 A moved message is deleted after all the relevant rules have been checked.
34427 The name of the &quot;Move&quot; action is confusing in this case because
34428 a single message can be moved to more than one folder.
34429 It turns the Move into a Copy instead, but it is still followed by a deletion
34430 at the end.
34432 This option may be useful if you want to have a single message filtered to
34433 two different folders because it matches two different Patterns.
34434 For example, suppose you normally filter messages to a particular mailing
34435 list into one folder, and messages addressed directly to you into a second
34436 folder.
34437 If a message is sent to both you and the list (and you can tell that by
34438 looking at the headers of the message) this option may give you a convenient
34439 way to capture a copy to each folder.
34440 (It may also cause you to capture two copies to each folder,
34441 depending on whether your mail system delivers one or two copies of the
34442 message to you and on how the list works.)
34444 &lt;End of help on this topic&gt;
34445 </BODY>
34446 </HTML>
34447 ===== h_mainhelp_smime ======
34448 <HTML>
34449 <HEAD>
34450 <TITLE>S/MIME Overview</TITLE>
34451 </HEAD>
34452 <BODY>
34453 <H1>S/MIME Overview</H1>
34455 S/MIME is a standard for the public key encryption and signing of email.
34456 UNIX Alpine contains a basic implementation of S/MIME based on
34457 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries.
34458 To check if this version of Alpine supports S/MIME look at
34459 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34460 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34462 Some limitations:
34463 <UL>
34464    <LI> There is no PC-Alpine implementation.
34465    <LI> There is no provision for checking for CRLs
34466         (Certificate Revocation Lists) in Alpine.
34467    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34468    <LI> There is no mechanism available for feeding either an entire incoming
34469         or an entire outgoing message to an external
34470         filter and using that external filter to do S/MIME or PGP processing.
34471    <LI> Because the implementation currently uses OpenSSL, there is only a very
34472         limited integration with the Mac OS Keychain (the storing and access of
34473         public certificates).
34474 </UL>
34476 The S/MIME configuration screen is reached by going to the Main Menu and typing
34477 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
34480 <H2>S/MIME BASICS</H2>
34482 In order to digitally sign messages you send you must have a public/private key-pair.
34483 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
34484 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
34485 users or a company which provides certificates for its workers.
34486 These certificates are bound to an email address, so the identity being verified is the
34487 email address not a person's name.
34489 Mail is signed by using the sender's private key, which only the owner of the private key
34490 has access to.
34491 The signature is verified using the signer's public key, which anyone can
34492 have access to.
34493 With Alpine, the first time you receive a signed message the public key of the
34494 sender will be stored for future use.
34497 Mail is encrypted using the recipient's public key and decrypted by
34498 the recipient with their private key.
34501 You need a key of your own in order to sign outgoing messages and to have others
34502 encrypt messages sent to you.
34503 You do not need a key of your own to verify signed messages sent by others or to
34504 encrypt messages sent to others.
34506 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
34508 By default UNIX Alpine stores the certificates it uses in a directory in your
34509 home directory.
34510 The directory name is
34512 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
34514 Within that directory are three subdirectories.
34515 Each of the three subdirectories contains files with PEM-encoded contents,
34516 the default format for OpenSSL.
34517 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
34518 The files within that directory have names that are email addresses with the
34519 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
34520 An example filename is
34522 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34524 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
34525 your private key.
34526 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
34527 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
34528 Authorities that you want to trust but that aren't contained in the set of system CAs.
34529 Those files may have arbitrary names as long as they end with the
34530 suffix &quot;<SAMP>.crt</SAMP>&quot;.
34532 <H2>HOW TO SIGN AND ENCRYPT</H2>
34534 If you have a certificate you may sign outgoing messages.
34535 After typing the Ctrl-X command to send a message you will see the prompt
34537 <CENTER><SAMP>Send message?</SAMP></CENTER>
34539 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
34540 Typing the &quot;G&quot; command will change the prompt to
34542 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
34544 Typing the &quot;E&quot; command will change the prompt to
34546 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
34548 You may even type both to get
34550 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
34553 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
34555 The reading of a signed message should not require any special action on
34556 your part.
34557 There should be an editorial addition at the start of the message which
34558 says either
34560 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
34564 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
34566 If an encrypted message is sent to you the encrypted text will not
34567 be shown.
34568 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
34569 you are viewing the message) and supply your passphrase when asked.
34571 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
34572 which gives you some information about the certificate used to sign or encrypt the message.
34574 <H2>MISCELLANEOUS</H2>
34576 If you have access to a private certificate in the PKCS12 format, which 
34577 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
34578 use the following commands to generate private keys, public and certificate
34579 authorities certificates. In the examples below, we assume that the 
34580 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
34581 that your email address is &quot;your@address.com&quot;.
34584 In order to create a private key use the command
34586 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
34588 In order to create a public certificate use the command
34590 <CENTER><SAMP>
34591 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
34592 </SAMP></CENTER>
34594 In order to create a certificate authority certificate use the command
34596 <CENTER><SAMP>
34597 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
34598 </SAMP></CENTER>
34600 <P> If the previous command produces an empty file, it means that the 
34601 certificate authority was not included in the .p12 file, so you will have 
34602 to get it from some other sources. You will need these certificates, so 
34603 that you can validate correctly signatures.
34606 After you have exported these certificates and keys, you can  use the import 
34607 command in Alpine, from the S/MIME configuration screen,
34608 to import these certificates into Alpine. They will be available for use
34609 as soon as you import them.
34611 &lt;End of help on this topic&gt;
34612 </BODY>
34613 </HTML>
34614 ====== h_config_smime_pubcertdir =====
34615 <HTML>
34616 <HEAD>
34617 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
34618 </HEAD>
34619 <BODY>
34620 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
34622 UNIX Alpine only.
34624 If the option
34625 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34626 is set then this option will have no effect.
34628 Normally, Public Certificates for use with S/MIME will be stored in the directory
34629 which is the value of this option.
34630 Those certificates will be stored in PEM format, one certificate per file.
34631 The name of the file for the certificate corresponding to
34633 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34635 should be
34637 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
34639 For example, a file for user@example.com would be in the file
34641 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34643 in this directory.
34645 Use the Setup/SMIME screen to modify this variable.
34647 Typically, the public certificates that you have will come from S/MIME signed
34648 messages that are sent to you.
34649 Alpine will extract the public certificate from the signed message and store
34650 it in the certificates directory.
34651 These PEM format public certificates look something like:
34652 <PRE>
34653 -----BEGIN CERTIFICATE-----
34654 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
34655 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
34656 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
34658 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
34659 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
34660 -----END CERTIFICATE-----
34661 </PRE>
34663 <UL>   
34664 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34665 </UL><P>
34667 <UL>   
34668 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34669 </UL><P>
34670 &lt;End of help on this topic&gt;
34671 </BODY>
34672 </HTML>
34673 ====== h_config_smime_pubcertcon =====
34674 <HTML>
34675 <HEAD>
34676 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
34677 </HEAD>
34678 <BODY>
34679 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
34681 UNIX Alpine only.
34683 If this option is set it will be used instead of
34684 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34686 This option gives you a way to store certificates remotely on an IMAP server
34687 instead of storing the certificates one per file locally.
34688 In order to do that you just give this option a remote folder name for a folder
34689 which does not yet exist.
34690 The name is similar to the name you might use for a remote configuration file.
34691 A remote folder name might look something like:
34693 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
34696 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34697 about the syntax of folder names.
34699 Use the Setup/SMIME screen to modify this variable.
34701 <UL>   
34702 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34703 </UL><P>
34705 <UL>   
34706 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34707 </UL><P>
34708 &lt;End of help on this topic&gt;
34709 </BODY>
34710 </HTML>
34711 ====== h_config_smime_privkeydir =====
34712 <HTML>
34713 <HEAD>
34714 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
34715 </HEAD>
34716 <BODY>
34717 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
34719 UNIX Alpine only.
34721 In order to sign outgoing S/MIME messages you will need a
34722 personal digital ID certificate.
34723 You will usually get such a certificate from a certificate authority such as
34724 Thawte or CAcert.
34725 (In order to encrypt outgoing messages you don't need a personal digital ID, you
34726 need the public certificate of the recipient instead.)
34727 If the option
34728 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
34729 is set then this option will have no effect.
34731 Normally, Private Keys for use with S/MIME will be stored in the directory
34732 which is the value of this option.
34733 Those certificates will be stored in PEM format, one certificate per file.
34734 The name of the file for the certificate corresponding to your
34736 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34738 should be
34740 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
34742 For example, if your address is user@example.com the name of the file would be
34744 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
34746 in this directory.
34748 Use the Setup/SMIME screen to modify this variable.
34750 Typically, the private key that you have will come from a Certificate
34751 Authority.
34752 The private key should be stored in a PEM format file that
34753 looks something like:
34754 <PRE>
34755 -----BEGIN RSA PRIVATE KEY-----
34756 Proc-Type: 4,ENCRYPTED
34757 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
34759 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
34760 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
34761 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
34763 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
34764 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
34765 -----END RSA PRIVATE KEY-----
34766 </PRE>
34768 <UL>   
34769 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34770 </UL><P>
34772 <UL>   
34773 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34774 </UL><P>
34775 &lt;End of help on this topic&gt;
34776 </BODY>
34777 </HTML>
34778 ====== h_config_smime_privkeycon =====
34779 <HTML>
34780 <HEAD>
34781 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
34782 </HEAD>
34783 <BODY>
34784 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
34786 UNIX Alpine only.
34788 If this option is set it will be used instead of
34789 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34791 This option gives you a way to store keys remotely on an IMAP server
34792 instead of storing the keys one per file locally.
34793 In order to do that you just give this option a remote folder name for a folder
34794 which does not yet exist.
34795 The name is similar to the name you might use for a remote configuration file.
34796 A remote folder name might look something like:
34798 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
34801 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34802 about the syntax of folder names.
34804 Use the Setup/SMIME screen to modify this variable.
34806 <UL>   
34807 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34808 </UL><P>
34810 <UL>   
34811 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34812 </UL><P>
34813 &lt;End of help on this topic&gt;
34814 </BODY>
34815 </HTML>
34816 ====== h_config_smime_cacertdir =====
34817 <HTML>
34818 <HEAD>
34819 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
34820 </HEAD>
34821 <BODY>
34822 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
34824 UNIX Alpine only.
34826 If the option
34827 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
34828 is set then this option will have no effect.
34830 CACert is a shorthand name for certification authority certificate.
34831 Normally Alpine will use the CACerts that are located in the standard system
34832 location for CACerts.
34833 It may be the case that one of your correspondents has a Digital ID which has
34834 been signed by a certificate authority that is not in the regular set of system certificate
34835 authorities.
34836 You may supplement the system list by adding further certificates of your own.
34837 These should  be stored in the directory
34838 which is the value of this option.
34839 The certificates will be stored in PEM format, one certificate per file.
34840 The names of the files can be anything ending in &quot;.crt&quot;.
34842 Use the Setup/SMIME screen to modify this variable.
34844 These PEM format CA certificates look very similar to your public
34845 certificates for particular email addresses
34846 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
34848 <UL>   
34849 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34850 </UL><P>
34852 <UL>   
34853 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34854 </UL><P>
34855 &lt;End of help on this topic&gt;
34856 </BODY>
34857 </HTML>
34858 ====== h_config_smime_cacertcon =====
34859 <HTML>
34860 <HEAD>
34861 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
34862 </HEAD>
34863 <BODY>
34864 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
34866 UNIX Alpine only.
34868 If this option is set it will be used instead of
34869 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34871 This option gives you a way to store certificates remotely on an IMAP server
34872 instead of storing the certificates one per file locally.
34873 In order to do that you just give this option a remote folder name for a folder
34874 which does not yet exist.
34875 The name is similar to the name you might use for a remote configuration file.
34876 A remote folder name might look something like:
34878 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
34881 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34882 about the syntax of folder names.
34884 Use the Setup/SMIME screen to modify this variable.
34886 <UL>   
34887 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34888 </UL><P>
34890 <UL>   
34891 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34892 </UL><P>
34893 &lt;End of help on this topic&gt;
34894 </BODY>
34895 </HTML>
34896 ========== h_config_smime_sign_by_default ==========
34897 <HTML>
34898 <HEAD>
34899 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
34900 </HEAD>
34901 <BODY>
34902 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
34904 UNIX Alpine only.
34906 This feature only has an effect if your version of Alpine includes
34907 support for S/MIME.
34908 It affects Alpine's behavior when you send a message.
34909 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
34911 Only the default value is affected.
34912 In any case, you may still toggle the Signing option on or off before sending
34913 with the &quot;G Sign&quot; command (provided you have a personal digital ID
34914 certificate).
34916 <UL>   
34917 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34918 </UL><P>
34921 <UL>   
34922 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34923 </UL><P>
34924 &lt;End of help on this topic&gt;
34925 </BODY>
34926 </HTML>
34927 ========== h_config_smime_use_cert_store ==========
34928 <HTML>
34929 <HEAD>
34930 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
34931 </HEAD>
34932 <BODY>
34933 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
34935 UNIX Alpine only.
34937 This feature only has an effect if your version of Alpine includes
34938 support for S/MIME.
34939 It affects Alpine's behavior when you validate a message, and should
34940 not be disabled, unless you are performing a test.
34942 There are two important aspects of validation: validation of the message
34943 (that is, the message was not modified after it was sent) 
34944 as well as validation of the identity of the sender. This option has to 
34945 do with the latter. 
34947 In order to validate that the message came from the sender in the message
34948 and not an impersonator, Alpine can 
34949 either use the certificates that come in the message, or the ones that 
34950 you have personally stored. If this feature is enabled (the default) then 
34951 Alpine will use certificates that you have already saved in your store 
34952 and not those that come in the message to validate the sender of the 
34953 message. This behavior helps you prevent against impersonation, because 
34954 it is assumed that you trust the certificates that you have saved, and 
34955 might not trust those that came with the message that you are validating.
34957 <UL>   
34958 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34959 </UL><P>
34962 <UL>   
34963 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34964 </UL><P>
34965 &lt;End of help on this topic&gt;
34966 </BODY>
34967 </HTML>
34968 ========== h_config_smime_pubcerts_in_keychain ==========
34969 <HTML>
34970 <HEAD>
34971 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
34972 </HEAD>
34973 <BODY>
34974 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
34976 UNIX Alpine only.
34978 If this feature is set the Mac OS X default keychain will be used as the place
34979 to store public certificates instead of a
34980 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
34981 or a
34982 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
34984 <UL>   
34985 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34986 </UL><P>
34988 <UL>   
34989 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34990 </UL><P>
34991 &lt;End of help on this topic&gt;
34992 </BODY>
34993 </HTML>
34994 ========== h_config_smime_dont_do_smime ==========
34995 <HTML>
34996 <HEAD>
34997 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
34998 </HEAD>
34999 <BODY>
35000 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35002 UNIX Alpine only.
35004 Setting this feature turns off all of Alpine's S/MIME support.
35005 You might want to set this if you are having trouble due to the S/MIME support.
35007 <UL>   
35008 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35009 </UL><P>
35012 <UL>   
35013 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35014 </UL><P>
35015 &lt;End of help on this topic&gt;
35016 </BODY>
35017 </HTML>
35018 ========== h_config_smime_encrypt_by_default ==========
35019 <HTML>
35020 <HEAD>
35021 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35022 </HEAD>
35023 <BODY>
35024 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35026 UNIX Alpine only.
35028 This feature only has an effect if your version of Alpine includes
35029 support for S/MIME.
35030 It affects Alpine's behavior when you send a message.
35031 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35033 Only the default value is affected.
35034 In any case, you may still toggle the Encrypt option on or off before sending
35035 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35036 for the recipient).
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_remember_passphrase ==========
35050 <HTML>
35051 <HEAD>
35052 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35053 </HEAD>
35054 <BODY>
35055 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35057 UNIX Alpine only.
35059 This feature only has an effect if your version of Alpine includes
35060 support for S/MIME.
35061 If this option is set, you will only have to enter your passphrase for your private key
35062 once during an Alpine session.
35064 <UL>   
35065 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35066 </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_transfer_pub_to_con =====
35076 <HTML>
35077 <HEAD>
35078 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35079 </HEAD>
35080 <BODY>
35081 <H1>S/MIME: Transfer Public Certs to Container</H1>
35083 UNIX Alpine only.
35085 The Transfer command will copy the public certificates in your configured
35086 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35087 to the container in your configured
35088 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35089 This might be useful if you decide to switch from using a cert directory to a cert
35090 container.
35092 Warning: Any previous contents in the container will be lost.
35094 <UL>   
35095 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35096 </UL><P>
35098 <UL>   
35099 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35100 </UL><P>
35101 &lt;End of help on this topic&gt;
35102 </BODY>
35103 </HTML>
35104 ====== h_config_smime_transfer_pub_to_dir =====
35105 <HTML>
35106 <HEAD>
35107 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35108 </HEAD>
35109 <BODY>
35110 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35112 UNIX Alpine only.
35114 The Transfer command will copy the public certificates in your configured
35115 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35116 to the directory in your configured
35117 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35118 This might be useful if you decide to switch from using a cert container to a cert
35119 directory.
35121 <UL>   
35122 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35123 </UL><P>
35125 <UL>   
35126 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35127 </UL><P>
35128 &lt;End of help on this topic&gt;
35129 </BODY>
35130 </HTML>
35131 ====== h_config_smime_transfer_priv_to_con =====
35132 <HTML>
35133 <HEAD>
35134 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35135 </HEAD>
35136 <BODY>
35137 <H1>S/MIME: Transfer Private Keys to Container</H1>
35139 UNIX Alpine only.
35141 The Transfer command will copy the private keys in your configured
35142 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35143 to the container in your configured
35144 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35145 This might be useful if you decide to switch from using a key directory to a key
35146 container.
35148 Warning: Any previous contents in the container will be lost.
35150 <UL>   
35151 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35152 </UL><P>
35154 <UL>   
35155 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35156 </UL><P>
35157 &lt;End of help on this topic&gt;
35158 </BODY>
35159 </HTML>
35160 ====== h_config_smime_transfer_priv_to_dir =====
35161 <HTML>
35162 <HEAD>
35163 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35164 </HEAD>
35165 <BODY>
35166 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35168 UNIX Alpine only.
35170 The Transfer command will copy the private keys in your configured
35171 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35172 to the directory in your configured
35173 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35174 This might be useful if you decide to switch from using a key container to a key
35175 directory.
35177 <UL>   
35178 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35179 </UL><P>
35181 <UL>   
35182 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35183 </UL><P>
35184 &lt;End of help on this topic&gt;
35185 </BODY>
35186 </HTML>
35187 ====== h_config_smime_transfer_cacert_to_con =====
35188 <HTML>
35189 <HEAD>
35190 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
35191 </HEAD>
35192 <BODY>
35193 <H1>S/MIME: Transfer CA Certs to Container</H1>
35195 UNIX Alpine only.
35197 The Transfer command will copy the CA certificates in your configured
35198 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
35199 to the container in your configured
35200 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35201 This might be useful if you decide to switch from using a CA cert directory to a CA cert
35202 container.
35204 Warning: Any previous contents in the container will be lost.
35206 <UL>   
35207 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35208 </UL><P>
35210 <UL>   
35211 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35212 </UL><P>
35213 &lt;End of help on this topic&gt;
35214 </BODY>
35215 </HTML>
35216 ====== h_config_smime_transfer_cacert_to_dir =====
35217 <HTML>
35218 <HEAD>
35219 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
35220 </HEAD>
35221 <BODY>
35222 <H1>S/MIME: Transfer CA Certs to Directory</H1>
35224 UNIX Alpine only.
35226 The Transfer command will copy the CA certificates in your configured
35227 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35228 to the directory in your configured
35229 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35230 This might be useful if you decide to switch from using a CA cert container to a CA cert
35231 directory.
35233 <UL>   
35234 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35235 </UL><P>
35237 <UL>   
35238 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35239 </UL><P>
35240 &lt;End of help on this topic&gt;
35241 </BODY>
35242 </HTML>
35243 ====== h_config_smime_transfer_pubcon_to_key =====
35244 <HTML>
35245 <HEAD>
35246 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35247 </HEAD>
35248 <BODY>
35249 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35251 Mac OS X Alpine only.
35253 The Transfer command will copy the public certificates in your configured
35254 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35255 to your default Mac OS X Keychain.
35256 This might be useful if you decide to switch from using a cert container to using
35257 the Keychain to store your public certs, which you may do by using the
35258 feature
35259 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
35261 <UL>   
35262 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35263 </UL><P>
35265 <UL>   
35266 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35267 </UL><P>
35268 &lt;End of help on this topic&gt;
35269 </BODY>
35270 </HTML>
35271 ====== h_config_smime_transfer_pubkey_to_con =====
35272 <HTML>
35273 <HEAD>
35274 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35275 </HEAD>
35276 <BODY>
35277 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35279 UNIX Alpine only.
35281 The Transfer command will copy the public certificates in your configured
35282 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35283 to your default Mac OS X Keychain.
35284 This might be useful if you decide to switch from using a cert container to using
35285 the Keychain to store your public certs.
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_public_certificates =====
35298 <HTML>
35299 <HEAD>
35300 <TITLE>S/MIME: Manage Public Certificates</TITLE>
35301 </HEAD>
35302 <BODY>
35303 <H1>S/MIME: Manage Public Certificates</H1>
35305 UNIX Alpine only.
35307 This menu item allows you to manage your public certificates, this
35308 may include your own public certificate, but it normally includes
35309 certificates of people you correspond with. These certificates are
35310 saved by Alpine automatically when they are found in signed messages
35311 that you receive. This interface allows you to manage them, by
35312 giving you the option to delete them, or trust them (in the case
35313 of self-signed certificates).
35316 Please note that Alpine will not validate a message that was sent to you
35317 using a self-signed certificate, unless you decide to trust that certificate.
35318 Internally, a certificate is trusted by copying it to the
35319 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
35320 collection. If you decide that you want to stop trusting a self-signed
35321 certificate, you must delete such certificate from such collection.
35323 The <B>I</B> Import command available in this screen allows you to 
35324 import a command to this collection.
35326 <UL>   
35327 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35328 </UL><P>
35330 <UL>   
35331 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35332 </UL><P>
35333 &lt;End of help on this topic&gt;
35334 </BODY>
35335 </HTML>
35336 ====== h_config_smime_private_keys =====
35337 <HTML>
35338 <HEAD>
35339 <TITLE>S/MIME: Manage Private Keys</TITLE>
35340 </HEAD>
35341 <BODY>
35342 <H1>S/MIME: Manage Private Keys</H1>
35344 UNIX Alpine only.
35346 This option allows you to manage your private key. Normally a person has only
35347 one key, in the same way that a person only has one valid passport, or ID card,
35348 at any given time. This option allows you to manage private keys. You can
35349 delete them or import them. Additionally, you can view information
35350 about your public certificate, such as the issuer and the dates of validity
35351 of such certificate, among others.
35354 If you have more than one e-mail address for which you want to use the 
35355 same private key, you must add all those addresses to the private key at 
35356 the moment that the key is generated. When you receive a signed message using 
35357 a key generated for several e-mail addresses, Alpine will save a 
35358 certificate for each e-mail address included in such certificate.
35360 The <B>I</B> Import command available in this screen allows you to 
35361 import a command to this collection.
35363 <UL>   
35364 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35365 </UL><P>
35367 <UL>   
35368 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35369 </UL><P>
35370 &lt;End of help on this topic&gt;
35371 </BODY>
35372 </HTML>
35373 ====== h_config_smime_certificate_authorities =====
35374 <HTML>
35375 <HEAD>
35376 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
35377 </HEAD>
35378 <BODY>
35379 <H1>S/MIME: Manage Certificate Authorities</H1>
35381 UNIX Alpine only.
35383 This collection contains certificates that are needed to validate the 
35384 certificate of another person, and therefore contains certificates that 
35385 you trust. Typically a certificate is signed by another entity, called a 
35386 certificate authority. This option allows you to manage which certificates 
35387 you trust, allowing you to import them and to delete them or view information
35388 about each certificate, such as the issuer and the dates of validity
35389 of such certificate.
35391 The <B>I</B> Import command available in this screen allows you to 
35392 import a command to this collection.
35394 <UL>   
35395 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35396 </UL><P>
35398 <UL>   
35399 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35400 </UL><P>
35401 &lt;End of help on this topic&gt;
35402 </BODY>
35403 </HTML>
35404 ====== h_certificate_information =====
35405 <HTML>
35406 <HEAD>
35407 <TITLE>S/MIME: Certificate Information Screen</TITLE>
35408 </HEAD>
35409 <BODY>
35410 <H1>S/MIME: Certificate Information Screen</H1>
35412 UNIX Alpine only.
35414 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
35415 such as its owner, e-mail address, issuer, and interval of validity, 
35416 among others.
35418 In the case of public certificates, this screen shows you if there was a
35419 failure when attempting to validate such message. If the certificate is
35420 self-signed, then the <B>T</B> Trust command will be available, which
35421 you can use to trust such certificate and make Alpine not fail validating 
35422 signatures signed with such certificate.
35424 You can also mark a certificate deleted, with the <B>D</B> command, or 
35425 remove the deleted mark with the <B>U</B> undelete command.
35427 In the case of your private key, Alpine shows you the information
35428 from your public key. Additionally, Alpine allows you to see public
35429 and private information about your key, with the <B>B</B> and
35430 <B>R</B> commands respectively.
35431 <UL>   
35432 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35433 </UL><P>
35435 <UL>   
35436 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35437 </UL><P>
35438 &lt;End of help on this topic&gt;
35439 </BODY>
35440 </HTML>
35441 ====== h_config_smime_manage_public_menu =====
35442 <HTML>
35443 <HEAD>
35444 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
35445 </HEAD>
35446 <BODY>
35447 <H1>S/MIME: Commands that Manage Public Certificates</H1>
35449 UNIX Alpine only.
35451 This screen allows you to manage your public certificates. 
35453 The format of this screen is as follows. There are five fields: The 
35454 leftmost field is normally empty, but it could contain the letter 
35455 &quot;D&quot; to indicate that that certificate has been marked for 
35456 deletion. The next field is the e-mail address of the owner of the 
35457 certificate, shown in its entirety. The third and fourth field are the 
35458 first and last day validity for that certificate, respectively. The date
35459 is displayed in the user's locale unless the option 
35460 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
35461 is set. In this case, the month, day and year are represented by two
35462 digits, and the format used is mm/dd/yy. Finally, the fifth 
35463 field is what can be displayed of the MD5 hash of the certificate. You can 
35464 use any of the last three fields to distinguish between two certificates 
35465 for the same owner.
35467 Available commands in this screen and a short description of what they 
35468 do follows.
35469 <UL>
35470 <LI> <B>I</B> Imports a public certificate to this collection.
35471 <LI> <B>V</B> View information about a certificate such as the name of the person the
35472 certificate was issued to, its dates of validity, and validity status.
35473 <LI> <B>D</B> Marks a certificate deleted.
35474 <LI> <B>U</B> Removes the deletion mark on a certificate.
35475 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35476 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
35477 trust a certificate by copying it to the collection of trusted certificates.
35478 </UL>
35480 All commands provide feedback to let you know about their success or failure.
35482 <UL>   
35483 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35484 </UL><P>
35486 <UL>   
35487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35488 </UL><P>
35489 &lt;End of help on this topic&gt;
35490 </BODY>
35491 </HTML>
35492 ====== h_config_smime_manage_private_menu =====
35493 <HTML>
35494 <HEAD>
35495 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
35496 </HEAD>
35497 <BODY>
35498 <H1>S/MIME: Commands that Manage Private Keys</H1>
35500 UNIX Alpine only.
35502 This screen allows you to manage your private key.
35504 The format of this screen is as follows. There are five fields: The 
35505 leftmost field is normally empty, but it could contain the letter 
35506 &quot;D&quot; to indicate that that certificate has been marked for 
35507 deletion. The next field is the e-mail address of the owner of the 
35508 certificate, shown in its entirety. The third field is the first day of 
35509 validity for that certificate; the fourth field in the last day that that 
35510 certificate is valid, and the fifth field is what can be displayed of the 
35511 MD5 hash of the public certificate corresponding to this private key. You 
35512 can use any of the last three fields to distinguish between two 
35513 certificates for the same owner.
35515 Available commands and a short description of what they do follows.
35516 <UL>
35517 <LI> <B>I</B> Imports a new public key to this collection.
35518 <LI> <B>V</B> View information about the public certificate corresponding to this
35519 key.
35520 <LI> <B>D</B> Marks a key to be deleted.
35521 <LI> <B>U</B> Removes the deletion mark on a key.
35522 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
35523 Note that expunging a private key does not remove the public key, which must
35524 be removed separately.
35525 </UL>
35527 All commands provide feedback to let you know about their success or failure.
35529 <UL>   
35530 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35531 </UL><P>
35533 <UL>   
35534 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35535 </UL><P>
35536 &lt;End of help on this topic&gt;
35537 </BODY>
35538 </HTML>
35539 ====== h_config_smime_manage_cacerts_menu =====
35540 <HTML>
35541 <HEAD>
35542 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
35543 </HEAD>
35544 <BODY>
35545 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
35547 UNIX Alpine only.
35549 This screen allows you to manage your collection of certificates that you
35550 trust. 
35552 The format of this screen is as follows. There are five fields: The 
35553 leftmost field is normally empty, but it could contain the letter 
35554 &quot;D&quot; to indicate that that certificate has been marked for 
35555 deletion. The next field is the e-mail address of the owner of the 
35556 certificate, shown in its entirety. The third field is the first day of 
35557 validity for that certificate; the fourth field in the last day that that 
35558 certificate is valid, and the fifth field is what can be displayed of the 
35559 MD5 hash of the certificate. You can use any of the last three fields to 
35560 distinguish between two certificates for the same owner.
35562 Available commands and a short description of what they do follows.
35563 <UL>
35564 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
35565 done by reading the certificate and validating it. Once a certificate
35566 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
35567 to the certificate, if necessary.
35568 <LI> <B>V</B> View information about this certificate, such as its issuer 
35569 and validity dates.
35570 <LI> <B>D</B> Marks a certificate to be deleted.
35571 <LI> <B>U</B> Removes the deletion mark on a certificate.
35572 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35573 </UL>
35575 All commands provide feedback to let you know about their success or failure.
35577 <UL>
35578 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35579 </UL><P>
35581 <UL>   
35582 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35583 </UL><P>
35584 &lt;End of help on this topic&gt;
35585 </BODY>
35586 </HTML>
35587 ====== h_config_lame_list_mode =====
35588 <HTML>
35589 <HEAD>
35590 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
35591 </HEAD>
35592 <BODY>
35593 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
35595 This feature modifies the method Alpine uses to ask your IMAP
35596 server for folder names to display in the FOLDER LIST screen.
35597 It is intended to compensate for a small set of IMAP servers that
35598 are programmed to ignore a part of the request, and thus respond
35599 to Alpine's query with nonsensical results.
35602 If you find that Alpine is erroneously displaying blank folder lists,
35603 try enabling this feature.
35606 NOTE: Enabling this feature has consequences for the Goto and Save
35607 commands.  Many servers allow access to folders outside the area
35608 reserved for your personal folders via some reserved character,
35609 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
35610 allows, at the Goto and Save prompts, quick access to folders
35611 outside your personal folder collection without requiring a specific
35612 collection definition.  This behavior will generally not be available
35613 when this feature is enabled.
35616 <UL>   
35617 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35618 </UL><P>
35619 &lt;End of help on this topic&gt;
35620 </BODY>
35621 </HTML>
35622 ====== h_config_enable_mulnewsrcs =====
35623 <HTML>
35624 <HEAD>
35625 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
35626 </HEAD>
35627 <BODY>
35628 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
35630 This feature makes it so Alpine can use multiple newsrcs based on
35631 the news server being connected to, which allows for separate lists
35632 of subscribed-to newsgroups. When this feature is not set, there is only
35633 one list of newsgroups.
35635 Under this feature, the name of a newsrc is based on the news server.
35636 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
35637 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
35638 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
35639 Setting this feature for the first time will allow for the option of using
35640 your old newsrc the next time you read news.
35642 If this feature is set, then the feature
35643 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
35644 also may affect the name of the newsrc file that is used.
35646 <UL>   
35647 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35648 </UL><P>
35649 &lt;End of help on this topic&gt;
35650 </BODY>
35651 </HTML>
35652 ======= h_ab_export_vcard =======
35653 <HTML>
35654 <HEAD>
35655 <TITLE>Address Book Export Format</TITLE>
35656 </HEAD>
35657 <BODY>
35658 <H1>Address Book Export Format</H1>
35660 You are exporting address book data from Alpine to a file outside of Alpine.
35661 You are being asked to choose the format of the export.
35662 Here are the choices:
35664 <DL>
35665 <DT><EM>A</EM>ddress List</DT>
35666 <DD>
35667 The addresses from the address book entries you are saving
35668 from will be saved one address per line.
35669 Address book lists (those with more than one address) will have
35670 all of their addresses saved separately.
35671 </DD>
35673 <DT><EM>V</EM>Card</DT>
35674 <DD>
35675 The entries will be saved in
35676 <A HREF="h_whatis_vcard">vCard</A> format.
35677 </DD>
35679 <DT><EM>T</EM>ab Separated</DT>
35680 <DD>
35681 The entries will be saved in tab-separated columns.
35682 There will be just 4 columns of data that correspond to Alpine's
35683 Nickname field, Full Name field, Address field, and Comment field.
35684 It might prove useful to Select only the Simple, non-List address book
35685 entries before Saving.
35686 </DD>
35688 <DT><EM>^C</EM> Cancel</DT>
35689 <DD>
35690 Cancel out of the Save.
35691 </DD>
35693 </DL>
35697 &lt;End of help on this topic&gt;
35698 </BODY>
35699 </HTML>
35700 ====== h_config_predict_nntp_server =====
35701 <HTML>
35702 <HEAD>
35703 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
35704 </HEAD>
35705 <BODY>
35706 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
35708 This feature allows Alpine to assume that the open NNTP server at the
35709 time of composition is the NNTP server to which the message should be
35710 posted.  This is especially recommended when there are multiple News
35711 collections.  If this feature is not set, Alpine will try to post to the first server in
35712 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
35713 this feature also negates the need to add News collection servers to
35714 the <!--#echo var="VAR_nntp-server"--> variable.
35716 This feature can be especially handy when used in conjunction with
35717 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
35719 <UL>   
35720 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35721 </UL><P>
35722 &lt;End of help on this topic&gt;
35723 </BODY>
35724 </HTML>
35725 ====== h_config_nntp_search_uses_overview =====
35726 <HTML>
35727 <HEAD>
35728 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
35729 </HEAD>
35730 <BODY>
35731 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
35733 This feature should probably be turned on unless it causes trouble.
35734 The results of the NNTP overview command (XOVER) may be used to help
35735 with some searches in news groups.
35736 It should result in quicker response time.
35737 Turning this feature on apparently causes search results which are
35738 different from what you would get with the feature turned off on some
35739 servers.
35741 <UL>   
35742 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35743 </UL><P>
35744 &lt;End of help on this topic&gt;
35745 </BODY>
35746 </HTML>
35747 ====== h_config_thread_sorts_by_arrival =====
35748 <HTML>
35749 <HEAD>
35750 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
35751 </HEAD>
35752 <BODY>
35753 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
35755 This feature affects how a threading sort arranges threads.  The default way
35756 to arrange threads is by the date of the earliest message in the thread.
35757 This feature arranges threads by the last message to arrive in a thread.
35759 This feature causes old threads that get recent messages to sort to the bottom,
35760 where previously a message arrival to a thread would not rearrange the order of
35761 that thread.
35763 <UL>   
35764 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35765 </UL><P>
35766 &lt;End of help on this topic&gt;
35767 </BODY>
35768 </HTML>
35769 ====== h_config_textplain_int =====
35770 <HTML>
35771 <HEAD>
35772 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
35773 </HEAD>
35774 <BODY>
35775 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
35777 This feature modifies the method Alpine uses to display Text/Plain
35778 MIME attachments from the Attachment Index screen.  Normally, the
35779 &quot;View&quot; command searches for any externally defined (usually
35780 via the
35781 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
35782 and displays the selected text within that viewer.
35785 Enabling this feature causes Alpine to ignore any external viewer
35786 settings and always display text with Alpine's internal viewer.
35789 <UL>   
35790 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35791 </UL><P>
35792 &lt;End of help on this topic&gt;
35793 </BODY>
35794 </HTML>
35795 ====== h_config_wp_columns =====
35796 <HTML>
35797 <HEAD>
35798 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
35799 </HEAD>
35800 <BODY>
35801 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
35803 Web Alpine only.
35805 This configuration setting specifies the number of horizontal characters
35806 used to format various WebAlpine pages.  Smaller values will tend to reduce
35807 the amount of horizontal scrolling required to view pages within narrow
35808 browsers, such as those found on PDAs, and larger values will tend to 
35809 spread more information across the page.
35812 The Message List page uses the width to determine how many characters
35813 to assign each field.  Note, a smaller value may result in a disproportionate
35814 amount of blank space between fields on each line.  Similarly, a large
35815 value may result in cramped fields or horizontal scrolling.
35818 The Message View page uses this value to determine when to wrap lines
35819 in displayed message text.  Note, a smaller value may result in jagged
35820 right margins or confusing quoting.  A larger value may cause lines of text to
35821 run beyond the browser's right edge, requiring horizontal scrolling.
35824 <UL>   
35825 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35826 </UL><P>
35827 &lt;End of help on this topic&gt;
35828 </BODY>
35829 </HTML>
35830 ====== h_config_wp_state =====
35831 <HTML>
35832 <HEAD>
35833 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
35834 </HEAD>
35835 <BODY>
35836 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
35838 Web Alpine only.
35840 Various aspects of cross-session state.
35843 <UL>   
35844 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35845 </UL><P>
35846 &lt;End of help on this topic&gt;
35847 </BODY>
35848 </HTML>
35849 ====== h_config_wp_aggstate =====
35850 <HTML>
35851 <HEAD>
35852 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
35853 </HEAD>
35854 <BODY>
35855 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
35857 Web Alpine only.
35859 Aggregate operations tab state.
35862 <UL>   
35863 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35864 </UL><P>
35865 &lt;End of help on this topic&gt;
35866 </BODY>
35867 </HTML>
35868 ====== h_config_wp_indexlines =====
35869 <HTML>
35870 <HEAD>
35871 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
35872 </HEAD>
35873 <BODY>
35874 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
35876 Web Alpine only.
35878 Number of index lines in table.
35881 <UL>   
35882 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35883 </UL><P>
35884 &lt;End of help on this topic&gt;
35885 </BODY>
35886 </HTML>
35887 ====== h_config_wp_indexheight =====
35888 <HTML>
35889 <HEAD>
35890 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
35891 </HEAD>
35892 <BODY>
35893 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
35895 Web Alpine only.
35897 Index table row height.
35900 <UL>   
35901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35902 </UL><P>
35903 &lt;End of help on this topic&gt;
35904 </BODY>
35905 </HTML>
35906 ====== h_config_rss_news =====
35907 <HTML>
35908 <HEAD>
35909 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
35910 </HEAD>
35911 <BODY>
35912 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
35914 Web Alpine only.
35916 RSS News feed.
35919 <UL>   
35920 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35921 </UL><P>
35922 &lt;End of help on this topic&gt;
35923 </BODY>
35924 </HTML>
35925 ====== h_config_rss_weather =====
35926 <HTML>
35927 <HEAD>
35928 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
35929 </HEAD>
35930 <BODY>
35931 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
35933 Web Alpine only.
35935 RSS Weather feed.
35938 <UL>   
35939 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35940 </UL><P>
35941 &lt;End of help on this topic&gt;
35942 </BODY>
35943 </HTML>
35944 ====== h_config_send_confirms_only_expanded =====
35945 <HTML>
35946 <HEAD>
35947 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
35948 </HEAD>
35949 <BODY>
35950 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
35952 This Web Alpine option specifies whether or not a Send confirmations
35953 happens when a composed message is readied for sending or not.  The
35954 default behavior is to not confirm that the nicknames were expanded to
35955 the intended addresses.
35958 <UL>   
35959 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35960 </UL><P>
35961 &lt;End of help on this topic&gt;
35962 </BODY>
35963 </HTML>
35964 ====== h_config_enable_jump_command =====
35965 <HTML>
35966 <HEAD>
35967 <TITLE>FEATURE: enable-jump-command</TITLE>
35968 </HEAD>
35969 <BODY>
35970 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
35972 This Web Alpine option specifies whether or not a Jump command is
35973 offered in the Message List and Message View pages.  The command is
35974 implemented as an input field in the left column of the List and View
35975 screens. 
35978 When enabled and a number is entered in the input field while the
35979 Message List is displayed, the Message List is reframed with the
35980 specified message.  While viewing a message, the message associated
35981 with the specified message number is displayed.
35984 <UL>   
35985 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35986 </UL><P>
35987 &lt;End of help on this topic&gt;
35988 </BODY>
35989 </HTML>
35990 ====== h_config_enable_newmail_sound =====
35991 <HTML>
35992 <HEAD>
35993 <TITLE>FEATURE: enable-newmail-sound</TITLE>
35994 </HEAD>
35995 <BODY>
35996 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
35998 This Web Alpine option specifies whether or not a sound file is sent
35999 to the web browser along with the newmail notification message.
36003 <UL>   
36004 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36005 </UL><P>
36006 &lt;End of help on this topic&gt;
36007 </BODY>
36008 </HTML>
36009 ====== h_config_render_html_internally =====
36010 <HTML>
36011 <HEAD>
36012 <TITLE>FEATURE: render-html-internally</TITLE>
36013 </HEAD>
36014 <BODY>
36015 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36017 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36018 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36019 the HTML text into plain text in the same way Unix and PC-Alpine do.
36023 <UL>   
36024 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36025 </UL><P>
36026 &lt;End of help on this topic&gt;
36027 </BODY>
36028 </HTML>
36029 ====== h_config_role_undo =====
36030 Yes, remember changes and exit back to list of roles; No, discard changes
36031 made in this screen; ^C, cancel exit and stay in this config screen.
36032 ====== h_exit_editor =====
36033 S, save changes and exit from the editor; D, do not save changes but
36034 do exit from the editor; or ^C, cancel exit and stay in the editor.
36035 ====== h_config_undo =====
36036 Yes, save changes and exit; No, exit without saving any changes made since
36037 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36038 ====== h_os_index_whereis =====
36039 Enter ^V or ^Y to go immediately to the last or first message in the index.
36040 Or, enter the match string followed by RETURN.
36041 ====== h_os_index_whereis_agg =====
36042 Enter ^V or ^Y to go immediately to the last or first message in the index,
36043 Or, enter the match string followed by RETURN (or ^X to select all matches).
36044 =========== h_oe_add_full ==================
36045 Type the full name of the person being added and press the RETURN key.
36046 Press ^C to cancel addition.
36047 =========== h_oe_add_nick ==================
36048 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36049 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36050 ========== h_oe_add_addr ================
36051 Type the e-mail address and press RETURN.
36052 Press ^C to cancel addition.
36053 ========== h_oe_crlst_full ==============
36054 Type a long name or description for the list that you are creating and
36055 press RETURN.  Press ^C to cancel creation of list.
36056 =========== h_oe_crlst_nick =============
36057 Type a nickname (short, easy-to-remember name or single word) for the list
36058 you are creating and press RETURN.  Press ^C to cancel.
36059 ========== h_oe_crlst_addr ==============
36060 Type an e-mail address, or a nickname already in the address book that you
36061 want to be part of this list and press RETURN.
36062 ========== h_oe_adlst_addr =============
36063 Type an e-mail address or a nickname already in the address book that you
36064 want to add to this list and press RETURN.
36065 ========== h_oe_editab_nick ============
36066 Change the nickname using the arrow keys and delete key.  Press RETURN
36067 when done.  Press ^C to cancel editing and leave the nickname as it was.
36068 ========== h_oe_editab_full ============
36069 Change the full name using the arrow keys and delete key.  Press RETURN
36070 when done.  Press ^C to cancel editing and leave the full name as it was.
36071 ========== h_oe_editab_addr ============
36072 Change the address using the arrow keys and delete key.  Press RETURN
36073 when done.  Press ^C to cancel editing and leave the address as it was.
36074 ========== h_oe_editab_fcc ============
36075 Change the fcc using the arrow keys and delete key.  Press RETURN when
36076 done.  Press ^C to cancel editing and leave the fcc as it was.
36077 ========== h_oe_editab_comment ============
36078 Change the comment field using the arrow keys and delete key.  Press RETURN
36079 when done.  Press ^C to cancel editing and leave the comment as it was.
36080 ====== h_ab_forward =====
36081 Yes, expand nicknames and qualify local names with your current domain name;
36082 No, leave nicknames and local names as is;  ^C, cancel.
36083 ========== h_ab_export ==========
36084 Type the name of a file to write the addresses into and
36085 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36086 ========== h_ab_edit_a_field ==========
36087 Edit any of the fields of the currently selected entry by typing one of the
36088 letters at the bottom of the screen.  Press ^C to cancel edit.
36089 ====== h_ab_del_data_revert =====
36090 Press B to completely delete addrbook and revert to default, C to delete config
36091 and revert while leaving data, or D to only delete data (make it empty).
36092 ====== h_ab_del_data_modify =====
36093 Press B to completely delete addrbook, C to delete configuration while leaving
36094 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36095 ====== h_ab_del_config_modify =====
36096 Yes, remove this address book from my configuration.
36097 No, make no changes now.
36098 ====== h_ab_del_config_revert =====
36099 Yes, remove this address book from my config and revert to default.
36100 No, make no changes now.
36101 ====== h_ab_del_default =====
36102 Yes, remove this default address book from my configuration.
36103 No, make no changes now.
36104 ====== h_ab_really_delete =====
36105 Yes, delete the actual contents of the address book, not just the 
36106 configuration.  No, don't delete the data after all, cancel and start over.
36107 ====== h_ab_del_ignore =====
36108 Press I to ignore all the default address books for this category.  Press R to
36109 remove this one address book and add the others to your personal list.
36110 ====== h_ab_del_dir_ignore =====
36111 Press I to ignore all the default directory servers for this category.
36112 Press R to remove this one server and add the others to your personal list.
36113 ====== h_ab_copy_dups =====
36114 Yes, overwrite the existing entry.
36115 No, skip duplicates but save the rest. Press ^C to cancel.
36116 ====== h_confirm_cancel =====
36117 Type C to Confirm that you want to abandon the message you are composing.
36118 Type N or ^C to cancel out of the cancel and keep composing.
36119 ====== h_ab_text_or_vcard =====
36120 Text, start composer with displayed text already included.
36121 VCard, start composer with address book entry attached as a vCard. ^C cancels.
36122 ====== h_ab_backup_or_ldap =====
36123 Backup, copy email address from entry and allow editing of it.
36124 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
36125 ====== h_ldap_text_or_vcard =====
36126 Text: export displayed text for selected entry. Address: export only the
36127 email address. VCard: export entry in vCard format. ^C cancels.
36128 ====== h_ab_save_exp =====
36129 Save, save entry or entries to an address book.
36130 Export, save to file outside of pine. ^C cancels save.
36131 ====== h_ab_add =====
36132 A, add a brand new entry to this address book.
36133 E, edit the entry that is currently highlighted. ^C to cancel.
36134 ====== h_ab_shuf =====
36135 U, swap order of highlighted address book and the one above it.
36136 D, swap order of highlighted address book and the one below it. ^C to cancel.
36137 ====== h_ab_shuf_up =====
36138 U, swap order of highlighted address book and the one above it.
36139 Press ^C to cancel.
36140 ====== h_ab_shuf_down =====
36141 D, swap order of highlighted address book and the one below it.
36142 Press ^C to cancel.
36143 ====== h_folder_prop =====
36144 Count is # of messages in the folder, Unseen means messages that have not
36145 been read, New means messages that were Recently added to the folder.
36146 ====== h_role_shuf =====
36147 U, swap order of highlighted rule and the one above it.
36148 D, swap order of highlighted rule and the one below it. ^C to cancel.
36149 ====== h_role_shuf_up =====
36150 U, swap order of highlighted rule and the one above it.
36151 Press ^C to cancel.
36152 ====== h_role_shuf_down =====
36153 D, swap order of highlighted rule and the one below it.
36154 Press ^C to cancel.
36155 ====== h_incoming_shuf =====
36156 B, swap order of highlighted directory and the one before it.
36157 F, swap order of highlighted directory and the one after it. ^C to cancel.
36158 ====== h_incoming_shuf_up =====
36159 B, swap order of highlighted directory and the one before it.
36160 Press ^C to cancel.
36161 ====== h_incoming_shuf_down =====
36162 F, swap order of highlighted directory and the one after it.
36163 Press ^C to cancel.
36164 ====== h_dir_shuf =====
36165 U, swap order of highlighted directory and the one above it.
36166 D, swap order of highlighted directory and the one below it. ^C to cancel.
36167 ====== h_dir_shuf_up =====
36168 U, swap order of highlighted directory and the one above it.
36169 Press ^C to cancel.
36170 ====== h_dir_shuf_down =====
36171 D, swap order of highlighted directory and the one below it.
36172 Press ^C to cancel.
36173 ====== h_hdrcolor_shuf =====
36174 U, swap order of highlighted Header Color and the one above it.
36175 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
36176 ====== h_hdrcolor_shuf_up =====
36177 U, swap order of highlighted Header Color and the one above it.
36178 Press ^C to cancel.
36179 ====== h_hdrcolor_shuf_down =====
36180 D, swap order of highlighted Header Color and the one below it.
36181 Press ^C to cancel.
36182 ========== h_oe_editab_al ============
36183 Change the address using the arrow keys and delete key.  Press RETURN
36184 when done.  Press ^C to cancel editing and leave the address as it was.
36185 ========== h_dir_comp_search ===============
36186 Type a string to look for just like you would in the composer. Your configured
36187 rules for the servers with the implicit flag set will be used.
36188 ========== h_oe_searchab ===============
36189 Type the word or name you want to search for and press RETURN.  If you press
36190 RETURN without entering anything the word in [] will be searched for.
36191 ========== h_oe_chooseabook ==========
36192 Choose the address book you want to save the new entry in.
36193 Use ^N or ^P to change address books.  ^C to cancel.
36194 ========== h_oe_takeaddr ==========
36195 Edit the e-mail address using the arrow and delete keys.  Press RETURN
36196 when done.  Press ^C to cancel adding this entry to the address book.
36197 ========== h_oe_take_replace ==========
36198 Press R to replace the old entry with this new data.  You will still have
36199 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
36200 ========== h_oe_take_replace_or_add ==========
36201 Press R to replace the old entry.  Press A to add the selected addresses to
36202 the old existing list.  N to enter another nickname. ^C to cancel now.
36203 ========== h_oe_takename ==========
36204 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
36205 when done.  Press ^C to cancel adding this entry to the address book.
36206 ========== h_oe_takenick ==========
36207 Type a nickname (short easy-to-remember name, initials or single word) for this
36208 entry in the address book and press RETURN.  Press ^C to cancel addition.
36209 ========== h_oe_jump ==========
36210 Type the message number you want to jump to and press RETURN.  The word "end"
36211 represents the last message. Press ^C to cancel jumping to another message.
36212 ========== h_oe_jump_thd ==========
36213 Type the thread number you want to jump to and press RETURN.  The word "end"
36214 represents the last thread. Press ^C to cancel jumping to another thread.
36215 ========== h_oe_debuglevel ==========
36216 Higher number shows more debugging details.
36217 Press ^C if you want to cancel the change.
36218 ========== h_oe_broach ==========
36219 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
36220 to go to the previous/next collections in the list.  Press ^C to cancel goto.
36221 ========== h_oe_foldsearch ==========
36222 Type the text you want to search for in foldernames and press RETURN.  If you
36223 press RETURN without entering anything, any text in [] will be searched for.
36224 ========== h_oe_foldrename ==========
36225 Change the old name of the folder to the new name using the arrow and
36226 delete keys and press RETURN.  Press ^C to cancel rename.
36227 ========== h_oe_login ==========
36228 Enter your login name for the host you are opening the mailbox on.  Just press
36229 RETURN to use your login from this host as is, or edit it with delete key.
36230 ========== h_oe_passwd ==========
36231 Type your password for the host and login shown as part of the prompt.
36232 Press ^C to cancel opening folder.
36233 ========== h_oe_choosep ==========
36234 Enter the number associated with the printer you want to select.  Press ^C to
36235 cancel the printer selection.  The current selection is highlighted.
36236 ========== h_oe_customp ==========
36237 Type the name of the Unix print command and press RETURN.  Press ^C to
36238 cancel the printer selection.
36239 ========== h_oe_searchview ==========
36240 Type the word or name you want to search for and press RETURN.  If you press
36241 RETURN without entering anything the word in [] will be searched for.
36242 ========== h_oe_keylock ==========
36243 The keyboard is in use and locked by another user.  Only that user can
36244 unlock this keyboard by typing the password.
36245 ========== h_wt_expire ==========
36246 At the beginning of each month Alpine offers to rename your current sent-mail
36247 folder to one named for the month so you have a sent-mail folder for each month
36248 ========== h_wt_delete_old ==========
36249 It is the beginning of the month, and we need to conserve disk
36250 space.  Please delete any sent-mail that you do not need.
36251 ========== h_select_sort ==========
36252 Select the order for sorting the index by typing the capitalized letter.
36253 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
36254 ========== h_no_F_arg ============
36255 Enter name of file to be opened.
36257 ========== h_sticky_personal_name ==========
36258 Type in your name as you want it to appear on outgoing email.  This entry
36259 will be saved into your Alpine configuration file.
36260 ========== h_sticky_inbox ============
36261 INBOX syntax is usually {complete.machine.name}INBOX
36262 This entry will be saved in your Alpine configuration file.
36263 ========== h_sticky_smtp ============
36264 The name of the computer on your campus that relays your outgoing email
36265 to the Internet.  This entry will be saved in your Alpine configuration file.
36266 ========== h_sticky_user_id ==========
36267 The username or login-id part of your email address.  This entry will be
36268 saved in your Alpine configuration file.
36269 ========== h_sticky_domain ==========
36270 The domain part of your email address, NOT the name of your PC.  This
36271 entry will be saved in your Alpine configuration file.
36272 ========== h_bounce =========
36273 Enter the address or nickname of the intended recipient.  Alpine will resend
36274 the message, which will retain the original author's From: address.
36275 ========== h_incoming_add_folder_nickname =========
36276 Enter an (optional) nickname that will be used in lieu of the actual
36277 host and folder names in the FOLDER LIST display.
36278 ========== h_anon_forward ==========
36279 Enter the address of your intended recipient, or ^C to cancel.
36280 Example: jsmith@somewhere.edu
36281 ========== h_news_subscribe ==========
36282 Enter the name of the newsgroup to which you wish to subscribe,
36283 or ^C to cancel.  Example: comp.mail.pine
36284 ========== h_pipe_msg ==========
36285 Enter the name of the Unix command to which you wish to send this
36286 message, or ^C to cancel.
36287 ========== h_pipe_attach ==========
36288 Enter the name of the Unix command to which you wish to send this
36289 attachment, or ^C to cancel.
36290 ========== h_select_by_num ==========
36291 Enter a list of message numbers (or number ranges), or ^C to cancel.  The word
36292 "end" represents the last message. Example: 2-5,7-9,11,19,35-end
36293 ========== h_select_by_thrdnum ==========
36294 Enter a list of thread numbers (or number ranges), or ^C to cancel.  The word
36295 "end" represents the last thread. Example: 2-5,7-9,11,19,35-end
36296 ========== h_select_txt_from ==========
36297 Messages with From: headers containing the entered string will be selected.
36298 ^C to cancel. ^G again to see original options.
36299 ========== h_select_txt_not_from ==========
36300 Messages without From: headers containing the entered string will be selected.
36301 ^C to cancel. ^G again to see original options.
36302 ========== h_select_txt_to ==========
36303 Messages with To: headers containing the entered string will be selected.
36304 ^C to cancel. ^G again to see original options.
36305 ========== h_select_txt_not_to ==========
36306 Messages without To: headers containing the entered string will be selected.
36307 ^C to cancel. ^G again to see original options.
36308 ========== h_select_txt_cc ==========
36309 Messages with Cc: headers containing the entered string will be selected.
36310 ^C to cancel. ^G again to see original options.
36311 ========== h_select_txt_not_cc ==========
36312 Messages without Cc: headers containing the entered string will be selected.
36313 ^C to cancel. ^G again to see original options.
36314 ========== h_select_txt_subj ==========
36315 Messages with Subject: headers containing the entered string will be selected.
36316 ^C to cancel.  ^X enters Subject: line of current message.
36317 ========== h_select_txt_not_subj ==========
36318 Messages without Subject headers containing the entered string will be selected.
36319 ^C to cancel.  ^X enters Subject: line of current message.
36320 ========== h_select_txt_all ==========
36321 All messages containing the entered string will be selected.  Headers and body,
36322 but not encoded attachments, will be compared.  Enter ^C to cancel.
36323 ========== h_select_txt_not_all ==========
36324 All messages that don't contain the entered string will be selected.  Headers
36325 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
36326 ========== h_select_txt_body ==========
36327 All messages containing the entered string will be selected. Body text, but
36328 not headers or encoded attachments, will be compared. ^C to cancel.
36329 ========== h_select_txt_not_body ==========
36330 All messages that don't contain the entered string will be selected. Body
36331 text, but not headers or encoded attachments, will be compared. ^C to cancel.
36332 ========== h_select_txt_recip ==========
36333 Messages with Cc: or To: headers containing the entered string will be selected.
36334 ^C to cancel. ^G again to see original options.
36335 ========== h_select_txt_not_recip ==========
36336 Messages without Cc: or To: headers containing the string will be selected.
36337 ^C to cancel. ^G again to see original options.
36338 ========== h_select_txt_partic ==========
36339 Messages with Cc, To, or From headers containing the string will be selected.
36340 ^C to cancel. ^G again to see original options.
36341 ========== h_select_txt_not_partic ==========
36342 Messages without Cc, To, or From headers containing the string will be selected.
36343 ^C to cancel. ^G again to see original options.
36344 ========== h_select_date ==========
36345 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
36346 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
36347 ========== h_attach_index_whereis ==========
36348 Enter some text that appears in the Attachment Index entry for the desired
36349 attachment.  The first attachment containing that text will be highlighted.
36350 ========== h_kb_lock ==========
36351 Keystrokes entered here (up to a RETURN) comprise a password that must
36352 be entered again later in order to unlock the keyboard.
36353 ========== h_compose_default ==========
36354 N, compose a new message. R, set a role.
36355 ^C to cancel.
36356 ========== h_untranslatable ==========
36357 Send using UTF-8 character set; Send but replace untranslatable characters
36358 with question marks; return to the composer; or cancel message altogether.
36359 ========== h_compose_intrptd ==========
36360 N, compose a new msg. I, continue interrupted msg. R, set a role.
36361 ^C to cancel.
36362 ========== h_compose_postponed ==========
36363 N, compose a new message. P, continue postponed msg. R, set a role.
36364 ^C to cancel.
36365 ========== h_compose_intrptd_postponed ==========
36366 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36367 R, set a role. ^C to cancel.
36368 ========== h_compose_form ==========
36369 N, compose a new message. F, use form letter. R, set a role.
36370 ^C to cancel.
36371 ========== h_compose_intrptd_form ==========
36372 N, compose a new msg. I, continue interrupted msg. F, use form letter.
36373 R, set a role. ^C to cancel.
36374 ========== h_compose_postponed_form ==========
36375 N, compose a new message. P, continue postponed msg. F, use form letter.
36376 R, set a role. ^C to cancel.
36377 ========== h_compose_intrptd_postponed_form ==========
36378 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36379 F, use form letter. R, set a role. ^C to cancel.
36380 ========== h_config_context_del_except ==========
36381 If you delete the last exceptional collection you can only add it back by
36382 manually editing the exceptions config file.
36383 ========== h_config_whereis ==========
36384 To move quickly to a particular line, enter a search string or
36385 ^C to cancel.
36386 ========== h_config_edit_scorei ==========
36387 Enter interval in the form (min,max). -INF and INF may be used to represent
36388 -infinity and infinity. ^C to cancel change. RETURN to accept change.
36389 ========== h_config_add ==========
36390 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
36391 pressing RETURN sets the Empty Value (this turns off any global default).
36392 ========== h_config_add_custom_color ==========
36393 Enter a header fieldname. For example, "subject" or "from".
36395 ========== h_config_add_pat_hdr ==========
36396 Enter a header fieldname. For example, "reply-to" or "organization" or
36397 any fieldname you want that isn't included already.
36398 ========== h_config_print_opt_choice ==========
36399 You may edit either the initialization string (characters printed before
36400 printing starts) or the trailer string.  Choose one or ^C to cancel.
36401 ========== h_config_print_init ==========
36402 Enter a C-style string for this.  You may use common backslash escapes like
36403 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
36404 ========== h_config_change ==========
36405 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
36406 delete current (highlighted) character, etc.  Enter ^C to cancel change.
36407 ========== h_config_replace_add ==========
36408 Replace ignores the current default, Add places the current default in your
36409 editing buffer as if you had typed it in.
36410 ========== h_config_insert_after ==========
36411 Enter a nickname for this print command.  (InsertBefore puts the new item
36412 before the current line, InsertAfter puts it after the current line.)
36413 ========== h_config_print_cmd ==========
36414 Enter command to be executed for the printer.  Use normal editing keys
36415 to modify, ^C to cancel, carriage return to accept current value.
36416 ========== h_config_role_del ==========
36417 Answering Yes will remove this rule completely from your rules list.
36418 ========== h_config_role_addfile ==========
36419 Type the name of a file to add to your configuration. You don't need to
36420 use a file, you may add rules directly (with Add) without using a file.
36421 ========== h_config_role_delfile ==========
36422 Answering Yes will remove this rule file completely from your rules list.
36423 The rules data file itself will not be removed.
36424 ========== h_config_print_del ==========
36425 Answering Yes will remove this printer completely from your printer list.
36426 ========== h_config_print_name_cmd ==========
36427 You may edit the Nickname of this printer, the Command to be executed when
36428 printing, or change the Options associated with this printer.
36429 ========== h_send_check_fcc ==========
36430 Yes, send message without an Fcc.
36431 No, return to composer.
36432 ========== h_send_check_subj ==========
36433 Yes, send message without a Subject.
36434 No, return to composer.
36435 ========== h_send_check_to_cc ==========
36436 Yes, send message without a To address, or a Cc address, or a Newsgroup.
36437 No, return to composer.
36438 ========== h_send_fcc_only ==========
36439 Yes, copy message to Fcc only and send to NO recipients.
36440 No, return to composer.
36441 ========== h_send_prompt ==========
36442 Yes, send the message.
36443 No or ^C, return to composer.
36444 ========== h_send_prompt_flowed ==========
36445 Yes, send the message.  No or ^C, return to composer.
36446 What's Flowed? See Do Not Send Flowed Text in config screen.
36447 ========== h_send_prompt_dsn ==========
36448 Yes, send the message.  No or ^C, return to composer.
36449 What's DSNOpts? See Enable Delivery Status Notification in config screen.
36450 ========== h_send_prompt_dsn_flowed ==========
36451 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
36452 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
36453 ========== h_role_confirm ==========
36454 Yes, use displayed role. No, compose without a role.
36455 ^C, cancel the message. ^T, select a role from your other eligible roles.
36456 ========== h_norole_confirm ==========
36457 Return, compose without a role.
36458 ^C, cancel the message. ^T, select a role from your eligible roles.
36459 ========== h_custom_print ==========
36460 Enter a Unix command that accepts its data on standard input.
36461 Alpine will display any information the command sends to standard output.
36462 ========== h_convert_abooks_and_sigs ==========
36463 You will be given the opportunity to convert address books and signature files
36464 to remote configurations.
36465 ========== h_convert_abooks ==========
36466 You will be given the opportunity to convert address books to remote
36467 configurations.
36468 ========== h_flag_keyword ==========
36469 Enter the name of the keyword you want to add for this folder.
36470 No spaces, parentheses, braces, percents or asterisks are allowed.
36471 ========== h_select_keyword ==========
36472 Enter the keyword you want to match, or use ^T to select a keyword from a list
36473 of possible keywords for this folder. Use ! to look for non-matches instead.
36474 ========== h_type_keyword ==========
36475 Enter the keyword you want to add. You may add a nickname in the next step.
36476 No spaces, parentheses, braces, percents or asterisks are allowed.
36477 ========== h_type_keyword_nickname ==========
36478 Enter an optional nickname for the keyword you want to add.
36479 Type Carriage return to use the keyword name instead of a nickname.
36480 ========== h_convert_sigs ==========
36481 You will be given the opportunity to convert signature files to remote
36482 configurations.
36483 ========== h_convert_abook ==========
36484 Yes is fairly safe. You will be ADDing a remote address book that is a copy
36485 of the current address book. The current abook won't be removed automatically.
36486 ========== h_convert_sig ==========
36487 Answering Yes copies the contents of the signature file into your Alpine
36488 configuration file. After that, the contents of the file will not be used.
36489 ========== h_save_addman ==========
36490 Enter the simple name of the folder you want to add. Carriage return to
36491 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
36492 ========== h_reopen_folder ==========
36493 Yes reopens the folder, as if you were starting over. This uncovers new mail.
36494 No leaves the folder index as it was without discovering new mail.
36495 ========== h_convert_pinerc_server ==========
36496 This is the name of the host (computer) where the remote Alpine configuration
36497 will be stored. This should be an IMAP server that you have permission to use.
36498 ========== h_convert_pinerc_folder ==========
36499 Enter the correct remote folder name. This folder is special and should
36500 contain only configuration data. It shouldn't contain other mail messages.
36501 ========== h_role_compose ==========
36502 Compose a New message, Reply to current message, Forward current message, or
36503 Bounce message. Then you will be asked to choose one of your Roles to be used.
36504 ========== h_save_size_changed ==========
36505 The reported size of a message is not the same as the actual size. Answer Yes
36506 to continue and hope for the best or No to Cancel the entire Save.
36507 ========== h_select_by_larger_size ==========
36508 Enter a number or ^C to cancel. All messages greater than this many characters
36509 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
36510 ========== h_select_by_smaller_size ==========
36511 Enter a number or ^C to cancel. All messages less than this many characters
36512 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
36513 ========== h_preserve_field ==========
36514 Use 'p' to toggle between preserving or not preserving the original To:
36515 and Cc: fields of the message. Enter ^C to cancel message.