* Add .pine-crash to man page.
[alpine.git] / pith / pine.hlp
blob9d3623794de9f043f6ff606808cc2690aba2b783
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-2014 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 43 2014-02-09 15:14:42
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-->
157 <BR>Copyright 2013-2014 Eduardo Chappa
158 <BR>Copyright 2006-2008 University of Washington
159 </DIV>
162 Alpine is an &quot;Alternatively Licensed Program for Internet
163 News and Email&quot; produced until 2008 by the University of Washington.
164 It is intended to be an easy-to-use program for
165 sending, receiving, and filing Internet electronic mail messages and
166 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
167 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
168 is available as is a world wide web based version designed to run under the
169 Apache web server.
172 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
174 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
175 addresses bugs found in previous releases and has a few additions as well.
178 Additions include:
181 <UL>
182   <LI> Style tag in body of html message causes Alpine to not write its content
183        until a new &lt;/style&gt;
184   <LI> Pico: New subcommand of the search command, allows to reverse the
185        direction of search.
186   <LI> Upgrade UW-IMAP to Panda IMAP from 
187        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
188   <LI> Replace tabs by spaces in From and Subject fields to control for
189        size in screen of these fields. Change only in index screen display.
190   <LI> Add support to selective expunge through a subcommand of the 
191        select-apply commands. Read more in the <A 
192        HREF="h_index_cmd_expunge">help</A> for the expunge command.
193   <LI> Alpine does not attempt to automatically reopen a collection 
194        that was not opened due to cancellation by the user. 
195        Instead, the user must try to open it explicitly.
196   <LI> Alpine searches for a certificate that matches an email address in
197        all addresses in a certificate (instead of just the first 
198        one) but when it tries to unlock the certificate, it asks 
199        for the password for the first email address in that 
200        certificate.
201   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
202        server to use different ways to connect using ssl, for 
203        example {server.com/tls1} will attempt to connect to 
204        server.com at the ssl imap port (port 993) and establish a 
205        connection using TLSv1. These flags can be used in 
206        conjunction with the /ssl flag, the ssl flag is redundant. 
207        Conversely, however, the /ssl flag does not imply any of 
208        these flags; the /ssl flag means SSLv3 or, if not available, 
209        SSLv2 in the SSL port.
210   <LI> Experimental: Write the content-type of a message in 
211        lowercase, as some non-compliant servers do not understand 
212        uppercase content-type, such as those of GMX.de.
213   <LI> Opening a folder updates recent count in maildrops (this 
214        already works for other types of folders)
215   <LI> Automatically redraw screen after opening an attachment 
216        instead of simply clearing it.
217   <LI> Pico: Justification works without need of a predefined quote 
218        string. This allows justification of blocks of text that are 
219        indented with spaces.
220   <LI> Check bounds and tie strings off to improve security. Contributed 
221        by James Jerkins.
222 </UL>
225 Bugs that have been addressed include:
226 <UL>
227   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
228        in personal names. Reported by Lev Gorenstein.
229   <LI> When writing the .pinerc file, lines were truncated if they were longer
230        than 10,000 characters. This could cause data corruption, so now lines
231        are allowed to be of any length.
232   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
233        remove attachments before they were open by a mailcap viewer. It 
234        requires that the user has an equivalent to a command such as "ps 
235        auxww" to list the list of processes, and check if there is any 
236        program using the attachment. The default is "/bin/ps auxww", but 
237        it can be changed at compile time with the option --with-ps-cmd. 
238        See the help of the variable 
239        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
240        for more information.
241   <LI> S/MIME: signed messages that contained an attachment would not validate.
242   <LI> Crash when tcp connection to NNTP server was lost after connection
243        had been established, but lost immediately afterwards.
244   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
245   <LI> Save command did not warn of existence of a message with a deleted 
246        attachment in an aggregate save, unless cursor was positioned on a message 
247        with a deleted attachment. Reported by Florian Herzig.
248   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
249        in an IMAP server.
250   <LI> DATE tokens were not internally transformed to UTF-8, which made their
251        values not appear complete in the screen. Reported by Werner Scheinast.
252   <LI> Fixes to configure script so that it will not require PAM for every system.
253   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
254        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
255        during the build. Fix by Ulf-Dietrich Braumann.
256   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
257        needs to use tcl_getstringresult() instead. Reported by 
258        Ulf-Dietrich Braumann.
259   <LI> Quoted string in URL Viewers configuration variable were not 
260        unquoted before passing to viewer.
261   <LI> Fix in configure script to detect location of tcl library; add
262        /usr/local in FreeBSD and fix a bug in configure script that used 
263        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
264        by Werner Scheinast.
265   <LI> Move SSL configurations from UW-IMAP to configure script, and
266        update OpenSSL configuration for mac OSX.
267   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
268 </UL>
273 Version 2.11 addresses bugs found in previous releases and has a few 
274 additions as well.
277 Additions include:
280 <UL>
281    <LI> Alpine requires version 1.0.1c of Openssl to build.
282    <LI> Increase encryption of S/MIME encrypted messages.
283    <LI> Pico: Improvements in justification of paragraphs: lines that begin
284 with a quote string, followed by a space were considered individual paragraphs,
285 now they are considered part of a paragraph. Based on earlier joint work
286 with Jeff Franklin.
287    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
288    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
289 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
290    <LI> Added recognition of ws and wss URIs.
291    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
292  <A HREF="h_config_directory_color">directory names</A>,
293  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
294    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
295 used in the display of the INDEX SCREEN.
296    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
297 that adds the ability to preserve To: and Cc: fields when replying to a 
298 message, as specified by original sender.
299    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
300  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
301    <LI> Quota command includes subcommands for printing, forwarding, etc.
302 </UL>
305 Bugs that have been addressed include:
307 <UL>
308   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
309   <LI> Crash when resizing the screen in a configuration screen.
310   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
311   <LI> Do not use a shell to open a browser.
312   <LI> Configure script did not test for crypto or pam libraries.
313   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
314   <LI> Change Cygwin directory separator to &quot;/&quot;.
315   <LI> Alpine could set List- headers, contrary to RFC 2369.
316 </UL>
319 Version 2.10 addresses bugs found in previous releases and has a few 
320 additions as well.
323 Additions include:
326 <UL>
327    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
328    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
329    <LI> Foreign characters are decoded correctly in IMAP folders.
330    <LI> Question about breaking connection to slow servers includes their name.
331    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
332    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
333    <LI> Cygwin: Alpine builds without need of patch.
334    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
335    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
336    <LI> Add support for strong encryption of password file when S/MIME is built in.
337 </UL>
340 Bugs that have been addressed include:
343 <UL>
344    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
345    <LI> Double allocation of memory in Pico.
346    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
347    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
348    <LI> Not recognition of environment variables in some options.
349    <LI> Not display of login prompt during initial keystrokes.
350    <LI> justification of long urls breaks them.
351    <LI> Incorrect New Mail message when envelope is not available.
352    <LI> Inorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
353    <LI> Crash when resizing the screen after display of LDAP search.
354    <LI> Crash when redrawing screen while opening a remote folder collection.
355    <LI> Infinite loop in scrolltool function during notification of new mail.
356    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
357    <LI> No display of signed and encrypted S/MIME messages.
358    <LI> Alpine will not build with OpenSSL.
359    <LI> Crash for double locking in calls to c-client.
360    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
361    <LI> Ignore the references header when threading messages
362    <LI> No update of colors in index screen after update to addressbook.
363 </UL>
366 Version 2.01 addresses bugs found in previous releases and has a few 
367 additions as well.
370 Additions include:
373 <UL>
374    <LI> Fixed non-ASCII web alpine handling
375    <LI> Added web alpine help.
376    <LI> Allow web alpine inbox on second IMAP server.
377    <LI> Allow web alpine config reset after bad inbox-path gets set.
378    <LI> Added web alpine ability to create group contact from contact list members.
379    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
380    <LI> Tidied up web alpine script layout.
381    <LI> Fixed web alpine status message ordering
382    <LI> Added web alpine Fcc setting via Contacts in Compose
383    <LI> Fixed web alpine autodraft attachment issues
384    <LI> Fixed web alpine problems with recent count maintenance
385    <LI> Fixed web alpine newmail arrival display in message list
386    <LI> Added web alpine confirmation to folder create for Move/Copy
387    <LI> Added web alpine user-domain support
388    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
389 </UL>
392 Bugs that have been addressed include:
395 <UL>
396    <LI> In web alpine fixed delete all selected within a search result to reorient
397         correctly to whole-mailbox message list.
398    <LI> Fixed web alpine delete in view page to be sensitive to sort
399    <LI> Fixed web alpine open of folder within directory from folder manager page.
400    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
401    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
402    <LI> Fixed web alpine adding contacts from message list and view
403    <LI> Fixed web alpine create of non-existent fcc
404    <LI> Remove mistakenly left debugger statement in web alpine javascript.
405    <LI> Some UNIX alpine build problems fixed
406    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
407         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
408         by locale charmap call on some Solaris 8 systems.
409    <LI> MacOS Keychain logins were not working correctly with generic host names, like
410         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
411         new password requests when not needed
412    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
413         last folder in the list
414    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
415         looked for along with the email address
416    <LI> Changes to configure to get spellcheck options with work with arguments.
417    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
418         returned by gethostname (iPhone can do this)
419    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
420         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
421    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
422         Jake Scott of marganstanley.com.
423    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
424         is not used in alpine.
425    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
426         Apparently this causes RIM Blackberry BIS service problems. This is not
427         used in alpine.
428    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
429    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
430         Fix from Ludwig Nussel of SUSE and from Crispin.
431    <LI> Include whole filename in export filename history
432    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
433 </UL>
436 Version 2.00
437 addressed bugs found in previous releases and had a few additions as well.
439 Additions included:
442 <UL>
443    <LI> Redesigned Web Alpine interface
444    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
445         in UNIX versions of Alpine
446    <LI> Attempt to include the attachment filename as part of the name of the
447         temporary file used when viewing an attachment with an external program.
448         Add some randomness to that filename to make it hard to predict the filename.
449         Add a filename extension, usually derived from the type/subtype, to the
450         temporary filename. This was previously done only on Windows and MacOS X.
451    <LI> Enhance address completion in the composer (TAB command) so that it looks
452         through nicknames, fullnames, and addresses from the address book; addresses
453         from the message being viewed, if any; and the results from
454         <A HREF="h_direct_config">LDAP Directory Server</A>
455         lookups for all of the defined directory servers that have the
456         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
457         feature set.
458    <LI> Make the default character set setting more liberal in what it will accept
459         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
460    <LI> Remove the Alpine revision number from the titlebar in released versions
461         while leaving it there in snapshot versions
462    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
463         display of asterisks when you type a password for Alpine
464    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
465    <LI> When the
466         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
467         feature is turned on convert not only the dates in the index screen but also
468         the dates in the MESSAGE VIEW
469 </UL>
472 Bugs addressed in the 2.00 release included:
475 <UL>
476    <LI> Crash when using tab-completion for selecting a Save filename
477    <LI> Make Web Alpine help text images relative for more portability
478    <LI> Fixed attach save of html parts in Web Alpine
479    <LI> Viewing, printing, exporting, replying, and bouncing of message
480         digests was broken. Replying and bouncing should not have been
481         allowed at all for digests. It would be nice to have a more standard
482         index-like view of a message digest but that has not been addressed
483         with this minor bug fix.
484    <LI> Adjust wrapping of HTML messages so that the margins specified by
485         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
486         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
487         are observed correctly
488    <LI> Interrupt of WhereIs command in index was broken
489    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
490         option did not work correctly interpreting unknown characters in message headers
491    <LI> Long address lines could cause blank continuation lines
492    <LI> Save to a local default INBOX failed if the primary collection was also local,
493         which it is by default. The save went to  ~/mail/inbox instead.
494    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
495         inbox, not the inbox in the primary collection
496    <LI> Address book entries with lots of addresses would be truncated when
497         entered in the composer with a screen size wider than 270 or so charcters
498    <LI> Some fields in the index screen were truncated when the screen width was
499         wider than 256 characters
500    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
501         folder, and there is a more than 10 minute pause between typing the TAB
502         and typing the Yes
503 </UL>
506 Version 1.10(962)
507 addressed bugs found in previous releases and had a few additions as well.
509 Additions included:
512 <UL>
513    <LI> Add the possibility of setting a default role
514         (see <A HREF="h_role_select">Roles Screen</A>)
515         which may be convenient if your work flow involves acting in one
516         role for a while then switching to another role and staying in the
517         new role for another period of time
518    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
519         is encountered, ask the user if he or she wants to continue with the
520         risky Save anyway instead of aborting. This may be helpful if your
521         IMAP server is broken in this way but be aware that it is possible there
522         was a real error instead of just a broken server implementation.
523    <LI> Some configure adjustments for Kerberos detection and
524         for SCO OpenServer 5 support
525    <LI> Hide INBOX in a collection if it also appears as an
526         <A HREF="h_config_enable_incoming">Incoming Folder</A>
527    <LI> Show asterisks for feedback when the user is typing a password
528    <LI> Performance improvement for threading of large folders
529    <LI> Previously, the search used to find
530         Pattern matches containing To patterns searched for both To
531         and Resent-To headers. The relatively complicated search this
532         produces causes problems when using some deficient IMAP servers.
533         Now the default is to look only for To headers and ignore the
534         presence of Resent-To. The previous behavior may be restored
535         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
536    <LI> Add an
537         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
538         to help with reading malformed unlabeled messages
539    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
540    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
541    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
542 </UL>
545 Bugs addressed in the 1.10(962) release included:
548 <UL>
549    <LI> Crash when encountering certain errors from an SMTP server
550    <LI> Crash in composer caused by overflow in replace_pat()
551    <LI> Hang when authenticating to an SMTP server that fails with a
552         &quot;connection disconnected&quot; error
553    <LI> Bug in handling of trailing tab character in flowed text
554    <LI> Security enhancement for mailcap parameter substitution
555    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
556         did not work if the message being replied to was not flowed text
557         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
558         was not turned on
559    <LI> Don't allow printer to be changed through hidden config screen
560         if system administrator didn't want it to be allowed
561    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
562         should know that it won't work, causing error messages to appear
563    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
564         of double-quote double-quote didn't work right
565    <LI> Quoting wasn't being done to protect special characters from the
566         MacOS X shell when
567         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
568         was not defined
569    <LI> On MacOS X message attachments should be shown internally instead of
570         being shown using the Mail application
571    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
572         sometimes set the outgoing charset to X-UNKNOWN, making the result
573         unreadable
574    <LI> When the sending of a message failed lines with leading spaces had one
575         additional space inserted in each of those lines when the user
576         was returned to the composer
577    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
578         that contained non-ascii characters because it was truncating the
579         line being searched so that it was shorter than what was visible on
580         the screen
581    <LI> When composing, an attachment with a long name that causes wrapping in
582         just the wrong place would generate an error and cause the send
583         of the attachment to fail
584    <LI> After calling the file browser to attach a file in the composer, a resize
585         of the window when back in the composer would redraw the last screen that
586         had been shown in the browser instead of the current composer screen
587    <LI> Possible crash in index screen when encountering unparseable addresses
588         or when using one of the PRIORITY tokens or the HEADER token in the
589         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
590    <LI> Problems with Header Color editing if the configuration option
591         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
592         was inadvertently changed to the Empty Value in the hidden config screen
593    <LI> When resuming the final postponed message from an Exchange server the user
594         could get a certificate validation failure because alpine was trying
595         to validate the canonical name of the folder instead of the name the
596         user used
597    <LI> Windows line endings in a mimetypes file on a Unix system cause a
598         failure to find a match
599    <LI> Make matching of extension names case independent in mimetypes files
600    <LI> Windows dialog boxes for entering text were not working correctly
601    <LI> Replying to or Forwarding multipart/alternative messages which had a
602         single text/html part did not work well
603    <LI> Printing the print confirmation page caused a crash
604    <LI> A To line with a long, quoted personal name could display incorrectly
605         if it was close to the same width as the screen
606    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
607         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
608         are turned on hide (0/0) when the folder is empty
609    <LI> Folder completion while Saving didn't work if the collection being
610         saved to was the local home directory
611 </UL>
614 Version 1.00
615 was an evolutionary release based on
616 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
617 developed at the University of Washington.
618 It is upwards-compatible for existing Pine users.
621 Changes included:
623 <UL>
624    <LI> Ground-up reorganization of source code around addition
625         of "pith/" core routine library.
626    <LI> Fundamental improvement in Alpine's internal text handling, which
627         is now based exclusively on Unicode. This allows displaying incoming
628         messages and producing outgoing messages in many different languages.
629    <LI> Ground-up reorganization of build and install procedures
630         based on GNU Build System's autotools. NOTE, the included IMAP library
631         build is not based on autotools, so some features will not work. However,
632         it should get built automatically during the Alpine build process.
633    <LI> Web-based version included built on TCL designed to run under
634         a suitable CGI-supporting web server such as Apache.
635 </UL>
639 Details on changes in previous (prerelease) versions of Alpine
640 may be found at the following URL:
642 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/changes.html">http://www.washington.edu/alpine/changes.html</A></SAMP></CENTER>
645 <HR WIDTH="75%"><P>
647 <H2>Getting Help</H2>
648 <DL>
649 <DT>Online Help</DT>
650 <DD>
651 Every Alpine screen and command has associated help text
652 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
653 </DD>
655 <DT>Web Help</DT>
656 <DD>
657 The most current source of information about Alpine,
658 including new version availability, is the web page at
660 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></SAMP></CENTER>
661 </DD>
662 </DL>
664 Frequently Asked Questions (and answers) may be found at the following
665 URL:
667 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
670 <HR WIDTH="75%"><P>
672 <H2>Additional Information</H2>
674 General Alpine configuration information can be found
675 <A HREF="h_news_config">here</A>.
677 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
678 Alpine mailbox and <A HREF="http://www.washington.edu/imap/">IMAP</A> server
679 access is provided by the IMAP Toolkit Environment (c-client library)
680 version <!--#echo var="C_CLIENT_VERSION"-->.
681 <P> 
682 Alpine was developed by the Office of Computing &amp; Communications at
683 the University of Washington in Seattle.  A more complete list of
684 principal players and key contributors can be found on the credits Web
685 page at
688 <CENTER><A HREF="http://www.washington.edu/alpine/credits.html">http://www.washington.edu/alpine/credits</A></CENTER>
691 Alpine Copyright 2013-2014 Eduardo Chappa,
692 Copyright 2006-2008 University of Washington.
695 Additional legal notices can be found <A HREF="h_news_legal">here</A>
696 or at the web URL:
699 <CENTER><A HREF="http://www.washington.edu/alpine/overview/legal.html">http://www.washington.edu/alpine/overview/legal</A></CENTER>
702 &lt;End of Release Notes&gt;
703 </BODY>
704 </HTML>
705 ====== h_tls_failure_details ======
706 <HTML>
707 <HEAD>
708 <TITLE>Certificate Validation Details</TITLE>
709 </HEAD>
710 <BODY>
711 <H1>Certificate Validation Details</H1>
713 This screen gives details as to why the certificate validation failed: the
714 name of the desired server system; the reason for failure; and the name on
715 the certificate.  This is primarily of interest to experts.
718 &lt;End of help&gt;
719 </BODY>
720 </HTML>
721 ====== h_tls_failure ======
722 <HTML>
723 <HEAD>
724 <TITLE>TLS or SSL Failure</TITLE>
725 </HEAD>
726 <BODY>
727 <H1>TLS or SSL Failure</H1>
729 An attempt was made to establish a secure, encrypted connection to the
730 server system using either Transport Layer Security (TLS) or the older
731 Secure Sockets Layer (SSL).  This attempt failed.
734 You should contact your server system management for more assistance.
735 The problem is probably at the server system and not in Alpine or your local
736 system.  The text in this screen may be helpful for the server system
737 management in debugging the problem,
740 &lt;End of help&gt;
741 </BODY>
742 </HTML>
743 ====== h_tls_validation_failure ======
744 <HTML>
745 <HEAD>
746 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
747 </HEAD>
748 <BODY>
749 <H1>TLS and SSL Certificate Validation Failures</H1>
751 An attempt was made to establish a secure, encrypted connection to the
752 server system using either Transport Layer Security (TLS) or the older
753 Secure Sockets Layer (SSL).
756 An important part of this procedure is server certificate validation.  A
757 server certificate is an &quot;electronic identification card&quot; for the server
758 system that is signed by a well-known certificate authority (CA).  Alpine
759 compares the server system identity in the server certificate with the
760 name of the server system to which it is trying to connect.  Alpine also
761 verifies that the CA signature is authentic.
764 Some common failure conditions are:
767 <UL>
768   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
769 signed its own certificate.  This does not necessarily indicate anything
770 bad; the server operators may simply have elected to not purchase a
771 signed certificate from a certificate authority.
773   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
774 the signature on the server system is from an unknown certificate authority.
775 It can also mean that no certificate authority certificates have been
776 installed on the local UNIX system.
778   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
779 the same as either of the above two conditions in UNIX Alpine.  Note that
780 Windows systems typically have a full set of certificate authority
781 certificates installed, so it is more likely to be a self-signed
782 certificate than an unknown certificate authority.
784   <LI> Server name does not match certificate.  This means that the server
785 presented a proper signed certificate for a name other than the desired
786 name.
787 </UL>
790 Any of these conditions can indicate that you are being attacked and have
791 been directed to an imposter server that will record your password and
792 your private mail messages.  It can also mean something innocuous.
795 If you are certain that the problem is innocuous, you can append the
796 option
799 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
802 to the server system name where it appears in your configuration (e.g. the
803 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
804 a folder-collection, or a news or SMTP server).  This will
805 disable certificate validation.  On the other hand, if you are attacked,
806 you will get no warning if you do this.
809 &lt;End of Cert Validation Failures help&gt;
810 </BODY>
811 </HTML>
812 ====== h_release_tlscerts ======
813 <HTML>
814 <HEAD>
815 <TITLE>TLS and SSL usage note</TITLE>
816 </HEAD>
817 <BODY>
818 <H1>TLS and SSL usage note</H1>
821 When using Alpine from Unix or Windows 2000,
822 server certificates must be signed by a trusted certificate authority.
823 You may relax this requirement (at the cost of some security) by using
825 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
826 modifier in the mailbox name.
829 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
832 The fully-qualified host name of the server should be used
833 so that it matches the host name in the server certificate.
835 Here is an example of a host specification that directs Alpine to use
836 the SSL port (993) and an encrypted data stream.
838 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
840 &lt;End of TLS usage help&gt;
841 </BODY>
842 </HTML>
843 ====== h_news_config ======
844 <HTML>
845 <HEAD>
846 <TITLE>Alpine Configuration</TITLE>
847 </HEAD>
848 <BODY>
849 <H1>Alpine Configuration</H1>
851 <H2>Using Environment Variables</H2>
853 The values of Alpine configuration options may include environment variables
854 that are replaced by the value of the variable at the time Alpine is run
855 (and also at the time the config option is changed).
856 The syntax to use environment variables is a subset of the common Unix
857 shell dollar-syntax.
858 For example, if
860 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
862 appears in the value of an Alpine configuration option it is looked up in the
863 environent (using getenv(&quot;VAR&quot;)) and its
864 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
865 To include a literal dollar sign you may precede the dollar sign with another
866 dollar sign.
867 In other words, if the text
869 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
871 is the value of a configuration option, it will be expanded to
873 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
875 and no environment lookup will be done.
876 For Unix Alpine it will also work to use a backslash character to
877 escape the special meaning of the dollar sign, but $$ is preferable since
878 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
879 to be in a shared configuration file.
882 This all sounds more complicated than it actually is.
883 An example may make it clearer.
884 Unfortunately, the way in which environment variables are set is OS-dependent 
885 and command shell-dependent.
886 In some Unix command shells you may use
888 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
889    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
891 Now, if you use Alpine's Setup/Config screen to set
893 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
895 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
896 so that this would be equivalent to
898 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
900 Note, environment variable substitution happens after configuration
901 options that are lists are split into the separate elements of the list,
902 so a single environment variable can't contain a list of values.
905 The environment variable doesn't have to be the only thing
906 after the equal sign.
907 However, if the name of the variable is not at the end of the line or
908 followed by a space (so that you can tell where the variable name ends),
909 it must be enclosed in curly braces like
911 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
913 It is always ok to use the braces even if you don't need to.
915 It is also possible to set a default value for an environment variable.
916 This default value will be used if the environment variable is not
917 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
918 The syntax used to set a default value is
920 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
922 If the config file contains
924 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
926 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
927 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
928 the value that <SAMP>VAR</SAMP> was set to, otherwise,
929 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
930 the default value.
931 (Note that the variable is called &quot;personal-name&quot; in the config
932 file but is displayed in the config screen as
933 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
934 In general, the value that goes into a config file is never exactly the
935 same as the value you see on the screen.)
938 An example where an environment variable might be useful is the
939 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
940 Suppose most users used the server
942 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
944 but that there were some exceptions who used
946 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
948 In this case, the system manager might include the following line in
949 the systemwide default Alpine configuration file
951 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
953 For the exceptional users adding
955 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
957 to their environment should work.
959 Another example might be the case where a user has to use a different
960 SMTP server from work and from home.
961 The setup might be something as simple as
963 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
965 or perhaps a default value could be given.
966 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
967 a list of SMTP servers.
970 <H2>Configuration precedence</H2>
972 There are several levels of Alpine configuration.  Configuration values at
973 a given level override corresponding values at lower levels.  In order of
974 increasing precedence:
976 <UL>
977  <LI> built-in defaults
978  <LI> system-wide
979 <!--chtml if pinemode="os_windows"-->
980       config file from command line or provided
981       by "PINECONF" environment variable
982 <!--chtml else-->
983       pine.conf file
984 <!--chtml endif-->
985  <LI> personal configuration file
986  <LI> personal exceptions configuration file
987  <LI> command-line options
988  <!--chtml if pinemode="os_windows"--><!--chtml else-->
989  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
990 </UL>
992 The values in both the personal configuration file and the
993 <A HREF="h_config_exceptions">exceptions</A>
994 configuration file may be set using the Setup command.
995 Setup/Config is the command to change most of the personal configuration
996 options.
997 The other Setup subcommands are also used to change the configuration,
998 for example, Setup/AddressBook, Setup/Rules, and so on.
999 Changing the personal exceptions configuration is very similar.
1000 To change a value in the Config screen you would use the command
1001 Setup/eXceptions/Config.
1002 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1004 There are a couple exceptions to the rule that configuration values are replaced
1005 by the value of the same option in a higher-precedence file.
1006 The Feature-List variable has values that are additive, but can be
1007 negated by prepending &quot;no-&quot; in front of an individual feature name.
1008 So for features, each individual feature's value is replaced by the value
1009 of the same feature in a higher-precedence file.
1010 Note that this is done automatically for you when you change these values via
1011 the Setup/Config command.
1012 The other exception to the <EM>replace</EM> semantics happens when you
1013 use <A HREF="h_config_inheritance">configuration inheritance</A>
1014 for option lists.
1017 <H2>File name defaults</H2>
1019 Notes:<P>
1021 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1022 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1023 <BR> # = default file name is overridable in pinerc.
1024 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1025 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1026 <BR> + between the mailcap paths implies that the two files are combined.
1027 <BR> ; between other default paths implies that the first one found is used.
1028 </P>
1029 Alpine looks for most support files in the same directory it finds its
1030 personal configuration file (pinerc).  The -p command-line flag may be
1031 used to specify a particular path name for the pinerc file.  If a
1032 pinerc file does not exist, it will be created (if directory permissions
1033 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1034 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1035 file does not exist in either one, it will create one in the first of those
1036 two directories that is writable.  In detail:
1037 <PRE>
1039 PC-Alpine:
1041  executable     &lt;DOS search path&gt;&#92;pine.exe
1042  help index     &lt;exe dir&gt;&#92;pine.ndx
1043  help text      &lt;exe dir&gt;&#92;pine.hlp
1045  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1046  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1047  global cfg     $PINECONF
1049  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1050  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1051  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1052  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1053  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1054  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1055  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1056  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1057  postponed#     $HOME&#92;mail&#92;postpond.mtx
1058  interrupted    $HOME&#92;mail&#92;intruptd
1060 Unix Alpine:
1062  executable     &lt;Unix search path&gt;/pine
1063  persnl cfg     ~/.pinerc
1064  except cfg     ~/.pinercex
1065  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1066  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1067  local help     <!--#echo var="PINE_INFO_PATH"-->
1069  interrupted    ~/.pine-interrupted-mail
1070  debug          ~/.pine-debugN
1071  crash          ~/.pine-crash
1072  newsrc#        ~/.newsrc
1073  signature#     &lt;pinerc dir&gt;/.signature
1074  addressbook#   &lt;pinerc dir&gt;/.addressbook
1075  postponed#     ~/mail/postponed-msgs
1076  sentmail#      ~/mail/sent-mail
1077  mailcap#       ~/.mailcap + /etc/mailcap
1078                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1079  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1081  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1082  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1083  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1084  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1085  password       /etc/passwd
1087 Unix Alpine and PC-Alpine:
1089  .ab*           remote addressbook support files
1090  a[1-9]*        temporary (while Alpine is running) addressbook files
1092 </PRE>
1095 <H2>Mailcap files</H2>
1097 Alpine honors the mailcap configuration system for specifying external
1098 programs for handling attachments.  The mailcap file maps MIME attachment
1099 types to the external programs loaded on your system that can display
1100 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1101 distribution.  It includes comments that explain the syntax you need to
1102 use for mailcap.  With the mailcap file, any program (mail readers,
1103 newsreaders, WWW clients) can use the same configuration for handling
1104 MIME-encoded data.
1107 <H2>MIME-Types files</H2>
1109 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1110 what Content-Type to use for labeling an attached file, based on
1111 the file extension.  That is, this file provides a mapping between
1112 filename extensions and MIME content-types.
1115 <H2>Environment variables</H2>
1117 PC-Alpine uses the following environment variables:
1118 <DL>
1119 <DT>PINERC</DT>
1120 <DD>Optional path to pinerc file.</DD>
1121 <DT>PINERCEX</DT>
1122 <DD>Optional path to personal exceptions configuration file.</DD>
1123 <DT>PINECONF</DT>
1124 <DD>Optional path to global pine config file.</DD>
1125 <DT>HOME</DT>
1126 <DT>TMPDIR, TMP, or TEMP</DT>
1127 <DT>COMSPEC</DT>
1128 <DT>MAILCAPS</DT>
1129 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1130 <DT>USER_DICTIONARY</DT>
1131 <DD>Used to specify the file to contain the user's spell check
1132 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1133 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1134 </DL>
1136 Unix Alpine uses the following environment variables:
1137 <DL>
1138 <DT>TERM</DT>
1139 <DD>Tells Alpine what kind of terminal is being used.</DD>
1140 <DT>DISPLAY</DT>
1141 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1142 <DT>SHELL</DT>
1143 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1144 <DT>TMPDIR, TMP, or TEMP</DT>
1145 <DT>MAILCAPS</DT>
1146 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1147 </DL>
1148 <!--chtml if pinemode="os_windows"-->
1150 <H2>Common PC-Alpine Configuration Problems</H2>
1152 <H3>Configuration settings aren't being saved</H3>
1154 <P>This problem can happen if you run pine from one directory and
1155 then decide to move your pine directory to another location.  PC-Alpine
1156 stores certain variables, including the configuration location, in the
1157 Windows Registry (which you shouldn't ever need to manually edit).  There
1158 are a couple of ways to go about removing or resetting the values in the
1159 registry.
1162 1) Run PC-Alpine's registry value deletion command.  This can be done by
1163 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1164 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1165 value to the above command.
1168 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1169 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1170 option, you can tell PC-Alpine the location of your pinerc.  An example of
1171 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;.
1172 Again, you can use the DOS prompt or the shortcut method explained in (1).
1175 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1176 set registry values to the current setting, and is therefore useful with
1177 the &quot;-p&nbsp;PINERC&quot; option.
1179 <!--chtml endif-->
1181 &lt;End of Configuration Notes&gt;
1182 </BODY>
1183 </HTML>
1184 ====== h_news_legal ======
1185 <html>
1186 <head>
1187 <TITLE>Alpine Legal Notices</TITLE>
1188 </head>
1189 <body>
1191 <H1>Alpine Legal Notices</H1>
1193 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1197 &lt;End of Alpine Legal Notices&gt;
1198 </BODY>
1199 </HTML>
1200 ===== h_info_on_mbox =====
1201 <HTML>
1202 <HEAD>
1203 <TITLE>Information on mbox driver</TITLE>
1204 </HEAD>
1205 <BODY>
1206 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1208 Beginning with Pine 4.00 (Pine came before Alpine)
1209 a new INBOX access method is
1210 available as part of the standard configuration.  It is called the
1211 &quot;mbox&quot; driver and it works like this:<P>
1214 <BLOCKQUOTE>
1215 If the file &quot;mbox&quot; exists in the user's home directory, and
1216 is in Unix mailbox format, then when INBOX is opened this file will be
1217 selected as INBOX instead of the mail spool file.  Messages will be
1218 automatically transferred from the mail spool file into the mbox
1219 file.
1220 </BLOCKQUOTE>
1223 The advantage of this method is that, after new mail has been copied
1224 from the system mail spool, all subsequent access is confined to the
1225 user's home directory, which is desirable on some systems.  However, a
1226 possible disadvantage is that mail tools other than those from the
1227 University of Washington will not know to look for mail in the user's
1228 mbox file.  For example, POP or IMAP servers other than those from the
1229 University of Washington, and many &quot;new mail notification&quot;
1230 programs may not work as expected with this driver enabled.<P>
1232 To disable this behavior, either remove/rename the &quot;mbox&quot;
1233 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1234 option in Setup/Config
1235 and add &quot;mbox&quot; to it:
1237 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1239 &lt;End of help on this topic&gt;
1240 </BODY>
1241 </HTML>
1242 ===== h_info_on_locking =====
1243 <HTML>
1244 <HEAD>
1245 <TITLE>FAQs on Alpine Locking</TITLE>
1246 </HEAD>
1247 <BODY>
1248 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1250 There is an extensive section on locking in the Alpine technical notes;
1251 this information is intended to provide answers to some common questions:<P>
1252 <OL>
1253 <LI> Why did locking change in Pine 4.00?<BR>
1254 The actual locking mechanisms did not change in 4.00.
1255 What changed is that when one particular locking mechanism used by Alpine 
1256 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1257 failure would occur, but no warning was issued.<P>
1259 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1260 Yes.  It means that Alpine was unable to create a lockfile in the
1261 spool directory, generally because of overly restrictive protections on the
1262 spool directory.  The correct permissions on the spool directory for
1263 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1264 with the sticky-bit set, so only owners of a file can delete them.<P>
1266 <LI> Why does Alpine require that the mail spool directory have 1777
1267    protections?<BR>
1268 Alpine was designed to run without special privileges.  This means that in
1269 order to create a lockfile in the spool directory, it is necessary to have
1270 the spool directory permissions be world-writable.<P>
1272 <LI> Can't you create the lockfile somewhere else?<BR>
1273 No.  The lockfile in question must be in the mail spool directory, because
1274 that's where the mail delivery program expects to find it, and the purpose
1275 of the file is to coordinate access between the mail client (Alpine) and the
1276 mail delivery program.<P>
1278 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1279 No.  Remember that the individual mail files in the spool directory are
1280 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1281 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1282 -- means that only the owner of the file (or root) can delete files in the 
1283 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1284 anyone could
1285 create a random file in the spool directory.  If the spool directory is
1286 under quota control along with home directories, there is little incentive
1287 for anyone to do this, and even without quotas a periodic scan for
1288 non-mail files usually takes care of the problem.  <P>
1290 <LI> Why not run Alpine as setgid mail?<BR>
1291 Alpine was never designed to run with privileges, and to do so introduces a
1292 significant security vulnerability.  For example, if a user suspends Alpine,
1293 the resulting shell will have group privileges.  This is one example of
1294 why we strongly recommend against running Alpine as a privileged program.
1295 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1296 users
1297 could not test Alpine versions or other mailers that had not been installed
1298 by the system administrators.<P>
1301 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1302 There are, but they all have different sets of tradeoffs, and not all will
1303 work on all systems.  Some examples:<UL>
1304  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1305    spool is local.   Doesn't work reliably if NFS is used.
1306    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1307    use the same calls.
1308  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1309    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1310 mail tools that always look in the spool directory for the mail.
1311 </UL><P>
1313 <LI> Are these spool directory lock files the only kinds of locks used by
1314    Alpine?<BR>
1315 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1316 mailbox format folders, these are used to coordinate access between
1317 multiple Alpine sessions.  <P>
1319 <LI> What about the 
1320 <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>
1321 This is for people who are content to live dangerously, or who have
1322 specific knowledge that the spool directory lockfiles are superfluous on
1323 their system (because both Alpine and the mail delivery program are using 
1324 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1326 <LI> Where can I find more details on how Alpine locking works?<BR>
1327 See the Alpine Technical Notes.<P>
1329 </OL>
1331 &lt;End of help on this topic&gt;
1332 </BODY>
1333 </HTML>
1334 ===== h_finding_help ====
1335 <HTML>
1336 <HEAD>
1337 <TITLE>Finding more information and requesting help</TITLE>
1338 </HEAD>
1339 <BODY>
1340 <H1>Places to Look for More Answers</H1>
1341 If you have questions about or problems with Alpine that you cannot resolve 
1342 after consulting the program's internal, context-sensitive help screens, here 
1343 are additional information resources that you may find helpful:
1345 <UL>
1346   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1348   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1350   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1351 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1352   since the last version, which may be useful for you to be aware of, 
1353 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1354 a change in the way an aspect of Alpine works.  There, you will also find notes 
1355 on Alpine configuration.<P>
1357   <LI> The Alpine Information Center (maintained by the University of
1358            Washington) World Wide Web site contains, among other things
1359            <UL>
1360            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
1361            <LI>an overview of the basics for beginning Alpine users
1362            <LI>Technical Notes for systems administrators
1363            <LI>archives (including a searchable index) of the alpine-info 
1364 mailing list, on which matters of interest to systems/email administrators,
1365 developers, trainers, user support personnel, and others involved with Alpine 
1366 messaging on a &quot;technical&quot; level are discussed.
1367 </UL>
1368         The Alpine Information Center can be accessed with a WWW browser at:<P>
1369             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
1370 </UL>
1371 <P><HR WIDTH="75%">
1372 <H1>Requesting help</H1>
1373 If the internal help, the Release Notes, the Alpine Information Center, and your 
1374 local online and print resources do not help you resolve a problem, please
1375 start by contacting your local computer support staff and asking for help.
1377 This is especially true if:
1378 <ul>
1379   <li>You suddenly have trouble sending or receiving mail.
1380   <li>You receive a "disk quota exceeded" message.
1381   <li>You have forgotten your password.
1382   <li>You think your account may have been compromised.
1383   <li>You need help viewing an attachment.
1384   <li>You need to know how to configure your:
1385       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
1386       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
1387       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
1388       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
1389   <li>You want to know what alternative editors or spellcheckers you may be able to use.
1390   <li>You want to block email from a particular person.
1391   <li>You're going on vacation and need to autorespond to incoming mail.
1392   <li>You want to automatically file or filter incoming messages.
1393 </ul>
1395 In all of these cases,
1396 you should contact <B>your</B> support staff, because <B>only they</B> 
1397 will be able to assist you effectively. Your support staff may be, depending on who 
1398 provides you with the email account you use Alpine with, for example:<UL>
1399 <LI> the computing help desk of (a department of) your university, school, 
1400 employer, ... ; or
1401 <LI> the customer service center of your Internet Service Provider; or
1402 <LI> the friendly volunteer helpers of your Freenet; or
1403 <LI> the person who setup your computer and internet connection.
1404 </UL>
1406 Due to the large number of Alpine installations worldwide, and because we
1407 receive no funding for it, the Alpine development team <B>cannot provide 
1408 individual support services outside the University of Washington</B>.
1410 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
1411 newsgroup can be a valuable source of information and assistance for Alpine 
1412 user issues.
1414 For systems/email administrators, developers, trainers, user support
1415 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
1416 level, the mailing list alpine-info is available; for information on
1417 subscribing and posting to it, see
1419 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
1422 Regardless of whom you are asking for help with Alpine, remember 
1423 to provide as much detail as you can about the
1424 nature of any problem you are encountering, such as
1425 <UL>
1426 <LI>when it first occurred;
1427 <LI>what, if anything, happened that might have brought it about;
1428 <LI>whether it still persists;
1429 <LI>whether it is reproducible, and if so, how;
1430 <LI>what, if anything, you already tried to solve it.
1431 </UL> 
1432 It may also be helpful if you specify what version of Alpine you are using 
1433 <!--chtml if pinemode="running"-->
1434 -- this is <!--#echo var="ALPINE_VERSION"--> --
1435 <!--chtml endif-->
1436 and on what system, and when the copy of Alpine you are using was created
1437 <!--chtml if pinemode="running"-->
1438 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
1439 <!--chtml endif-->
1441 <!--chtml if pinemode="running"-->
1442 <P>   
1443 When the Alpine program you are currently using was installed, a support
1444 contact email address may have been set up; in that case, you can simply select
1445 this link now to send a message to it:<BR>
1446 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
1447 <!--chtml endif-->
1448 <!--chtml if [ -r PINE_INFO_PATH ]-->
1449 <HR WIDTH="75%">Local Support Contacts:<P>
1450 <!--#include file="PINE_INFO_PATH"-->
1451 <HR WIDTH="75%">
1452 <!--chtml endif-->
1453 <P> 
1454 &lt;End of help on this topic&gt;
1455 </BODY>
1456 </HTML>
1457 ===== new_user_greeting ======
1458 <HTML>
1459 <HEAD>
1460 <TITLE>NEW USER GREETING</TITLE>
1461 </HEAD>
1462 <BODY>
1463 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1464 <BR>
1465 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1466 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
1467 select Setup/Config to see many of the options available to you. Also note
1468 that all screens have context-sensitive help text available.<P>
1469 <!--chtml if pinemode="phone_home"-->
1470 SPECIAL REQUEST:
1471 This software is made available as a public service of the
1472 University of Washington in Seattle. We are no longer actively developing
1473 the software, but it is still helpful to us to have an idea of how many
1474 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1475 <A HREF="X-Alpine-Phone-Home:">Return</A>
1476 will send an anonymous (meaning, your real email address will not be revealed) 
1477 message to the Alpine team at the University of Washington for purposes of tallying.
1479 <!--To Exit this screen and continue your Alpine session press "E".-->
1480 <!--chtml else-->
1481 To Exit this screen and continue your Alpine session press "Return".
1482 <!--chtml endif-->
1483 </BODY>
1484 </HTML>
1485 ===== new_alpine_user_greeting ======
1486 <HTML>
1487 <HEAD>
1488 <TITLE>NEW ALPINE USER GREETING</TITLE>
1489 </HEAD>
1490 <BODY>
1491 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1492 <BR>
1493 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1494 Your Alpine configuration file indicates that you may have used Pine before
1495 but not Alpine.
1496 If you are familiar with the way Pine works, you should be comfortable
1497 using Alpine.
1498 Your Pine configuration file is automatically used for Alpine.
1499 The Release Notes may be viewed by pressing 
1500 &quot;R&quot; now or while in the MAIN MENU.
1502 <!--chtml if pinemode="phone_home"-->
1503 SPECIAL REQUEST:
1504 This software is made available as a public service of the
1505 University of Washington in Seattle. We are no longer actively developing
1506 the software, but it is still helpful to us to have an idea of how many
1507 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1508 <A HREF="X-Alpine-Phone-Home:">Return</A>
1509 will send an anonymous (meaning, your real email address will not be revealed) 
1510 message to the Alpine team at the University of Washington for purposes of tallying.
1512 <!--To Exit this screen and continue your Alpine session press "E".-->
1513 <!--chtml else-->
1514 To Exit this screen and continue your Alpine session press "Return".
1515 <!--chtml endif-->
1516 </BODY>
1517 </HTML>
1518 ===== new_version_greeting ======
1519 <HTML>
1520 <HEAD>
1521 <TITLE>NEW VERSION GREETING</TITLE>
1522 </HEAD>
1523 <BODY>
1524 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1525 <BR>
1526 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
1527 Your Alpine configuration file indicates that you may not have used 
1528 this version of Alpine before.  This version's significant changes are
1529 documented in the Release Notes, which may be viewed by pressing 
1530 &quot;R&quot; now or while in the MAIN MENU.
1532 <!--chtml if pinemode="phone_home"-->
1533 SPECIAL REQUEST:
1534 This software is made available as a public service of the
1535 University of Washington in Seattle. We are no longer actively developing
1536 the software, but it is still helpful to us to have an idea of how many
1537 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1538 <A HREF="X-Alpine-Phone-Home:">Return</A>
1539 will send an anonymous (meaning, your real email address will not be revealed) 
1540 message to the Alpine team at the University of Washington for purposes of tallying.
1542 <!--To Exit this screen and continue your Alpine session press "E".-->
1543 <!--chtml else-->
1544 To Exit this screen and continue your Alpine session press "Return".
1545 <!--chtml endif-->
1546 </BODY>
1547 </HTML>
1549 ===== main_menu_tx ======
1550 <HTML>
1551 <HEAD>
1552 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
1553 </HEAD>
1554 <BODY>
1555 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
1556 <DIV ALIGN=CENTER>
1557 Version <!--#echo var="ALPINE_VERSION"-->
1558 <!--chtml if pinemode="running"-->
1559 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
1560 <!--chtml endif-->
1561 </DIV>
1562 <CENTER>Copyright 2013-2014 Eduardo Chappa,
1563 <BR>Copyright 2006-2008 University of Washington.
1564 </CENTER>
1567 When you are viewing a help screen, there may be links to
1568 other topics highlighted (in Reverse video) in the text.
1569 Here is an example.
1570 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
1571 highlighted.
1572 If you type carriage return (or V for View Link, see the commands at the
1573 bottom of the screen) you will be taken to a new help screen to view the
1574 Introduction.
1575 The commands at the bottom of the screen should then include
1576 &quot;P Prev Help&quot;.
1577 If you type &quot;P&quot; you will end up back here.
1578 If you type &quot;E&quot; for Exit, you will be back out of help and returned
1579 to the place you were in Alpine when you entered Help.
1580 In this case, you would go back to the MAIN MENU.
1581 There are also other links that are highlighted in bold (or the color used
1582 by your terminal to display bold).
1583 The items after the Introduction in the TABLE OF CONTENTS are all examples
1584 of such links.
1585 In order to view those links, you first have to make the link you want
1586 to view the current link.
1587 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
1588 (see bottom of screen) can do that for you.
1591 <H2>TABLE OF CONTENTS</H2>
1592 <OL>
1593   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
1594   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
1595 <!--chtml if [ -r PINE_INFO_PATH ]-->
1596   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
1597 <!--chtml endif-->
1598   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
1599   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
1600   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
1601   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
1602   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
1603   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
1604   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
1605   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
1606   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
1607   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
1608   <LI> <A HREF="h_mainhelp_folders">Folders</A>
1609   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
1610   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
1611   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
1612   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
1613   <LI> <A HREF="h_mainhelp_roles">Roles</A>
1614   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
1615   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
1616   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
1617   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
1618   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
1619   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
1620   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
1621   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
1622   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
1623 </OL>
1626 &lt;End of help on this topic&gt;
1627 </BODY>
1628 </HTML>
1629 ===== h_mainhelp_intro ======
1630 <HTML>
1631 <HEAD>
1632 <TITLE>Introduction</TITLE>
1633 </HEAD>
1634 <BODY>
1635 <H1>Introduction</H1>
1637 Alpine is an &quot;Alternatively Licensed Program for Internet
1638 News and Email&quot; produced until 2008 by the University of Washington.
1639 It is intended to be an easy-to-use program for
1640 sending, receiving, and filing Internet electronic mail messages and
1641 bulletin board (Netnews/Usenet) messages. Alpine supports the following
1642 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
1643 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
1644 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
1645 Directory Access Protocol).<p>
1647 Although originally designed for inexperienced email users, Alpine has
1648 evolved to support many advanced features.  There are an ever-growing
1649 number of configuration and personal-preference options, though which of
1650 them are available to you is determined by your local system managers. 
1652 <H2>WHAT ALPINE DOES...</H2>
1654 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
1655 allows you to
1656 compose and read messages using Internet mail standards.  (Whether you
1657 can correspond with others on the Internet depends on whether or not your
1658 computer is connected to the Internet.)  Alpine also allows reading and
1659 posting messages on the Internet &quot;net news&quot; system, provided
1660 that your site operates a suitable news server.
1662 <H2>WHAT ALPINE DOES NOT DO...</H2>
1664 A &quot;mail user agent&quot; such as Alpine is just one part of a
1665 messaging system. Here are some things that are <B>not</B> done by Alpine,
1666 but require other programs:<P>
1667 <UL>
1668  <LI> Actual relaying of email... which is done by &quot;message transfer 
1669 agents&quot;.
1670  <LI> Vacation messages... automatically responding to incoming messages
1671  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
1672 email.
1673  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
1674  <LI> List processing... resending one message to a list of recipients.
1675 </UL>
1678 &lt;End of help on this topic&gt;
1679 </BODY>
1680 </HTML>
1682 ===== h_mainhelp_pinehelp ======
1683 <HTML>
1684 <HEAD>
1685 <TITLE>Alpine Help</TITLE>
1686 </HEAD>
1687 <BODY>
1688 <H1>Alpine Help</H1>
1690 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
1691 use will have its own help text, explaining the choices available for that
1692 screen. This general help section, on the other hand, attempts to give an 
1693 overall picture of what Alpine is capable of doing, as well as pointers to 
1694 additional help sections about specific topics.<p>
1696 Much of the help text contains links to further help topics, similar to
1697 how the World Wide Web works.
1698 You may choose a link to view using the &quot;NextLink&quot; and
1699 &quot;PrevLink&quot; commands to change the link that is highlighted.
1700 The &quot;View Link&quot; command will then show you the highlighted link.
1701 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
1702 will return you to where you were before viewing the link, and &quot;Exit Help&quot
1703 will return you to the location in Alpine before you asked for help.
1704 For example, if you are reading this text in Alpine you may return to the
1705 help table of contents with the &quot;Prev Help&quot; command or you may view the
1706 Release notes link in the next paragraph and then return here with
1707 &quot;Prev Help&quot;.
1710 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
1711 on the current Alpine version are also available from the MAIN MENU: Press
1712 <!--chtml if pinemode="function_key"-->
1713 &quot;F9&quot;
1714 <!--chtml else-->
1715 &quot;R&quot;
1716 <!--chtml endif-->
1717 to browse the release notes.  These include changes since the last release,
1718 configuration information, the history of the Alpine
1719 project, credits, and legal notices.
1721 Alpine files and documentation are available via FTP or WWW:
1723 <CENTER><SAMP><A 
1724 HREF="ftp://ftp.cac.washington.edu/alpine/">ftp://ftp.cac.washington.edu/alpine/</A>
1725 </SAMP></CENTER>
1727 <CENTER><SAMP><A 
1728 HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></SAMP
1729 ></CENTER>
1732 If you would like to print <EM>all</EM> of Alpine's internal help text
1733 (not recommended) for a little light bedtime reading, then press
1734 <!--chtml if pinemode="function_key"-->
1735 &quot;F12&quot;
1736 <!--chtml else-->
1737 &quot;Z&quot;
1738 <!--chtml endif-->
1739 now.  (This assumes that the
1740 copy of Alpine you are using has been properly configured for printing
1741 at your site.)
1743 &lt;End of help on this topic&gt;
1744 </BODY>
1745 </HTML>
1746 ===== h_mainhelp_localsupport ======
1747 <HTML>
1748 <HEAD>
1749 <TITLE>Local Support Contacts</TITLE>
1750 </HEAD>
1751 <BODY>
1752 <H1>Local Support Contacts</H1>
1754 <!--chtml if [ -r PINE_INFO_PATH ]-->
1755 <!--#include file="PINE_INFO_PATH"-->
1756 <!--chtml else-->
1757 No Local Support Contacts configured.
1758 <!--chtml endif-->
1761 &lt;End of help on this topic&gt;
1762 </BODY>
1763 </HTML>
1765 ===== h_mainhelp_cmds ======
1766 <HTML>
1767 <HEAD>
1768 <TITLE>Giving Commands in Alpine</TITLE>
1769 </HEAD>
1770 <BODY>
1771 <H1>Giving Commands in Alpine</H1>
1773 Unless configured otherwise
1774 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
1775 the bottom two lines of the screen are always used to list the
1776 commands you can give.  You press the keys that are highlighted to give
1777 the command.  The commands for getting help and going back to the main
1778 menu are always present (except when viewing help as you are now).
1779 <!--chtml if pinemode="function_key"-->
1780 <!--chtml else-->
1782 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
1783 you see at the bottom of any screen. In some cases there are 3 or
1784 even 4 different
1785 sets of keys that can be seen by using the O key. <EM>All commands are 
1786 active</EM>, even if they are not currently showing at the bottom of your 
1787 screen. In other words, you <EM>never</EM> need to press the O key, except to 
1788 remind yourself of the proper key to press to perform an operation.
1790 <H2>Control Key Commands</H2>
1791 When composing mail, and in a few other places, in Alpine you
1792 have to use Control keys. This means pressing the Control key (usually labeled 
1793 &quot;Ctrl&quot;) and the
1794 letter indicated at the same time.  Usually, this is shown with a
1795 &quot;^&quot; in front of the letter.  On some systems, certain control
1796 characters are intercepted before they get to Alpine.  As a work-around,
1797 you can press the ESCAPE key twice followed by the desired key.  For
1798 example, if Ctrl-O (^O) does not work on your system, try typing
1799 &quot;ESC ESC O&quot;.
1800 <!--chtml endif-->
1801 <H2>Paging Up and Down</H2>
1802 The &quot;+&quot; and &quot;-&quot; keys are used for
1803 moving to the next or previous page.  The space bar is a synonym for
1804 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
1805 up as you do in the message composer.  On screens with a WhereIs (search)
1806 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
1807 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
1808 of the message or list.
1810 <H2>Return Key</H2>
1811 The return key is usually a synonym for a frequently used
1812 command.  When viewing a message, there is currently not a default
1813 command, so RETURN does nothing; when in the index, it is synonymous with
1814 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
1815 enclosed in square brackets [] is the same as the return key.
1817 <H2>Control Keys Not Used By Alpine</H2>
1818 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
1819 value, but in places where Alpine is expecting text input, e.g. in the composer or 
1820 at prompts for file/folder names, control keys must be used for editing and 
1821 navigation functions.
1824 Alpine has used nearly all the control keys available.  There are, however,
1825 certain control keys that are reserved by other programs or for technical
1826 reasons.  Alpine does not use any of these keys:
1827 <DL>
1828  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
1829  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
1830  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
1831 </DL>
1833 Note: Ctrl-S and Ctrl-Q can be subject to 
1834 <A HREF="h_special_xon_xoff">special handling</A>.
1836 In addition, while the ESC key alone is not used for command input,
1837 Alpine will recognize two consecutive ESC key presses followed by a letter 
1838 key as a substitute for control key input.  For example, the control key
1839 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
1840 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
1841 This is useful if the communication program you are using
1842 (e.g. Telnet) has its own, conflicting, idea of what certain control
1843 characters mean.
1846 <H2>Repainting the Screen</H2>
1847 Sometimes what is displayed on the screen will be
1848 incorrect due to noise on the phone line or other causes and you will want
1849 to repaint the whole screen to make it correct.  You can use the Ctrl-L
1850 command to do this.  It never hurts to do it when in doubt.
1853 &lt;End of help on this topic&gt;
1854 </BODY>
1855 </HTML>
1856 ===== h_mainhelp_status ======
1857 <HTML>
1858 <HEAD>
1859 <TITLE>Titlebar Line</TITLE>
1860 </HEAD>
1861 <BODY>
1862 <H1>Titlebar Line</H1>
1864 The top line of the screen is Alpine's titlebar line.  It will always display
1865 the current version of Alpine and will also convey information about the
1866 status of the program.  This is where you look to find out what
1867 collection, folder and message number is active and where you are in Alpine.
1870 If the titlebar line says &quot;READONLY&quot; it means that the open folder
1871 (typically your INBOX) is &quot;locked&quot; by another mail session --
1872 most likely a more recent session of Alpine has taken the INBOX lock.
1875 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
1876 access a
1877 folder on a remote mail server, and for some reason, communication with
1878 the mail server has either been lost, or never successfully established.
1879 This can be a result of trying to open a non-existent folder, or one
1880 stored on an invalid or non-operational server, or it can mean that Alpine
1881 has been suspended for more that 30 minutes while accessing a remote mail
1882 server.
1885 &lt;End of help on this topic&gt;
1886 </BODY>
1887 </HTML>
1888 ===== h_mainhelp_mainmenu ======
1889 <HTML>
1890 <HEAD>
1891 <TITLE>Main Menu</TITLE>
1892 </HEAD>
1893 <BODY>
1894 <H1>Main Menu</H1>
1896 The Main Menu lists Alpine's main options.
1897 The key or keys you must type to enter your
1898 choice are to the left of each option or command name.
1899 You can type either uppercase or lowercase letters,
1900 and you should not press &lt;Return&gt; after typing the
1901 letter (unless you are specifically asking for the default,
1902 highlighted command).
1905 From the Main Menu you can choose to read online help, write (compose) and 
1906 send a message, look at an index of your mail messages, open or maintain
1907 your mail folders, update your address book, configure Alpine, and quit Alpine.
1908 There are additional options listed at
1909 the bottom of the screen as well.
1912 The Help command usually returns context-sensitive help information.
1913 However, in the Main Menu you get the most general help, which includes
1914 a Table of Contents.
1915 The last entry in the Table of Contents is an Index of help topics,
1916 so this is a good place to go if you are having trouble finding how
1917 to do something.
1919 <H2>Main Menu Commands</H2>
1920 The Alpine main menu lists the most common Alpine functions. A <a
1921 href="h_main_menu_commands">full list of these
1922 commands</a> and what they do is available.
1924 &lt;End of help on this topic&gt;
1925 </BODY>
1926 </HTML>
1927 ===== h_mainhelp_abooks ======
1928 <HTML>
1929 <HEAD>
1930 <TITLE>Address Books</TITLE>
1931 </HEAD>
1932 <BODY>
1933 <H1>Address Books</H1>
1936 As you use email, you can build a list of your regular email correspondents 
1937 in your Alpine
1938 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
1939 screen. Your
1940 personal address book will be highlighted. Press &lt;Return&gt; to view it.
1941 You can use the address book to store email addresses for individuals or
1942 groups, to create easily
1943 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
1944 address when you are composing a message.
1946 There are two ways to add addresses to your address book: you can add them 
1947 manually or take them from messages (by pressing T to access the Take command). 
1948 With either method, you specify nicknames for your correspondents. A single 
1949 address book entry (or nickname) can point to just one email address, or, it can
1950 point to more than one. When it points to more than one, it is called a 
1951 distribution list. Each distribution list has a nickname, a full name, and a 
1952 list of addresses. These
1953 addresses may be actual addresses, other nicknames in your address book, or 
1954 other
1955 distribution lists.
1958 Additional information is available in Alpine's online help:
1959 <ul>
1960   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
1961 </ul>
1963 &lt;End of help on this topic&gt;
1964 </BODY>
1965 </HTML>
1966 ===== h_mainhelp_ldap ======
1967 <HTML>
1968 <HEAD>
1969 <TITLE>LDAP</TITLE>
1970 </HEAD>
1971 <BODY>
1972 <H1>LDAP</H1>
1974 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
1975 an organization's shared
1976 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
1977 large address
1978 books, rather like the White Pages provided by the phone company. As an Alpine 
1979 user, it is not
1980 necessary to know much about how this works, only how to use it and how to 
1981 configure
1984 More information on configuring LDAP is available in Alpine's online help:
1985 <ul>
1986   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
1987 </ul>
1989 Additional help on using LDAP in Alpine is also available:
1990 <ul>
1991   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
1992 </ul>
1994 &lt;End of help on this topic&gt;
1995 </BODY>
1996 </HTML>
1997 ===== h_mainhelp_index ======
1998 <HTML>
1999 <HEAD>
2000 <TITLE>Index of Messages</TITLE>
2001 </HEAD>
2002 <BODY>
2003 <H1>Index of Messages</H1>
2005 In Alpine's message index, the selected message is highlighted. The first 
2006 column on the left is blank, shows a &quot;+&quot; if the message was
2007 sent directly to you (i.e., it is not a
2008 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2010 The second column may be blank, or it may contain:
2011 <ul>
2012   <li>"N" if the message is new (unread), </li>
2013   <li>"A" if you have answered the message (using the Reply command), </li>
2014   <li>"D" if you have marked the message for deletion.</li>
2015 </ul>
2018 Note: If you answer a message as well as mark it deleted (in either order), 
2019 you will only see the &quot;D&quot;.
2022 The rest of the columns in the message line show you the message
2023 number, date sent, sender, size, and subject. For details, press ? (Help).  
2024 The behavior and appearance of the Index screen is highly configurable.
2025 In the Setup/Config screen search (with the WhereIs command) for options
2026 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2027 many of the configuration possibilities.
2028 In particular, the
2029 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2030 option may be used to configure the look of the standard MESSAGE INDEX lines
2031 in many different ways.
2032 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2033 read the help text there for more information.
2035 Most of the commands you need to handle your messages are visible at the
2036 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2037 commands that are available.
2038 You do not need to see these &quot;other commands&quot;
2039 on the screen to use them. That is, you never need to press O as a prefix
2040 for any other command.
2043 Additional information is available in Alpine's online help:
2044 <ul>
2045   <li><a href="h_mail_index">Message Index Commands</a></li>
2046 </ul>
2048 &lt;End of help on this topic&gt;
2049 </BODY>
2050 </HTML>
2051 ===== h_mainhelp_reading ======
2052 <HTML>
2053 <HEAD>
2054 <TITLE>Reading Messages</TITLE>
2055 </HEAD>
2056 <BODY>
2057 <H1>Reading Messages</H1>
2059 The message text screen shows you the text of the message along with
2060 its header. If a message has attachments, those will be listed (but not
2061 displayed) also.  The titlebar line displays information about the currently
2062 open message, folder and collection.  You see the name of the collection
2063 (if there is one) in angle brackets, then the name of the folder, then the
2064 message number and finally the position within the current message (in
2065 percent). If the message is marked for deletion
2066 &quot;DEL&quot; will appear in the
2067 upper right as well.
2070 As with every Alpine screen, the bottom two lines show you the commands 
2071 available.
2073 <P>Additional information is available in Alpine's online help:
2074 <ul>
2075   <li><a href="h_mail_view">Message Text Screen</a></li>
2076   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2077   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2078 </ul>
2080 &lt;End of help on this topic&gt;
2081 </BODY>
2082 </HTML>
2083 ===== h_mainhelp_composing ======
2084 <HTML>
2085 <HEAD>
2086 <TITLE>Composing Messages</TITLE>
2087 </HEAD>
2088 <BODY>
2089 <H1>Composing Messages</H1>
2091 To write a message, press C (Compose). You see the Compose Message
2092 screen, which is divided into two parts: the header area and the message
2093 text area. The header area is where information on the recipient (the To:
2094 field) and the subject line go, while the message text area contains the
2095 actual text of the email message. Different commands are available to you
2096 when your cursor is in different areas on this screen. To see additional
2097 help on commands in either the message text or header area, type
2098 <Control>G (Get help).
2101 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2102 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2104 <P>The following information from Alpine's online help may prove useful:
2105 <ul>
2106   <li><a href="h_composer_to">Message Header Commands</a></li>
2107   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2108   <li><a href="h_composer">Composer Commands</a></li>
2109   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2110   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2111   <li><a href="h_compose_send">Send Command</a></li>
2112   <li><a href="h_compose_spell">Spell Check Command</a></li>
2113 </ul>
2115 &lt;End of help on this topic&gt;
2116 </BODY>
2117 </HTML>
2118 ===== h_mainhelp_collections ======
2119 <HTML>
2120 <HEAD>
2121 <TITLE>Collection Lists</TITLE>
2122 </HEAD>
2123 <BODY>
2124 <H1>Collection Lists</H1>
2126 Collection lists are Alpine's way of organizing groups of folders. Each
2127 "collection" can reside on a different server, for example, and contain a
2128 different group of mail folders.
2131 For more information on this, see:
2132 <ul>
2133   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2134 </ul>
2136 Additional information relating to collection lists is also available in 
2137 Alpine's online
2138 help:
2139 <ul>
2140   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2141   <li><a href="h_collection_screen">Collection List Screen</a></li>
2142 </ul>
2144 &lt;End of help on this topic&gt;
2145 </BODY>
2146 </HTML>
2147 ===== h_mainhelp_folders ======
2148 <HTML>
2149 <HEAD>
2150 <TITLE>Folders</TITLE>
2151 </HEAD>
2152 <BODY>
2153 <H1>Folders</H1>
2155 Messages can quickly accumulate in your INBOX folder. If you use email
2156 often, you soon could have hundreds. You need to delete messages you do
2157 not want, and you can use folders to organize messages you wish to save. A
2158 folder is a collection of one or more messages that are stored (just like
2159 the messages in your INBOX) so you can access and manage them.
2162 You can organize your email messages into different folders by topic,
2163 correspondent, date, or any other category that is meaningful to you. You
2164 can create your own folders, and Alpine automatically provides three:
2165 <ul>
2166   <li>The INBOX folder: messages sent to you are listed in this folder.
2167       When you first start Alpine and go to the Message Index screen, you are
2168 looking at the list of messages in your INBOX folder. Every incoming
2169 message remains in your INBOX until you delete it or save it in another
2170 folder. </li>
2171   <li>The sent-mail folder: copies of messages you send are stored in this 
2172 folder. This is
2173 convenient if you cannot remember whether you actually sent a message and want 
2174 to check, or
2175 if you want to send a message again.</li>
2176   <li>The saved-messages folder: copies of messages you save are stored in this 
2177 folder
2178 unless you choose to save them to other folders you create yourself.</li>
2179 </ul>
2182 More information about folders is available in Alpine's online help:
2183 <ul>
2184   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2185   <li><a href="h_folder_maint">Help for Folder List</a></li>
2186   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2187   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2188 Explained</a></li>
2189   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2190 </ul>
2192 &lt;End of help on this topic&gt;
2193 </BODY>
2194 </HTML>
2195 ===== h_mainhelp_color ======
2196 <HTML>
2197 <HEAD>
2198 <TITLE>Color</TITLE>
2199 </HEAD>
2200 <BODY>
2201 <H1>Color</H1>
2203 If the terminal emulator you are using is capable of displaying color or if
2204 you are using PC-Alpine, then it is possible to set up Alpine so that various
2205 parts of the display will be shown in colors you configure. This is done
2206 using the Setup Color screen, available from the MAIN MENU by selecting
2207 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2208 stands for Config in this context).
2211 For example, you may color things like the titlebar, the current item,
2212 the keymenu, and the status messages.
2213 You may also color lines in the index, and headers and quoted text in the
2214 MESSAGE TEXT screen.
2215 You use the Color Setup screen for configuring most of this, but you must
2216 use the IndexColor setup for coloring whole index lines.
2217 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2220 The following entries in Alpine's online help provide additional information 
2221 about how to use color:
2222 <UL>
2223   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2224   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2225   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2226   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2227 </UL>
2229 &lt;End of help on this topic&gt;
2230 </BODY>
2231 </HTML>
2232 ===== h_mainhelp_mouse ======
2233 <HTML>
2234 <HEAD>
2235 <TITLE>Using a Mouse</TITLE>
2236 </HEAD>
2237 <BODY>
2238 <H1>Using a Mouse</H1>
2240 If you are using PC-Alpine mouse support is turned on automatically.
2241 If you are using UNIX Alpine within an X terminal window or within
2242 a terminal emulator that supports an xterm-style mouse, then you may
2243 turn on support for the mouse with the feature
2244 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2245 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2247 PC-Alpine offers considerable mouse support.  You can view what is
2248 &quot;clickable&quot; by dragging your mouse over any screen; when the
2249 arrow cursor changes into a hand, you found something. Mouse-click
2250 possibilities include navigating between screens and folders and
2251 double-clicking on hyperlinks to open your Web browser.
2252 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2253 screen.  Examples of right-click options include &quot;copy&quot; after
2254 selecting text to copy and &quot;View in New Window&quot; when you click
2255 on a particular message in the Message Index. The menu choices available
2256 to you will vary based upon what screen is open, where on the screen your
2257 cursor is located, and even what action you have already taken.
2258 Within a folder, you may set the &quot;Important&quot; flag on any
2259 message.
2261 X terminal mouse support is more limited but still quite powerful.
2262 As with PC-Alpine, clicking on any of the commands in the keymenu at
2263 the bottom of the screen will execute that command as if you typed it.
2264 Double-clicking on a link, for example the link to the
2265 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2266 will take you to that link.
2267 Double-clicking on an index line will view the message, and so on.
2269 &lt;End of help on this topic&gt;
2270 </BODY>
2271 </HTML>
2272 ===== h_mainhelp_keywords ======
2273 <HTML>
2274 <HEAD>
2275 <TITLE>Keywords</TITLE>
2276 </HEAD>
2277 <BODY>
2278 <H1>Keywords</H1>
2280 Within a folder, you may set the &quot;Important&quot; flag on any
2281 message.
2282 This doesn't have any system-defined meaning and is only called
2283 the Important flag because many users use it to signify that a message
2284 is important to them in some way.
2286 You may also define your own set of keywords.
2287 You might know these as user defined flags or as labels.
2288 These are similar to the Important flag but you choose the names for yourself.
2290 Alpine will only display keywords that
2291 have been added by you in the Flag Details screen or
2292 that have been configured by you using the Setup/Config option
2293 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2294 Keywords set by other means (for example, by another email client) will not
2295 show up in Alpine unless you configure Alpine to know about them.
2296 They will show up in the Flag Details screen, but will not show up, for example,
2297 in the index line.
2300 The following entries in Alpine's online help provide additional information 
2301 about how to use keywords:
2302 <ul>
2303   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2304   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2305 </ul>
2307 &lt;End of help on this topic&gt;
2308 </BODY>
2309 </HTML>
2310 ===== h_mainhelp_roles ======
2311 <HTML>
2312 <HEAD>
2313 <TITLE>Roles</TITLE>
2314 </HEAD>
2315 <BODY>
2316 <H1>Roles</H1>
2318 You may play different roles depending on who you are replying to. For
2319 example, if you are replying to a message addressed to help-desk you may
2320 be acting as a Help Desk Worker. That role may require that you use a
2321 different return address and/or a different signature.
2324 To configure roles, go to the MAIN MENU and use the Setup command
2325 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2326 The following entries in Alpine's online help provide additional information 
2327 about how to
2328 use roles:
2329 <ul>
2330   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2331   <li><a href="h_role_select">Roles Screen</a></li>
2332 </ul>
2334 &lt;End of help on this topic&gt;
2335 </BODY>
2336 </HTML>
2337 ===== h_mainhelp_filtering ======
2338 <HTML>
2339 <HEAD>
2340 <TITLE>Filtering</TITLE>
2341 </HEAD>
2342 <BODY>
2343 <H1>Filtering</H1>
2345 The software that actually delivers mail (the stuff that happens
2346 before Alpine is involved) for you is in a better position to do mail filtering
2347 than Alpine itself.
2348 If possible, you may want to look into using that sort of mail filtering to
2349 deliver mail to different folders, delete it, or forward it.
2350 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
2353 Filtering is a way to automatically move certain messages from one folder
2354 to another or to automatically delete messages.
2355 You may also automatically set the state (Important, New, Deleted, Answered) of messages
2356 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
2357 Alpine doesn't have the ability to forward mail to another address or
2358 to deliver vacation messages.
2361 To configure filtering, go to the MAIN MENU and use the Setup command
2362 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
2363 The following entries in Alpine's online help provide additional information 
2364 about how to use filtering:
2365 <UL>
2366   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
2367 </UL>
2369 &lt;End of help on this topic&gt;
2370 </BODY>
2371 </HTML>
2372 ===== h_mainhelp_patterns ======
2373 <HTML>
2374 <HEAD>
2375 <TITLE>Patterns</TITLE>
2376 </HEAD>
2377 <BODY>
2378 <H1>Patterns</H1>
2380 Patterns are used with Roles, Filtering, Index Coloring,
2381 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
2382 The following entries in Alpine's online help provide information 
2383 about using Patterns:
2384 <UL>
2385   <LI> <A HREF="h_rule_patterns">Patterns</A>
2386 </UL>
2388 &lt;End of help on this topic&gt;
2389 </BODY>
2390 </HTML>
2391 ===== h_mainhelp_cmdlineopts ======
2392 <HTML>
2393 <HEAD>
2394 <TITLE>Command Line Options</TITLE>
2395 </HEAD>
2396 <BODY>
2397 <H1>Command Line Options</H1>
2399 Alpine accepts a number of command line arguments, allowing you, for
2400 example, to start Alpine and immediately access a particular folder.
2401 Many of these arguments overlap with options in the Alpine configuration file.
2402 If there is a difference, then an option set on the command line takes
2403 precedence.
2404 Alpine expects command line arguments (other than addresses) to be
2405 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
2406 A <a href="h_command_line_options">full list</a> of command line
2407 possibilities is available.
2409 &lt;End of help on this topic&gt;
2410 </BODY>
2411 </HTML>
2412 ===== h_mainhelp_config ======
2413 <HTML>
2414 <HEAD>
2415 <TITLE>Alpine Configuration</TITLE>
2416 </HEAD>
2417 <BODY>
2418 <H1>Alpine Configuration</H1>
2420 Unless it has been administratively disabled, the Setup command on the
2421 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
2422 The possible subcommands are for general Configuration settings,
2423 Printer settings, Changing your Password, Signature setup,
2424 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
2425 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
2426 and Color configuration.
2427 In particular, the &quot;Config&quot; subcommand has many features you may
2428 set or unset and many other configuration variables that may be set to change
2429 the way Alpine works.
2430 Every one of the hundreds of options available in that configuration settings
2431 screen has help text associated with it.
2432 You may read that text by moving the cursor to highlight the option and then
2433 typing the Help command.
2435 These settings are stored in your personal
2436 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
2437 <A HREF="h_config_remote_config">remotely</A>),
2438 but on shared systems these settings
2439 may be over-ridden by a system-wide control file (due to local site
2440 security or support policies).  A global pine configuration file can also
2441 be used to set default values for all Alpine users on a particular system.
2442 Power users may be interested in splitting their personal configuration
2443 data into two pieces, a generic piece and
2444 <A HREF="h_config_exceptions">exceptions</A> which apply to
2445 a particular platform.
2446 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
2447 General Alpine configuration information can be found
2448 <A HREF="h_news_config">here</A>.
2450 &lt;End of help on this topic&gt;
2451 </BODY>
2452 </HTML>
2453 ===== h_mainhelp_aggops ======
2454 <HTML>
2455 <HEAD>
2456 <TITLE>Aggregate Operations</TITLE>
2457 </HEAD>
2458 <BODY>
2459 <H1>Aggregate Operations</H1>
2461 When you are in the MESSAGE INDEX, the available commands
2462 (for example, Delete, Undelete, Save, Reply, and so on)
2463 normally act on a single message.
2464 So, for example, if you press the Delete command, the currently highlighted
2465 message is marked Deleted.
2466 These commands that normally act on a single message may be applied to
2467 several messages at once instead.
2469 By default this feature is turned on, but it could be administratively turned
2470 off to reduce complexity.
2471 The feature
2472 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
2473 in the Setup/Config screen is used to turn it off or on.
2474 When this feature is turned on, the four commands &quot;Select&quot;,
2475 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
2476 are available.
2477 The two selection commands allow you to mark a set of
2478 messages as being &quot;selected&quot;.
2479 The &quot;ZoomMode&quot; command will toggle between
2480 displaying only the selected messages and displaying all the messages.
2481 The &quot;Apply&quot; command allows you to
2482 apply one of the regular MESSAGE INDEX commands to all of the selected
2483 messages instead of to only the highlighted message.
2485 An example aggregate operation would be to catch up when reading
2486 a news group.
2487 That is, get rid of all the messages in the news group so that you can
2488 start fresh.
2489 The easiest way to do this in Alpine is to use aggregate operations.
2490 You want to Delete all of the messages in the group.
2491 You could start at the top and type &quot;D&quot; once for every message.
2492 A much faster method is to first Select all of the messages in the group,
2493 and then Delete all of them.
2494 This would take four keystrokes:
2496 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
2497 <BR>
2498 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
2500 Another use of Select is to use it for searching for a particular message
2501 or set of messages in a large folder.
2502 You may know that the message was From a certain user.
2503 You could select all messages from that user to start, and use Zoom to
2504 look at only those messages.
2505 If there were still too many messages to look at you could Narrow the
2506 set of messages further by selecting from all of those messages only
2507 the ones that were after a certain date, or contained a particular phrase
2508 in the Subject, or were too a particular address, and so on.
2509 That may be the end of what you are doing, or you may want to use Apply to
2510 Save or Forward or Print all of the selected messages.
2512 Some related help topics are
2513 <UL>
2514 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
2515 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
2516 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
2517 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
2518 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
2519 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
2520 </UL>
2522 &lt;End of help on this topic&gt;
2523 </BODY>
2524 </HTML>
2525 ===== h_mainhelp_readingnews ======
2526 <HTML>
2527 <HEAD>
2528 <TITLE>Reading News</TITLE>
2529 </HEAD>
2530 <BODY>
2531 <H1>Reading News</H1>
2533 <H2>Background</H2>
2534 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
2535 commands as for mail. Similar to mailing lists but existing on a larger scale, 
2536 Usenet newsgroups allow groups of people with common interests to discuss 
2537 particular topics. You might find newsgroups related to your career, or you 
2538 might wish to check out the online discussion among the fans of your favorite 
2539 television show. 
2541 <H2>Configuring Alpine for Reading News</H2>
2542 Alpine often arrives
2543 pre-configured by your system administrator to automatically access the
2544 newsgroups offered by your organization, Internet Service Provider, or
2545 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
2546 need additional details on <a href="h_configuring_news">how to
2547 configure Alpine to read news</a>.
2549 <H2>Accessing Newsgroups</H2>
2550 The first step in reading news is to access the newsgroups collections
2551 screen from Alpine. If everything is configured properly, you should be able
2552 to do this by first typing L (folder List), then selecting the folder
2553 collection listed as "News." The actual name of this collection may differ
2554 from system to system.
2556 <H2>Subscribing to Newsgroups</H2>
2558 Once you have accessed the news collection, you need to subscribe to a
2559 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
2560 will keep a record of the newsgroups in which you are interested and which
2561 articles in those newsgroups have been read.
2563 <H2>Using Newsgroups</H2> 
2564 Alpine uses the similar commands to read news as to read mail. For example,
2565 the D command marks messages as Deleted (or "Dismissed," if you prefer),
2566 and the R command Replies to a news posting. Basically, Alpine allows you to
2567 read news as if it were mail, so you don't need to change the way you
2568 interact with Alpine.
2570 There is also additional Alpine help available on 
2571 <A HREF="h_reading_news">how to use Alpine to read news</A>.
2573 &lt;End of help on this topic&gt;
2574 </BODY>
2575 </HTML>
2576 ===== h_mainhelp_securing ======
2577 <HTML>
2578 <HEAD>
2579 <TITLE>Securing your Alpine Session</TITLE>
2580 </HEAD>
2581 <BODY>
2582 <H1>Securing your Alpine Session</H1>
2584 By default, Alpine will attempt to connect to an IMAP server on the normal
2585 IMAP service port (143).
2586 If the Alpine you are using has been built to
2587 support &quot;Transport Layer Security&quot; (TLS)
2588 and &quot;Secure Sockets Layer&quot; (SSL) 
2589 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
2590 and the server offers the STARTTLS capability, then a secure (encrypted)
2591 session will be established.
2593 When you are connected to a remote folder the titlebar will contain a plus sign
2594 in the far right column if the connection is encrypted using TLS or SSL.
2595 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
2596 if the connection is encrypted.
2598 <H2>More Information on Alpine with SSL and TLS</H2>
2599 <UL>
2600 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
2601 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
2602 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
2603 <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>
2604 </UL>
2605 <H2>Here are some other security-related features and options</H2>
2607 <UL>
2608 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
2609 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
2610 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
2611 </UL>
2613 &lt;End of help on this topic&gt;
2614 </BODY>
2615 </HTML>
2616 ===== h_mainhelp_problems ======
2617 <HTML>
2618 <HEAD>
2619 <TITLE>Reporting Problems</TITLE>
2620 </HEAD>
2621 <BODY>
2622 <H1>Reporting Problems</H1>
2624 We ask that you first read the relevant help screens and then seek
2625 assistance from your own local support staff.  Once you are sure that your
2626 difficulty is not a local configuration problem, you might look at the
2627 help section explaining where to look for
2628 <A HREF="h_finding_help">more information</A> and where to 
2629 get assistance.
2632 Please note: Alpine has been adapted to several other operating systems
2633 besides those directly supported by the University of Washington; see:
2635 <CENTER><A HREF="http://www.washington.edu/alpine/overview/non-UW.html">http://www.washington.edu/alpine/overview/non-UW.html</A></CENTER>
2638 Inquiries about these other ports (e.g., VMS and AmigaDOS) should be
2639 directed to the individual or group that did the adaptation. 
2642 <ADDRESS>
2643    Eduardo Chappa &lt;chappa@gmx.com&gt;
2644 </ADDRESS>
2647 &lt;End of help on this topic&gt;
2648 </BODY>
2649 </HTML>
2650 ===== h_main_menu_commands ======
2651 <HTML>
2652 <HEAD>
2653 <TITLE>MAIN MENU COMMANDS</TITLE>
2654 </HEAD>
2655 <BODY>
2656 <H1>MAIN MENU COMMANDS</H1>
2658 <!--chtml if pinemode="function_key"-->
2659 &nbsp;Available&nbsp;Commands&nbsp;--
2660 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
2661 &nbsp;------------------------------
2662 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
2663 ----------<BR>
2664 &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>
2665 &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>
2666 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
2667 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
2668 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
2669 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
2670 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
2671 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
2672 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
2673 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2674 &nbsp;F7&nbsp;&nbsp;<A 
2675 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
2676 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2677 &nbsp;F8&nbsp;&nbsp;<A 
2678 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
2679 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
2680 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 
2681 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
2682 &nbsp;F10&nbsp;<A 
2683 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 
2684 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
2685 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2686 &nbsp;F11&nbsp;<A 
2687 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
2688 <!--chtml else-->
2689 &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>
2690 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
2691 &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>
2692 &nbsp;C&nbsp;&nbsp;<A 
2693 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>
2694 &nbsp;I&nbsp;&nbsp;<A 
2695 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>
2696 &nbsp;L&nbsp;&nbsp;<A 
2697 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>
2698 &nbsp;A&nbsp;&nbsp;<A 
2699 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
2700 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
2701 &nbsp;S&nbsp;&nbsp;<A 
2702 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 
2703 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
2704 &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>
2705 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
2706 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
2707 <!--chtml endif-->
2710 NOTE:
2711 <OL>
2712  <LI>For help on a particular command, highlight the bold text associated
2713 with it above and hit Return.
2714  <LI> The availability of certain commands (e.g. some of the options under
2715 SETUP) is determined by Alpine configuration files and system capabilities.
2716 At some sites, certain commands may not be available due to security or
2717 support concerns.
2718 </OL>
2720 &lt;End of help on this topic&gt;
2721 </BODY>
2722 </HTML>
2724 ===== h_command_line_options ======
2725 <HTML>
2726 <HEAD>
2727 <TITLE>COMMAND LINE OPTIONS</TITLE>
2728 </HEAD>
2729 <BODY>
2730 <H1>COMMAND LINE OPTIONS</H1>
2731 Possible starting arguments for Alpine:
2733 <DL COMPACT>
2735 <DT> <EM>[addresses]</EM>
2737 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
2738 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
2739 <EM>Alpine</EM> will startup in
2740 the composer with a message started to the addresses specified.
2741 Once the message is sent, the <EM>Alpine</EM> session closes.
2742 Standard input redirection is allowed.
2743 Separate multiple addresses with a space between them.
2744 Addresses are placed in the &quot;To&quot; field only.
2747 <DT> &lt; <EM>file</EM>
2749 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
2750 into the body of the message.
2751 Once the message is sent, the <EM>Alpine</EM> session closes. 
2754 <DT> -attach <EM>file</EM>
2756 <DD> Go directly into composer with given file attached.
2759 <DT> -attachlist <EM>file-list</EM>
2761 <DD> Go directly into composer with given files attached.
2762 This must be the last option on the command line.
2765 <DT> -attach_and_delete <EM>file</EM>
2767 <DD> Go directly into composer with given file attached, delete when finished.
2770 <DT> -aux <EM>local_directory</EM>
2772 <DD> <EM>PC-Alpine</EM> only.
2773 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
2774 files, like debug files, address books, and signature files.  The pinerc may 
2775 be local or remote.
2778 <DT> -bail
2780 <DD> If the personal configuration file doesn't already exist, exit.
2781 This might be useful if the configuration file is accessed using some
2782 remote filesystem protocol. If the remote mount is missing this will cause
2783 <EM>Alpine</EM> to quit instead of creating a new pinerc.
2786 <DT> -c <EM>n</EM>
2788 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
2789 This is used when there are multiple folder collections (contexts) and you 
2790 want to open a folder not in the primary collection.
2793 <DT> -conf
2795 <DD> Configuration: Prints a sample system configuration file to the
2796 screen or standard output. To generate an initial system configuration 
2797 file, execute
2799 <PRE><CODE>
2800                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
2801 </CODE></PRE>
2804 To generate a system configuration file using settings from an old
2805 system configuration file, execute
2807 <PRE><CODE>
2808                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
2809 </CODE></PRE>
2811 A system configuration file is not required.
2814 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
2816 <DD> Copy an address book file to a remote address book folder.
2817 If the remote folder doesn't exist, it will be created.
2818 If it exists but the first message in the folder isn't a remote address
2819 book header message, the copy will be aborted.
2820 This flag will not usually be used by a user.
2821 Instead, the user will create a remote address book from within <EM>Alpine</EM>
2822 and copy entries from the local address book by using aggregate Save in
2823 the address book screen.
2826 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
2828 <DD> Copy a pinerc configuration file to a remote pinerc folder.
2829 If the remote folder doesn't exist, it will be created.
2830 If it exists but the first message in the folder isn't a remote pinerc
2831 header message, the copy will be aborted.
2832 This flag may be useful to users who already have a local pinerc file and
2833 would like to convert it to a remote pinerc folder and use that instead.
2834 This gives a way to bootstrap that conversion without having to manually
2835 reset all of the variables in the remote pinerc folder.
2838 <DT> -d <EM>debug-level</EM>
2840 <DD> Debug Level:  Sets the level of debugging information written by
2841 <EM>Alpine</EM>.
2842 <EM>debug-level</EM> can be set to any integer 0-9.
2843 A debug level of 0 turns off debugging for the session.
2844 (Actually there are some levels higher than 9, but you probably don't
2845 want to see them.)
2848 <DT> -d <EM>keywords</EM>
2850 <DD> You may use a more detailed version of the debugging flag to set
2851 the debug level in separate parts of <EM>Alpine</EM>.
2852 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
2853 verbose=0..9.
2854 <EM>Flush</EM> causes debugging information to be flushed immediately to
2855 the debug file as it is written.
2856 <EM>Verbose</EM> is the general debugging verbosity level.
2857 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
2858 is useful when you are trying to figure out what is responsible for delays.
2859 <EM>Numfiles</EM> sets the number of debug files saved.
2860 <EM>Imap</EM> sets the debug level for the debugging statements related
2861 to the conversation with the IMAP server, and more generally, for the
2862 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
2863 <EM>Tcp</EM> turns on some TCP/IP debugging.
2866 <DT> -f <EM>folder</EM>
2868 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
2869 of the standard INBOX.
2872 <DT> -F <EM>file</EM>
2874 <DD> Open named text file for viewing and forwarding.
2877 <DT> -h
2879 <DD> Help:  Prints the list of available command-line arguments to the
2880 screen.
2883 <DT> -i
2885 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
2886 screen instead of the MAIN MENU.
2889 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
2892 <DT> -I <EM>a,b,c,...</EM>
2894 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
2895 sequence of commands upon startup.
2896 This allows users to get <EM>Alpine</EM> to start in any
2897 of its menus/screens.
2898 You cannot include any input to the composer in the initial keystrokes.
2899 The key &lt;Return&gt; is represented by a ``CR'' in
2900 the keystroke list; the spacebar is designated by the letters ``SPACE''.
2901 Control keys are two character sequences beginning with ``^'', such as
2902 ``^I''.
2903 A tab character is ``TAB''.
2904 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
2905 ``DOWN'', ``LEFT'', and ``RIGHT''.
2906 A restriction is that you can't mix function keys and character keys in this
2907 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
2908 A user can always use only <EM>character</EM> keys in the startup list even
2909 if he or she is using <EM>function</EM> keys normally, or vice versa.
2910 If an element in this list is a string of characters surrounded by double
2911 quotes (&quot;) then it will be expanded into the individual characters in
2912 the string, excluding the double quotes.
2915 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
2918 <DT> -install
2920 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
2921 some basic information to help with getting properly set up.
2924 <DT> -k
2926 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
2927 the input of commands to be function-keys.
2928 Otherwise, commands are linked to the regular character keys.
2931 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
2932 <EM>Feature-List</EM>.
2935 <DT> -n <EM>n</EM>
2937 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
2938 FOLDER INDEX screen with the current message being the specified
2939 message number.
2942 <DT> -nosplash
2944 <DD> <EM>PC-Alpine</EM> only.
2945 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
2946 This may be helpful for certain troubleshooting or terminal server scenarios.
2949 <DT> -o <EM>folder</EM>
2951 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
2954 <DT> -p <EM>pinerc</EM>
2956 <DD> Uses the named file as the personal configuration file instead of
2957 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
2958 Alpinerc may be either a local file or a remote configuration folder.
2961 <DT> -P <EM>pinerc</EM>
2963 <DD> Uses the named file as the system wide configuration file instead of
2964 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
2965 Alpinerc may be either a local file or a remote configuration folder.
2968 <DT> -passfile <EM>passfile</EM>
2970 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
2971 This should be a fully-qualified filename.
2974 <DT> -pinerc <EM>file</EM>
2976 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
2977 settings of variables that the user has made.
2978 Use <EM>file</EM> set to ``-'' to make output go to standard out.
2981 <DT> -r
2983 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
2984 <EM>Alpine</EM> in restricted mode can only send email to itself.
2985 Save and export are limited.
2988 <DT> -registry <EM>cmd</EM>
2990 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
2991 <EM>Alpine</EM>'s registry entries.
2992 Possible values for <EM>cmd</EM> are set, clear, and dump.
2993 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
2994 entries according to its current settings.
2995 <EM>Clear</EM> will clear the registry values.
2996 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
2997 <EM>Dump</EM> will display the values of current registry settings.
2998 Note that the dump command is currently disabled.
2999 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3000 the registry only if there currently aren't any values set.
3003 <DT> -sort <EM>key</EM>
3005 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3006 FOLDER INDEX screen.
3007 <EM>Key</EM> can have the following values: 
3008 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3009 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3010 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3011 The default value is &quot;arrival&quot;.
3012 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3015 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3018 <DT> -uninstall
3020 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3021 in Windows settings.  The registry settings are removed and
3022 the password cache is cleared.
3025 <DT> -url <EM>url</EM>
3027 <DD> Open the given URL.
3030 <DT> -v
3032 <DD> Version:  Print version information to the screen.
3035 <DT> -x <EM>exceptions_config</EM>
3037 <DD> Configuration settings in the exceptions configuration override your normal
3038 default settings.
3039 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3042 <DT> -z
3044 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3045 will suspend the <EM>Alpine</EM> session.
3048 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3049 <EM>Feature-List</EM>.
3052 <DT> -<EM>option</EM>=<EM>value</EM>
3054 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3055 For example, <EM>-signature-file=sig1</EM> or
3056 <EM>-Feature-List=signature-at-bottom</EM>.
3057 Note:  Feature-List values are
3058 additive and features may be preceded with no- to turn them off.
3059 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3060 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3061 <EM>-Feature-List=signature-at-bottom</EM>.
3064 </DL>
3066 &lt;End of help on this topic&gt;
3067 </BODY>
3068 </HTML>
3069 ===== h_configuring_news ======
3070 <HTML>
3071 <HEAD>
3072 <TITLE>CONFIGURING NEWS</TITLE>
3073 </HEAD>
3074 <BODY>
3075 <H1>CONFIGURING NEWS</H1>
3076 Alpine can access news folders in any one of three different ways:
3077 <DL>
3078 <DT>REMOTE NNTP</DT>
3079 <DD>Using the Network News Transport Protocol (NNTP) to
3080 access news on a remote news server.  In this case the newsrc file is
3081 stored on the machine where Alpine is running.
3084 To specify a remote news-collection accessed via NNTP use the
3085 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3086 Server: value to the NNTP server's hostname appended with the
3087 communication method &quot;/service=NNTP&quot;, and set the Path:
3088 value to the &quot;#news.&quot; namespace (without the quotes).  See
3089 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3090 help text for a more complete explanation of access method, and the
3091 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3092 text for a more complete explanation of &quot;namespace&quot;.
3094 Instead of specifying a news-collection, you may simply set the
3095 <A HREF="h_config_nntp_server">NNTP Server</A>
3096 option, which will cause Alpine to create a default news-collection for you.
3097 Another NNTP option that may be of interest is
3098 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3100 <DT>REMOTE IMAP</DT>
3101 <DD>Using the Internet Message Access Protocol (IMAP) to
3102 access news on a remote news server.  In this case, your newsrc file is
3103 stored on the news server, in your home directory, so you must have an
3104 account on the news server, but you would be running Alpine on a different
3105 machine.  The news server must be running an IMAPd server process. 
3108 To specify a remote news-collection accessed via IMAP use the
3109 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3110 Server: value to the IMAP server's hostname, and set the Path: value
3111 to the &quot;#news.&quot; namespace (without the quotes).  See the
3112 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3113 text for a more complete explanation of &quot;namespace&quot;.
3115 </DD>
3117 <DT>LOCAL</DT>
3118 <DD>Using local file access to the news database.  In this
3119 case, your newsrc file is stored on the news server, in your home
3120 directory, so you must have an account on the news server, and you would
3121 be running Alpine on the same machine.
3124 To specify a local news-collection use the SETUP/collectionList
3125 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3126 set the Path: value to the &quot;#news.&quot; namespace (without the
3127 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3128 field's help text for a more complete explanation of &quot;namespace&quot;.
3130 </DD>
3131 </DL>
3135 NOTE: Should no news-collection be defined as above, Alpine will
3136 automatically create one using the Setup/Config screen's
3137 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3138 will be created as a &quot;Remote NNTP&quot; as described above.
3142 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3143 possible.  If you don't have an account on the news server, or if the news
3144 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3145 sure, ask your service provider, university, or company for help.)  In
3146 this case, your Unix .newsrc file can be transferred to your PC.  A good
3147 place to put it would be in the same directory as your PINERC file, under
3148 the name NEWSRC, but you can 
3149 <A HREF="h_config_newsrc_path">specify a different location</A>
3150 via Alpine's Setup/Config screen.
3153 Other configuration features related to news are
3154 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3155 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3156 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3157 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3158 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3159 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3160 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3161 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3164 &lt;End of help on this topic&gt;
3165 </BODY>
3166 </HTML>
3167 ===== h_reading_news ======
3168 <HTML>
3169 <HEAD>
3170 <TITLE>READING NEWS</TITLE>
3171 </HEAD>
3172 <BODY>
3173 <H1>READING NEWS</H1>
3175 Alpine uses almost the same commands for manipulating news folders as for
3176 mail folders.  This means, for example, that when you are done with a
3177 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3178 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3179 most newsreaders, wherein a message is implicitly dismissed after you have
3180 looked at it once. We strongly believe that Alpine should offer as much
3181 consistency as possible between mail and news, so the mail paradigm --
3182 wherein a message does not magically disappear without explicit action by
3183 the user -- is used for news as well. <P>
3185 If you answer a message in a news folder, the index view will show the
3186 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3187 keep track of what news as been read has no way of storing this flag, so
3188 it will not be preserved across sessions.  The Deleted flag is the only
3189 one that is preserved when you leave and then return to a newsgroup.  As an
3190 additional note on replies, when you Reply to a newsgroup message and say
3191 you want to reply to all recipients, Alpine will ask if you want to post the
3192 message to all the newsgroups listed in the original message. <P>
3194 If you would like Alpine to mark more-or-less recent news messages as
3195 &quot;New&quot;, then set the
3196 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3197 feature (which is set by default).  This will cause messages after the last one you have marked as
3198 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3199 &quot;N&quot; status often makes it easier to distinguish later news
3200 articles from those you've previously seen, but not yet disposed of via
3201 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3202 record of which messages you have not seen.
3205 A frequent operation in news-reading is &quot;catching up&quot; -- that
3206 is, getting rid of all the messages in the newsgroup so that you can
3207 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3208 Select command.  You would enter the following four keystrokes:
3209 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3210 dismiss) command to all of them.
3213 There are also additional details on 
3214 <A HREF="h_configuring_news">configuring news</a>.
3217 &lt;End of help on this topic&gt;
3218 </BODY>
3219 </HTML>
3220 ====== h_help_index ======
3221 <HTML>
3222 <HEAD>
3223 <TITLE>Help Index</TITLE>
3224 </HEAD>
3225 <BODY>
3226 <H1>Help Index</H1>
3227 <ul>
3228 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3229 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3230 <li><a href="h_main_addrbook">Address Book Command</a>
3231 <li><a href="h_abook_view">Address Book View Explained</a>
3232 <li><a href="h_compose_addrcomplete">Address Completion</a>
3233 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3234 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3235 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3236 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3237 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3238 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3239 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3240 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3241 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3242 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3243 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3244 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3245 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3246 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3247 <li><a href="h_news_legal">Alpine Legal Notices</a>
3248 <li><a href="h_compose_alted">Alt Editor Command</a>
3249 <li><a href="h_index_cmd_apply">Apply Command</a>
3250 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3251 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3252 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3253 <li><a href="h_composer_browse">BROWSER</a>
3254 <li><a href="h_common_bounce">Bounce Command</a>
3255 <li><a href="h_compose_cancel">Cancel Command</a>
3256 <li><a href="h_config_change_your_from">Changing your From Address</a>
3257 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3258 <li><a href="h_mainhelp_color">Color</a>
3259 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3260 <li><a href="h_composer">COMPOSER COMMANDS</a>
3261 <li><a href="h_mainhelp_composing">Composing Messages</a>
3262 <li><a href="h_mainhelp_collections">Collection Lists</a>
3263 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3264 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3265 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3266 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3267 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3268 <li><a href="h_common_compose">Compose Command</a>
3269 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3270 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3271 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3272 <li><a href="h_mainhelp_config">Configuration</a>
3273 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3274 <li><a href="h_config_dflt_color">Default Color</a>
3275 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3276 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3277 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3278 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3279 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3280 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3281 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3282 <li><a href="h_ge_export">Export File Selection</a>
3283 <li><a href="h_ge_allparts">Export Message File Selection</a>
3284 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3285 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3286 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3287 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3288 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3289 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3290 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3291 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3292 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3293 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3294 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3295 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3296 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3297 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3298 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3299 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3300 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3301 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3302 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3303 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3304 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3305 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3306 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3307 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3308 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3309 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3310 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3311 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3312 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3313 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3314 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3315 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3316 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3317 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3318 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3319 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3320 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3321 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3322 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3323 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3324 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3325 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3326 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3327 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3328 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3329 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3330 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3331 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3332 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3333 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3334 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3335 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3336 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3337 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3338 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3339 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3340 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3341 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3342 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3343 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3344 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3345 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3346 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3347 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3348 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3349 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3350 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3351 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3352 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3353 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3354 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3355 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3356 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3357 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3358 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3359 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
3360 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
3361 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
3362 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
3363 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
3364 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
3365 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
3366 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
3367 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
3368 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
3369 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
3370 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
3371 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
3372 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
3373 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
3374 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
3375 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
3376 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
3377 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
3378 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
3379 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
3380 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
3381 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
3382 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
3383 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
3384 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
3385 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
3386 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
3387 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
3388 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
3389 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
3390 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
3391 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
3392 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
3393 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
3394 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
3395 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
3396 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
3397 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
3398 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
3399 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
3400 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
3401 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
3402 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
3403 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
3404 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
3405 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
3406 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
3407 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
3408 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
3409 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
3410 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
3411 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
3412 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
3413 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
3414 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
3415 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
3416 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
3417 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
3418 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
3419 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
3420 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
3421 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
3422 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
3423 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
3424 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
3425 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
3426 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
3427 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
3428 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
3429 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
3430 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
3431 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
3432 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
3433 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
3434 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
3435 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
3436 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
3437 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
3438 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
3439 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
3440 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
3441 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
3442 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
3443 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
3444 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
3445 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
3446 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
3447 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
3448 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
3449 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
3450 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
3451 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
3452 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
3453 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
3454 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
3455 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
3456 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
3457 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
3458 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
3459 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
3460 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
3461 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
3462 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
3463 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
3464 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
3465 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
3466 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
3467 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
3468 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
3469 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
3470 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
3471 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
3472 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
3473 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
3474 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
3475 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
3476 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
3477 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
3478 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
3479 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
3480 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
3481 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
3482 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
3483 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
3484 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
3485 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
3486 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
3487 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
3488 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
3489 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
3490 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
3491 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
3492 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
3493 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
3494 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
3495 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
3496 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
3497 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
3498 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
3499 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
3500 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
3501 <li><a href="h_mainhelp_filtering">Filtering</a>
3502 <li><a href="h_finding_help">Finding more information and requesting help</a>
3503 <li><a href="h_common_flag">Flag Command</a>
3504 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
3505 <li><a href="h_mainhelp_folders">Folders</a>
3506 <li><a href="h_what_are_collections">Folder Collections Explained</a>
3507 <li><a href="h_common_folders">Folder List Command</a>
3508 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
3509 <li><a href="h_folder_save">Folder Select for Save Explained</a>
3510 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
3511 <li><a href="h_config_change_your_from">From Address, Changing</a>
3512 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
3513 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
3514 <li><a href="h_common_goto">Goto Command</a>
3515 <li><a href="h_common_hdrmode">HdrMode Command</a>
3516 <li><a href="h_mainhelp_pinehelp">Help</a>
3517 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
3518 <li><a href="h_folder_maint">Help for Folder List</a>
3519 <li><a href="h_valid_folder_names">IMAP</a>
3520 <li><a href="h_ge_import">Import File Selection</a>
3521 <li><a href="h_mainhelp_index">Index of Messages</a>
3522 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
3523 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
3524 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
3525 <li><a href="h_info_on_mbox">Information on mbox driver</a>
3526 <li><a href="h_mainhelp_intro">Introduction</a>
3527 <li><a href="h_main_journal">Journal Command</a>
3528 <li><a href="h_common_jump">Jump Command</a>
3529 <li><a href="h_compose_justify">Justify Command</a>
3530 <li><a href="h_main_kblock">Keyboard Lock Command</a>
3531 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
3532 <li><a href="h_mainhelp_ldap">LDAP</a>
3533 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
3534 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
3535 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
3536 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
3537 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
3538 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
3539 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
3540 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
3541 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
3542 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
3543 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
3544 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
3545 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
3546 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
3547 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
3548 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
3549 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
3550 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
3551 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
3552 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
3553 <li><a href="h_ldap_view">LDAP Response View Explained</a>
3554 <li><a href="h_maildrop">Mail Drop: What is it?</a>
3555 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
3556 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
3557 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
3558 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
3559 <li><a href="h_common_index">Message Index Command</a>
3560 <li><a href="h_mainhelp_mouse">Mouse</a>
3561 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
3562 <li><a href="new_user_greeting">NEW USER GREETING</a>
3563 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
3564 <li><a href="h_mainhelp_readingnews">News Reading</a>
3565 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
3566 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
3567 <li><a href="h_common_nextnew">NextNew Command</a>
3568 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
3569 <li><a href="h_mainhelp_readingnews">NNTP</a>
3570 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
3571 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
3572 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
3573 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
3574 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
3575 <li><a href="h_config_color_style">OPTION: Color Style</a>
3576 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
3577 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
3578 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
3579 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
3580 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
3581 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
3582 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
3583 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
3584 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
3585 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
3586 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
3587 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
3588 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
3589 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
3590 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
3591 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
3592 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
3593 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
3594 <li><a href="h_config_file_dir">OPTION: File Directory</a>
3595 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
3596 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
3597 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
3598 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
3599 <li><a href="h_config_font_name">OPTION: Font Name</a>
3600 <li><a href="h_config_font_size">OPTION: Font Size</a>
3601 <li><a href="h_config_font_style">OPTION: Font Style</a>
3602 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
3603 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
3604 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
3605 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
3606 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
3607 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
3608 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
3609 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
3610 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
3611 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
3612 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
3613 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
3614 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
3615 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
3616 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
3617 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
3618 <li><a href="h_config_index_color">OPTION: Index Colors</a>
3619 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
3620 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
3621 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
3622 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
3623 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
3624 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
3625 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
3626 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
3627 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
3628 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
3629 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
3630 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
3631 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
3632 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
3633 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
3634 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
3635 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
3636 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
3637 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
3638 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
3639 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
3640 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
3641 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
3642 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
3643 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
3644 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
3645 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
3646 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
3647 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
3648 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
3649 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
3650 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
3651 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
3652 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
3653 <li><a href="h_config_pat_old">OPTION: Patterns</a>
3654 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
3655 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
3656 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
3657 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
3658 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
3659 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
3660 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
3661 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
3662 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
3663 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
3664 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
3665 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
3666 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
3667 <li><a href="h_config_printer">OPTION: Printer</a>
3668 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
3669 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
3670 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
3671 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
3672 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
3673 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
3674 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
3675 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
3676 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
3677 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
3678 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
3679 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
3680 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
3681 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
3682 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
3683 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
3684 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
3685 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
3686 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
3687 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
3688 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
3689 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
3690 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
3691 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
3692 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
3693 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
3694 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
3695 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
3696 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
3697 <li><a href="h_config_status_color">OPTION: Status Color</a>
3698 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
3699 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
3700 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
3701 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
3702 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
3703 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
3704 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
3705 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
3706 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
3707 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
3708 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
3709 <li><a href="h_config_title_color">OPTION: Title Color</a>
3710 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
3711 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
3712 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
3713 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
3714 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
3715 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
3716 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
3717 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
3718 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
3719 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
3720 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
3721 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
3722 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
3723 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
3724 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
3725 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
3726 <li><a href="h_config_window_position">OPTION: Window-Position</a>
3727 <li><a href="h_mainhelp_patterns">Patterns</a>
3728 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
3729 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
3730 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
3731 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
3732 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
3733 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
3734 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
3735 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
3736 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
3737 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
3738 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
3739 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
3740 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
3741 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
3742 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
3743 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
3744 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
3745 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
3746 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
3747 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
3748 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
3749 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
3750 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
3751 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
3752 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
3753 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
3754 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
3755 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
3756 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
3757 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
3758 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
3759 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
3760 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
3761 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
3762 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
3763 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
3764 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
3765 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
3766 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
3767 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
3768 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
3769 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
3770 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
3771 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
3772 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
3773 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
3774 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
3775 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
3776 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
3777 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
3778 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
3779 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
3780 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
3781 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
3782 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
3783 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
3784 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
3785 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
3786 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
3787 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
3788 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
3789 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
3790 <li><a href="h_common_pipe">Pipe Command</a>
3791 <li><a href="h_valid_folder_names">POP</a>
3792 <li><a href="h_common_postpone">Postpone Command</a>
3793 <li><a href="h_common_print">Print Command</a>
3794 <li><a href="h_mainhelp_readingnews">Reading News</a>
3795 <li><a href="h_news">RELEASE NOTES for Alpine</a>
3796 <li><a href="h_mainhelp_roles">Roles</a>
3797 <li><a href="h_role_select">ROLES SCREEN</a>
3798 <li><a href="h_compose_readfile">Read File Command</a>
3799 <li><a href="h_mainhelp_reading">Reading Messages</a>
3800 <li><a href="h_main_release_notes">Release Notes Command</a>
3801 <li><a href="h_common_reply">Reply and Forward Commands</a>
3802 <li><a href="h_compose_richhdr">Rich Header Command</a>
3803 <li><a href="h_common_role">Role Command</a>
3804 <li><a href="h_mainhelp_smime">S/MIME</a>
3805 <li><a href="h_index_cmd_select">Searching for Messages</a>
3806 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
3807 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
3808 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
3809 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
3810 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
3811 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
3812 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
3813 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
3814 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
3815 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
3816 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
3817 <li><a href="h_common_save">Save and Export Commands</a>
3818 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
3819 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
3820 <li><a href="h_compose_send">Send Command</a>
3821 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
3822 <li><a href="h_main_setup">Setup Command</a>
3823 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
3824 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
3825 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
3826 <li><a href="h_mainhelp_smime">S/MIME</a>
3827 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
3828 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
3829 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
3830 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
3831 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
3832 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
3833 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
3834 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
3835 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
3836 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
3837 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
3838 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
3839 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
3840 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
3841 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
3842 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
3843 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
3844 <li><a href="h_index_cmd_sort">Sort Command</a>
3845 <li><a href="h_compose_spell">Spell Check Command</a>
3846 <li><a href="h_common_suspend">Suspend Command</a>
3847 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
3848 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
3849 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
3850 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
3851 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
3852 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
3853 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
3854 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
3855 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
3856 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
3857 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
3858 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
3859 <li><a href="h_common_take">TakeAddr Command</a>
3860 <li><a href="h_mainhelp_status">Titlebar Line</a>
3861 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
3862 <li><a href="h_config_usenone_color">Use None Color</a>
3863 <li><a href="h_config_usenormal_color">Use Normal Color</a>
3864 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
3865 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
3866 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
3867 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
3868 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
3869 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
3870 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
3871 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
3872 </UL>
3875 &lt;End of Help Index&gt;
3876 </BODY>
3877 </HTML>
3880 ============== h_config_remote_config =============
3881 <HTML>
3882 <HEAD>
3883 <TITLE>Remote Configuration</TITLE>
3884 </HEAD>
3885 <BODY>
3886 <H1>Remote Configuration</H1>
3888 You may use the command line argument &quot;-p pinerc&quot; to tell
3889 Alpine to use a non-default configuration file.
3890 There are two types of storage for configuration information.
3891 <EM>Local</EM> configuration files are used by default.
3892 These are just regular files on the UNIX system or on the PC.
3893 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
3894 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
3895 <EM>Remote</EM> configuration folders are stored on an IMAP server.
3896 The advantage of using a remote configuration is that the same information
3897 may be accessed from multiple platforms.
3898 For example, if you use one computer at work and another at home, the same
3899 configuration could be used from both places.
3900 A configuration change from one place would be seen in both places.
3901 To use a remote configuration you simply give a
3902 <A HREF="h_valid_folder_names">remote folder name</A>
3903 as the argument to the &quot;-p&quot; command line option.
3904 The command line might look something like:
3906 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
3908 If there are special characters in the command shell you use, you may need to
3909 quote the last argument (to protect the curly braces from the shell).
3910 The command might look like:
3912 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
3914 You should choose a folder name for a folder that does not yet exist.
3915 It will be created containing an empty configuration.
3916 Do not use a folder that you wish to store regular mail messages in.
3918 The Setup/RemoteConfigSetup command will help you convert from a local
3919 configuration to a remote configuration.
3920 It will create a remote configuration for you and copy your current local
3921 configuration to it.
3922 It will also help you convert local address books into remote address books
3923 and local signature files into literal signatures contained in the
3924 remote configuration file.
3926 If the Setup/RemoteConfigSetup command doesn't do what you want, you
3927 may copy a local pinerc file to a remote configuration folder by hand
3928 by using the command line option &quot;-copy_pinerc&quot;.
3930 Another command line option, which is somewhat related to remote
3931 configuration, is the option &quot;-x exceptions_config&quot;.
3932 The configuration settings in the exceptions configuration override
3933 your default settings.
3934 It may be useful to store the default configuration (the -p argument) remotely
3935 and to have the exceptions configuration stored in a local file.
3936 You might put generic configuration information in the remote configuration
3937 and platform-specific configuration on each platform in the exceptions
3938 configuration.
3939 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
3940 can be either remote folders or local files.
3942 There is another command line argument that works only with PC-Alpine and
3943 which may prove useful when using a remote configuration.
3944 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
3945 to store your local auxiliary files.
3946 This only has an effect if your configuration file is remote.
3947 Some examples of auxiliary files are debug files, address book files, and
3948 signature files.
3950 &lt;End of help on this topic&gt;
3951 </BODY>
3952 </HTML>
3953 ============== h_config_exceptions =============
3954 <HTML>
3955 <HEAD>
3956 <TITLE>Generic and Exceptional Configuration</TITLE>
3957 </HEAD>
3958 <BODY>
3959 <H1>Generic and Exceptional Configuration</H1>
3961 If you use Alpine from more than one platform it may be convenient
3962 to split your configuration information into two pieces, a generic piece
3963 and exceptions that apply to a particular platform.
3964 For example, suppose you use Alpine from home and from work.
3965 Most of your configuration settings are probably the
3966 same in both locations, so those settings belong in the generic settings
3967 configuration.
3968 However, you may use a different SMTP server and INBOX
3969 from home than you do from work.
3971 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
3973 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
3974 options could be
3975 part of your exceptional configuration so that they could be different in the
3976 two places.
3978 The command line option &quot;-x exceptions_config&quot;
3979 may be used to split your configuration into generic and exceptional pieces.
3980 &quot;Exceptions_config&quot; may be either local or remote.
3981 The regular Alpine configuration file will contain the generic data, and
3982 &quot;exceptions_config&quot; will contain the exceptional data.
3984 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
3985 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
3986 in the same local directory that the regular config file is located in (usually
3987 the Unix home directory).
3988 If the regular config file is remote (because the command line option
3989 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
3990 directory for &quot;<CODE>.pinercex</CODE>&quot;.
3991 If the file does not already exist then no exceptions will be used.
3992 You can force exceptions to be used by using the &quot;-x&quot; option or
3993 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
3995 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
3996 PC-Alpine will use the value of the
3997 environment variable <CODE>$PINERCEX</CODE>.
3998 If that is not set, PC-Alpine will look for
3999 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4000 in the same local directory that the regular config file is located in.
4001 If the regular config file is remote (because the command line option
4002 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4003 local directory specified by the &quot;-aux local_directory&quot; command
4004 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4005 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4007 When you have an exception configuration there is a new command
4008 in the Alpine Setup screen, Setup/eXceptions.
4009 It toggles between exceptions and the regular configuration.
4010 This is the usual way to make changes in your exceptional configuration data.
4011 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4012 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4013 for Config or &quot;K&quot; for Kolor.
4015 For most people, splitting the configuration information into two pieces is
4016 going to be most useful if the generic information is accessed
4017 <A HREF="h_config_remote_config">remotely</A>).
4018 That data will be the same no matter where you access it from and if you
4019 change it that change will show up everywhere.
4020 The exceptional data will most commonly be in a local file, so that the
4021 contents may easily be different on each computing platform used.
4023 If you already have a local configuration file with settings you like
4024 you may find that the command Setup/RemoteConfigSetup is useful
4025 in helping you convert to a remote configuration.
4026 The command line flag &quot;-copy_pinerc&quot;
4027 may also be useful.
4029 &lt;End of help on this topic&gt;
4030 </BODY>
4031 </HTML>
4032 ============== h_config_inheritance =============
4033 <HTML>
4034 <HEAD>
4035 <TITLE>Configuration Inheritance</TITLE>
4036 </HEAD>
4037 <BODY>
4038 <H1>Configuration Inheritance</H1>
4040 Configuration inheritance is a power user feature.
4041 It is confusing and not completely supported by the configuration
4042 user interface.
4043 We start with an explanation of how configuration works in hopes of making
4044 it easier to describe how inheritance works.
4046 Alpine uses a hierarchy of configuration values from different locations.
4047 There are five ways in which each configuration option (configuration
4048 variable) can be set.
4049 In increasing order of precedence they are:
4051 <OL>
4052 <LI> the system-wide configuration file.
4054 <LI> the personal configuration file
4056 <LI> the personal exceptions file
4058 <LI> a command line argument
4060 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4061 </OL>
4063 The fixed configuration file is normally
4064 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4066 The system-wide configuration file is normally
4067 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4068 set for PC-Alpine.
4069 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4070 is used for the system-wide configuration.
4071 This location can be set or changed on the command line with the -P flag.
4072 The system-wide configuration file can be either a local file or a
4073 remote configuration folder.
4075 For Unix Alpine, the personal configuration file is normally the file
4076 <CODE>.pinerc</CODE> in the user's home directory.
4077 This can be changed with the -p command line flag.
4078 For PC-Alpine, the personal configuration file is in
4079 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4080 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4081 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4082 This can be changed with the -p command line flag.
4083 If -p is used, the configuration data may be in a local file or a remote config
4084 folder.
4086 For Unix Alpine, the personal exceptions configuration file is named
4087 <CODE>.pinercex</CODE> and is in the same directory as the personal
4088 configuration file, if that configuration file is not remote, and is in
4089 the home directory if the personal configuration file is remote.
4090 If the file exists, then exceptions are turned on.
4091 If it doesn't, then you are not using exceptions.
4092 Alternatively, you may change the location of the exceptions configuration
4093 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4094 Like the personal configuration data, exceptions_config may be
4095 either local or remote.
4097 For PC-Alpine, the personal exceptions configuration file is named
4098 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4099 configuration file unless the personal configuration file is remote.
4100 In that case, it is in the local directory specfied by the
4101 &quot;-aux local_directory&quot; command line argument.
4102 (In the case that the personal configuration is remote and there is no
4103 &quot;-aux&quot; command line argument, Alpine searches for
4104 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4105 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4106 If the file exists, then exceptions are turned on.
4107 If it doesn't, then you are not using exceptions.
4108 You may change the location of the exceptions configuration
4109 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4110 or with the
4111 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4112 option).
4114 To reiterate, the value of a configuration option is taken from the
4115 last location in the list above in which it is set.
4116 Or, thinking about it slightly differently, a default value for an option
4117 is established in the system-wide configuration file (or internally by Alpine
4118 if there is no value in the system-wide file).
4119 That default remains in effect until and unless it is overridden by a value in a
4120 location further down the list, in which case a new &quot;default&quot;
4121 value is established.
4122 As we continue down the list of locations we either retain the
4123 value at each step or establish a new value.
4124 The value that is still set after going through the whole list of
4125 configuration locations is the one that is used.
4127 So, for example, if an option is set in the system-wide configuration
4128 file and in the personal configuration file, but is not set in the
4129 exceptions, on the command line, or in the fixed file; then the value
4130 from the personal configuration file is the one that is used.
4131 Or, if it is set in the system-wide config, in the personal config, not
4132 in the exceptions, but is set on the command line; then the value
4133 on the command line is used.
4135 Finally we get to inheritance.
4136 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4137 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4138 the inheritance mechanism makes it possible to <EM>combine</EM>
4139 the values from different locations instead of <EM>replacing</EM> the value.
4140 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4141 for which you may already set whatever you want at
4142 any configuration location (by using the &quot;no-&quot; prefix if
4143 necessary).
4145 To use inheritance, set the first item in a configuration list to the
4146 token &quot;INHERIT&quot;, without the quotes.
4147 If the first item is &quot;INHERIT&quot;,
4148 then instead of replacing the default value established so far, the rest of
4149 the list is appended to the default value established so far and that is
4150 the new value.
4152 Here is an example which may make it clearer. Suppose we have:
4154 <PRE>
4155  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4156  Personal config    :   smtp-server = INHERIT, mysmtp.home
4157  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4158  Command line       :   smtp-server = &lt;No Value Set&gt;
4159  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4160 </PRE>
4163 This would result in an effective smtp-server option of
4165 <PRE>
4166  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4167 </PRE>
4169 The &quot;INHERIT&quot; token can be used in any of the configuration files
4170 and the effect cascades.
4171 For example, if we change the above example to:
4173 <PRE>
4174  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4175  Personal config    :   smtp-server = INHERIT, mysmtp.home
4176  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4177  Command line       :   smtp-server = &lt;No Value Set&gt;
4178  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4179 </PRE>
4182 This would result in:
4184 <PRE>
4185  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4186 </PRE>
4188 Unset variables are skipped over (the default value is carried forward) so
4189 that, for example:
4191 <PRE>
4192  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4193  Personal config    :   smtp-server = &lt;No Value Set&gt;
4194  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4195  Command line       :   smtp-server = &lt;No Value Set&gt;
4196  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4197 </PRE>
4200 produces:
4202 <PRE>
4203  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4204 </PRE>
4207 If any later configuration location has a value set (for a particular list
4208 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4209 then that value replaces whatever value has been defined up to that point.
4210 In other words, that cancels out any previous inheritance.
4212 <PRE>
4213  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4214  Personal config    :   smtp-server = INHERIT, mysmtp.org
4215  Exceptions config  :   smtp-server = yoursmtp.org
4216  Command line       :   smtp-server = &lt;No Value Set&gt;
4217  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4218 </PRE>
4221 results in:
4223 <PRE>
4224  smtp-server = yoursmtp.org
4225 </PRE>
4228 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4229 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4230 difficult to insert the value &quot;INHERIT&quot; into the list of values
4231 for the option using the normal Setup tools.
4232 In other words, the color setting screen (for example) does not
4233 provide a way to input the text &quot;INHERIT&quot; as the first
4234 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4235 The way to do this is to either edit the pinerc file directly and manually
4236 insert it, or turn
4237 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4238 feature and insert it using the Setup/Config screen.
4240 &lt;End of help on this topic&gt;
4241 </BODY>
4242 </HTML>
4243 ============== h_special_xon_xoff =============
4244 <HTML>
4245 <HEAD>
4246 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4247 </HEAD>
4248 <BODY>
4249 <H1>XOFF/XON Handling within Alpine</H1>
4251 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4252 and XON) as normal characters, even though Alpine does not use them.
4253 However, the printer, modem, or communication software you are using may
4254 be configured for &quot;software flow control,&quot; which means that
4255 XON/XOFF must be treated as special characters by the operating system.
4256 If you see messages such as &quot;^S not defined for this screen&quot;,
4257 then your system is probably using software flow control. In this case
4258 you will need to set the
4259 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4260 feature.
4262 If you <EM>do</EM> set this
4263 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4264 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4265 and see if that puts things right.  Printing via the
4266 &quot;attached-to-ansi&quot; or 
4267 &quot;attached-to-wyse&quot;
4268 option will automatically enable software
4269 flow-control handling for the duration of the printing.
4271 &lt;End of help on this topic&gt;
4272 </BODY>
4273 </HTML>
4274 ============= h_special_help_nav =============
4275 <HTML>
4276 <HEAD>
4277 <TITLE>Help Text Navigation Explained</TITLE>
4278 </HEAD>
4279 <BODY>
4280 <H1>Help Text Navigation Explained</H1>
4282 Alpine contains extensive context-sensitive help text.   At any point, 
4283 pressing the &quot;?&quot; key will bring up a page of help text
4284 explaining the options available to you.  You can leave the help
4285 text screen and return to normal Alpine operation by pressing
4287 <!--chtml if pinemode="function_key"-->
4288 F3 function
4289 <!--chtml else-->
4290 &quot;E&quot;
4291 <!--chtml endif-->
4292 key to Exit Help at any time.
4295 Within the help screen you might find a word or phrase displayed in 
4296 inverse text and others displayed in bold typeface.  Such words and
4297 phrases are used to tell you Alpine has more information available on
4298 the topic they describe.
4299 The inverted text is the &quot;selected&quot; topic.  
4300 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4301 displayed in bold type
4302 is &quot;selected&quot;.
4303 Hit the Return key to display the information Alpine has available on that
4304 topic.  While viewing such additional information, the 
4305 <!--chtml if pinemode="function_key"-->
4306 F3 function
4307 <!--chtml else-->
4308 &quot;P&quot;
4309 <!--chtml endif-->
4310 key will return you to the previous help screen, and the
4311 <!--chtml if pinemode="function_key"-->
4312 F2 function
4313 <!--chtml else-->
4314 &quot;E&quot;
4315 <!--chtml endif-->
4316 key will Exit the Help system altogether.
4319 The "N" command will tell you the internal name of the help text you are 
4320 reading each time, so that you can send this name in the text of a message 
4321 and create a direct link to that internal help using the x-pine-help URL 
4322 scheme. For example, the direct link to this item is 
4323 x-pine-help:h_special_help_nav. If you add this text to a message, then
4324 a person using Pine to read such message would have a direct link to this
4325 help text.
4328 When you are finished reading this help text, you can press the
4329 <!--chtml if pinemode="function_key"-->
4330 F3 function
4331 <!--chtml else-->
4332 &quot;P&quot;
4333 <!--chtml endif-->
4334 key to return to the previously displayed help text.
4337 &lt;End of help on this topic&gt;
4338 </BODY>
4339 </HTML>
4340 ============= h_special_list_commands =============
4341 <HTML>
4342 <HEAD>
4343 <TITLE>Email List Commands Explained</TITLE>
4344 </HEAD>
4345 <BODY>
4346 <H1>Email List Commands Explained</H1>
4348 Electonic mail lists provide a way for like-minded users to join in
4349 discussions on topics of interest.  The email list itself is 
4350 represented by a
4351 single address that participants send messages to when they have
4352 something of interest to share with other members of the list.  The
4353 receiving computer then, either automatically or after review by the
4354 list's owner (or moderator), sends a copy of that message to each
4355 member of the list.
4358 Usually, subscribing and unsubscribing is done by sending requests in
4359 an email message to a special address setup to handle managing list
4360 membership.  Often this is the name of the list followed by
4361 <I>-request</I>.  This address is almost <EM>never</EM> the same as
4362 the address used to send messages to the list.
4365 Unfortunately, email list participation commands are more a matter
4366 of convention than standard, and thus may vary from list to list.
4367 Increasingly, list management software is adding information to
4368 the copy of the postings as they're copied to the list members that
4369 explains how to do the various list management functions.
4372 Alpine will recognize this information and offer the management commands
4373 they represent in a simple display. One or more of the following
4374 operations will be made available:
4376 <DL>
4377 <DT>Help</DT>
4378 <DD>
4379 A method to get help on subscribing, unsubscribing, 
4380 an explanation of what the list is about, or special instructions
4381 for participation.  This may be in the form of a reply in response
4382 to an email message, or instructions on how to connect to a Web site.
4383 </DD>
4385 <DT>Unsubscribe</DT>
4386 <DD>
4387 A method to get your email addressed removed from the list of
4388 recipients of the email list.
4389 </DD>
4391 <DT>Subscribe</DT>
4392 <DD>
4393 A method to get your email address added to the list of recipients
4394 of the email list.  It may be in the form of a message sent to 
4395 a special address or you may be connected to a web site.
4396 <DD>
4397 </DD>
4399 <DT>Post</DT>
4400 <DD>
4401 A method used to post to the email list.  However, it might also 
4402 indicate that no posting is allowed directly to the list.
4403 </DD>
4405 <DT>Owner</DT>
4406 <DD>
4407 A method to contact the list owner for special questions you might
4408 have regarding the list.
4409 </DD>
4411 <DT>Archive</DT>
4412 <DD>
4413 A method to view an archive of previous messages posted to the list.
4414 This may be in the form of a mail folder on a remote computer, an
4415 IMAP mailbox or even a Web site.
4416 </DD>
4417 </DL>
4420 &lt;End of help on this topic&gt;
4421 </BODY>
4422 </HTML>
4423 ============= h_quota_command =============
4424 <HTML>
4425 <HEAD>
4426 <TITLE>Quota Screen Explained</TITLE>
4427 </HEAD>
4428 <BODY>
4429 <H1>Quota Screen Explained</H1>
4431 <P> This screen summarizes the quota report for this mailbox in the
4432 IMAP server. For each resource that you have a quota, this reports summarizes
4433 its use and limit.
4435 <P> Your IMAP server administrator may have set a quota based either on 
4436 the total size of your mailbox (STORAGE), or the number of messages in 
4437 your mailbox (MESSAGES), or some other criteria. This will be reported
4438 to you indicating the type of quota, its total use and its limit.
4440 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
4441 1024 bytes. Each of the characters that you see in this help text is one 
4442 byte, and this help text is about 1 kibibyte in size. Small messages sent 
4443 by Alpine are normally less than 4 kibibytes in size (which includes 
4444 headers and text). Other email programs may send messages with bigger 
4445 sizes when they send messages, since they send plain text and an 
4446 alternative part in HTML.
4448 <P> A convenient way to save space for the STORAGE type of quota is by 
4449 deleting attachments. This is done on each individual message by pressing 
4450 the &quot;V&quot; command while reading the message text, then moving the cursor 
4451 to the position of the attachment that is to be deleted, then pressing
4452 &quot;D&quot; to delete such attachment, going back to reading the 
4453 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
4454 save the message in the same folder you are reading from. The saved 
4455 message will not have the attachment that was marked deleted. Now you
4456 can delete and expunge the message with the unwanted attachment.
4459 &lt;End of help on this topic&gt;
4460 </BODY>
4461 </HTML>
4462 ============= h_mail_thread_index =============
4463 <HTML>
4464 <HEAD>
4465 <TITLE>THREAD INDEX COMMANDS</TITLE>
4466 </HEAD>
4467 <BODY>                 
4468 <H1>THREAD INDEX COMMANDS</H1>
4469 <!--chtml if pinemode="function_key"-->
4470 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>
4471 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4472 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>
4473 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>
4474 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>
4475 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>
4476 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>
4477 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>
4478 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>
4479 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>
4480 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>
4481 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>
4482 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>
4483 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>
4484 <BR>
4485 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4486 -----------------------------<BR>
4487 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>
4488 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>
4489 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>
4490 <BR>
4491 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4492 -----------------------------<BR>
4493 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
4494 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
4495 <BR>
4496 <!--chtml else-->
4497 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>
4498 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4499 &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>
4500 &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>
4501 &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>
4502 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>
4503 &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>
4504 &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>
4505 &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>
4506 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>
4507 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4508 <BR>
4509 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
4510 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
4511 &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>
4512 &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>
4513 &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>
4514 &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>
4515 &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>
4516 &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>
4517 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
4518 <!--chtml endif-->
4521 NOTE:
4522 <OL>
4523  <LI>For help on a particular command, highlight the bold text associated
4524 with it above and hit Return.
4525  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4526 </OL>
4528 <H2>Description of the THREAD INDEX Screen</H2>
4530 The THREAD INDEX displays summary information from each
4531 thread (conversation) in the current folder.
4532 This is useful if you want to quickly
4533 scan new threads, or find a particular thread without having to go
4534 through the text of each message, or to quickly get rid of junk
4535 threads, etc.
4536 The current thread is always highlighted.
4537 Each line of the THREAD INDEX contains the following columns: <P>
4538 <DL>
4539  <DT>STATUS:</DT>
4540  <DD> The markings on the left side of the thread tell you about its
4541 status.  You may see one or more of the following codes on any given
4542 thread:
4543 <UL>
4544   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
4545   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
4546   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
4547   <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.
4548   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4549         message in the thread was sent to you as a cc:. This symbol will only show up if
4550         the feature
4551         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4552   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
4553         &quot;select&quot; command.  (Some systems may optionally allow selected
4554         messages to be denoted by the index line being displayed in bold
4555         type instead.)
4556   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4557       to mark at least one message in this thread as &quot;important&quot;.
4558 </UL></DD><P>
4560  <DT>THREAD NUMBER:</DT>
4561  <DD>Threads in a folder are numbered, from one through the number
4562 of threads in the folder, to help you know where you are in the folder.
4563 </DD><P>
4565  <DT>DATE STARTED:</DT>
4566  <DD>The date the thread was started. This is actually from the Date header
4567 of the first message in the thread. It doesn't take different time zones
4568 into account.</DD><P>
4570  <DT>WHO STARTED THE THREAD:</DT>
4571  <DD>This is usually the name of the sender of the first message in the thread, taken from
4572 the From header of the message.
4573 If there is no personal name given in that
4574 address, then the email address is used instead.
4575 If the message is from you (or from one of your
4576 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4577 then the recipient's name is shown here instead, with the characters
4578 &quot;To: &quot; inserted before the name.
4579 (The idea of this is that if you started the thread you would rather see who
4580 the mail was sent to instead of that the mail was from you.)
4581 In Newsgroups, if you are
4582 the sender and there are no email recipients, the newsgroup name will be
4583 listed after the &quot;To: &quot;.
4584 </DD><P>
4586  <DT>SIZE:</DT>
4587  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
4589  <DT>SUBJECT:</DT>
4590  <DD>As much of the thread's subject line as will fit on the screen.
4591 This is the subject of the first message in the thread.</DD>
4592 </DL>
4594 <P><UL>
4595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4596 </UL>
4598 &lt;End of help on this topic&gt;
4599 </BODY>
4600 </HTML>
4601 ============= h_mail_index =============
4602 <HTML>
4603 <HEAD>
4604 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
4605 </HEAD>
4606 <BODY>                 
4607 <H1>MESSAGE INDEX COMMANDS</H1>
4608 <!--chtml if pinemode="function_key"-->
4609 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>
4610 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4611 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>
4612 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>
4613 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>
4614 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>
4615 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>
4616 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>
4617 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>
4618 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>
4619 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>
4620 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>
4621 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>
4622 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>
4623 <BR>
4624 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4625 -----------------------------<BR>
4626 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>
4627 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>
4628 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>
4629 <BR>
4630 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4631 -----------------------------<BR>
4632 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
4633 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>
4634 <BR>
4635 <!--chtml else-->
4636 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>
4637 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4638 &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>
4639 &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>
4640 &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>
4641 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>
4642 &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>
4643 &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>
4644 &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>
4645 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>
4646 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4647 Miscellaneous&nbsp;Operations<BR>
4648 ------------------------<BR>
4649 &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>
4650 &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>
4651 &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>
4652 &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>
4653 &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>
4654 &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>
4655 &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>
4656 &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>
4657 <!--chtml endif-->
4660 NOTE:
4661 <OL>
4662  <LI>For help on a particular command, highlight the bold text associated
4663 with it above and hit Return.
4664  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4665 </OL>
4667 <H2>Description of the MESSAGE INDEX Screen</H2>
4669 The MESSAGE INDEX displays summary information from each
4670 message in the current folder.
4671 This is useful if you want to quickly
4672 scan new messages, or find a particular message without having to go
4673 through the text of each message, or to quickly get rid of junk
4674 messages, etc.
4676 The current message is always highlighted
4677 and many commands operate on the current message.
4678 For example, the Delete command will delete the current message.
4679 If the folder is sorted by either Threads or OrderedSubject, then, depending
4680 on some of your configuration settings, a single line in the index may
4681 refer to an entire thread or to a subthread.
4682 If that is the case, then the commands that normally operate on the current
4683 message will operate on the thread or subthread instead.
4684 For example, the Delete command will delete the whole collapsed thread
4685 instead of just a single message.
4687 Each line of the MESSAGE INDEX contains the following columns (by default -- 
4688 you can change this with the 
4689 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
4690 in the SETUP CONFIGURATION screen): <P>
4691 <DL>
4692  <DT>STATUS:</DT>
4693  <DD> The markings on the left side of the message tell you about its
4694 status.  You may see one or more of the following codes on any given
4695 message:
4696 <UL>
4697   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
4698          yet eXpunged the folder.
4699   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
4700   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
4701          to be answered.
4702   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
4703          forward a message.
4704   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
4705         directly to your account, your copy is not part of a cc: or a
4706         mailing list.
4707   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4708         message was sent to you as a cc:. This symbol will only show up if
4709         the feature
4710         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4711   <LI> &quot;X&quot; for selected.  You have selected the message by using the
4712         &quot;select&quot; command.  (Some systems may optionally allow selected
4713         messages to be denoted by the index line being displayed in bold
4714         type.)
4715   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4716       to mark this message as &quot;important&quot;.
4717 </UL></DD><P>
4719  <DT>MESSAGE NUMBER:</DT>
4720  <DD>Messages in a folder are numbered, from one through the number
4721 of messages in the folder, to help you know where you are in the folder.
4722 These numbers are always in increasing order, even if you sort the folder
4723 in a different way.</DD><P>
4725  <DT>DATE SENT:</DT>
4726  <DD>The date the message was sent.  By default, messages are
4727 ordered by arrival time, not by date sent.  Most of the time, arrival time
4728 and date sent (effectively departure time) are similar.  Sometimes,
4729 however, the index will appear to be out of order because a message took a
4730 long time in delivery or because the sender is in a different time
4731 zone than you are. This date is just the date from the Date header
4732 field in the message.</DD><P>
4734  <DT>WHO SENT THE MESSAGE:</DT>
4735  <DD>This is usually the name of the sender of the message, taken from
4736 the From header of the message.
4737 If there is no personal name given in that
4738 address, then the email address is used instead.
4739 If the message is from you (or from one of your
4740 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4741 then the recipient's name is shown here instead, with the characters
4742 &quot;To: &quot; inserted before the name.
4743 (The idea of this is that if you sent the mail you would rather see who
4744 the mail was sent to instead of that the mail was from you.
4745 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
4746 above.
4747 In particular, use the FROM token or the FROMORTONOTNEWS token
4748 in place of the FROMORTO token.)
4749 In Newsgroups, if you are
4750 the sender and there are no email recipients, the newsgroup name will be
4751 listed after the &quot;To: &quot;. </DD><P>
4753  <DT>SIZE:</DT>
4754  <DD>The number in parentheses is the number of characters in the message.
4755 It may have a suffix of K, M, or G which means the number should be
4756 multiplied by one thousand, one million, or one billion to get the
4757 size of the message.</DD><P>
4759  <DT>SUBJECT:</DT>
4760  <DD>As much of the message's subject line as will fit on the screen.</DD>
4761 </DL>
4763 <P><UL>
4764 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4765 </UL>
4767 &lt;End of help on this topic&gt;
4768 </BODY>
4769 </HTML>
4770 ============= h_mail_view ========================
4771 <HTML>
4772 <HEAD>
4773 <TITLE>MESSAGE TEXT SCREEN</TITLE>
4774 </HEAD>
4775 <BODY>
4776 <H1>MESSAGE TEXT SCREEN</H1>
4777 <!--chtml if pinemode="function_key"-->
4778 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>
4779 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
4780 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>
4781 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>
4782 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>
4783 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>
4784 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>
4785 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>
4786 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>
4787 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>
4788 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>
4789 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>
4790 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>
4791 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>
4792 <BR>
4793 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4794 ------------------------------<BR>
4795 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
4796 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
4797 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
4798 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
4799 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
4800 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
4801 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
4802 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
4803 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
4804 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
4805 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
4806 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
4807 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4808 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
4809 <!--chtml else-->
4810 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
4811 ---------------------------------<BR>
4812 <BR>
4813 &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>
4814 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>
4815 &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>
4816 &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>
4817 &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>
4818 &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>
4819 &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>
4820 &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>
4821 &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>
4822 <BR>
4823 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
4824 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
4825 &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>
4826 &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>
4827 &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>
4828 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>
4829 <BR>
4830 General&nbsp;Alpine&nbsp;Commands<BR>
4831 ---------------------<BR>
4832 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
4833 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
4834 &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>
4835 &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>
4836 &nbsp;&nbsp;&nbsp;&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>
4837 <!--chtml endif-->
4840 NOTE:
4841 <OL>
4842  <LI>For help on a particular command, highlight the bold text associated
4843 with it above and hit Return.
4844  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4845 </OL>
4847 <H2>Description of the MESSAGE TEXT Screen</H2>
4849 The top line of the view message screen displays status
4850 information about the currently open collection and folder and about the
4851 current message.  It shows the name of the collection in angle brackets
4852 and then the name of the folder.  The line also displays the number
4853 of messages in the folder, the number of the current message and the
4854 percentage of the current message that has been displayed on the screen.
4855 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
4856 right corner.
4857 If the message has been answered (but not deleted) &quot;ANS&quot; will show
4858 in the corner.
4861 NOTE: to rapidly move to the end of a message, hit the
4862 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
4863 (or Ctrl-W) key followed
4864 by Ctrl-V.  Similarly,
4865 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
4866 followed by Ctrl-Y will take you to the beginning of
4867 a message.
4869 <H2>Explanation of Alternate Character Sets</H2>
4871 Alpine attempts to stay out of the way so that it won't prevent you from
4872 viewing mail in any character set.  It will simply send the message to
4873 your display device.  If the device is capable of displaying the
4874 message as it was written it will do so.  If not, the display may be
4875 partially or totally incorrect.
4876 If the message contains characters that are not representable in your 
4877 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
4878 variable in your configuration, then a warning message will be printed
4879 to your screen at the beginning of the message display.
4880 It is probably best to use UNIX Alpine in a terminal emulator
4881 capable of displaying UTF-8 characters.
4882 See <A HREF="h_config_char_set">Display Character Set</A> for a little
4883 more information about character set settings.
4885 <P><UL>
4886 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4887 </UL>
4889 &lt;End of help on this topic&gt;
4890 </BODY>
4891 </HTML>
4892 ======= h_index_cmd_select =======
4893 <HTML>
4894 <HEAD>
4895 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
4896 </HEAD>
4897 <BODY>
4898 <H1>Selecting: Select and WhereIs/Select</H1>
4900 Aggregate operations give you the ability to process a group of messages
4901 at once.  Acting on multiple messages requires two steps: (1) selecting a
4902 set of messages and then; (2) applying a command to that set. The first
4903 part is handled by the select command.  Select allows you to
4904 select messages based on their status (read, answered, etc.), contents,
4905 date, size, or keywords.
4906 You may also select based on one of your Rules or based on threads,
4907 and there are quick options to select a specific message or range of messages,
4908 to select the current message, or to select all messages.
4911 We describe the various selection criteria briefly:
4914 <DL>
4915 <DT>select All</DT>
4916 <DD> Marks all the messages in the folder as selected.
4917 </DD>
4919 <DT>select Cur</DT>
4920 <DD> Selects the currently highlighted message or currently highlighted
4921 set of messages if in a threaded view.
4922 </DD>
4924 <DT>select by Number</DT>
4925 <DD> Select by message number. This may be a comma-separated list instead or
4926 a single entry.
4927 Each element in the list may be either a single message number or a range
4928 of numbers with a dash between the lowest and highest member of the range.
4929 Some examples are 7 to select only message number 7; 2-5 to select messages
4930 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
4931 The word &quot;end&quot; may be used as a substitute for the highest numbered
4932 message in the folder.
4933 If in a separate thread index where the numbers refer to threads instead of
4934 to messages, then you will be selecting all of the messages in the
4935 referenced threads instead of selecting by message number.
4936 </DD>
4938 <DT>select by Date</DT>
4939 <DD> Select by either the date stored in the Date headers of each message,
4940 or by the date when the messages arrived.
4941 This does not adjust for different time zones, but just checks to see what
4942 day the message was sent on.
4943 You may type in a date. If you do, the date should be in the form
4944 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
4945 For example,
4946 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
4948 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
4949 If the date you want is close to the current date, it is probably
4950 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
4951 is displayed, instead of typing in the date yourself.
4952 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
4953 the date of the currently highlighted message. 
4955 There are six possible settings that are selected using the
4956 &quot;^W&nbsp;Toggle When&quot; command.
4957 Three of them select messages based on the Date headers.
4958 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
4959 and &quot;SENT ON&quot;.
4960 SINCE is all messages with the selected date or later.
4961 BEFORE is all messages earlier than the selected date (not including the day
4962 itself).
4963 ON is all messages sent on the selected date.
4964 The other three select messages in the same way but they use the arrival
4965 times of the messages instead of the Date headers included in the messages.
4966 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
4967 and &quot;ARRIVED ON&quot;.
4968 When you save a message from one folder to another the arrival time is
4969 preserved.
4970 </DD>
4972 <DT>select by Text</DT>
4973 <DD> Selects messages based on the message contents.
4974 This allows you to select a set of messages based on whether or not the
4975 message headers or message body contain specified text.
4976 You may look for text in the Subject, the From header,
4977 the To header, or the Cc header.
4978 You may also choose Recipient, which searches for the text in
4979 either the To or the Cc header;
4980 or Participant, which means To or Cc or From.
4981 Besides those specific header searches, you may also search the entire
4982 header and text of the message with &quot;All Text&quot;, or just the
4983 body of the message.
4985 To search for the absence of text, first type the &quot;! Not&quot; command
4986 before typing the specific type of text search.
4987 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
4988 search for all messages that do not contain a particular word in their
4989 Subjects.
4991 If you choose a Subject search, you may use the subject from the current
4992 message by typing the &quot;^X Cur Subject&quot; command.
4993 You may then edit it further if you wish.
4994 For example, you might select the subject of a reply and edit the
4995 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
4996 the original message being replied to.
4997 All of the other header searches allow you to use addresses from the
4998 headers of the current message if you want to.
4999 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5000 &quot;^W Cur Cc&quot;.
5001 In each case, if there is more than one address, only the first is offered.
5002 </DD>
5004 <DT>select by Status</DT>
5005 <DD> Selects messages based on their status.
5006 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5007 messages.
5008 Or, if you first type the &quot;! Not&quot; command, you get not New,
5009 or not Important, and so on.
5010 If you select Deleted messages, you will get all messages with their
5011 Deleted flag set.
5012 Likewise for Important messages, all messages that you have flagged as
5013 being Important with the
5014 <A HREF="h_common_flag">Flag</A> command.
5015 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5016 because they try to match what you see on the screen by default.
5017 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5018 and Unanswered.
5019 If you have looked at the message, or deleted it, or answered it; then it
5020 is not considered &quot;New &quot;.
5021 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5023 &quot;Answered&quot; is another one that is a little different.
5024 It means that the message has been Answered <EM>and</EM> is not deleted.
5025 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5026 the opposite of &quot;Answered&quot;!
5027 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5028 both Unanswered <EM>and</EM> not deleted.
5030 The other two types were added later because the special nature of the
5031 New flag was not what was wanted by all users.
5032 New does match what you see in the index by default, but if you use
5033 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5034 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5035 be exactly what you want.
5036 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5037 they are deleted or answered, and
5038 &quot;Recent&quot; selects all of the messages that have been added to
5039 the folder since you started this Alpine session.
5040 (That's not technically quite true. If there are multiple mail clients
5041 reading an IMAP mailbox, each message will be marked as Recent in only
5042 one of the client's sessions.)
5043 </DD>
5045 <DT>select by siZe</DT>
5046 <DD> Selects messages based on their size being smaller than or larger
5047 than the size you specify.
5048 The size is the number of bytes.
5049 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5050 the number.
5051 For example, 7K is the same as 7000.
5052 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5053 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5054 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5055 and Larger.
5056 </DD>
5058 <DT>select by Keyword</DT>
5059 <DD> Selects messages that either have or do not have
5060 (using the &quot;!&nbsp;Not&quot; command)
5061 a particular <A HREF="h_config_keywords">Keyword</A> set.
5062 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5063 command to select one from your list of keywords.
5065 <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.
5066 </DD>
5068 <DT>select by Rule</DT>
5069 <DD> Selects messages that either match or don't match
5070 (using the &quot;!&nbsp;Not&quot; command)
5071 one of the Rules you have defined.
5072 The most likely method of filling in the Rule is to use the
5073 &quot;^T&nbsp;To&nbsp;List&quot;
5074 command to select one of your Rules.
5075 All of the Rules you have defined will be in the list, including
5076 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5077 They may not all make sense for this purpose, but they are all there for
5078 flexibility.
5079 You might find it useful to define some rules solely for the purpose
5080 of being used by the Select command.
5081 There is a special category for such Rules. They are called Search Rules.
5083 Unfortunately, Alpine does not allow all possible Rules to be defined.
5084 For example, there is no logical OR operation.
5085 OR is accomplished in the Filter Rules or the other types of Rules by
5086 simply defining two rules, one that matches the first part of the OR
5087 and another that matches the second part.
5088 But you can't do that here, since you only have a single Rule to work with.
5089 Likewise, the order of Rules is usually important.
5090 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5091 a message, then that stops the search for a further match.
5092 This means that you may be confused if you try to use Select by Rule to
5093 check your Filter rules because the order is important when filtering but
5094 is not considered here.
5095 </DD>
5097 <DT>select by tHread</DT>
5098 <DD> Selects all of the messages in the current thread.
5099 </DD>
5100 </DL>
5102 After you have an initial selection, the next and subsequent selection
5103 commands modify the selection.
5104 The select command changes. It first gives
5105 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5106 &quot;unselect Current&quot;,
5107 &quot;Broaden selection&quot; (implements a logical OR), and
5108 &quot;Narrow selection&quot; (implements a logical AND).
5109 After you choose either Broaden or Narrow, you then choose one of the
5110 selection criteria listed above (by Text or Number or ...).
5111 You may use select as many times as you wish to get the selected set right.
5114 The WhereIs command has a feature (Ctrl-X) to
5115 select all the messages that match the WhereIs search. WhereIs searches
5116 through just the text that appears on the MESSAGE INDEX screen.
5117 This method is often slower than using the select command itself, unless the
5118 line you are looking for is not too far away in the index.
5121 The availability of the aggregate operations commands is determined by the
5122 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5123 Feature-List option in your Alpine
5124 configuration, which defaults to set.
5125 The features
5126 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5128 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5129 affect the behavior of the Select command.
5132 &lt;End of help on this topic&gt;
5133 </BODY>
5134 </HTML>
5135 ======= h_select_rule =======
5136 <HTML>
5137 <HEAD>
5138 <TITLE>Select: Rule</TITLE>
5139 </HEAD>
5140 <BODY>
5141 <H1>Select: Rule</H1>
5143 You are selecting messages that either match or don't match
5144 one of the Rules you have defined.
5145 You may either type the nickname of the Rule at the prompt, or use the
5146 &quot;^T&nbsp;To&nbsp;List&quot;
5147 command to select one of your Rules.
5148 All of the Rules you have defined will be in the list, including
5149 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5150 They may not all make sense for this purpose, but they are all there for
5151 flexibility.
5152 Rules may be added by using the Setup/Rules screen off of the main Alpine
5153 menu.
5155 Unfortunately, Alpine does not allow all possible Rules to be defined.
5156 For example, there is no logical OR operation.
5157 OR is accomplished in the Filter Rules or the other types of Rules by
5158 simply defining two rules, one that matches the first part of the OR
5159 and another that matches the second part.
5160 But you can't do that here, since you only have a single Rule to work with.
5161 Likewise, the order of Rules is usually important.
5162 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5163 a message, then that stops the search for a further match.
5164 This means that you may be confused if you try to use Select by Rule to
5165 check your Filter rules because the order is important when filtering but
5166 is not considered here.
5169 &lt;End of help on this topic&gt;
5170 </BODY>
5171 </HTML>
5172 ======= h_select_text =======
5173 <HTML>
5174 <HEAD>
5175 <TITLE>Select: Text</TITLE>
5176 </HEAD>
5177 <BODY>
5178 <H1>Select: Text</H1>
5180 You are selecting messages based on the contents of the message.
5181 This allows you to select a set of messages based on whether or not the
5182 message headers or message body contain specified text.
5183 You may look for text in the Subject, the From header,
5184 the To header, or the Cc header.
5185 You may also choose Recipient, which searches for the text in
5186 either the To or the Cc header;
5187 or Participant, which means either the To header, or the Cc header,
5188 or the From header.
5189 Besides those specific header searches, you may also search the entire
5190 header and text of the message with &quot;All Text&quot;, or just the
5191 body of the message with &quot;Body&quot;.
5193 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5194 before typing the specific type of text search.
5195 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5196 search for all messages that do not contain a particular word in their
5197 Subjects.
5199 If you choose a Subject search, you may use the subject from the current
5200 message by typing the &quot;^X Cur Subject&quot; command.
5201 You may then edit it further if you wish.
5202 For example, you might select the subject of a reply and edit the
5203 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5204 the original message being replied to.
5205 All of the other header searches allow you to use addresses from the
5206 headers of the current message if you want to.
5207 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5208 &quot;^W Cur Cc&quot;.
5209 In each case, if there is more than one address, only the first is offered.
5212 &lt;End of help on this topic&gt;
5213 </BODY>
5214 </HTML>
5215 ======= h_select_status =======
5216 <HTML>
5217 <HEAD>
5218 <TITLE>Select: Status</TITLE>
5219 </HEAD>
5220 <BODY>
5221 <H1>Select: Status</H1>
5223 You are selecting messages based on the status of the message.
5224 For example, whether or not the message has been marked Deleted or Important,
5225 or whether or not it has been Answered or is New.
5226 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5227 opposite: not Deleted, not Important, and so on.
5229 If you select Deleted messages, you will get all messages with their
5230 Deleted flag set.
5231 Likewise for Important messages, all messages that you have flagged as
5232 being Important with the
5233 <A HREF="h_common_flag">Flag</A> command.
5234 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5235 because they try to match what you see on the screen by default.
5236 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5237 and Unanswered.
5238 If you have looked at the message, or deleted it, or answered it; then it
5239 is not considered &quot;New &quot;.
5240 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5242 &quot;Answered&quot; is another one that is a little different.
5243 It means that the message has been Answered <EM>and</EM> is not deleted.
5244 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5245 the opposite of &quot;Answered&quot;!
5246 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5247 both Unanswered <EM>and</EM> not deleted.
5249 (The New and Answered options may seem counter-intuitive.
5250 The reason it is done this way is
5251 because, by default, a Deleted message will show up with the &quot;D&quot;
5252 symbol in the MAIL INDEX screen even if it is New or Answered.
5253 The Delete symbol overrides the New and Answered symbols, because you
5254 usually don't care about the message anymore once you've deleted it.
5255 Similarly, you usually only care about whether a message is Answered or
5256 not if it is not Deleted.
5257 Once it is Deleted you've put it out of your mind.)
5259 The other two options were added later because the special nature of the
5260 New flag was not what was wanted by all users.
5261 New does match what you see in the index by default, but if you use
5262 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5263 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5264 be exactly what you expect.
5265 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5266 they are deleted or answered, and
5267 &quot;Recent&quot; selects all of the messages that have been added to
5268 the folder since you started this Alpine session.
5269 (That's not technically quite true. If there are multiple mail clients
5270 reading an IMAP mailbox, each message will be marked as Recent in only
5271 one of the client's sessions.
5272 That behavior can be convenienent for some purposes, like filtering, but
5273 it isn't usually what you expect when selecting.)
5276 &lt;End of help on this topic&gt;
5277 </BODY>
5278 </HTML>
5279 ======= h_index_cmd_apply =======
5280 <HTML>
5281 <HEAD>
5282 <TITLE>Apply Command</TITLE>
5283 </HEAD>
5284 <BODY>
5285 <H1>Apply Command</H1>
5287 Apply
5288 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5289 is the second step of most aggregate operations.  Apply
5290 becomes active any time there is a defined set of selected messages.  The
5291 following commands can be applied to a selected message set: delete,
5292 undelete, reply, forward,
5293 <!--chtml if pinemode="os_windows"-->
5294 <!--chtml else--> 
5295 pipe,
5296 <!--chtml endif-->
5297 print, take address, save, export, bounce, and flag.
5300 The behavior of some of these commands in an aggregate sense is not easy to
5301 explain.  Try them out to see what they do.
5302 The feature
5303 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5304 affects the behavior of the Apply command, as does the feature
5305 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5308 &lt;End of help on this topic&gt;
5309 </BODY>
5310 </HTML>
5311 ======= h_index_cmd_zoom =======
5312 <HTML>
5313 <HEAD>
5314 <TITLE>ZoomMode Command</TITLE>
5315 </HEAD>
5316 <BODY>
5317 <H1>ZoomMode Command</H1>
5319 Another action you might want to take on a set of selected messages is to
5320 zoom in on them.  Like apply, zoom only becomes active when messages have
5321 been selected.
5322 ZoomMode
5323 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5324 is a toggle command that allows you to
5325 zoom-in (and only see the selected messages) and zoom-out (to see all
5326 messages in the folder).  Neither apply nor zoom removes the markings that
5327 define the selected set; you need to use a select command in order
5328 to do that.
5331 &lt;End of help on this topic&gt;
5332 </BODY>
5333 </HTML>
5334 ======= h_index_collapse_expand =======
5335 <HTML>
5336 <HEAD>
5337 <TITLE>Collapse/Expand Command</TITLE>
5338 </HEAD>
5339 <BODY>
5340 <H1>Collapse/Expand Command</H1>
5342 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5343 the folder is sorted by either Threads or OrderedSubject, and the
5344 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5345 is set to something other than &quot;none&quot;.
5346 By default, this command collapses or expands the subthread that starts at
5347 the currently highlighted message, if any.
5348 If the subthread is already collapsed, then this command expands it.
5349 If the subthread is expanded, then this command collapses it.
5350 If there are no more messages below the current message in the
5351 thread tree (that is, there are no replies to the current message) then
5352 this command does nothing.
5355 The behavior of this command is affected by the option
5356 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
5357 Normally, this command Collapses or Expands the subthread that
5358 starts at the currently highlighted message.
5359 If the above option is set, then this command Collapses or Expands the
5360 entire current thread instead of just the subthread.
5361 The current thread is simply the top-level thread that contains the
5362 current message.
5365 &lt;End of help on this topic&gt;
5366 </BODY>
5367 </HTML>
5368 ======= h_index_cmd_sort =======
5369 <HTML>
5370 <HEAD>
5371 <TITLE>Sort Command</TITLE>
5372 </HEAD>
5373 <BODY>
5374 <H1>Sort Command</H1>
5376 In Alpine's generic configuration, messages are presented in the order in
5377 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
5378 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
5379 You can also re-sort the folder on demand with the sort
5380 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
5381 command.
5382 Your sorting options are:
5384 <UL>
5385  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
5386  <LI> <A HREF="h_index_sort_date">D</A>ate
5387  <LI> <A HREF="h_index_sort_subj">S</A>ubject
5388  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
5389  <LI> t<A HREF="h_index_sort_thread">H</A>read
5390  <LI> <A HREF="h_index_sort_from">F</A>rom
5391  <LI> si<A HREF="h_index_sort_size">Z</A>e
5392  <LI> scor<A HREF="h_index_sort_score">E</A>,
5393  <LI> <A HREF="h_index_sort_to">T</A>o
5394  <LI> <A HREF="h_index_sort_cc">C</A>c
5395 </UL>
5398 The Reverse option will toggle the order the index is currently
5399 sorted by, but will not change the relative sort order.
5402 Sorting a folder does not actually rearrange the way the folder is saved,
5403 it just re-arranges how the messages are presented to you.  This means
5404 that Alpine has to do the work of sorting every time you change sort order.
5405 Sometimes, especially with PC-Alpine or with large folders, this could take
5406 a while.
5409 &lt;End of help on this topic&gt;
5410 </BODY>
5411 </HTML>
5412 ======= h_index_sort_default =======
5413 <HTML>
5414 <HEAD>
5415 <TITLE>SORT OPTION: Default</TITLE>
5416 </HEAD>
5417 <BODY>
5418 <H1>SORT OPTION: Default</H1>
5420 The <EM>Default</EM> sort option just means to use the default sort order
5421 set in the
5422 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
5423 option in Setup/Config.
5426 &lt;End of help on this topic&gt;
5427 </BODY>
5428 </HTML>
5429 ======= h_index_sort_arrival =======
5430 <HTML>
5431 <HEAD>
5432 <TITLE>SORT OPTION: Arrival</TITLE>
5433 </HEAD>
5434 <BODY>
5435 <H1>SORT OPTION: Arrival</H1>
5437 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5438 in the order that they exist in the folder.  This is usually the same as the
5439 order in which they arrived.  This option is comparable to not sorting
5440 the messages at all.
5443 &lt;End of help on this topic&gt;
5444 </BODY>
5445 </HTML>
5446 ======= h_index_sort_date =======
5447 <HTML>
5448 <HEAD>
5449 <TITLE>SORT OPTION: Date</TITLE>
5450 </HEAD>
5451 <BODY>
5452 <H1>SORT OPTION: Date</H1>
5454 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5455 according to the date and time they were
5456 sent.
5459 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
5460 identical to sorting by &quot;Arrival&quot;.
5463 &lt;End of help on this topic&gt;
5464 </BODY>
5465 </HTML>
5466 ======= h_index_sort_subj =======
5467 <HTML>
5468 <HEAD>
5469 <TITLE>SORT OPTION: Subject</TITLE>
5470 </HEAD>
5471 <BODY>
5472 <H1>SORT OPTION: Subject</H1>
5474 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5475 by subject. 
5478 Messages with the same subject are
5479 first grouped together, and then the groups of like-subject messages
5480 are arranged alphabetically.
5483 Alpine ignores leading &quot;Re:&quot; and
5484 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
5485 likeness and alphabetical order of subject lines.
5488 &lt;End of help on this topic&gt;
5489 </BODY>
5490 </HTML>
5491 ======= h_index_sort_ordsubj =======
5492 <HTML>
5493 <HEAD>
5494 <TITLE>SORT OPTION: OrderedSubject</TITLE>
5495 </HEAD>
5496 <BODY>
5497 <H1>SORT OPTION: OrderedSubject</H1>
5499 The <EM>OrderedSubject</EM> sort option arranges messages in the
5500 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
5501 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
5504 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
5505 messages by the date of the oldest message in the group.
5508 This sort method provides for pseudo threading of conversations within
5509 a folder.
5510 You may want to try sorting by Thread instead.
5513 &lt;End of help on this topic&gt;
5514 </BODY>
5515 </HTML>
5516 ======= h_index_sort_thread =======
5517 <HTML>
5518 <HEAD>
5519 <TITLE>SORT OPTION: Thread</TITLE>
5520 </HEAD>
5521 <BODY>
5522 <H1>SORT OPTION: Thread</H1>
5524 The <EM>Thread</EM> sort option arranges messages in the
5525 MESSAGE&nbsp;INDEX by grouping all messages that indicate
5526 they are part of a conversation (discussion thread) taking
5527 place within a mailbox or newsgroup.  This indication is
5528 based on information in the message's header -- specifically
5529 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
5532 &lt;End of help on this topic&gt;
5533 </BODY>
5534 </HTML>
5535 ======= h_index_sort_from =======
5536 <HTML>
5537 <HEAD>
5538 <TITLE>SORT OPTION: From</TITLE>
5539 </HEAD>
5540 <BODY>
5541 <H1>SORT OPTION: From</H1>
5543 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5544 by the name of the author of the message.
5547 Messages with the same author are grouped together. Groups of
5548 messages are then put into alphabetical order according to message
5549 author.
5552 &lt;End of help on this topic&gt;
5553 </BODY>
5554 </HTML>
5555 ======= h_index_sort_size =======
5556 <HTML>
5557 <HEAD>
5558 <TITLE>SORT OPTION: Size</TITLE>
5559 </HEAD>
5560 <BODY>
5561 <H1>SORT OPTION: Size</H1>
5563 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5564 by their relative sizes.
5567 &lt;End of help on this topic&gt;
5568 </BODY>
5569 </HTML>
5570 ======= h_index_sort_score =======
5571 <HTML>
5572 <HEAD>
5573 <TITLE>SORT OPTION: Score</TITLE>
5574 </HEAD>
5575 <BODY>
5576 <H1>SORT OPTION: Score</H1>
5578 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5579 by their scores.
5582 Messages with the same score are sorted in arrival order.
5583 Scores are something you create using the
5584 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
5587 &lt;End of help on this topic&gt;
5588 </BODY>
5589 </HTML>
5590 ======= h_index_sort_to =======
5591 <HTML>
5592 <HEAD>
5593 <TITLE>SORT OPTION: To</TITLE>
5594 </HEAD>
5595 <BODY>
5596 <H1>SORT OPTION: To</H1>
5598 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
5599 by the names of the recipients of the message.
5602 Messages with the same recipients are grouped together. Groups of
5603 messages are then put into alphabetical order according to message
5604 recipients.
5607 &lt;End of help on this topic&gt;
5608 </BODY>
5609 </HTML>
5610 ======= h_index_sort_cc =======
5611 <HTML>
5612 <HEAD>
5613 <TITLE>SORT OPTION: Cc</TITLE>
5614 </HEAD>
5615 <BODY>
5616 <H1>SORT OPTION: Cc</H1>
5618 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
5619 the names of the carbon copy addresses of the message.
5622 &lt;End of help on this topic&gt;
5623 </BODY>
5624 </HTML>
5625 ======= h_index_cmd_whereis =======
5626 <HTML>
5627 <HEAD>
5628 <TITLE>WhereIs Command</TITLE>
5629 </HEAD>
5630 <BODY>
5631 <H1>WhereIs Command</H1>
5633 The WhereIs
5634 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
5635 command lets you search the MESSAGE INDEX for a word.
5636 It scans through whatever you see, usually the name of the author
5637 and the Subject line.
5638 WhereIs has special subcommands to let you find the beginning of the
5639 index (Ctrl-Y -- first message)
5640 or the end of the index (Ctrl-V -- last message).
5642 Note that WhereIs only searches through the visible text on the screen.
5643 For example, if only part of the Subject of a message is shown because it
5644 is long, then only the visible portion of the Subject is searched.
5645 Also note that WhereIs does not &quot;see&quot; the 
5646 &quot;X&quot; in column one of Index entries for selected messages
5647 so it can't be used to search for
5648 selected messages (use &quot;Zoom&quot; instead).
5650 If the feature
5651 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5652 is turned on,
5653 WhereIs can also be used as a quick way to select messages that match the
5654 string being searched for.
5655 Instead of typing carriage return to search for the next match, type
5656 Ctrl-X to select all matches.
5657 Once again, this only selects matches that are (or would be if the right
5658 index line was on the screen) visible.
5659 Truncated From lines or Subjects will cause matches to be missed.
5660 Although WhereIs is sometimes convenient for quick matching, the Select
5661 command is usually more powerful and usually faster.
5664 &lt;End of help on this topic&gt;
5665 </BODY>
5666 </HTML>
5667 ======= h_view_cmd_whereis =======
5668 <HTML>
5669 <HEAD>
5670 <TITLE>WhereIs Command</TITLE>
5671 </HEAD>
5672 <BODY>
5673 <H1>WhereIs Command</H1>
5675 The WhereIs
5676 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
5677 command does a &quot;find in current message&quot; operation.  You
5678 type in text and Alpine will try to find it in the message you are
5679 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
5680 or end (Ctrl-V) of the message.
5681 That is, to rapidly move to the end of a message, hit the 
5682 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5683 (or Ctrl-W) key followed
5684 by Ctrl-V.  Similarly,
5685 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5686 followed by Ctrl-Y will take you to the beginning of a message.
5689 &lt;End of help on this topic&gt;
5690 </BODY>
5691 </HTML>
5692 ======= h_view_cmd_hilite =======
5693 <HTML>
5694 <HEAD>
5695 <TITLE>View Hilite and Next item/Previous item</TITLE>
5696 </HEAD>
5697 <BODY>
5698 <H1>View Hilite and Next item/Previous item</H1>
5700 Sometimes messages may be in the form of formatted HTML text
5701 or they may contain URLs or Web server hostnames.
5702 When any of the features
5703 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
5704 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
5705 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
5707 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
5708 are enabled, Alpine will represent such selectable items in the text
5709 in bold typeface.  One of the selectable items will be displayed in
5710 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
5711 Press the Return key to view the currently selected item.
5714 The Up and Down Arrows keys can be used to change the selected item
5715 (also see the feature
5716 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
5717 If there are no selectable items in the direction of the arrow you
5718 pressed, Alpine will scroll the display in that direction until one
5719 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
5720 items in the message text, use the Previous and Next item commands,
5721 <!--chtml if pinemode="function_key"-->F5 and F6
5722 <!--chtml else-->^B and ^F<!--chtml endif-->.
5725 &lt;End of help on this topic&gt;
5726 </BODY>
5727 </HTML>
5728 ======= h_view_cmd_viewattch =======
5729 <HTML>
5730 <HEAD>
5731 <TITLE>ViewAttch Command</TITLE>
5732 </HEAD>
5733 <BODY>
5734 <H1>ViewAttch Command</H1>
5737 The View/Save Attachment
5738 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
5739 command allows you to handle MIME attachments to a message you have
5740 received.  Alpine shows you a list of the message attachments -- you just
5741 choose the attachment you want.  You may either view or save the
5742 selected attachment.
5745 Because many attachments require external programs for display, there
5746 is some system configuration that has to happen before you can
5747 actually display attachments.  Hopefully much of that will have been
5748 done already by your system administrator.  MIME configuration is
5749 handled with the &quot;mailcap&quot; configuration file.  (See the section 
5750 on configuration in the
5751 <A HREF="h_news">release notes</A> for more information.)
5754 &lt;End of help on this topic&gt;
5755 </BODY>
5756 </HTML>
5757 ======= h_index_cmd_expunge =======
5758 <HTML>
5759 <HEAD>
5760 <TITLE>Expunge/Exclude Command</TITLE>
5761 </HEAD>
5762 <BODY>
5763 <H1>Expunge/Exclude Command</H1>
5765 Expunge/Exclude
5766 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
5767 is the command Alpine uses to actually remove all messages
5768 marked for deletion.  With regular email files, expunge literally deletes
5769 the text from the current folder.  With newsgroups or shared mailboxes,
5770 you don't have permission to actually remove the message, so it is an
5771 exclude -- Alpine removes the message from your view of the folder even
5772 though it is not technically gone.
5774 <P> A selective expunge command is available in IMAP folders that support 
5775 the UID EXPUNGE extension in <A 
5776 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
5777 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
5778 as a subcommand of the apply command. If some selected messages are marked 
5779 deleted, then the apply command will offer the eXpunge command, which when 
5780 executed will only expunge those messages that are selected and deleted.
5782 <P> 
5783 Observe that the expunge command (when not used from the apply command) 
5784 will expunge/exclude all deleted messages from the folder, and so all 
5785 messages marked deleted will be expunged, regardless of if they are 
5786 selected or not. In other words, there is no protection against 
5787 potentially expunging more messages than only those that have been 
5788 selected and deleted.
5791 The configuration features
5792 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
5794 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
5795 affect the behavior of the Expunge command.
5798 &lt;End of help on this topic&gt;
5799 </BODY>
5800 </HTML>
5801 ======= h_common_compose =======
5802 <HTML>
5803 <HEAD>
5804 <TITLE>Compose Command</TITLE>
5805 </HEAD>
5806 <BODY>
5807 <H1>Compose Command</H1>
5809 The Compose command takes you into the Alpine message composer where you
5810 can start a new message for sending.  This is where you type in the
5811 message's text and specify its recipient list (the &quot;To:&quot;
5812 address), where copies should be directed (e.g., &quot;Fcc&quot;,
5813 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
5814 be attached to the message.
5817 When you type this command, Alpine will also automatically check for any
5818 interrupted (i.e., a message that was being composed when your modem
5819 or network connection was broken) or previously postponed messages and
5820 offer you a chance to continue working on those.
5823 <UL>   
5824 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5825 </UL><P>
5826 &lt;End of help on this topic&gt;
5827 </BODY>
5828 </HTML>
5829 ======= h_common_index =======
5830 <HTML>
5831 <HEAD>
5832 <TITLE>Message Index Command</TITLE>
5833 </HEAD>
5834 <BODY>
5835 <H1>Message Index Command</H1>
5837 The Index command takes you to the MESSAGE INDEX screen that displays a
5838 summary caption for each message in the currently-open folder. One
5839 message will be highlighted; this is the &quot;Current&quot; message.
5840 The message commands available from this screen (e.g. View, Reply,
5841 Forward, Delete, Print, Save, etc) apply to the current message.
5844 &lt;End of help on this topic&gt;
5845 </BODY>
5846 </HTML>
5847 ======= h_common_folders =======
5848 <HTML>
5849 <HEAD>
5850 <TITLE>Folder List Command</TITLE>
5851 </HEAD>
5852 <BODY>
5853 <H1>Folder List Command</H1>
5855 This Folder List command takes you to the FOLDER LIST screen that displays
5856 the names of all your message folders and allows you to view, rename,
5857 delete, and add folders.  You can open (view) a different folder than the
5858 one currently open by highlighting the desired one (using the arrow keys
5859 or their control-key equivalents) and pressing RETURN.
5862 If you have multiple folder collections defined (see the Help text for
5863 the FOLDER LIST screen to learn more about Collections), you may need
5864 to press Return to expand the collection and display all of the
5865 folders in it.
5868 &lt;End of help on this topic&gt;
5869 </BODY>
5870 </HTML>
5871 ======= h_main_addrbook =======
5872 <HTML>
5873 <HEAD>
5874 <TITLE>Address Book Command</TITLE>
5875 </HEAD>
5876 <BODY>
5877 <H1>Address Book Command</H1>
5879 This command, available only from the MAIN MENU, takes you
5880 to the ADDRESS BOOK management screen.  From here, your personal address
5881 book(s) may be updated.
5884 &lt;End of help on this topic&gt;
5885 </BODY>
5886 </HTML>
5887 ======= h_main_setup =======
5888 <HTML>
5889 <HEAD>
5890 <TITLE>Setup Command</TITLE>
5891 </HEAD>
5892 <BODY>
5893 <H1>Setup Command</H1>
5895 The Setup command, available only from the MAIN MENU, prompts you for
5896 one of several configuration screens, including the SETUP CONFIGURATION 
5897 screen, by which you may activate optional Alpine features.
5900 &lt;End of help on this topic&gt;
5901 </BODY>
5902 </HTML>
5903 ======= h_main_release_notes =======
5904 <HTML>
5905 <HEAD>
5906 <TITLE>Release Notes Command</TITLE>
5907 </HEAD>
5908 <BODY>
5909 <H1>Release Notes Command</H1>
5911 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
5912 as well as pointers to further information such as history and legal notes.
5915 &lt;End of help on this topic&gt;
5916 </BODY>
5917 </HTML>
5918 ======= h_main_kblock =======
5919 <HTML>
5920 <HEAD>
5921 <TITLE>Keyboard Lock Command</TITLE>
5922 </HEAD>
5923 <BODY>
5924 <H1>Keyboard Lock Command</H1>
5926 This command allows your Alpine session to be protected
5927 during a temporary absence from your terminal.
5930 &lt;End of help on this topic&gt;
5931 </BODY>
5932 </HTML>
5933 ======= h_main_journal =======
5934 <HTML>
5935 <HEAD>
5936 <TITLE>Journal Command</TITLE>
5937 </HEAD>
5938 <BODY>
5939 <H1>Journal Command</H1>
5941 This command displays a list of all the status messages Alpine has
5942 displayed (on the third line from the bottom of the screen). This may
5943 be useful if a message disappeared before you had a chance to read it.
5946 &lt;End of help on this topic&gt;
5947 </BODY>
5948 </HTML>
5949 ======= h_common_role =======
5950 <HTML>
5951 <HEAD>
5952 <TITLE>Role Command</TITLE>
5953 </HEAD>
5954 <BODY>
5955 <H1>Role Command</H1>
5957 The Role command is similar to the Compose command except that it starts
5958 off by letting you select a <A HREF="h_rules_roles">role</A>
5959 to be used for the composition.
5960 You may set up alternate roles by using Setup/Rules/Roles.
5963 &lt;End of help on this topic&gt;
5964 </BODY>
5965 </HTML>
5966 ======= h_common_conditional_cmds =======
5967 <HTML>
5968 <HEAD>
5969 <TITLE>Conditional Commands</TITLE>
5970 </HEAD>
5971 <BODY>
5972 <H1>Conditional Commands</H1>
5974 The presence or absence of certain commands, particularly in the
5975 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
5976 whether or not specific features are set in your Alpine configuration.  
5977 (You can access the SETUP CONFIGURATION screen, where they are found, from 
5978 Alpine's MAIN MENU.)  To see if a desired command's availability is
5979 conditioned on a feature setting, see the command's help text (highlight
5980 the phrase associated with the command and hit Return).
5983 Also note that some
5984 commands may be administratively disabled by your system manager;
5985 if they don't work, please check with your local help desk.
5988 <UL>   
5989 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5990 </UL><P>
5991 &lt;End of help on this topic&gt;
5992 </BODY>
5993 </HTML>
5994 ======= h_common_pipe =======
5995 <HTML>
5996 <HEAD>
5997 <TITLE>Pipe Command</TITLE>
5998 </HEAD>
5999 <BODY>
6000 <H1>Pipe Command</H1>
6002 Pipe
6003 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6004 allows you to send a message to a specified Unix command for external
6005 processing.
6006 This command's availability is controlled by the
6007 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6008 feature.
6009 By default, the processed text of the message is sent to the command
6010 you specify and the output is captured by Alpine and shown to you.
6011 When you run the pipe command, there are some sub-commands which may be
6012 used to alter this behavior.
6013 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6016 &lt;End of help on this topic&gt;
6017 </BODY>
6018 </HTML>
6019 ======= h_common_goto =======
6020 <HTML>
6021 <HEAD>
6022 <TITLE>Goto Command</TITLE>
6023 </HEAD>
6024 <BODY>
6025 <H1>Goto Command</H1>
6027 Goto
6028 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6029 is the command that lets you bypass Alpine's folder selection screens
6030 and jump directly to a new folder.  You can select any folder in the
6031 world: one in your current collection, one in a different collection or
6032 one in a collection you've never even used before.
6035 Alpine will help you as much as possible to narrow in on the folder you want.
6036 However, if the folder is outside of your defined collections, you are
6037 going to have to enter the exact folder location using the correct
6038 <A HREF="h_valid_folder_names">syntax</A>
6039 for a remote folder and/or fully-qualified path name.
6042 &lt;End of help on this topic&gt;
6043 </BODY>
6044 </HTML>
6045 ======= h_common_nextnew =======
6046 <HTML>
6047 <HEAD>
6048 <TITLE>NextNew Command</TITLE>
6049 </HEAD>
6050 <BODY>
6051 <H1>NextNew Command</H1>
6053 When you press the TAB key, Alpine advances to the next
6054 &quot;interesting&quot; message.
6055 This will be the next message you have not seen before, or the next message
6056 you have flagged Important, whichever comes first.
6057 Unread messages that have been deleted are not considered interesting.
6058 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6059 articles after you have read them if you want to remove them from future
6060 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6061 more information.)
6064 The NextNew command is affected by the feature
6065 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6066 which causes Alpine to only consider Unread messages interesting, not messages
6067 flagged Important.
6070 This command behaves a little differently when it finds there are no more
6071 interesting messages left in the current folder.
6072 If the current folder is one of your Incoming Message Folders
6073 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6074 or it is a newsgroup, then Alpine will try to find the next folder or
6075 newsgroup that contains <EM>Recent</EM> messages and will ask you
6076 if you want to open that folder.
6077 This behavior may be modified by using the
6078 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6079 feature that causes Alpine to look for Unseen messages instead of Recent
6080 messages.
6081 The NextNew command's behavior is also affected by the configuration features
6082 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6084 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6087 &lt;End of help on this topic&gt;
6088 </BODY>
6089 </HTML>
6090 ======= h_common_jump =======
6091 <HTML>
6092 <HEAD>
6093 <TITLE>Jump Command</TITLE>
6094 </HEAD>
6095 <BODY>
6096 <H1>Jump Command</H1>
6098 This is Alpine's way of allowing you to go straight to a specific message.
6099 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6100 configured such that typing in any number automatically jumps you to that
6101 message 
6102 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6103 in the SETUP CONFIGURATION).
6106 &lt;End of help on this topic&gt;
6107 </BODY>
6108 </HTML>
6109 ======= h_common_flag =======
6110 <HTML>
6111 <HEAD>
6112 <TITLE>Flag Command</TITLE>
6113 </HEAD>
6114 <BODY>
6115 <H1>Flag Command</H1>
6117 Flag
6118 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6119 is the command that allows users to manipulate the status flags that
6120 appear on the left side of the MESSAGE INDEX screen.  The most common
6121 use of this is to mark a message as important. This is something of a
6122 note to yourself to get back to that message.  You may also use the
6123 flag command to set (or unset) the flags that indicate that a message
6124 is new, answered, deleted, or forwarded.<P>
6126 Provided the mail server supports it,
6127 you may also manipulate user-defined keywords
6128 for a message using the flag command.
6129 These keywords will be available if you use the Flag Details screen that you
6130 can get to after typing the
6131 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6132 command.
6133 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6134 which are always present.
6135 You may add new keywords by using the Add KW command from the Flag Details screen
6136 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6138 The availability of the flag command is determined by the
6139 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6140 feature in your Alpine configuration. Also, it is possible that Flag could be
6141 administratively disabled by your system manager; if it doesn't work,
6142 please check with your local help desk before reporting a bug.
6143 The behavior of the flag command may be modified by the
6144 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6145 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6148 &lt;End of help on this topic&gt;
6149 </BODY>
6150 </HTML>
6151 ======= h_common_hdrmode =======
6152 <HTML>
6153 <HEAD>
6154 <TITLE>HdrMode Command</TITLE>
6155 </HEAD>
6156 <BODY>
6157 <H1>HdrMode Command</H1>
6159 Every email message comes with some header lines that you normally
6160 don't see (and don't want to see).
6161 These include anywhere from 3-20 lines (or more) added by the
6162 Internet mail transport system to record the route your message took,
6163 for diagnostic purposes.
6164 These are normally of no import and simply
6165 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6166 This also includes other non-standard headers the message may contain.
6167 If you want to see these headers, there is a way to reveal them.
6170 The Header Mode
6171 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6172 command is a toggle that controls Alpine's handling of these header
6173 lines.  Normally, full headers is &quot;off&quot; and you only see a
6174 few lines about who a message is to and who it is from.  When you
6175 press
6176 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6177 to turn full headers on, Alpine will show you
6178 the normal header lines as well as delivery headers, comment headers,
6179 MIME headers, and any other headers present.
6182 Several different Alpine commands honor the header mode -- it affects how
6183 messages are displayed, how they appear in forward and reply email, how
6184 they are printed, how they are saved, and how they are exported.
6185 <!--chtml if pinemode="os_windows"-->
6186 <!--chtml else--> 
6187 The pipe command is also affected.
6188 <!--chtml endif-->
6191 The presence or absence of the Header Mode command is determined by the
6192 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6193 Feature-List option in your Alpine configuration.
6196 If you have also turned on the
6197 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6198 option then the HdrMode command actually rotates through three states
6199 instead of just two.
6200 The first is the normal view with long quotes suppressed.
6201 The second is the normal view but with the long quotes included.
6202 The last enables the display of all headers in the message.
6203 When using Export, Pipe, Print, Forward, or Reply the quotes are
6204 never suppressed, so the first two states are identical.
6207 The behavior of the Header Mode command may be altered slightly by
6208 turning on the
6209 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6210 Feature-List option in your Alpine configuration.
6211 In particular, it will cause the Header Mode to be persistent when moving
6212 from message to message instead of resetting to the default for each message.
6215 <UL>   
6216 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6217 </UL><P>
6218 &lt;End of help on this topic&gt;
6219 </BODY>
6220 </HTML>
6221 ======= h_common_print =======
6222 <HTML>
6223 <HEAD>
6224 <TITLE>Print Command</TITLE>
6225 </HEAD>
6226 <BODY>
6227 <H1>Print Command</H1>
6229 The Print
6230 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6231 command allows you to print a copy of a message.
6232 There are many SETUP CONFIGURATION features that affect the
6233 Print command, including
6234 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6235 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6236 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6237 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6238 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6239 You set up for printing by using the Printer option of the Setup command
6240 on the MAIN MENU.
6244 &lt;End of help on this topic&gt;
6245 </BODY>
6246 </HTML>
6247 ======= h_common_take =======
6248 <HTML>
6249 <HEAD>
6250 <TITLE>TakeAddr Command</TITLE>
6251 </HEAD>
6252 <BODY>
6253 <H1>TakeAddr Command</H1>
6256 With the Take Address
6257 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6258 command, you can extract email addresses from an
6259 incoming message and save them in an address book.  This is an easy way
6260 to add to your address book and avoid having to remember the email
6261 addresses of the people who write to you.
6264 If the message is just to you individually, then you will only need to
6265 provide a nickname.  If the message contains more than one email address,
6266 then you will see an address
6267 selection screen that lets you choose the address you want to save into
6268 your address book, or lets you choose several of them add to a
6269 personal distribution list.
6272 Once you've added an entry to your address book, you can use it from the
6273 message composer by typing the nickname of the entry into one of the
6274 header fields (for example, into the To: field), or you can use ^T from
6275 the header field to select the entry from your address book.
6278 If the configuration feature
6279 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6280 is set, the behavior of the Take command is altered slightly.
6283 &lt;End of help on this topic&gt;
6284 </BODY>
6285 </HTML>
6286 ======= h_ge_import =======
6287 <HTML>
6288 <HEAD>
6289 <TITLE>Import File Selection</TITLE>
6290 </HEAD>
6291 <BODY>
6292 <H1>Import File Selection</H1>
6294 You are importing a file that you previously
6295 exported from Alpine.
6296 You are now being asked for the name of that file.
6297 The easiest way to select a file is probably with the &quot;^T&quot;
6298 &quot;To Files&quot; command.
6299 Alternatively, you may type in a file name.
6300 It may be an absolute pathname.
6301 Otherwise, it is a file located in your home directory
6302 or current working directory
6303 <!--chtml if pinemode="running"-->
6304 (which, at least for your current Alpine &quot;session,&quot; 
6305 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6306 <!--chtml endif-->, depending on the
6307 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6308 In any case, you finish by typing a carriage return to accept the
6309 file name that is displayed.
6310 When the feature
6311 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6312 is turned on you may use TAB to complete partially typed in names.
6314 You may cancel the import operation by typing &quot;^C&quot; after exiting
6315 this help.
6317 &lt;End of help on this topic&gt;
6318 </BODY>
6319 </HTML>
6320 ======= h_ge_allparts =======
6321 <HTML>
6322 <HEAD>
6323 <TITLE>Export Message File Selection</TITLE>
6324 </HEAD>
6325 <BODY>
6326 <H1>Export Message File Selection</H1>
6328 You are Exporting a message from an Alpine mail folder
6329 to a plain text file.
6330 You also have the option of exporting all of the attachments associated
6331 with the message.
6332 You are now being asked for the name of the file to export <EM>to</EM>.
6333 The easiest way to select a file is probably with the &quot;^T&quot;
6334 &quot;To Files&quot; subcommand.
6335 After returning from that subcommand you will still be allowed to
6336 edit the name you have selected.
6337 Alternatively, you may type in a file name.
6338 It may be an absolute pathname.
6339 Otherwise, it is a file located in your home directory
6340 or current working directory
6341 <!--chtml if pinemode="running"-->
6342 (which, at least for your current Alpine &quot;session,&quot; 
6343 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6344 <!--chtml endif-->, depending on the
6345 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6346 In any case, you finish by typing a carriage return to accept the
6347 file name that is displayed.
6348 When the feature
6349 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6350 is turned on you may use TAB to complete partially typed in names.
6352 The message you are exporting appears to have some attachments.
6353 If you wish to save <EM>all</EM> of the attachments at once,
6354 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
6355 saving of the attachments.
6356 You may turn it back off by typing &quot;^P&quot; again, which will now
6357 be labeled &quot;NoAllParts&quot; instead.
6358 If you want to save the parts the command displayed should be
6359 &quot;NoAllParts&quot;!
6360 When you choose to save attachments like this, the attachments will be saved
6361 in a newly created directory.
6362 That directory will have the same name as the file name you choose here,
6363 with the letters &quot;.d&quot; appended.
6364 If that directory already exists, then the letters &quot;.d_1&quot; will
6365 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
6366 is found.
6367 For example, if you select the file name
6369 <CENTER><SAMP>filename</SAMP></CENTER>
6371 to export the message to, then the directory used for the attachments will be
6373 <CENTER><SAMP>filename.d</SAMP></CENTER>
6375 or perhaps
6377 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
6379 The attachments will then be put into files inside that directory.
6380 The names for the attachment files will be derived from the attachments
6381 if possible.
6382 This is done in the same way as the default values are derived if you
6383 save them one at a time.
6384 (The &quot;filename&quot; parameter from the Content-Disposition header
6385 is the first choice. If that doesn't exist, the &quot;name&quot;
6386 parameter from the Content-Type header is used.)
6387 If a name for a particular attachment is not available, then the
6388 part number of the attachment is used, with the characters &quot;part_&quot;
6389 prepended.
6390 An example of that would be
6392 <CENTER><SAMP>part_2.1</SAMP></CENTER>
6394 If you want to save only some of the attachments or if you want more control
6395 over the directory and filename where an attachment is saved you may
6396 cancel out of this command and View the attachment list.
6397 From there you can save each attachment individually.
6399 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6400 this help.
6402 &lt;End of help on this topic&gt;
6403 </BODY>
6404 </HTML>
6405 ======= h_ge_export =======
6406 <HTML>
6407 <HEAD>
6408 <TITLE>Export File Selection</TITLE>
6409 </HEAD>
6410 <BODY>
6411 <H1>Export File Selection</H1>
6413 You are Exporting or Saving something from within the Alpine world
6414 (a message, an attachment, etc.)
6415 to a plain text file.
6416 You are now being asked for the name of the file to export <EM>to</EM>.
6417 The easiest way to select a file is probably with the &quot;^T&quot;
6418 &quot;To Files&quot; subcommand.
6419 After returning from that subcommand you will still be allowed to
6420 edit the name you have selected.
6421 Alternatively, you may type in a file name.
6422 It may be an absolute pathname.
6423 Otherwise, it is a file located in your home directory
6424 or current working directory
6425 <!--chtml if pinemode="running"-->
6426 (which, at least for your current Alpine &quot;session,&quot; 
6427 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6428 <!--chtml endif-->, depending on the
6429 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6430 In any case, you finish by typing a carriage return to accept the
6431 file name that is displayed.
6432 When the feature
6433 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6434 is turned on you may use TAB to complete partially typed in names.
6436 If the object you are exporting is a message with some attachments,
6437 you may wish to save all of the attachments by typing the &quot;^P&quot;
6438 &quot;AllParts&quot; command to turn on saving of the attachments.
6439 This subcommand will only be visible if the message actually has attachments.
6440 You may also View the attachment list and save individual attachments from
6441 there.
6443 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6444 this help.
6446 &lt;End of help on this topic&gt;
6447 </BODY>
6448 </HTML>
6449 ======= h_common_save =======
6450 <HTML>
6451 <HEAD>
6452 <TITLE>Save and Export Commands</TITLE>
6453 </HEAD>
6454 <BODY>
6455 <H1>Save and Export Commands</H1>
6457 Save
6458 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
6459 and Export
6460 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
6461 are the two alternatives Alpine gives you to keep a copy of the message
6462 you are reading. If you want to keep the message within Alpine's email
6463 world, use &quot;Save&quot;; if you want to use the message in another
6464 program, use &quot;Export&quot;.
6467 When you Save a message, it is put into an existing folder or into a new
6468 folder in one of your existing folder collections.  The message stays in
6469 email format and can be read by Alpine again.  Alpine may use a special format
6470 for its mail folders -- never edit an Alpine folder by hand or with any
6471 program other than Alpine.  The exact behavior of the Save command can be
6472 configured with the
6473 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
6474 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
6475 and 
6476 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
6477 feature list settings.
6478 The name of the folder offered as a default is controlled by the option
6479 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
6482 When you use Export, the message is placed in a plain text file in your
6483 home directory 
6484 <!--chtml if pinemode="running"-->
6485 (which, in the present configuration of your system, is
6486  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6487 <!--chtml endif-->
6488 or current working directory
6489 <!--chtml if pinemode="running"-->
6490 (which, at least for your current Alpine &quot;session,&quot; 
6491 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6492 <!--chtml endif-->, depending on the
6493 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
6494 configuration setting.  In the normal case, only minimal
6495 headers are exported with the message; however, if the full header mode 
6496 (whose availability may be disabled  by setting the feature 
6497 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6498 in SETUP CONFIGURATION) is
6499 toggled on, then complete headers are exported along with the message
6500 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
6501 defined, they may affect the contents of the exported file.)
6504 &lt;End of help on this topic&gt;
6505 </BODY>
6506 </HTML>
6507 ======= h_common_bounce =======
6508 <HTML>
6509 <HEAD>
6510 <TITLE>Bounce Command</TITLE>
6511 </HEAD>
6512 <BODY>
6513 <H1>Bounce Command</H1>
6515 The Bounce 
6516 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
6517 command allows you to re-send, or &quot;remail&quot;, a
6518 message, as if you were never in the loop.  It is analogous to crossing
6519 out your address on a postal letter, writing a different address on the
6520 envelope, and putting it into the mailbox. Bounce is used primarily to
6521 redirect email that was sent to you in error.
6522 Also, some owners of email
6523 lists need the bounce command to handle list traffic.
6524 Bounce is not anonymous.
6525 A ReSent-From header is added to the message so that the recipient may
6526 tell that you Bounced it to them.
6529 The presence or absence of the Bounce command is determined by the
6530 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
6531 feature in your Alpine configuration.
6532 The feature
6533 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
6534 affects the behavior of the Bounce command.
6535 Also, it is possible that Bounce could be
6536 administratively disabled by your system manager; if it doesn't work,
6537 please check with your local help desk before reporting a bug.
6540 &lt;End of help on this topic&gt;
6541 </BODY>
6542 </HTML>
6543 ======= h_common_reply =======
6544 <HTML>
6545 <HEAD>
6546 <TITLE>Reply and Forward Commands</TITLE>
6547 </HEAD>
6548 <BODY>
6550 <H1>Reply and Forward Commands</H1>
6552 Replying 
6553 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
6554 and Forwarding 
6555 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
6556 are your two alternatives for following up on the
6557 message you are reading.  You would use reply if you want to get email
6558 back to the author of the message and/or the other people who have
6559 already seen it.  You use forward if you want somebody new to see the
6560 message.
6563 In the normal case, the only thing that you must supply when forwarding a
6564 message is the name/email address of the new recipient.
6565 Alpine will include the text of the forwarded message.
6566 Alpine will also include any attachments to the message.
6567 There is space above the forwarded text for you to include additional comments.
6570 When replying, you usually have to answer some questions.
6571 If the message is to multiple people and/or specified with a Reply-To: header,
6572 then you will have to decide who should get the reply.
6573 You also need to decide whether or not to include the previous
6574 message in your reply.
6575 Some of this is configurable.
6576 Specifically, see the
6577 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
6578 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
6579 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
6581 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
6582 configuration features.
6585 Both the Reply and Forward commands react to the full header mode toggle.
6586 If the full header mode is on, then all the header and delivery lines are
6587 included with the text of the message in your reply/forward.
6590 Other configuration features that affect the Reply command are
6591 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
6592 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
6593 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
6596 &lt;End of help on this topic&gt;
6597 </BODY>
6598 </HTML>
6599 ======= h_common_delete =======
6600 <HTML>
6601 <HEAD>
6602 <TITLE>Delete and Undelete Commands</TITLE>
6603 </HEAD>
6604 <BODY>
6605 <H1>Delete and Undelete Commands</H1>
6607 Delete 
6608 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
6609 and Undelete 
6610 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
6611 allow you to change the Deleted flag for the current message.
6612 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
6613 removes the mark.
6614 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
6615 at the left hand edge of the index line.
6616 When viewing a deleted message, the letters &quot;DEL&quot; will be present
6617 in the upper right hand corner of the screen.
6618 Delete simply <EM>marks</EM> a message Deleted, it does not actually
6619 get rid of the message.
6620 The eXpunge command (available from the MESSAGE INDEX screen) actually
6621 removes all of the deleted messages in a folder.
6622 Once a message is eXpunged, it can't be retrieved.
6625 The Delete command is affected by the setting of the configuration feature
6626 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
6629 &lt;End of help on this topic&gt;
6630 </BODY>
6631 </HTML>
6632 ======= h_common_postpone =======
6633 <HTML>
6634 <HEAD>
6635 <TITLE>Postpone Command</TITLE>
6636 </HEAD>
6637 <BODY>
6638 <H1>Postpone Command</H1>
6640 The postpone
6641 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
6642 command allows you to temporarily stop working on the current
6643 message so you may read
6644 other messages or compose another message.  When you want to resume a
6645 message later, start to compose and answer &quot;yes&quot; to the
6646 &quot;Continue postponed composition?&quot; question.  You may
6647 postpone as many messages as you like.
6650 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
6651 in the Setup/Config screen, then the Postpone command will prompt you for
6652 the folder in which to store your outgoing message.
6655 &lt;End of help on this topic&gt;
6656 </BODY>
6657 </HTML>
6658 ======= h_compose_cancel =======
6659 <HTML>
6660 <HEAD>
6661 <TITLE>Cancel Command</TITLE>
6662 </HEAD>
6663 <BODY>
6664 <H1>Cancel Command</H1>
6666 Cancel
6667 <!--chtml if pinemode="function_key"-->
6668 (F2)
6669 <!--chtml else-->
6670 (^C) 
6671 <!--chtml endif-->
6673 The Cancel command returns you to Alpine's normal mail processing and
6674 causes the message currently under composition to be thrown out.
6675 The message text <EM>will be lost</EM>.
6678 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
6679 will be preserved in the file named
6680 <!--chtml if pinemode="os_windows"-->
6681 &quot;DEADLETR&quot;.
6682 <!--chtml else-->
6683 &quot;dead.letter&quot; in your home directory.
6684 <!--chtml endif-->
6685 If you unintentionally cancel a message, look there for its text.
6688 &lt;End of help on this topic&gt;
6689 </BODY>
6690 </HTML>
6691 ======= h_compose_addrcomplete =======
6692 <HTML>
6693 <HEAD>
6694 <TITLE>Address Completion</TITLE>
6695 </HEAD>
6696 <BODY>
6697 <H1>Address Completion</H1>
6699 When entering addresses in the address fields of the composer (To, Cc, etc.)
6700 the TAB key may be used to help complete the address.
6701 Type a partial nickname and tap the TAB key to complete the typing.
6702 The unambiguous part of the name will be filled in automatically.
6703 Typing TAB twice in succession will bring up a selection list of possibilities,
6704 making it easy to find and choose the correct address.
6707 The matching algorithm is rather ad hoc.
6708 The search starts with a search of your address book.
6709 It counts as a match if the nickname, address, or fullname field of an
6710 entry begins with the text typed in so far. It is also a match if
6711 a later word in the fullname (for example, the middle name or last name)
6712 begins with the entered text.
6714 Next comes an LDAP search.
6715 The search will happen for any servers that have the
6716 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
6717 feature set. You can set or unset the feature for each server independently
6718 in the Setup/Directory screen.
6720 Finally, if you are replying to or forwarding a message, that message is
6721 searched for likely candidate addresses that match the typed-in text.
6724 &lt;End of help on this topic&gt;
6725 </BODY>
6726 </HTML>
6727 ======= h_compose_richhdr =======
6728 <HTML>
6729 <HEAD>
6730 <TITLE>Rich Header Command</TITLE>
6731 </HEAD>
6732 <BODY>
6733 <H1>Rich Header Command</H1>
6735 The Rich Header command allows you to toggle between the list of 
6736 all message headers available for editing and those that are most
6737 common.
6740 Use this toggle to expose headers that are not normally visible by
6741 default.
6742 This set usually includes the
6743 &quot;Bcc:&quot;,
6744 &quot;Fcc:&quot;,
6745 &quot;Lcc:&quot;,
6746 and &quot;Newsgroups&quot;
6747 headers.
6748 If you are posting to a newsgroup the set of defaults is a little different.
6749 Obviously, in that case, the Newsgroups header is of interest so is not
6750 hidden.
6751 For news posting the hidden set includes the
6752 &quot;To:&quot;,
6753 &quot;Cc:&quot;,
6754 &quot;Bcc:&quot;,
6755 &quot;Fcc:&quot;,
6756 and &quot;Lcc:&quot;
6757 headers.
6758 You won't normally want to edit these, which is why they are hidden,
6759 but it is sometimes useful to be able to set them manually.
6762 The default sets of headers listed above can be altered.
6763 Any header that you have added to the
6764 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
6765 option, but not to the
6766 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
6767 option will appear when you use the Rich Headers command to
6768 make the Rich Headers visible.
6769 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
6770 even without toggling the Rich Headers command.)
6773 &lt;End of help on this topic&gt;
6774 </BODY>
6775 </HTML>
6776 ======= h_compose_send =======
6777 <HTML>
6778 <HEAD>
6779 <TITLE>Send Command</TITLE>
6780 </HEAD>
6781 <BODY>
6782 <H1>Send Command</H1>
6784 The Send command
6785 <!--chtml if pinemode="function_key"-->
6786 (F3)
6787 <!--chtml else-->
6788 (^X) 
6789 <!--chtml endif-->
6790 tells Alpine you are finished composing.
6791 Before actually sending it, though, Alpine will ask you to confirm 
6792 your intention, and, at the same time, redisplayed the message text
6793 with the recipients at the top of the screen to give you the opportunity
6794 to review and verify that the message is addressed to the people
6795 you intended.
6797 If the feature
6798 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
6799 then this confirmation prompt and any options it allows are skipped.
6802 This confirmation prompt may also offer, depending
6803 on your particular Setup/Config, options allowing you to set
6804 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
6805 include attachments in the &quot;Fcc&quot; (if you had previously
6806 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
6807 observe details of the
6808 <A HREF="h_config_verbose_post">message submission process</A>,
6809 choose the filter through which the
6810 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
6811 or turn of flowed text generation.
6814 &lt;End of help on this topic&gt;
6815 </BODY>
6816 </HTML>
6817 ======= h_compose_markcutpaste =======
6818 <HTML>
6819 <HEAD>
6820 <TITLE>Mark, Cut and Paste Commands</TITLE>
6821 </HEAD>
6822 <BODY>
6823 <H1>Mark, Cut and Paste Commands</H1>
6825 You can define a &quot;block&quot; of text, which can subsequently
6826  be deleted or
6827 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
6828 then moving the cursor to the end of the desired text block.  You can then
6829 &quot;cut&quot; the block out 
6830 <!--chtml if pinemode="function_key"-->
6831 &quot;F9&quot;,
6832 <!--chtml else-->
6833 &quot;Ctrl-K&quot;,
6834 <!--chtml endif-->
6835 move the cursor, and &quot;paste&quot; it
6836 <!--chtml if pinemode="function_key"-->
6837 &quot;F10&quot;,
6838 <!--chtml else-->
6839 &quot;Ctrl-U&quot;,
6840 <!--chtml endif-->
6841 in the new location.  Also, you can paste more than once, allowing you
6842 to use this feature to copy a block of text.<P>
6844 If you press 
6845 <!--chtml if pinemode="function_key"-->
6846 &quot;F9&quot;
6847 <!--chtml else-->
6848 &quot;^K&quot;
6849 <!--chtml endif-->
6850 without having marked anything, Alpine will delete
6851 a single line.  If you delete a group of lines together, Alpine keeps them
6852 in the same buffer, so 
6853 <!--chtml if pinemode="function_key"-->
6855 <!--chtml else-->
6857 <!--chtml endif-->
6858 will restore them as a block.  About
6859 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
6860 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
6861 &quot;type the character ^&quot;.
6864 &lt;End of help on this topic&gt;
6865 </BODY>
6866 </HTML>
6867 ======= h_compose_justify =======
6868 <HTML>
6869 <HEAD>
6870 <TITLE>Justify Command</TITLE>
6871 </HEAD>
6872 <BODY>
6873 <H1>Justify Command</H1>
6875 The Justify
6876 <!--chtml if pinemode="function_key"-->
6877 (F4)
6878 <!--chtml else-->
6879 (^J) 
6880 <!--chtml endif-->
6881 command reformats the text in the paragraph the cursor is in.
6882 Paragraphs are separated by one blank line or a line beginning with a space.
6883 This is useful when you have been editing a paragraph and the lines become
6884 uneven.  The text is left aligned or justified and the right is ragged.  If
6885 the text is already justified as typed with auto-wrap, no justification will
6886 be done.
6889 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
6890 block of text, the Justify command is modified.
6891 Instead of automatically justifying the current paragraph you will be
6892 asked if you want to justify the paragraph, justify the selected region,
6893 or adjust the quote level of the selected region.
6894 Adjusting the quote level only works if you are using standard
6895 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
6896 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
6899 When composing a reply containing included text, the justify command
6900 will reformat text to the right of the 
6901 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
6902 adding or removing indented lines as needed.  Paragraphs are separated
6903 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
6904 line containing the indent string and one or more blank spaces.
6905 Included text that was previously indented (or &quot;quoted&quot;) is
6906 not preserved.
6909 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
6910 in 1999 and its wide-spread adoption since then, you will usually be better off if you
6911 use the standard
6912 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
6915 &lt;End of help on this topic&gt;
6916 </BODY>
6917 </HTML>
6918 ======= h_compose_spell =======
6919 <HTML>
6920 <HEAD>
6921 <TITLE>Spell Check Command</TITLE>
6922 </HEAD>
6923 <BODY>
6924 <H1>Spell Check Command</H1>
6926 The &quot;To Spell&quot;
6927 <!--chtml if pinemode="function_key"-->
6928 (F12)
6929 <!--chtml else-->
6930 (^T) 
6931 <!--chtml endif-->
6932 command calls an external spell checking program to look over the
6933 message you are composing.  By default, Alpine uses
6935 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
6937 if it knows where to find &quot;aspell&quot;.
6938 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
6939 then the command used is
6941 <CENTER><SAMP>ispell -l</SAMP></CENTER>
6943 Otherwise, the ancient &quot;spell&quot; command is used.
6945 For PC-Alpine, you must install the aspell library code that you
6946 may get from
6947 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
6950 &lt;End of help on this topic&gt;
6951 </BODY>
6952 </HTML>
6953 ======= h_compose_alted =======
6954 <HTML>
6955 <HEAD>
6956 <TITLE>Alt Editor Command</TITLE>
6957 </HEAD>
6958 <BODY>
6959 <H1>Alt Editor Command</H1>
6961 The &quot;Alt Editor&quot; command's availability depends on the
6962 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
6965 When the variable specifies a valid editor on your system, this
6966 command will launch it with the current text of your message
6967 already filled in.
6970 &lt;End of help on this topic&gt;
6971 </BODY>
6972 </HTML>
6973 ======= h_compose_readfile =======
6974 <HTML>
6975 <HEAD>
6976 <TITLE>Read File Command</TITLE>
6977 </HEAD>
6978 <BODY>
6979 <H1>Read File Command</H1>
6981 The &quot;Read File&quot;
6982 <!--chtml if pinemode="function_key"-->
6983 (F5)
6984 <!--chtml else-->
6985 (^R) 
6986 <!--chtml endif-->
6987 command allows you to copy in text from an existing file. You will be
6988 prompted for the name of a file to be inserted into the message.  The file
6989 name is relative to your home directory 
6990 <!--chtml if pinemode="running"-->
6991 (which, in the present configuration of your system, is
6992  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6993 <!--chtml endif-->
6994 or current working directory
6995 <!--chtml if pinemode="running"-->
6996 (which, at least for your current Alpine &quot;session,&quot; 
6997 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6998 <!--chtml endif-->, depending on the
6999 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7000 configuration setting; or, the file name must be specified as a full path name 
7001 <!--chtml if pinemode="os_windows"-->
7002 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7003 <!--chtml else-->
7004 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7005 <!--chtml endif-->
7006 (without the quotation marks).
7009 The file will be inserted where the cursor is located.  <B>The
7010 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7011 Unix machine but have files on a PC or Mac, the files must be transferred
7012 to the system Alpine is running on before they can be read.  Please ask your
7013 local computer support people about the correct way to transfer a file to 
7014 your Alpine system.
7017 &lt;End of help on this topic&gt;
7018 </BODY>
7019 </HTML>
7020 ======= h_config_tray_icon =======
7021 <HTML>
7022 <HEAD>
7023 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7024 </HEAD>
7025 <BODY>
7026 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7028 PC-Alpine only.
7030 This option restores a behavior of previous versions of PC-Alpine.
7031 These
7032 versions, when started, installed a PC-Alpine icon in the notification 
7033 tray of Window's Taskbar.  The primary use of this icon was to indicate
7034 new mail arrival by turning red (while the Taskbar icon remained green).
7035 Additionally, the icon now changes to yellow to signify that a mail folder
7036 has been closed unexpectedly.
7039 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7040 color its Taskbar entry's icon red (as well as the icon in the Window
7041 Title).  This feature is only provided for backwards compatibility.
7044 &lt;End of help on this topic&gt;
7045 </BODY>
7046 </HTML>
7047 ======= h_common_suspend =======
7048 <HTML>
7049 <HEAD>
7050 <TITLE>Suspend Command</TITLE>
7051 </HEAD>
7052 <BODY>
7053 <H1>Suspend Command</H1>
7055 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7056 enabled, you can, at almost any time, temporarily halt your Alpine session,
7057 <!--chtml if pinemode="os_windows"-->
7058 minimizing it into an icon.
7059 <!--chtml else-->
7060 and return to your system prompt.
7061 <!--chtml endif-->
7064 &lt;End of help on this topic&gt;
7065 </BODY>
7066 </HTML>
7067 ======= h_pipe_command =======
7068 <HTML>
7069 <HEAD>
7070 <TITLE>Pipe Command SubOptions</TITLE>
7071 </HEAD>
7072 <BODY>
7073 <H1>Pipe Command SubOptions</H1>
7075 By default, when you use the Pipe command, the processed text of the
7076 message is sent to the Unix command
7077 you specify and the output is captured by Alpine and shown to you.
7078 (This command is available in PC-Alpine, as well, but there aren't many
7079 Windows commands that work well with piping.)
7080 There are some sub-commands that may be used to alter this behavior.
7081 These are toggles that switch the behavior between two possibilities.
7082 They can be combined in any way you wish.
7084 By default, the prompt at the bottom of the screen looks like
7086 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7090 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7092 if you are piping more than one message.
7094 The sub-command options are:
7095 <DL>
7096    <DT>Shown Text or Raw Text</DT>
7097    <DD>This option toggles between sending the shown (processed) text
7098 of the message to the Unix command, and sending the
7099 raw (unprocessed) text of the message to the Unix command.
7100 The default is to send the shown text.
7101 The raw version of the message will contain all of the headers and any
7102 MIME encoding that the message contains.
7103 If you've selected the Raw Text then the prompt will have the additional word
7104 &quot;RAW&quot; in it, like
7106 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7108 You can experiment with this option by piping to something simple like the
7109 Unix &quot;cat&quot; command.
7110    </DD>
7111    <DT>Captured Output or Free Output</DT>
7112    <DD>This option toggles between having Alpine capture the output of
7113 the Unix pipe command for display, and not capturing it.
7114 If the command you are piping to is a filter that will produce output
7115 you want to view, then you want to capture that output
7116 for display (the default).
7117 If the Unix command doesn't produce output or handles the display itself,
7118 then you want free output.
7119 When you've selected the Free Output option the prompt will change to
7121 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7123    </DD>
7124    <DT>No Delimiter or With Delimiter</DT>
7125    <DD>This option controls whether or not a Unix mailbox style delimiter
7126 will come before the text of the message.
7127 This is the delimiter used in the common Unix mailbox format.
7128 It's the single line that begins with the five characters
7129 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7130 You'll usually only want to include this if the Unix command requires
7131 input in the format of a traditional Unix mailbox file.
7132 When you've selected the With Delimiter option the prompt will change to
7134 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7136    </DD>
7137    <DT>To Same Pipe or To Individual Pipes</DT>
7138    <DD>This option only shows up if you are running an aggregate
7139 pipe command.
7140 That is, the command was Apply Pipe, not just Pipe.
7141 You have the option of piping all of the selected messages through a
7142 single pipe to a single instance of the Unix command,
7143 or piping each individual message through a separate pipe to separate
7144 instances of the Unix command.
7145 The default is that all of the output will go through a single pipe
7146 to a single instance of the command.
7147 You can try this option with a command like &quot;less&quot;, with Free
7148 Output enabled.
7149 When you've selected the Individual Pipes option the prompt will change to
7151 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7153    </DD>
7154 </DL>
7157 As mentioned earlier, the options can be combined in any way you wish.
7158 You may leave them all off, turn them all on, or turn some of them on
7159 and some of them off.
7160 If you use the pipe command a second time in the same session the default
7161 options will be what you used the last time.
7164 &lt;End of help on this topic&gt;
7165 </BODY>
7166 </HTML>
7167 ========== h_emptydir_subfolder_name =========
7168 <HTML>
7169 <HEAD>
7170 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7171 </HEAD>
7172 <BODY>
7173 <H1>Enter Subfolder Name</H1>
7175 <P> 
7176 This is the name of a new subfolder in the directory you are creating.
7177 Because empty directories are hidden and therefore not useful, you must also
7178 create a subfolder in the directory you are creating in order that the
7179 directory remains visible.
7181 Alternatively, you may turn off the configuration feature
7182 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7183 so that empty directories remain visible.
7184 If you do that, you will not be required to create the subfolder when you
7185 create a directory.
7188 &lt;End of help on this topic&gt;
7189 </BODY>
7190 </HTML>
7191 ========== h_incoming_add_folder_name =========
7192 <HTML>
7193 <HEAD>
7194 <TITLE>ENTER FOLDER NAME</TITLE>
7195 </HEAD>
7196 <BODY>
7197 <H1>Enter Folder Name</H1>
7199 <P> 
7200 This is the name of the folder on the previously specified server.
7201 By default the folder name is interpreted as defining a section of your personal
7202 folder area.  This area and how you specify it are defined by the
7203 server, if one is specified.
7206 To define a folder outside the default area, prefix
7207 the path with the namespace to use when interpreting the
7208 given path.  If a namespace is specified, the folder name begins with the
7209 sharp (#) character followed by the name of the namespace
7210 and then the namespace's path-element-delimiter.  Aside from the
7211 name's format, namespaces can also imply access rights, content
7212 policy, audience, location, and, occasionally, access methods.
7215 Each server exports its own set (possibly of size one) of 
7216 namespaces.
7217 For a more detailed explanation read about
7218 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7221 To specify the default for INBOX on the server you can usually just enter
7222 &quot;INBOX&quot;, and the server will understand the special meaning of
7223 that word.
7226 &lt;End of help on this topic&gt;
7227 </BODY>
7228 </HTML>
7229 ========== h_incoming_add_folder_host =========
7230 <HTML>
7231 <HEAD>
7232 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7233 </HEAD>
7234 <BODY>
7235 <H1>Enter Incoming Folder Server</H1>
7237 You are being asked for the name of the server for use with this incoming
7238 folder.
7239 If the folder is on the machine where Alpine is running, then just enter
7240 RETURN without typing a server name.
7243 If the folder is on an IMAP server then type the server's name followed
7244 by RETURN.
7245 You may use the ^X command if the server is the same as the server that
7246 the INBOX is on.
7249 You may have to add optional extra information to the server name.
7250 For example, if the IMAP server is using a non-standard port number you
7251 would specify that by appending a colon (:) followed by the port number
7252 to the server name
7255 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7258 or you may need to specify a different protocol if the server is not an
7259 IMAP server. For example:
7262 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7265 for a POP server or
7268 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7271 for an NNTP news server.
7272 For an explanation of all of the possibilities, see
7273 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7274 for folders.
7277 There is a special command (^W) if you want to set up a folder that gets its
7278 mail from a
7279 <A HREF="h_maildrop">Mail Drop</A>.
7280 If you type that command, you will be prompted for the information for
7281 both the Mail Drop folder and the destination folder.
7284 &lt;End of help on this topic&gt;
7285 </BODY>
7286 </HTML>
7287 ========== h_incoming_add_inbox =========
7288 <HTML>
7289 <HEAD>
7290 <TITLE>ENTER INBOX SERVER</TITLE>
7291 </HEAD>
7292 <BODY>
7293 <H1>Enter INBOX Server</H1>
7295 You are being asked for the name of the server for use with
7296 the INBOX folder.
7297 Type the server's name followed by RETURN.
7300 You may have to add optional extra information to the server name.
7301 For example, if the server is using a non-standard port number you
7302 would specify that by appending a colon (:) followed by the port number
7303 to the server name
7306 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7309 or you may need to specify a different protocol if the server is not an
7310 IMAP server. For example:
7313 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7316 for a POP server.
7319 For an explanation of all of the possibilities, see
7320 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7321 for folders.
7324 If the INBOX folder is on the machine where Alpine is running, then just enter
7325 RETURN without typing a server name.
7328 There is a special command (^W) if you want to set up a folder that gets its
7329 mail from a
7330 <A HREF="h_maildrop">Mail Drop</A>.
7331 If you type that command, you will be prompted for the information for
7332 both the Mail Drop folder and the destination folder, which will be used
7333 as your INBOX folder.
7336 &lt;End of help on this topic&gt;
7337 </BODY>
7338 </HTML>
7339 ========== h_incoming_add_maildrop_destn =========
7340 <HTML>
7341 <HEAD>
7342 <TITLE>ENTER DESTINATION SERVER</TITLE>
7343 </HEAD>
7344 <BODY>
7345 <H1>Enter Destination Server</H1>
7347 You are being asked for the name of the server where the destination
7348 folder is for use with this Mail Drop incoming folder.
7349 That is, you are using a Mail Drop for this incoming folder and
7350 you've already entered
7351 the server and folder name for the Mail Drop.
7352 Now you need to enter the server for the destination folder
7353 where the mail should be copied to.
7354 Mail will come from the Mail Drop and be copied to the destination folder.
7357 Type the server's name followed by RETURN.
7358 If the folder is local to this computer, just type RETURN without entering
7359 a server name.
7362 You may have to add optional extra information to the server name.
7363 For example, if the server is using a non-standard port number you
7364 would specify that by appending a colon (:) followed by the port number
7365 to the server name
7368 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7371 For an explanation of all of the possibilities, see
7372 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7373 for folders.
7376 &lt;End of help on this topic&gt;
7377 </BODY>
7378 </HTML>
7379 ========== h_inbox_add_maildrop_destn =========
7380 <HTML>
7381 <HEAD>
7382 <TITLE>ENTER DESTINATION SERVER</TITLE>
7383 </HEAD>
7384 <BODY>
7385 <H1>Enter Destination Server</H1>
7387 You are being asked for the name of the server where the destination
7388 folder is for use with your Mail Drop INBOX.
7389 That is, you are using a Mail Drop for your INBOX and you've already entered
7390 the server and folder name for the Mail Drop.
7391 Now you need to enter the server for the destination folder
7392 where the mail should be copied to.
7393 Mail will come from the Mail Drop and be copied to the destination folder.
7396 Type the server's name followed by RETURN.
7397 If the folder is local to this computer, just type RETURN without entering
7398 a server name.
7401 You may have to add optional extra information to the server name.
7402 For example, if the server is using a non-standard port number you
7403 would specify that by appending a colon (:) followed by the port number
7404 to the server name
7407 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7410 For an explanation of all of the possibilities, see
7411 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7412 for folders.
7415 &lt;End of help on this topic&gt;
7416 </BODY>
7417 </HTML>
7418 ========== h_inbox_add_maildrop =========
7419 <HTML>
7420 <HEAD>
7421 <TITLE>ENTER MAILDROP SERVER</TITLE>
7422 </HEAD>
7423 <BODY>
7424 <H1>Enter Mail Drop Server</H1>
7426 You are being asked for the name of the Mail Drop server for use with
7427 your INBOX.
7430 Type the server's name followed by RETURN.
7433 You may have to add optional extra information to the server name.
7434 For example, if the server is using a non-standard port number you
7435 would specify that by appending a colon (:) followed by the port number
7436 to the server name
7439 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7442 or you may need to specify a different protocol if the server is not an
7443 IMAP server. For example:
7446 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7449 for a POP server or
7452 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7455 for an NNTP news server.
7456 For an explanation of all of the possibilities, see
7457 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7458 for folders.
7461 &lt;End of help on this topic&gt;
7462 </BODY>
7463 </HTML>
7464 ========== h_incoming_add_maildrop =========
7465 <HTML>
7466 <HEAD>
7467 <TITLE>ENTER MAILDROP SERVER</TITLE>
7468 </HEAD>
7469 <BODY>
7470 <H1>Enter Mail Drop Server</H1>
7472 You are being asked for the name of the Mail Drop server for use with
7473 this incoming folder.
7476 Type the server's name followed by RETURN.
7477 You may use the ^X command if the server is the same as the server that
7478 the INBOX is on.
7481 You may have to add optional extra information to the server name.
7482 For example, if the server is using a non-standard port number you
7483 would specify that by appending a colon (:) followed by the port number
7484 to the server name
7487 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7490 or you may need to specify a different protocol if the server is not an
7491 IMAP server. For example:
7494 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7497 for a POP server or
7500 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7503 for an NNTP news server.
7504 For an explanation of all of the possibilities, see
7505 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7506 for folders.
7509 If the Mail Drop folder is on the machine where Alpine is running, then just enter
7510 RETURN without typing a server name.
7513 &lt;End of help on this topic&gt;
7514 </BODY>
7515 </HTML>
7516 ========== h_maildrop =========
7517 <HTML>
7518 <HEAD>
7519 <TITLE>WHAT IS A MAIL DROP?</TITLE>
7520 </HEAD>
7521 <BODY>
7522 <H1>What is a Mail Drop?</H1>
7524 In some situaions it may make sense to have your mail delivered to one
7525 folder (the Mail Drop) and then when you want to read mail that has been
7526 delivered to the Mail Drop folder Alpine will move it to another
7527 destination folder.
7528 Often the Mail Drop will be a remote folder and messages will be moved from
7529 there to a local destination folder.
7532 One example where this might make sense is if the Mail Drop folder is accessible
7533 only with the POP protocol.
7534 You could designate your POP inbox as the Mail Drop folder and have Alpine move
7535 mail from there to a local (on the same machine Alpine is running on)
7536 destination folder, where you'll read it.
7539 A Mail Drop may only be used as your Inbox or as an
7540 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
7543 There is no attempt to synchronize the contents of the destination folder
7544 with the contents of the Mail Drop folder.
7545 All that happens is that all of the messages in the Mail Drop folder are
7546 copied to the destination folder and then they are deleted and expunged (if possible)
7547 from the Mail Drop folder.
7548 The next time a check for new mail is made, any messages in the Mail 
7549 Drop folder are once again copied to the destination folder and deleted
7550 and expunged from the Mail Drop folder.
7551 (If the Mail Drop folder is a news group, then the messages can't be
7552 expunged from the newsgroup. Instead, only Recent messages are copied from
7553 the newsgroup to the destination folder.)
7556 Configuration of a Mail Drop is a little different from configuration of
7557 a folder that does not use a Mail Drop because you have to specify two
7558 folder names instead of one.
7559 The two folders may be any types of folders that Alpine can normally use.
7560 They don't have to be a remote folder and a local folder, that is
7561 simply the most common usage.
7562 When you use a Mail Drop folder Alpine will periodically re-open the Mail
7563 Drop to check for new mail.
7564 The new-mail checks will happen at the frequency set with the
7565 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
7566 but with a minimum time
7567 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
7568 between checks.
7569 Because of this minimum you may notice that new mail does not
7570 appear promptly when you expect it.
7571 The reason for this is to protect the server from over-zealous opening and
7572 closing of the Mail Drop folder.
7573 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
7574 the end of the folder index, then the check will happen, regardless of how
7575 long it has been since the previous check.
7577 If there is new mail, that mail will be copied to the destination folder
7578 and then will be deleted from the Mail Drop.
7579 Note that using a Mail Drop with a local destination folder does not make
7580 sense if you read mail from more than one machine, because the mail is
7581 downloaded to the destination folder (which is accessible from only one
7582 machine) and deleted from the Mail Drop.
7584 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
7587 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
7590 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
7592 The brackets are not literal.
7594 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
7596 is a single character that does not appear in the MailDropFolder name.
7597 If the name doesn't contain spaces then it can be a space character.
7598 The two folder names are full technical
7599 <A HREF="h_valid_folder_names">folder names</A>
7600 as used by Alpine.
7601 Here are a couple examples to give you an idea what is being talked about:
7604 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
7606 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
7609 A #move folder may only be used as an
7610 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
7611 an Inbox.
7612 When you are in the FOLDER LIST of Incoming Message Folders (after turning
7613 on the
7614 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
7615 option)
7616 the Add command has a subcommand &quot;Use Mail Drop&quot;
7617 which may be helpful for defining the folder in your Alpine configuration.
7618 The same is true when you edit the
7619 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
7620 option in Setup/Config.
7621 Each of these configuration methods will also create the DestinationFolder
7622 if it doesn't already exist.
7623 If you are having problems, make sure the DestinationFolder exists.
7626 &lt;End of help on this topic&gt;
7627 </BODY>
7628 </HTML>
7629 ========== h_save =========
7630 <HTML>
7631 <HEAD>
7632 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
7633 </HEAD>
7634 <BODY>
7635 <H1>Choose a Folder to Save Into</H1>
7637 After Exiting from this help text,
7638 type the name of the folder you want to save into and press RETURN.
7640 Press ^T to get a list of your folders to choose from.
7641 Press ^C to cancel the Save.
7643 If you have Folder Collections defined you may use
7644 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
7645 the collection being saved to.
7647 If Tab Completion is enabled (it is enabled by default)
7648 you may type a Tab character to have Alpine complete the folder name for you.
7650 If Partial Match Lists is enabled (it is enabled by default) you may type
7651 Ctrl-X to get a list of matches to the prefix you've typed in so far.
7653 If the Ctrl-R subcommand is present that means you can decide to Delete or
7654 not Delete the message you are saving after you save it.
7655 The label on that key gives the action to switch to.
7656 If it says Delete and you type Ctrl-R the label displayed will change to
7657 No Delete and the source message will be deleted after the save. If it
7658 says No Delete and you type Ctrl-R the label displayed will change to
7659 Delete and the message will not be deleted.
7660 You can control the default for the Delete parameter with the
7661 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
7663 Similarly, if the Ctrl-W subcommand is present that means you can decide
7664 to Preserve the order of the messages being saved or not.
7665 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
7666 will be in the same order as you see them in the source folder now.
7667 The opposite action (which is usually the default) is that you don't care
7668 about the order.
7669 The Saved messages may or may not be in the same order in the destination folder.
7670 There may be a performance penalty for choosing to save the messages in order.
7671 You can control the default for the Preserve Order parameter with the
7672 configuration feature
7673 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
7676 If you haven't disabled the Save Input History and you've already done a
7677 Save earlier in this session then you may use the Up and Down arrows to retrieve
7678 a folder name used in a previous Save.
7681 &lt;End of help on this topic&gt;
7682 </BODY>
7683 </HTML>
7684 ============= h_simple_index ========================
7685 <HTML>
7686 <HEAD>
7687 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
7688 </HEAD>
7689 <BODY>
7690 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
7691 <!--chtml if pinemode="function_key"-->
7692 <PRE>
7693 Navigating the List of Messages               General Alpine Commands
7694 -------------------------------               -----------------------
7695  F5   Move to previous message                 F1   Show this help text
7696  F6   Move to next message
7697  F7   Show previous screen of messages
7698  F8   Show next screen of messages
7700 Message Selection Commands
7701 --------------------------
7702  F3   Exit the Message Select menu (canceling Send command)
7703  F4   Select the currently highlighted message
7704  F9   Mark the currently highlighted message as deleted
7705  F10  Undelete (remove deletion mark from) the highlighted message
7706 </PRE>
7707 <!--chtml else-->
7708 <PRE>
7709 Navigating the List of Messages               General Alpine Commands
7710 -------------------------------               -----------------------
7711   P  Move to previous message                  ?  Show this help text
7712   N  Move to next message
7713   -  Show previous screen of messages
7714  Spc (space bar) Show next screen of messages
7716 Message Selection Commands
7717 --------------------------
7718   E  Exit the Message Select menu (canceling Send command)
7719   S  Select the currently highlighted message
7720   D  Mark the currently highlighted message as deleted
7721   U  Undelete (remove deletion mark from) the highlighted message
7722 </PRE>
7723 <!--chtml endif-->
7725 <H2>Description of the Select Postponed Message Screen</H2>
7727 This screen allows you to select one of several previously postponed
7728 messages in order to continue composition.  Your options are very limited
7729 -- the screen is not meant to let you manipulate these messages.  However,
7730 you may now delete messages from this list.  Once you choose a message,
7731 Alpine reads it in and puts you into the regular message composer.
7734 Messages do not stay in this postponed state automatically.  If you select
7735 a message and then want to postpone it again, use the normal postpone
7736 (Ctrl-O) command in the composer.
7739 If you exit this screen without selecting a message, the Compose command
7740 that got you here is canceled.  Other than messages explicitly marked
7741 &quot;Deleted&quot;, no messages will be removed.
7744 &lt;End of help on this topic&gt;
7745 </BODY>
7746 </HTML>
7747 ============= h_collection_screen ========================
7748 <HTML>
7749 <HEAD>
7750 <TITLE>COLLECTION LIST screen</TITLE>
7751 </HEAD>
7752 <BODY>
7753 <H1>COLLECTION LIST screen</H1>
7755 The COLLECTION LIST screen is used to select one of your  
7756 collection definitions to display the folders they contain.  See
7757 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
7758 detailed explanation of collections.<P>
7760 To manage your collection definitions (Add, Change, Delete, etc.), use
7761 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
7762 MAIN MENU.
7765 &lt;End of help on this topic&gt;
7766 </BODY>
7767 </HTML>
7768 ============= h_collection_maint ========================
7769 <HTML>
7770 <HEAD>
7771 <TITLE>SETUP COLLECTION LIST screen</TITLE>
7772 </HEAD>
7773 <BODY>
7774 <H1>SETUP COLLECTION LIST screen</H1>
7776 The SETUP COLLECTION LIST screen lets you manage your collection
7777 definitions.  See 
7778 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
7779 for detailed explanation of collections.<P>
7781 Maintenance commands include:
7782 <DL>
7783 <DT>Change
7784 <!--chtml if pinemode="function_key"-->
7785 (F4)
7786 <!--chtml else-->
7788 <!--chtml endif-->
7789 </DT>
7791 <DD>Modify attributes of the selected collection definition.
7793 <DT>Add Cltn
7794 <!--chtml if pinemode="function_key"-->
7795 (F9)
7796 <!--chtml else-->
7798 <!--chtml endif-->
7799 </DT>
7801 <DD>Create a new collection definition.
7802 </DD>
7804 <DT>Del Cltn
7805 <!--chtml if pinemode="function_key"-->
7806 (F10)
7807 <!--chtml else-->
7809 <!--chtml endif-->
7810 </DT>
7812 <DD>Delete the selected collection definition.<BR>
7813 NOTE: The folders and directories referred to by the
7814 collection definition are <EM>NOT</EM> deleted.  Folders must
7815 be deleted, if that's what you wish to do, from the 
7816 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
7817 individual folders in a collection.
7818 </DD>
7820 <DT>Shuffle
7821 <!--chtml if pinemode="function_key"-->
7822 (F11)
7823 <!--chtml else-->
7825 <!--chtml endif-->
7826 </DT>
7828 <DD>Change the order of the displayed collections.  Alpine will offer
7829 to move the currently selected collection one position UP
7830 or DOWN.
7831 </DD>
7832 </DL>
7835 &lt;End of help on this topic&gt;
7836 </BODY>
7837 </HTML>
7838 ============ h_what_are_collections ==========
7839 <HTML>
7840 <HEAD>
7841 <TITLE>Folder Collections Explained</TITLE>
7842 </HEAD>
7843 <BODY>
7844 <H1>Folder Collections Explained</H1>
7847 Those of you with simple mail configurations will just see a list of all the
7848 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
7849 The special folders for INBOX, sent mail and saved messages
7850 will appear at the top of the list.  All others are in alphabetical order.
7852 If you
7853 or your system administrator have defined more than one collection or if
7854 you have a collection (for newsgroups or email folders) defined on your 
7855 system, then you will see the COLLECTION LIST screen first when choosing 
7856 FOLDER LIST from Alpine's MAIN MENU.
7858 <H2>Why have multiple folder collections?</H2>
7860 For Alpine users who only maintain email folders (and not too many) on one host, 
7861 a single folder collection is probably sufficient.<P>
7863 However, people who have more than one email account - for example, one 
7864 at their university, and one with their personal Internet Service Provider - 
7865 will have different sets of folders on different hosts, and they may want to
7866 access them all from the same installation of Alpine, rather than use different 
7867 software and/or log into other hosts to manipulate messages in different 
7868 accounts.  (If in doubt whether one of your email accounts can be accessed 
7869 with Alpine, contact the technical support people for that account.)  Even people
7870 who have only one email account on one host, but have dozens or
7871 hundreds of email folders, may want to arrange these folders together in a 
7872 meaningful way.<BR>
7873 That is where multiple collections come in.
7875 <H2>Types of Collections</H2>
7876 <DL>
7877 <DT>INCOMING FOLDERS</DT>
7878 <DD>&quot;Incoming Message Folders&quot; 
7879 is a special collection typically used to supplement your single INBOX.  
7880 All the folders here are meant to be ones that receive incoming messages, 
7881 which you intend to check more or less frequently.  
7882 You may have multiple folders like this because you or your systems 
7883 administrator have set up an external program or you may have set up
7884 Alpine to filter incoming 
7885 messages into different folders, based on certain criteria such as 
7886 sender, recipient, or subject; or because you have multiple accounts and 
7887 wish to check their INBOXes easily.  This collection is established by 
7888 setting the 
7889 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
7890 feature in the SETUP CONFIGURATION screen, which is accessed from the 
7891 MAIN MENU.
7892 </DD>
7894 <DT>NEWS</DT>
7895 <DD>You can also define a collection specifically for
7896 newsgroups.  Alpine does this for you implicitly when you 
7897 <A HREF="h_config_nntp_server">define an NNTP Server</A>
7898 in your Alpine configuration.  The news collection appears last in the 
7899 COLLECTION LIST (though you can shuffle it up in the order of presentation),
7900 and Alpine knows not to save messages there.
7901 </DD>
7903 <DT>DEFAULT COLLECTION</DT>
7904 <DD>This is the default collection for your saved and sent messages folders.
7905 </DD>
7906 </DL>
7910 <H2>Defining Collections</H2>
7912 In the absence of any folder-collection definitions, Alpine will assume a
7913 single default folder collection.
7914 <!--chtml if pinemode="os_windows"-->
7915 <!--chtml else-->
7916 If necessary, Alpine will create the directory
7917 &quot;mail&quot; in your Unix home directory 
7918 to hold your folders.
7919 <!--chtml endif-->
7921 You can use the 
7922 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
7923 the MAIN MENU, to manage your collection list.  
7925 &lt;End of help on this topic&gt;
7926 </BODY>
7927 </HTML>
7928 ===== h_select_address_screen =====
7929 <HTML>
7930 <HEAD>
7931 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
7932 </HEAD>
7933 <BODY>
7934 <H1>SELECT AN ADDRESS SCREEN</H1>
7935 <H2>COMMANDS</H2>
7936 <!--chtml if pinemode="function_key"-->
7937 <PRE>
7938 Available  Commands                        
7939 -------------------------------            
7940 F1  Show Help Text
7941 F3  Exit without selecting anything
7942 F4  Select the highlighted address
7943 F5  Move highlight to previous address
7944 F6  Move highlight to next address
7945 F7  Previous page of addresses
7946 F8  Next page of addresses
7947 F11 Print
7948 F12 WhereIs
7949 </PRE>
7950 <!--chtml else-->
7951 <PRE>
7952 Navigation                     General Alpine Commands
7953 -------------------------      -----------------------
7954  P  Prev Address                ?  Display this help text
7955  N  Next Address                E  Exit without selecting anything
7956  -  Previous page               %  Print
7957 Spc (space bar) Next page
7958  W  WhereIs
7960 Select Command
7961 ------------------------------------------------
7962  S  Select the highlighted address
7963 </PRE>
7964 <!--chtml endif-->
7966 <H2>Description of the Select Address Screen</H2>
7968 This screen gives you an easy way to select an address from all of
7969 the address book entries that match the prefix typed so far.
7971 <P><UL>
7972 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7973 </UL>
7975 &lt;End of help on this topic&gt;
7976 </BODY>
7977 </HTML>
7978 ===== h_select_rule_screen =====
7979 <HTML>
7980 <HEAD>
7981 <TITLE>SELECT A RULE SCREEN</TITLE>
7982 </HEAD>
7983 <BODY>
7984 <H1>SELECT A RULE SCREEN</H1>
7985 <H2>COMMANDS</H2>
7986 <!--chtml if pinemode="function_key"-->
7987 <PRE>
7988 Available  Commands                        
7989 -------------------------------            
7990 F1  Show Help Text
7991 F3  Exit without selecting anything
7992 F4  Select the highlighted rule
7993 F5  Move highlight to previous rule
7994 F6  Move highlight to next rule
7995 F7  Previous page of rules
7996 F8  Next page of rules
7997 F11 Print
7998 F12 WhereIs
7999 </PRE>
8000 <!--chtml else-->
8001 <PRE>
8002 Navigation                     General Alpine Commands
8003 -------------------------      -----------------------
8004  P  Prev Rule                   ?  Display this help text
8005  N  Next Rule                   E  Exit without selecting anything
8006  -  Previous page               %  Print
8007 Spc (space bar) Next page
8008  W  WhereIs
8010 Select Command
8011 ------------------------------------------------
8012  S  Select the highlighted rule
8013 </PRE>
8014 <!--chtml endif-->
8016 <H2>Description of the Select Rule Screen</H2>
8018 This screen just gives you an easy way to select a rule from all of your
8019 defined rules.
8020 The list of rules presented is the list of nicknames of all of the rules
8021 defined using Setup/Rules.
8022 For selecting messages, it is likely that the Indexcolor rules and possibly
8023 the Roles rules will be most useful.
8024 The others are there also, in case you find a use for them.
8026 In order for this to be useful for selecting messages, the nicknames of
8027 the rules have to be different.
8028 Alpine actually just gets the nickname of the rule that you select and then
8029 looks up that rule using the nickname.
8030 So if there are duplicate nicknames, the first rule that has that
8031 nickname will be used.
8033 <P><UL>
8034 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8035 </UL>
8037 &lt;End of help on this topic&gt;
8038 </BODY>
8039 </HTML>
8040 ===== h_select_priority_screen =====
8041 <HTML>
8042 <HEAD>
8043 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8044 </HEAD>
8045 <BODY>
8046 <H1>SELECT A PRIORITY SCREEN</H1>
8047 <H2>COMMANDS</H2>
8048 <!--chtml if pinemode="function_key"-->
8049 <PRE>
8050 Available  Commands                        
8051 -------------------------------            
8052 F1  Show Help Text
8053 F3  Exit without selecting anything
8054 F4  Select the highlighted priority
8055 F5  Move highlight to previous priority
8056 F6  Move highlight to next priority
8057 F7  Previous page of priorities
8058 F8  Next page of priorities
8059 F11 Print
8060 F12 WhereIs
8061 </PRE>
8062 <!--chtml else-->
8063 <PRE>
8064 Navigation                     General Alpine Commands
8065 -------------------------      -----------------------
8066  P  Prev Priority               ?  Display this help text
8067  N  Next Priority               E  Exit without selecting anything
8068  -  Previous page               %  Print
8069 Spc (space bar) Next page
8070  W  WhereIs
8072 Select Command
8073 ------------------------------------------------
8074  S  Select the highlighted priority
8075 </PRE>
8076 <!--chtml endif-->
8078 <H2>Description of the Select Priority Screen</H2>
8080 This screen gives you a way to select a priority for the message you are sending.
8081 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8082 Some mail programs will display an indication of the priority level to
8083 the recipient of the message, some will ignore it.
8084 Even in cases where the mail programs of both the sender and the recipient
8085 agree on the meaning of this header, keep in mind that it is
8086 something that the sender sets so it is only an indication
8087 of the priority that the sender attaches to the mail.
8088 Alpine can be made to display an indication of this priority in incoming
8089 messages by use of one of the tokens
8090 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8091 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8092 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8094 <P><UL>
8095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8096 </UL>
8098 &lt;End of help on this topic&gt;
8099 </BODY>
8100 </HTML>
8101 ===== h_select_keyword_screen =====
8102 <HTML>
8103 <HEAD>
8104 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8105 </HEAD>
8106 <BODY>
8107 <H1>SELECT A KEYWORD SCREEN</H1>
8108 <H2>COMMANDS</H2>
8109 <!--chtml if pinemode="function_key"-->
8110 <PRE>
8111 Available  Commands                        
8112 -------------------------------            
8113 F1  Show Help Text
8114 F3  Exit without selecting anything
8115 F4  Select the highlighted keyword
8116 F5  Move highlight to previous keyword
8117 F6  Move highlight to next keyword
8118 F7  Previous page of keywords
8119 F8  Next page of keywords
8120 F11 Print
8121 F12 WhereIs
8122 </PRE>
8123 <!--chtml else-->
8124 <PRE>
8125 Navigation                     General Alpine Commands
8126 -------------------------      -----------------------
8127  P  Prev Keyword                ?  Display this help text
8128  N  Next Keyword                E  Exit without selecting anything
8129  -  Previous page               %  Print
8130 Spc (space bar) Next page
8131  W  WhereIs
8133 Select Command
8134 ------------------------------------------------
8135  S  Select the highlighted keyword
8136 </PRE>
8137 <!--chtml endif-->
8139 <H2>Description of the Select Keyword Screen</H2>
8141 This screen just gives you an easy way to select a keyword.
8142 The list of keywords presented is the list of all keywords defined in your 
8143 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8144 If you have given a keyword a nickname, that nickname is displayed
8145 instead of the actual keyword.
8147 <P><UL>
8148 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8149 </UL>
8151 &lt;End of help on this topic&gt;
8152 </BODY>
8153 </HTML>
8154 ===== h_select_charset_screen =====
8155 <HTML>
8156 <HEAD>
8157 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8158 </HEAD>
8159 <BODY>
8160 <H1>SELECT A CHARACTER SET SCREEN</H1>
8161 <H2>COMMANDS</H2>
8162 <!--chtml if pinemode="function_key"-->
8163 <PRE>
8164 Available  Commands                        
8165 -------------------------------            
8166 F1  Show Help Text
8167 F3  Exit without selecting anything
8168 F4  Select the highlighted character set
8169 F5  Move highlight to previous character set
8170 F6  Move highlight to next character set
8171 F7  Previous page of character sets
8172 F8  Next page of character sets
8173 F11 Print
8174 F12 WhereIs
8175 </PRE>
8176 <!--chtml else-->
8177 <PRE>
8178 Navigation                     General Alpine Commands
8179 -------------------------      -----------------------
8180  P  Prev Character Set          ?  Display this help text
8181  N  Next Character Set          E  Exit without selecting anything
8182  -  Previous page               %  Print
8183 Spc (space bar) Next page
8184  W  WhereIs
8186 Select Command
8187 ------------------------------------------------
8188  S  Select the highlighted character set
8189 </PRE>
8190 <!--chtml endif-->
8192 <H2>Description of the Select A Character Set Screen</H2>
8194 This screen just gives you an easy way to select a character set from the
8195 set of character sets Alpine knows about.
8196 The list presented will vary slightly depending on what option you are
8197 selecting the character set for.
8199 <P><UL>
8200 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8201 </UL>
8203 &lt;End of help on this topic&gt;
8204 </BODY>
8205 </HTML>
8206 ===== h_select_multcharsets_screen =====
8207 <HTML>
8208 <HEAD>
8209 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8210 </HEAD>
8211 <BODY>
8212 <H1>SELECT CHARACTER SETS SCREEN</H1>
8213 <H2>COMMANDS</H2>
8214 <!--chtml if pinemode="function_key"-->
8215 <PRE>
8216 Available  Commands
8217 -------------------------------            
8218 F1  Show Help Text
8219 F3  Exit without selecting anything
8220 F4  Select the highlighted charset (or chosen charsets in ListMode)
8221 F5  Move highlight to previous charset
8222 F6  Move highlight to next charset
8223 F7  Previous page of charsets
8224 F8  Next page of charsets
8225 F9  Toggle choices when using ListMode
8226 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8227 F11 Print
8228 F12 WhereIs
8229 </PRE>
8230 <!--chtml else-->
8231 <PRE>
8232 Navigation                     General Alpine Commands
8233 -------------------------      -----------------------
8234  P  Prev Charset                ?  Display this help text
8235  N  Next Charset                E  Exit without selecting anything
8236  -  Previous page               %  Print
8237 Spc (space bar) Next page
8238  W  WhereIs
8240 Select Command
8241 ------------------------------------------------
8242  S  Select the highlighted charset (or chosen charsets in ListMode)
8243  L  Turn on ListMode (makes it easy to choose multiple charsets)
8244  1  Turn off ListMode
8245  X  Toggle choices when using ListMode
8246 </PRE>
8247 <!--chtml endif-->
8249 <H2>Description of the Select Character Set Screen</H2>
8251 This screen just gives you an easy way to select a character set or a list of
8252 character sets.
8253 The list of character sets presented is the list of all character sets known to
8254 Alpine.
8255 You may select other character sets by typing them in directly.
8257 <P><UL>
8258 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8259 </UL>
8261 &lt;End of help on this topic&gt;
8262 </BODY>
8263 </HTML>
8264 ===== h_select_multkeyword_screen =====
8265 <HTML>
8266 <HEAD>
8267 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8268 </HEAD>
8269 <BODY>
8270 <H1>SELECT KEYWORDS SCREEN</H1>
8271 <H2>COMMANDS</H2>
8272 <!--chtml if pinemode="function_key"-->
8273 <PRE>
8274 Available  Commands
8275 -------------------------------            
8276 F1  Show Help Text
8277 F3  Exit without selecting anything
8278 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8279 F5  Move highlight to previous keyword
8280 F6  Move highlight to next keyword
8281 F7  Previous page of keywords
8282 F8  Next page of keywords
8283 F9  Toggle choices when using ListMode
8284 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8285 F11 Print
8286 F12 WhereIs
8287 </PRE>
8288 <!--chtml else-->
8289 <PRE>
8290 Navigation                     General Alpine Commands
8291 -------------------------      -----------------------
8292  P  Prev Keyword                ?  Display this help text
8293  N  Next Keyword                E  Exit without selecting anything
8294  -  Previous page               %  Print
8295 Spc (space bar) Next page
8296  W  WhereIs
8298 Select Command
8299 ------------------------------------------------
8300  S  Select the highlighted keyword (or chosen keywords in ListMode)
8301  L  Turn on ListMode (makes it easy to choose multiple keywords)
8302  1  Turn off ListMode
8303  X  Toggle choices when using ListMode
8304 </PRE>
8305 <!--chtml endif-->
8307 <H2>Description of the Select Keyword Screen</H2>
8309 This screen just gives you an easy way to select a keyword or a list of
8310 keywords.
8311 The list of keywords presented is the list of all keywords defined in your 
8312 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8313 If you have given a keyword a nickname, that nickname is displayed
8314 instead of the actual keyword.
8316 <P><UL>
8317 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8318 </UL>
8320 &lt;End of help on this topic&gt;
8321 </BODY>
8322 </HTML>
8323 ===== h_select_incoming_to_monitor =====
8324 <HTML>
8325 <HEAD>
8326 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8327 </HEAD>
8328 <BODY>
8329 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8330 <H2>COMMANDS</H2>
8331 <!--chtml if pinemode="function_key"-->
8332 <PRE>
8333 Available  Commands
8334 -------------------------------            
8335 F1  Show Help Text
8336 F3  Exit without selecting anything
8337 F4  Select the marked folders
8338 F5  Move highlight to previous folder
8339 F6  Move highlight to next folder
8340 F7  Previous page of folders
8341 F8  Next page of folders
8342 F9  Toggle choices on or off
8343 F11 Print
8344 F12 WhereIs
8345 </PRE>
8346 <!--chtml else-->
8347 <PRE>
8348 Navigation                     General Alpine Commands
8349 -------------------------      -----------------------
8350  P  Prev Folder                 ?  Display this help text
8351  N  Next Folder                ^C  exit without changing anything
8352  -  Previous page               %  Print
8353 Spc (space bar) Next page
8354  W  WhereIs
8356 Select Command
8357 ------------------------------------------------
8358  S  Select the marked folders
8359  X  Toggle choices on or off
8360 </PRE>
8361 <!--chtml endif-->
8363 <H2>Description of the Select Folders to Check Screen</H2>
8365 This screen is only useful if the feature
8366 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
8367 is set.
8368 By default, when you set that feature all of your incoming folders
8369 will be checked periodically for Unseen messages.
8370 By using this screen, you may restrict the set of monitored folders to
8371 a subset of all of the incoming folders.
8373 Mark the folders you want to monitor for Unseen messages with
8374 an &quot;X&quot;.
8375 When you've finished marking all your selections use the Select
8376 command to register your choices.
8377 To return to the default of checking all incoming folders
8378 delete all folders or unmark all folders.
8380 <P><UL>
8381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8382 </UL>
8384 &lt;End of help on this topic&gt;
8385 </BODY>
8386 </HTML>
8387 ===== h_role_select =====
8388 <HTML>
8389 <HEAD>
8390 <TITLE>ROLES SCREEN</TITLE>
8391 </HEAD>
8392 <BODY>
8393 <H1>ROLES SCREEN</H1>
8394 <H2>ROLES COMMANDS</H2>
8395 <!--chtml if pinemode="function_key"-->
8396 <PRE>
8397 Available  Commands                        
8398 -------------------------------            
8399 F1  Show Help Text
8400 F3  Exit without a selection
8401 F4  Select a role to use in composition
8402 F5  Move to previous role
8403 F6  Move to next role
8404 F7  Previous page of roles
8405 F8  Next page of roles
8406 F11 Change Default Role
8407 F12 Whereis (search role nicknames)
8408 </PRE>
8409 <!--chtml else-->
8410 <PRE>
8411 Navigation                     General Alpine Commands
8412 -------------------------      -----------------------
8413  P  Prev Role                     ?  Display this help text
8414  N  Next Role                     E  Exit without a selection
8415  -  Previous page
8416 Spc (space bar) Next page
8417  W  WhereIs (search for word in role nicknames)
8419 Select Role Commands
8420 ------------------------------------------------
8421  [Return]  Select highlighted role
8422  D         Change Default Role
8423 </PRE>
8424 <!--chtml endif-->
8426 <H2>Description of the Roles Screen</H2>
8428 With this screen you select a role to be used in the composition of a
8429 message.
8430 Use the Previous and Next commands to highlight the role you wish to
8431 use.
8432 When you type carriage return you will be placed in the composer using the highlighted role.
8434 You don't have any non-default <A HREF="h_rules_roles">roles</A>
8435 available unless you set them up.
8436 You may do so by using the Setup/Rules command on the MAIN MENU.
8438 By using the D command, you may set a default role that will persist until
8439 you change it or until you exit Alpine.
8440 The D command toggles through three states: set the default role, unset the
8441 default role, and leave the default role as it is.
8442 <P><UL>
8443 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8444 </UL>
8446 &lt;End of help on this topic&gt;
8447 </BODY>
8448 </HTML>
8449 ===== h_role_abook_select =====
8450 <HTML>
8451 <HEAD>
8452 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
8453 </HEAD>
8454 <BODY>
8455 <H1>SELECT ADDRESS BOOK SCREEN</H1>
8456 <H2>COMMANDS</H2>
8457 <!--chtml if pinemode="function_key"-->
8458 <PRE>
8459 Available  Commands                        
8460 -------------------------------            
8461 F1  Show Help Text
8462 F3  Exit screen without selecting anything
8463 F4  Select highlighted address book
8464 F5  Move to previous address book
8465 F6  Move to next address book
8466 F7  Previous page of address books
8467 F8  Next page of address books
8468 F12 Whereis
8469 </PRE>
8470 <!--chtml else-->
8471 <PRE>
8472 Navigation                     General Alpine Commands
8473 -------------------------      -----------------------
8474  P  Previous addrbook          ?  Display this help text
8475  N  Next addrbook
8476  -  Previous page
8477 Spc (space bar) Next page
8478  W  WhereIs
8480 Select Role Commands
8481 ------------------------------------------------
8482  S  Select highlighted address book
8483  E  Exit screen without selecting anything
8484 </PRE>
8485 <!--chtml endif-->
8487 <H2>Description of the Select Address Book Screen</H2>
8489 This screen helps you select one of your address books.
8490 Use the Previous and Next commands to highlight the address book you wish to
8491 select.
8492 <P><UL>
8493 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8494 </UL>
8496 &lt;End of help on this topic&gt;
8497 </BODY>
8498 </HTML>
8499 ======== h_rule_patterns =============
8500 <HTML>
8501 <HEAD>
8502 <TITLE>PATTERNS</TITLE>
8503 </HEAD>
8504 <BODY>
8505 <H1>PATTERNS</H1>
8506 Patterns are used with Roles, Filtering, Index Coloring,
8507 Scoring, Other Rules, and Search Rules.
8508 Patterns are compared with a message to see if there is a match.
8509 For Filtering, the messages being checked are all the messages in the
8510 folder, one at a time.
8511 For Index Line Coloring, each message that is visible on the screen is
8512 checked for matches with the Index Coloring Patterns.
8513 Roles are used with the Reply, Forward, and Compose commands.
8514 For Reply, the message used to compare the Pattern with is the message
8515 being replied to;
8516 for Forward, the message used to compare the Pattern with is the message
8517 being forwarded;
8518 and for Compose, there is no message, so the parts of the Pattern that depend
8519 on a message (everything other than Current Folder Type and the
8520 Beginning of Month and Year)
8521 are not used.
8522 Only the Current Folder Type matters for Compose (plus the Beginning of
8523 Month or Year, which you wouldn't usually use for a Role).
8524 For Scoring, the message being scored is compared with all of the Score
8525 Patterns, and the Score Values from the ones that match are added together to 
8526 get the message's score.
8527 For Other Rules, there is no message. Only the Current Folder Type is checked
8528 for Other Rules.
8530 Each Pattern has several possible parts, all of which are optional.
8531 In order for there to be a match, <EM>ALL</EM> of the
8532 <EM>defined</EM> parts of the Pattern must match the message.
8533 If a part is not defined it is considered a match, but note that a filtering
8534 Pattern must have at least one defined part or it will be ignored.
8535 For example, if the To pattern is not defined it will be
8536 displayed as
8538 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
8540 That is considered a match because it is not defined.
8541 This means that the Pattern with nothing defined is a match if the
8542 Current Folder Type matches, but there is an exception that was mentioned
8543 in the previous paragraph.
8544 Because filtering is a potentially destructive action, filtering Patterns
8545 with nothing other than Current Folder Type defined are ignored.
8546 If you really want a filtering Pattern to match all messages (subject to
8547 Current Folder Type) the best way to do it is to define a Score interval
8548 that includes all possible scores.
8549 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
8550 This can be used even if you haven't defined any rules to Set Scores.
8552 There are six predefined header patterns called the To, From, Sender, Cc, News,
8553 and Subject patterns.
8554 Besides those six predefined header patterns, you may add
8555 additional header patterns with header fieldnames of your choosing.
8556 You add an extra header pattern by placing the cursor on one of the
8557 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
8558 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
8559 and the Partic pattern is a header pattern that stands for
8560 Participant (From OR To OR Cc).
8561 (Defining the Recip pattern does not have the same effect as defining both
8562 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
8563 Similar to the header patterns are the AllText pattern and the BodyText pattern.
8564 Instead of comparing this pattern's text against only the contents of
8565 a particular header field, the text for the AllText pattern is compared
8566 with text anywhere in the message's header or body, and the text for the
8567 BodyText pattern is compared with text anywhere in the message's body.
8569 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
8570 &quot;!&quot; &quot;toggle NOT&quot; command.
8571 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8572 &quot;!&quot; at the beginning of the pattern line.
8573 When the &quot;!&quot; is present, it reverses the meaning of the match.
8574 That is, if the pattern matches then it is considered to NOT be a match, and
8575 if it does not match it is considered to be a match.
8577 Don't make the mistake of putting the &quot;!&quot; in the data field for
8578 a pattern.
8579 For example, if you type the characters &quot;!urgent&quot; into the Subject
8580 pattern, the pattern will look like:
8582 <PRE>
8583  Subject pattern = !urgent
8584 </PRE>
8586 This means you want to match the 7 character sequence &quot;!urgent&quot;.
8587 In order to match messages that do not have &quot;urgent&quot; in
8588 their Subject field, first type the characters &quot;urgent&quot; followed
8589 by carriage return for the value of the Subject pattern, then negate it
8590 by typing the &quot;!&quot; command.
8591 It should look like
8593 <PRE>
8594  ! Subject pattern = urgent
8595 </PRE>
8597 The contents of each of these header patterns (or the AllText or BodyText patterns) may
8598 be a complete email address, part of an address, or a random set of
8599 characters to match against.
8600 It may also be a list of such patterns, which means you
8601 are looking for a match against the first pattern in the list <EM>OR</EM>
8602 the second pattern <EM>OR</EM> the third and so on.
8603 For example, a Subject pattern equal to
8605 <PRE>
8606  Subject pattern = urgent
8607                    emergency
8608                    alert
8609 </PRE>
8611 would match all messages with a subject that contained at least one
8612 of those words.
8613 It would also match subjects containing the words &quot;alerts&quot; or
8614 &quot;Urgently&quot;.
8616 The same example with &quot;NOT&quot; turned on would be
8618 <PRE>
8619  ! Subject pattern = urgent
8620                      emergency
8621                      alert
8622 </PRE>
8624 which would match all messages with a subject that did <EM>NOT</EM> contain any of
8625 those words.
8626 You can use the &quot;Add Value&quot; command to add new words to the list,
8627 or you can enter them as a comma-separated list.
8629 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
8630 present for a match.
8631 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
8632 pattern2 must be present,
8633 and that is exactly what using a list does.)
8635 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
8636 also part of the Pattern, although the &quot;Score Interval&quot; is not used
8637 when checking for matches for Scoring.
8638 There are five similar settings that relate to the status of the message.
8639 These settings rely on the message being New or not, Deleted or not,
8640 Answered or not, Important or not, and Recent or not.
8641 There are also some other miscellaneous settings.
8642 The first is the Age of the message in days.
8643 Another is the Size of the message, in bytes.
8644 The third is a setting that detects whether or not the Subject of a
8645 message contains raw 8-bit characters (unencoded characters with the most
8646 significant bit set).
8647 There is a setting that detects whether or not this is the first time
8648 Alpine has been run this month (doesn't depend on individual messages),
8649 and another that detects whether or not this is the first time Alpine has
8650 been run this year.
8651 Other parts of the Pattern detect whether or not the From address of a
8652 message appears in your address book, whether or not certain keywords
8653 are set for a message, and whether or not certain character sets are
8654 used in a message.
8656 <H2>Parts of a Pattern</H2>
8658 <H3>Header patterns</H3>
8660 A header pattern is simply text that is searched for in the corresponding
8661 header field.
8662 For example, if a Pattern has a From header pattern with the value
8663 &quot;@company.com&quot;, then only messages that have a From header
8664 that contains the text &quot;@company.com&quot; will be possible
8665 matches.
8666 Matches don't have to be exact.
8667 For example, if the relevant field of a message contains the text
8668 &quot;mailbox@domain&quot; somewhere
8669 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
8670 &quot;mailbox@domain&quot; are all matches.
8672 All parts of the Pattern must match so, for example,
8673 if a message matches a defined
8674 From pattern, it still must be checked against the other parts of the
8675 Pattern that have been defined.
8676 The To header pattern is a slightly special case.
8677 If the message being checked has a Resent-To header
8678 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
8679 there are used in place of the addresses in the To header.
8680 This is only true for the To header.
8681 Resent-cc and Resent-From headers are never used unless you add them
8682 with the eXtraHdrs command.
8684 The meaning of a header pattern may be negated with the
8685 &quot;!&quot; &quot;toggle NOT&quot; command.
8686 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8687 &quot;!&quot; at the beginning of the pattern line.
8688 It would look something like
8690 <PRE>
8691  ! From pattern = susan@example.com
8692 </PRE>
8694 When the &quot;!&quot; is present, it reverses the meaning of the match.
8696 If you want to check for the presence of a header field but don't care
8697 about its value, then
8698 the empty pattern that you get by entering a pair of
8699 double quotes (&quot;&quot;) should match any message that
8700 has the corresponding header field.
8702 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
8704 AllText patterns are just like header patterns except that the text is
8705 searched for anywhere in the message's headers or body, not just in the
8706 contents of a particular header field.
8709 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
8711 BodyText patterns are just like header patterns except that the text is
8712 searched for anywhere in the message's body, not just in the
8713 contents of a particular header field.
8716 If there is more than one header pattern or AllText pattern or BodyText pattern
8717 for which you want to take the
8718 same action there is a shorthand notation that may be used.
8719 Any of these patterns may be a list of patterns instead of
8720 just a single pattern.
8721 If any one of the patterns in the list matches the message
8722 then it is considered a match.
8723 For example, if &quot;company1&quot; and &quot;company2&quot; both required
8724 you to use the same role when replying to messages, you might have
8725 a To pattern that looks like
8727 <PRE>
8728  To pattern = company1.com
8729               company2.com
8730 </PRE>
8732 This means that if the mail you are replying to was addressed to
8733 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
8734 then this Pattern is a match and the same actions will be taken.
8736 The meaning of an AllText or BodyText pattern may be negated with the
8737 &quot;!&quot; &quot;toggle NOT&quot; command.
8738 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8739 &quot;!&quot; at the beginning of the pattern line.
8740 When the &quot;!&quot; is present, it reverses the meaning of the match.
8742 A technicality: Since comma is the character used to separate multiple values
8743 in any of the fields that may have multiple values (such as header patterns,
8744 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
8745 you must escape comma with a
8746 backslash (&#92;) if you want to include a literal comma in one of those fields.
8747 In other words, if you type a backslash followed by a comma it will
8748 be interpreted as a comma by Alpine, instead of as a separator between
8749 pattern values.
8750 All other backslashes (those not followed by a comma) are literal
8751 backslashes and should not be escaped.
8752 It's unlikely you'll ever need to enter a literal comma or backslash in
8753 any of the patterns.
8755 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
8757 The &quot;Current Folder Type&quot; may be set to one of four different
8758 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
8759 &quot;Specific&quot;.
8760 If the value is set to &quot;News&quot;, then the
8761 Pattern will only match if the currently open folder is a newsgroup.
8762 The value &quot;Email&quot; only matches if the current folder is not news and
8763 the value &quot;Any&quot; causes any folder to match.
8764 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
8765 then you must fill in a value for &quot;Folder&quot;, which is on the line
8766 below the &quot;Specific&quot; line.
8767 In this case you will only get a match if the currently open folder is
8768 the specific folder you list.
8769 You may give a list of folders instead of just a single
8770 folder name, in which case the Pattern will match if the open folder is
8771 any one of the folders in the list.
8772 The name of each folder in the list may be either &quot;INBOX&quot;,
8773 the technical specification
8774 of the folder (like what appears in your configuration file) or, if the
8775 folder is one of your incoming folders, it may be the nickname you've given
8776 the folder.
8777 Here are some samples of specific folder names:
8779 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
8781 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
8783 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
8785 The easiest way to fill in the &quot;Folder&quot; field is to use
8786 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
8787 highlighted, or to use the &quot;Take&quot; command with the configuration
8788 feature
8789 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
8790 turned on.
8792 When reading a newsgroup, there may be a performance penalty
8793 incurred when collecting the information necessary to check whether
8794 or not a Pattern matches a message.
8795 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
8796 If you have Patterns with a Current Folder Type of either
8797 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
8798 Index Line Coloring or Scoring, you may experience
8799 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
8801 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
8803 The &quot;Age Interval&quot; may be set to an interval of message
8804 ages that should be considered a match.
8805 Like the other parts of the Pattern, if it is unset it will be ignored.
8806 The Age Interval looks like
8808 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
8810 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
8811 than or equal to zero.
8812 The special value &quot;INF&quot; may be used for
8813 the max value. It represents infinity.
8815 Actually, this option may be defined as a list of intervals instead
8816 of just a single interval.
8817 The list is separated by commas.
8818 It can look like
8820 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
8822 When there is an Age Interval defined, it is a match if the age, in days, of
8823 the message is contained in any of the intervals.
8824 The intervals include both endpoints.
8826 Even though this option is called Age, it isn't actually
8827 the <EM>age</EM> of the message.
8828 Instead, it is how many days ago the message arrived in one of your folders.
8829 If the current time is a little past midnight, then a message that arrived
8830 just before midnight arrived yesterday, even though the message is only
8831 a few minutes old.
8832 By default, the date being used is not the date in the Date
8833 header of the message.
8834 It is the date that the message arrived in one of your folders.
8835 When you Save a message from one folder to another that arrival date
8836 is preserved.
8837 If you would like to use the date in the Date header that is possible.
8838 Turn on the option
8839 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
8840 near the bottom of the rule definition.
8841 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
8843 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
8845 The &quot;Size Interval&quot; may be set to an interval of message
8846 sizes that should be considered a match.
8847 Like the other parts of the Pattern, if it is unset it will be ignored.
8848 The Size Interval looks like
8850 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
8852 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
8853 than or equal to zero.
8854 The special value &quot;INF&quot; may be used for
8855 the max value. It represents infinity.
8857 Actually, this option may be defined as a list of intervals instead
8858 of just a single interval.
8859 The list is separated by commas.
8860 It can look like
8862 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
8864 When there is a Size Interval defined, it is a match if the size, in bytes, of
8865 the message is contained in any of the intervals.
8866 The intervals include both endpoints.
8868 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
8870 The &quot;Score Interval&quot; may be set to an interval of message
8871 scores that should be considered a match.
8872 Like the other parts of the Pattern, if it is unset it will be ignored.
8873 The Score Interval looks like
8875 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
8877 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
8878 negative integers, with min_score less than or equal to max_score.
8879 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
8880 the min and max values to represent negative and positive infinity.
8882 Actually, a list of intervals may be used if you wish.
8883 A list would look like
8885 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
8887 When there is a Score Interval defined, it is a match if the score for
8888 the message is contained in any of the intervals in the list.
8889 The intervals include the endpoints.
8890 The score for a message is calculated by looking at every Score rule defined and
8891 adding up the Score Values for the ones that match the message.
8892 When deciding whether or not a Pattern matches a message for purposes of
8893 calculating the score, the Score Interval is ignored.
8895 <H3><A NAME="pattern_message_status">Message Status</A></H3>
8897 There are five separate message status settings.
8898 By default, all five are set to the value &quot;Don't care&quot;, which
8899 will match any message.
8900 The value &quot;Yes&quot; means that the particular status must be true
8901 for a match, and the value &quot;No&quot; means that the particular
8902 status must not be true for a match.
8903 For example, one of the five Message Status settings is whether a message
8904 is marked Important or not.
8905 A &quot;Yes&quot; means that the message must be Important to be
8906 considered a match and &quot;No&quot; means that the message must not be
8907 Important to be considered a match.
8908 The same is true of the other four message status settings that depend
8909 on whether or not the message is New; whether the message has 
8910 been Answered or not; whether the message has been Deleted or not, and
8911 whether the message is Recent or not. 
8913 The nomenclature for New and Recent is a bit confusing:
8915 New means that the message is Unseen.
8916 It could have been in your mailbox for a long time but if you haven't looked
8917 at it, it is still considered New.
8918 That matches the default Alpine index display that shows an N for such a
8919 message.
8921 Recent means that the message was added to this folder since the last time
8922 you opened the folder.
8923 Alpine also shows an N by default for these types of messages.
8924 If you were to run two copies of Alpine that opened a folder one right after
8925 the other, a message would only show up as Recent in (at most) the first
8926 Alpine session.
8928 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
8930 Keywords are similar to Message Status, but they are chosen by the user.
8931 Provided the mail server allows for it, you may add a set of possible keywords
8932 to a folder and then you may set those keywords or not for each message
8933 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
8934 The syntax of this part of the Pattern is similar to the header patterns.
8935 It is a list of keywords.
8936 The Keyword part of the Pattern is a match if the message has any of
8937 the keywords in the list set.
8938 Like other parts of the Pattern, if this is unset it will be ignored.
8940 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
8942 A message may use one or more character sets.
8943 This part of the Pattern matches messages that make use of one or more of
8944 the character sets specified in the pattern.
8945 It will be considered a match if a message uses any of the character
8946 sets in the list you give here.
8949 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
8950 GB2312) you may also use some shorthand names that Alpine provides.
8951 These names are more understandable shorthand names for sets of 
8952 character set names.
8953 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
8954 Selecting one of these shorthand names is equivalent to selecting all of
8955 the character sets that make up the set.
8956 You can see all of these shorthand names and the lists of character sets
8957 they stand for by typing the &quot;T&quot; command with the Character
8958 Set pattern highlighted.
8959 The syntax of this part of the Pattern is similar to the header patterns
8960 and the Message Keywords pattern.
8961 It is a list of character sets (or shorthand names).
8962 The Character Set part of the Pattern is a match if the message uses any
8963 of the character sets in the list.
8964 Like other parts of the Pattern, if this is unset it will be ignored.
8966 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
8968 It seems that lots of unwanted email contains unencoded 8-bit characters
8969 in the Subject.
8970 Normally, characters with the 8th bit set are not allowed in the Subject
8971 header unless they are MIME-encoded.
8972 This option gives you a way to match messages that have Subjects that
8973 contain unencoded 8-bit characters.
8974 By default, the value of this option is &quot;Don't care&quot;, which
8975 will match any message.
8976 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
8977 the Subject of the message in order for there to be a match,
8978 and the value &quot;No&quot; is the opposite.
8979 Setting this option will affect performance in large folders because the
8980 subject of each message in the folder has to be checked.
8982 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
8984 This option gives you a way to take some action once per month.
8985 By default, the value of this option is &quot;Don't care&quot;, which
8986 will always match.
8987 The value &quot;Yes&quot; means that this must be the first time Alpine has
8988 been run this month in order to count as a match,
8989 and the value &quot;No&quot; is the opposite.
8991 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
8993 This option gives you a way to take some action once per year.
8994 By default, the value of this option is &quot;Don't care&quot;, which
8995 will always match.
8996 The value &quot;Yes&quot; means that this must be the first time Alpine has
8997 been run this year in order to count as a match,
8998 and the value &quot;No&quot; is the opposite.
9000 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9002 This option gives you a way to match messages that have an address
9003 that is in one of your address books.
9004 Only the simple entries in your address books are searched.
9005 Address book distribution lists are ignored!
9006 By default, the value of this option is &quot;Don't care&quot;, which
9007 will match any message.
9008 The value &quot;Yes, in any address book&quot; means the address
9009 from the message must be in at least one of your
9010 address books in order to be a match.
9011 The value &quot;No, not in any address book&quot;
9012 means none of the addresses may
9013 be in any of your address books in order to be a match.
9014 The values &quot;Yes, in specific address books&quot; and
9015 &quot;No, not in any of specific address books&quot; are similar but instead
9016 of depending on all address books you are allowed to give a list of address
9017 books to look in.
9018 The addresses from the message that are checked for are determined by the
9019 setting you have for &quot;Types of addresses to check for in address book&quot;.
9020 If you set this to &quot;From&quot; the From address from the message will
9021 be looked up in the address book.
9022 If you set it to only &quot;To&quot; then the To addresses will be used.
9023 If any of the To addresses are in the address book then it is considered
9024 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9025 You could set it to both From and To, in which case all of the From and To
9026 addresses are used.
9027 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9028 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9029 exists or the From address if there is no Reply-To address.
9030 Same for the Sender address.
9031 Setting this option may affect performance in large folders because the
9032 From and Reply-To of each message in the folder have to be checked.
9034 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9036 This is a command that is run with its standard input set to the message
9037 being checked and its standard output discarded.
9038 The full directory path should be specified.
9039 The command will be run and then its exit status will be checked against
9040 the Exit Status Interval, which defaults to just the value zero.
9041 If the exit status of the command falls in the interval, it is considered
9042 a match, otherwise it is not a match.
9045 This option may actually be a list of commands.
9046 The first one that exists and is executable is used.
9047 That makes it possible to use the same configuration with Unix Alpine and
9048 PC-Alpine.
9051 If none of the commands in the list exists and is executable then the rule
9052 is <EM>not</EM> a match.
9053 If it is possible that the command may not exist, you should be careful
9054 to structure your rules so that nothing destructive
9055 happens when the command does not exist.
9056 For example, you might have a filter that filters away spam when there is
9057 a match but does nothing when there is not a match.
9058 That would continue to work correctly if the command didn't exist.
9059 However, if you have a filter that filters away spam when there is not
9060 a match and keeps it when there is a match, that would filter everything
9061 if the categorizer command didn't exist.
9063 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9064 setup for the bogofilter filter.
9067 &lt;End of help on this topic&gt;
9068 </BODY>
9069 </HTML>
9070 ===== h_rules_roles =====
9071 <HTML>
9072 <HEAD>
9073 <TITLE>SETUP ROLES SCREEN</TITLE>
9074 </HEAD>
9075 <BODY>
9076 <H1>SETUP ROLES SCREEN</H1>
9077 <H2>SETUP ROLES COMMANDS</H2>
9078 <!--chtml if pinemode="function_key"-->
9079 <PRE>
9080 Available  Commands -- Group 1         Available Commands -- Group 2   
9081 -------------------------------        ------------------------------  
9082 F1  Show Help Text                      F1  Show Help Text             
9083 F2  See commands in next group          F2  See commands in next group
9084 F3  Back to MAIN Alpine menu
9085 F4  Change configuration for role
9086 F5  Move to previous role               F5  Include file in role config
9087 F6  Move to next role                   F6  Exclude file from config
9088 F7  Previous page of roles
9089 F8  Next page of roles
9090 F9  Add new role                        F9  Replicate existing role
9091 F10 Delete existing role
9092 F11 Shuffle the order of roles
9093 F12 Whereis (search role nicknames)
9094 </PRE>
9095 <!--chtml else-->
9096 <PRE>
9097 Navigation                     General Alpine Commands
9098 -------------------------      -----------------------
9099  P  Prev Role                     ?  Display this help text
9100  N  Next Role                     E  Back to MAIN Alpine menu
9101  -  Previous page
9102 Spc (space bar) Next page
9103  W  WhereIs (search for word in role nicknames)
9105 Setup Roles Commands
9106 ------------------------------------------------
9107  A  Add new role                  $  Shuffle the order of roles
9108  D  Delete existing role          C  Change configuration for highlighted role
9109  R  Replicate existing role
9110  I  Include file in role config   X  Exclude file from role config
9111 </PRE>
9112 <!--chtml endif-->
9114 <H2>Description of the Setup Roles Screen</H2>
9116 This screen lets you add, delete, modify, or change the order of the rules
9117 that determine the role you are playing when composing a message.
9119 You may play different roles depending on who you are replying to.
9120 For example, if you are replying to a message addressed to help-desk you
9121 may be acting as a Help Desk Worker.
9122 That role may require that you use a different return address and/or
9123 a different signature.
9125 Roles are optional.
9126 If you set up roles they work like this:  Each role has a set of
9127 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9128 considered for a particular use; a &quot;Pattern&quot;,
9129 which is used to decide which of the eligible roles is used; and a set
9130 of &quot;Actions&quot;, which are taken when that role is used.
9131 When you reply to a message, the message you are replying to is compared
9132 with the Patterns of the roles marked as eligible for use when replying.
9133 The comparisons start with the first eligible role and keep going until there
9134 is a match.
9135 If a match is found, the matching role's Actions are taken.
9137 It is also possible to set a default role and to change that role during
9138 your Alpine session.
9139 When you start Alpine no default role will be set.
9140 You may set or change the current default role by using the &quot;D&quot;
9141 command in the role selection screen.
9142 You'll see that screen while composing a message and being asked to select
9143 a role.
9144 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9145 compose a message.
9146 You may find a default role useful if you normally perform the duties of one
9147 of your roles for a while, then you switch to another role and stay in the
9148 new role for another period of time.
9149 It may be easier than using the Role Command to select the role each time you
9150 compose a message.
9152 <H2>Role Uses</H2>
9154 There are three types of use to be configured;
9155 one for Replying, one for Forwarding, and one for Composing.
9156 These indicate whether or not you want a role to be considered when you
9157 type the Reply, Forward, or Compose commands.
9158 (The Role command is an alternate form of the Compose command, and it is
9159 not affected by these settings.)
9160 Each of these Use types has three possible values.
9161 The value &quot;Never&quot;
9162 means that the role will never be considered as a candidate for use with
9163 the corresponding command.
9164 For example, if you set a role's Reply Use to Never, then when you Reply to
9165 a message, that role won't even be considered.
9166 (That isn't quite true. If the message you are replying to matches some other
9167 role that requires confirmation,
9168 then there will be a ^T command available which allows you to select a role
9169 from all of your roles, not just the reply-eligible roles.)
9172 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9173 both mean that you do want to consider this role when using the corresponding
9174 command.
9175 For either of these settings the role's Pattern will
9176 be checked to see if it matches the message.
9177 For Reply Use, the message used to compare the Pattern with is the message
9178 being replied to.
9179 For Forward Use, the message used to compare the Pattern with is the message
9180 being forwarded.
9181 For Compose Use, there is no message, so the parts of the Pattern that depend
9182 on a message (everything other than Current Folder Type) are ignored.
9183 In all cases, the Current Folder Type is checked if defined.
9184 If there is a match then this role will either be used without confirmation
9185 or will be the default when confirmation is asked for, depending on
9186 which of the two options is selected.
9187 If confirmation is requested, you will have a chance to
9188 choose No Role instead of the offered role, or to
9189 change the role to any one of your other roles (with the ^T command).
9191 <H2>Role Patterns</H2>
9193 In order to determine whether or not a message matches a role the message is
9194 compared with the Role's Pattern.
9195 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9196 Scoring, Other Rules, and Search Rules, so are described in only one place,
9197 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9199 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9200 a role that has all header patterns unset, the AllText pattern unset,
9201 the BodyText pattern unset,
9202 the Score Interval unset, and the Current Folder Type set to
9203 &quot;Any&quot; may be used as a default role.
9204 It should be put last in the list of roles since the matching
9205 starts at the beginning and proceeds until one of the roles is a match.
9206 If no roles at all match, then Alpine will
9207 use its regular methods of defining the role.
9208 If you wanted to, you could define a different &quot;default&quot; role
9209 for Replying, Forwarding, and Composing by setting the
9210 &quot;Use&quot; fields appropriately.
9212 <H2>Role Actions</H2>
9214 Once a role match is found, the role's Actions are taken.
9215 For each role there are several possible actions that may be defined.
9216 They are actions to set the From address, the Reply-To address,
9217 the Fcc, the Signature, the Template file, and Other Headers.
9219 <H3>Set From</H3>
9221 The From address is the address used on the From line of the message
9222 you are sending.
9224 <H3>Set Reply-To</H3>
9226 The Reply-To address is the address used on the Reply-To line of the message
9227 you are sending.
9228 You don't need a Reply-To address unless it is different from the From address.
9230 <H3>Set Other Headers</H3>
9232 If you want to set the value of the From or Reply-To headers, use
9233 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9234 If you want to set the values of other headers, use this field.
9235 This field is similar to the
9236 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9237 Each header you specify here must include the header tag
9238 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9239 and may optionally include a value for that header.
9240 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9241 for a header here will replace any value that already exists.
9242 For example, if you are Replying to a message there will be at least one
9243 address in the To header (the address you are Replying to).
9244 However, if you Reply using a role that sets the To header, that role's
9245 To header value will be used instead.
9247 <H3>Set Fcc</H3>
9249 The Fcc is used as the Fcc for the message you are sending.
9251 <H3>Set Signature or Set LiteralSig</H3>
9253 The Signature is the name of a file to be used as the signature file when
9254 this role is being used.
9255 If the name of the file has a vertical bar following it (|)
9256 then it is assumed that the file is a program that should be run to
9257 produce the signature.
9258 If the LiteralSig is set, then it is used instead of the signature file.
9259 LiteralSig is just a different way to store the signature.
9260 It is stored in the pine configuration file instead of in a separate
9261 signature file.
9262 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9263 either in the role or as the default signature in the Setup/Config screen,
9264 then the signature file is ignored.
9266 <H3>Set Template</H3>
9268 A Template is the name of a file to be included in the message when this
9269 role is being used.
9270 If the name of the file has a vertical bar following it (|)
9271 then it is assumed that the file is a program that should be run to
9272 produce the template.
9275 Both signature files and template files may be stored remotely on an IMAP
9276 server.
9277 In order to do that you just give the file a remote name.
9278 This works just like the regular
9279 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9280 option that is configured from the Setup/Configuration screen.
9281 A remote signature file name might look like:
9283 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9285 Once you have named the remote signature or template file you create its
9286 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9287 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9288 line of the role editor.
9291 Both signature files and template files (or the output of signature programs
9292 and template file programs) may contain special tokens
9293 that are replaced with contents
9294 that depend on the message being replied to or forwarded.
9295 See the help for the individual fields inside the role editor for more
9296 information on tokens.
9298 <H3>Use SMTP Server</H3>
9300 If this field has a value, then it will be used as the SMTP server
9301 to send mail when this role is being used (unless the SMTP server variable
9302 is set in the system-wide fixed configuration file).
9303 It has the same semantics as the
9304 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9305 variable in the Setup/Config screen.
9306 When you postpone the composition this SMTP server list will be saved
9307 with the postponed composition and it cannot be changed later.
9308 Because of that, you may want to make this a list of SMTP servers
9309 with the preferred server at the front of the list and alternate servers
9310 later in the list.
9313 If any of the actions are left unset, then the action depends on what
9314 is present in the &quot;Initialize settings using role&quot; field.
9315 If you've listed the nickname of another one of your roles there, then the
9316 corresponding action from that role will be used here.
9317 If that action is also blank, or if there is no nickname specified,
9318 then Alpine will do whatever it normally does to set these actions.
9319 This depends on other configuration options and features you've set.
9321 <H2>Command Descriptions</H2>
9323 <H3>Add</H3>
9325 The Add command is used to add a new role definition to your set of
9326 roles.
9327 The new role will be added after the highlighted role.
9329 <H3>Delete</H3>
9331 The Delete command deletes the currently highlighted role.
9333 <H3>Change</H3>
9335 The Change command lets you edit the nickname, Uses, Pattern,
9336 and Actions of the currently highlighted role.
9338 <H3>Shuffle</H3>
9340 The Shuffle command allows you to change the order of the roles.
9341 You may move the currently highlighted role up or down in the list.
9342 The order of the roles is important since the roles are tested for a
9343 match starting with the first role and continuing until a match is found.
9344 You should place the roles with more specific Patterns near the beginning
9345 of the list, and those with more general Patterns near the end so that
9346 the more specific matches will happen when appropriate.
9348 <H3>Replicate</H3>
9350 The Replicate command is used to copy an existing role and modify it.
9351 The new role will be added after the highlighted role.
9353 <H3>IncludeFile</H3>
9355 The IncludeFile command allows you to add a roles file to your configuration.
9356 Usually, your roles will be contained in your Alpine configuration file.
9357 If you wish, some or all of your roles may be stored in a separate file.
9358 If a roles file already exists (maybe it was made by somebody else using
9359 Alpine), you may insert it before the currently highlighted role.
9360 You may also insert an empty file or a file that does not yet exist.
9361 Once you have an empty roles file in your configuration, you may use
9362 the Shuffle command to move roles into it.
9363 In fact, that's the only way to get the initial role into the file.
9365 <H3>eXcludeFile</H3>
9367 The eXcludeFile command removes a roles file from your roles configuration.
9368 A limitation of the program is that in order to exclude a roles file
9369 that file must have at least one role
9370 in it, otherwise you won't be able to highlight a line in the file.
9371 So you may have to add a dummy role to the file in order to exclude the file.
9372 <P><UL>
9373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9374 </UL>
9376 &lt;End of help on this topic&gt;
9377 </BODY>
9378 </HTML>
9379 ===== h_rules_other =====
9380 <HTML>
9381 <HEAD>
9382 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
9383 </HEAD>
9384 <BODY>
9385 <H1>SETUP OTHER RULES SCREEN</H1>
9386 <H2>SETUP OTHER RULES COMMANDS</H2>
9387 <!--chtml if pinemode="function_key"-->
9388 <PRE>
9389 Available  Commands -- Group 1         Available Commands -- Group 2   
9390 -------------------------------        ------------------------------  
9391 F1  Show Help Text                      F1  Show Help Text             
9392 F2  See commands in next group          F2  See commands in next group
9393 F3  Back to MAIN Alpine menu
9394 F4  Change configuration for rule
9395 F5  Move to previous rule               F5  Include file in rule config
9396 F6  Move to next rule                   F6  Exclude file from config
9397 F7  Previous page of rules
9398 F8  Next page of rules
9399 F9  Add new rule                        F9  Replicate existing rule
9400 F10 Delete existing rule
9401 F11 Shuffle the order of rules
9402 F12 Whereis (search rule nicknames)
9403 </PRE>
9404 <!--chtml else-->
9405 <PRE>
9406 Navigation                     General Alpine Commands
9407 -------------------------      -----------------------
9408  P  Prev rule                     ?  Display this help text
9409  N  Next rule                     E  Back to MAIN Alpine menu
9410  -  Previous page
9411 Spc (space bar) Next page
9412  W  WhereIs (search for word in rule nicknames)
9414 Setup Other Rules Commands
9415 ------------------------------------------------
9416  A  Add new rule                  $  Shuffle the order of rules
9417  D  Delete existing rule          C  Change configuration for highlighted rule
9418  R  Replicate existing rule
9419  I  Include file in rule config   X  Exclude file from rule config
9420 </PRE>
9421 <!--chtml endif-->
9423 <H2>Description of the Setup Other Rules Screen</H2>
9425 This is where you may set various actions that do not fit well into the
9426 other Rules categories.
9428 <H2>Patterns</H2>
9430 Other Rules are a little different from the rest of the Rules because
9431 they depend only on the current folder, and not on a particular message.
9432 In order to determine whether or not a rule's actions should be applied
9433 the current folder is compared with the rule's Pattern, which consists
9434 of only the Current Folder Type.
9435 Current Folder Type works the same for Other Rules as it does for Roles,
9436 Filtering, Index Coloring, and Scoring.
9437 Keep in mind that the only part of the Pattern that applies to Other
9438 Rules is the Current Folder Type when looking at the description of
9439 Patterns given
9440 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9442 <H2>The Actions</H2>
9444 <H3>Set Sort Order</H3>
9446 When you enter a new folder, these rules will be checked to see if you
9447 have set a sort order that is different from your default sort order.
9448 The default is set in the Setup/Config screen with
9449 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
9450 If the Sort Order action is set, then the folder will be displayed sorted in
9451 that sort order instead of in the default order.
9453 A possible point of confusion arises when you change the configuration
9454 of the Sort Order for the currently open folder.
9455 The folder will normally be re-sorted when you go back to viewing the
9456 index.
9457 However, if you have manually sorted the folder with the
9458 Sort
9459 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
9460 command, then it will not be re-sorted until the next time it is opened.
9462 <H3>Set Index Format</H3>
9464 When you enter a new folder, these rules will be checked to see if you
9465 have set an Index Format that is different from your default Index Format,
9466 which is set with the
9467 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
9468 If so, the index will be displayed with this format instead of the default.
9470 <H3>Set Startup Rule</H3>
9472 When you enter a new folder, these rules will be checked to see if you
9473 have set a startup rule that is different from the default startup rule.
9474 The default for incoming folders is set in the Setup/Config screen with
9475 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
9476 The default for folders other than INBOX that are not part of your
9477 incoming collection
9478 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
9479 is to start with the last message in the folder.
9480 If the Startup Rule is set to something other than &quot;default&quot;,
9481 then the rule will determine which message will be the current message when
9482 the folder is first opened.
9484 The various startup rule possibilities work the same here as they do in
9485 the incoming collection, so check
9486 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
9487 for more help.
9489 <H2>Command Descriptions</H2>
9491 <H3>Add</H3>
9493 The Add command is used to add a new rule definition to your set of
9494 rules.
9495 The new rule will be added after the highlighted rule.
9497 <H3>Delete</H3>
9499 The Delete command deletes the currently highlighted rule.
9501 <H3>Change</H3>
9503 The Change command lets you edit the nickname, Pattern,
9504 and Action of the currently highlighted rule.
9506 <H3>Shuffle</H3>
9508 The Shuffle command allows you to change the order of the rules.
9509 You may move the currently highlighted rule up or down in the list.
9510 The order of the rules is important since the rules are tested for a
9511 match starting with the first rule and continuing until a match is found.
9512 You should place the rules with more specific Patterns near the beginning
9513 of the list, and those with more general Patterns near the end so that
9514 the more specific matches will happen when appropriate.
9516 <H3>Replicate</H3>
9518 The Replicate command is used to copy an existing rule definition and modify it.
9519 The new rule will be added after the highlighted rule.
9521 <H3>IncludeFile</H3>
9523 The IncludeFile command allows you to add a rules file to your configuration.
9524 Usually, your rules will be contained in your Alpine configuration file.
9525 If you wish, some or all of your rules may be stored in a separate file.
9526 If a rules file already exists (maybe it was made by somebody else using
9527 Alpine), you may insert it before the currently highlighted rule.
9528 You may also insert an empty file or a file that does not yet exist.
9529 Once you have an empty rules file in your configuration, you may use
9530 the Shuffle command to move rules into it.
9531 In fact, that's the only way to get the initial rule into the file.
9533 <H3>eXcludeFile</H3>
9535 The eXcludeFile command removes a rules file from your rules configuration.
9536 A limitation of the program is that in order to exclude a rules file
9537 that file must have at least one rule
9538 in it, otherwise you won't be able to highlight a line in the file.
9539 So you may have to add a dummy rule to the file in order to exclude the file.
9540 <P><UL>
9541 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9542 </UL>
9544 &lt;End of help on this topic&gt;
9545 </BODY>
9546 </HTML>
9547 ===== h_rules_srch =====
9548 <HTML>
9549 <HEAD>
9550 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
9551 </HEAD>
9552 <BODY>
9553 <H1>SETUP SEARCH RULES SCREEN</H1>
9554 <H2>SETUP SEARCH RULES COMMANDS</H2>
9555 <!--chtml if pinemode="function_key"-->
9556 <PRE>
9557 Available  Commands -- Group 1         Available Commands -- Group 2   
9558 -------------------------------        ------------------------------  
9559 F1  Show Help Text                      F1  Show Help Text             
9560 F2  See commands in next group          F2  See commands in next group
9561 F3  Back to MAIN Alpine menu
9562 F4  Change configuration for rule
9563 F5  Move to previous rule               F5  Include file in rule config
9564 F6  Move to next rule                   F6  Exclude file from config
9565 F7  Previous page of rules
9566 F8  Next page of rules
9567 F9  Add new rule                        F9  Replicate existing rule
9568 F10 Delete existing rule
9569 F11 Shuffle the order of rules
9570 F12 Whereis (search rule nicknames)
9571 </PRE>
9572 <!--chtml else-->
9573 <PRE>
9574 Navigation                     General Alpine Commands
9575 -------------------------      -----------------------
9576  P  Prev rule                     ?  Display this help text
9577  N  Next rule                     E  Back to MAIN Alpine menu
9578  -  Previous page
9579 Spc (space bar) Next page
9580  W  WhereIs (search for word in rule nicknames)
9582 Setup Search Rules Commands
9583 ------------------------------------------------
9584  A  Add new rule                  $  Shuffle the order of rules
9585  D  Delete existing rule          C  Change configuration for highlighted rule
9586  R  Replicate existing rule
9587  I  Include file in rule config   X  Exclude file from rule config
9588 </PRE>
9589 <!--chtml endif-->
9591 <H2>Description of the Setup Search Rules Screen</H2>
9593 One of the commands that becomes available when that feature is turned on
9594 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
9595 screen to select a set of messages.
9596 One way of selecting messages is to use a Rule.
9597 All of the messages that match (or don't match if you wish)
9598 a Rule's Pattern will be selected.
9600 Any of your Rules may be used for this purpose.
9601 You might already have Rules set up for filtering, index line color, scores, or roles;
9602 and you may use any of those Rules with the Select command.
9603 However, you might find it more convenient to set up a separate set of Rules
9604 just for this purpose without having to worry about what other effects
9605 they may cause.
9606 That is the purpose of these Select Rules.
9609 Each rule has a &quot;Pattern&quot;
9610 that is used to decide which messages are selected when you use it with
9611 the Select command.
9613 <H2>Patterns</H2>
9615 In order to determine whether or not a message should be selected
9616 the message is compared with the rule's Pattern.
9617 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9618 Scoring, Other Rules, and Search Rules, so are described in only one place,
9619 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9621 <H2>Command Descriptions</H2>
9623 <H3>Add</H3>
9625 The Add command is used to add a new rule definition to your set of
9626 rules.
9627 The new rule will be added after the highlighted rule.
9629 <H3>Delete</H3>
9631 The Delete command deletes the currently highlighted rule.
9633 <H3>Change</H3>
9635 The Change command lets you edit the nickname and Pattern
9636 of the currently highlighted rule.
9638 <H3>Shuffle</H3>
9640 The Shuffle command allows you to change the order of the rules.
9641 This affects only the order they are presented in when you use the
9642 ^T subcommand of the Select by Rule command.
9643 You may move the currently highlighted rule up or down in the list.
9645 <H3>Replicate</H3>
9647 The Replicate command is used to copy an existing rule definition and modify it.
9648 The new rule will be added after the highlighted rule.
9650 <H3>IncludeFile</H3>
9652 The IncludeFile command allows you to add a rules file to your configuration.
9653 Usually, your rules will be contained in your Alpine configuration file.
9654 If you wish, some or all of your rules may be stored in a separate file.
9655 If a rules file already exists (maybe it was made by somebody else using
9656 Alpine), you may insert it before the currently highlighted rule.
9657 You may also insert an empty file or a file that does not yet exist.
9658 Once you have an empty rules file in your configuration, you may use
9659 the Shuffle command to move rules into it.
9660 In fact, that's the only way to get the initial rule into the file.
9662 <H3>eXcludeFile</H3>
9664 The eXcludeFile command removes a rules file from your rules configuration.
9665 A limitation of the program is that in order to exclude a rules file
9666 that file must have at least one rule
9667 in it, otherwise you won't be able to highlight a line in the file.
9668 So you may have to add a dummy rule to the file in order to exclude the file.
9669 <P><UL>
9670 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9671 </UL>
9673 &lt;End of help on this topic&gt;
9674 </BODY>
9675 </HTML>
9676 ===== h_rules_incols =====
9677 <HTML>
9678 <HEAD>
9679 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
9680 </HEAD>
9681 <BODY>
9682 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
9683 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
9684 <!--chtml if pinemode="function_key"-->
9685 <PRE>
9686 Available  Commands -- Group 1         Available Commands -- Group 2   
9687 -------------------------------        ------------------------------  
9688 F1  Show Help Text                      F1  Show Help Text             
9689 F2  See commands in next group          F2  See commands in next group
9690 F3  Back to MAIN Alpine menu
9691 F4  Change configuration for rule
9692 F5  Move to previous rule               F5  Include file in rule config
9693 F6  Move to next rule                   F6  Exclude file from config
9694 F7  Previous page of rules
9695 F8  Next page of rules
9696 F9  Add new rule                        F9  Replicate existing rule
9697 F10 Delete existing rule
9698 F11 Shuffle the order of rules
9699 F12 Whereis (search rule nicknames)
9700 </PRE>
9701 <!--chtml else-->
9702 <PRE>
9703 Navigation                     General Alpine Commands
9704 -------------------------      -----------------------
9705  P  Prev rule                     ?  Display this help text
9706  N  Next rule                     E  Back to MAIN Alpine menu
9707  -  Previous page
9708 Spc (space bar) Next page
9709  W  WhereIs (search for word in rule nicknames)
9711 Setup Index Color Commands
9712 ------------------------------------------------
9713  A  Add new rule                  $  Shuffle the order of rules
9714  D  Delete existing rule          C  Change configuration for highlighted rule
9715  R  Replicate existing rule
9716  I  Include file in rule config   X  Exclude file from rule config
9717 </PRE>
9718 <!--chtml endif-->
9720 <H2>Description of the Setup Index Line Colors Screen</H2>
9722 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
9723 This action is only available if your terminal is capable of displaying
9724 color and color display has been enabled with the
9725 <A HREF="h_config_color_style">Color Style</A> option within the
9726 Setup Color screen.
9727 (In PC-Alpine, color is always enabled so there is no option to turn on.)
9728 This screen lets you add, delete, modify, or change the order of the rules
9729 that cause the lines in the MESSAGE INDEX to be displayed in different
9730 colors.
9732 Each rule has a &quot;Pattern&quot;,
9733 which is used to decide which of the rules is used; and the color that
9734 is used if the Pattern matches a particular message.
9736 <H2>Index Color Patterns</H2>
9738 In order to determine whether or not a message matches an Index Color Rule
9739 the message is compared with the rule's Pattern.
9740 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9741 Scoring, Other Rules, and Search Rules, so are described in only one place,
9742 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9745 If none of the Index Color rules is a match for a particular index line,
9746 then the color used is set using
9747 the <A HREF="h_color_setup">Setup Kolor</A> screen.
9749 <H2>Index Line Color</H2>
9751 This is the color that index lines are colored when there is a matching
9752 Pattern.
9753 This colors the whole index line, except possibly the status letters,
9754 which may be colored separately using
9755 the <A HREF="h_color_setup">Setup Kolor</A> screen.
9757 <H2>Command Descriptions</H2>
9759 <H3>Add</H3>
9761 The Add command is used to add a new rule definition to your set of
9762 rules.
9763 The new rule will be added after the highlighted rule.
9765 <H3>Delete</H3>
9767 The Delete command deletes the currently highlighted rule.
9769 <H3>Change</H3>
9771 The Change command lets you edit the nickname, Pattern,
9772 and Index Line Color of the currently highlighted rule.
9774 <H3>Shuffle</H3>
9776 The Shuffle command allows you to change the order of the rules.
9777 You may move the currently highlighted rule up or down in the list.
9778 The order of the rules is important since the rules are tested for a
9779 match starting with the first rule and continuing until a match is found.
9780 You should place the rules with more specific Patterns near the beginning
9781 of the list, and those with more general Patterns near the end so that
9782 the more specific matches will happen when appropriate.
9784 <H3>Replicate</H3>
9786 The Replicate command is used to copy an existing rule definition and modify it.
9787 The new rule will be added after the highlighted rule.
9789 <H3>IncludeFile</H3>
9791 The IncludeFile command allows you to add a rules file to your configuration.
9792 Usually, your rules will be contained in your Alpine configuration file.
9793 If you wish, some or all of your rules may be stored in a separate file.
9794 If a rules file already exists (maybe it was made by somebody else using
9795 Alpine), you may insert it before the currently highlighted rule.
9796 You may also insert an empty file or a file that does not yet exist.
9797 Once you have an empty rules file in your configuration, you may use
9798 the Shuffle command to move rules into it.
9799 In fact, that's the only way to get the initial rule into the file.
9801 <H3>eXcludeFile</H3>
9803 The eXcludeFile command removes a rules file from your rules configuration.
9804 A limitation of the program is that in order to exclude a rules file
9805 that file must have at least one rule
9806 in it, otherwise you won't be able to highlight a line in the file.
9807 So you may have to add a dummy rule to the file in order to exclude the file.
9808 <P><UL>
9809 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9810 </UL>
9812 &lt;End of help on this topic&gt;
9813 </BODY>
9814 </HTML>
9815 ===== h_rules_filter =====
9816 <HTML>
9817 <HEAD>
9818 <TITLE>SETUP FILTERING SCREEN</TITLE>
9819 </HEAD>
9820 <BODY>
9821 <H1>SETUP FILTERING SCREEN</H1>
9822 <H2>SETUP FILTERING COMMANDS</H2>
9823 <!--chtml if pinemode="function_key"-->
9824 <PRE>
9825 Available  Commands -- Group 1         Available Commands -- Group 2   
9826 -------------------------------        ------------------------------  
9827 F1  Show Help Text                      F1  Show Help Text             
9828 F2  See commands in next group          F2  See commands in next group
9829 F3  Back to MAIN Alpine menu
9830 F4  Change configuration for filter
9831 F5  Move to previous filter             F5  Include file in filter config
9832 F6  Move to next filter                 F6  Exclude file from config
9833 F7  Previous page of filters
9834 F8  Next page of filters
9835 F9  Add new filter                      F9  Replicate existing filter
9836 F10 Delete existing filter
9837 F11 Shuffle the order of filters
9838 F12 Whereis (search filter nicknames)
9839 </PRE>
9840 <!--chtml else-->
9841 <PRE>
9842 Navigation                     General Alpine Commands
9843 -------------------------      -----------------------
9844  P  Prev Filter                   ?  Display this help text
9845  N  Next Filter                   E  Back to MAIN Alpine menu
9846  -  Previous page
9847 Spc (space bar) Next page
9848  W  WhereIs (search for word in filter nicknames)
9850 Setup Filters Commands
9851 ------------------------------------------------
9852  A  Add new filter                $  Shuffle the order of filters
9853  D  Delete existing filter        C  Change configuration for highlighted filter
9854  R  Replicate existing filter
9855  I  Include file in filter config X  Exclude file from filter config
9856 </PRE>
9857 <!--chtml endif-->
9859 <H2>Description of the Setup Filtering Screen</H2>
9861 This screen lets you add, delete, modify, or change the order of the rules
9862 that determine the filtering Alpine does on folders you view.
9864 The software that actually delivers mail (the stuff that happens
9865 before Alpine is involved) for you is in a better position to do mail filtering
9866 than Alpine itself.
9867 If possible, you may want to look into using that sort of mail filtering to
9868 deliver mail to different folders, delete it, or forward it.
9869 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
9871 Filtering is a way to automatically move certain messages from one folder
9872 to another or to delete messages.
9873 It can also be used to set message status (Important, Deleted, New,
9874 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
9875 Alpine doesn't have the ability to forward mail to another address or
9876 to deliver vacation messages.
9878 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
9879 When a folder is opened, when new mail arrives in an open folder, or
9880 when mail is Expunged from a folder; each
9881 message is compared with the Patterns of your filtering rules.
9882 The comparisons start with the first rule and keep going until there
9883 is a match.
9884 If a match is found, the message may be deleted or moved, depending on
9885 the setting of the Filter Action.
9886 If the message is not deleted, it may have its status altered.
9889 <EM>NOTE:</EM>
9890 When setting up a Pattern used to delete messages,
9891 it is recommended that you test the Pattern first with a &quot;Move&quot;
9892 folder specified in
9893 case unintended matches occur.  Messages that are deleted will be removed 
9894 from the folder and <EM>unrecoverable</EM> from within Alpine after the
9895 next Expunge command or once the folder being filtered has been closed.
9897 <H2>Filter Patterns</H2>
9899 In order to determine whether or not a message matches a filter the message is
9900 compared with the Filter's Pattern.
9901 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9902 Scoring, Other Rules, and Search Rules, so are described in only one place,
9903 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9905 Since filtering is a potentially destructive action, if you have a filtering
9906 Pattern with nothing other than Current Folder Type set, that filtering
9907 rule is ignored.
9909 <H2>Filter Actions</H2>
9911 Once a filter match is found for a particular message, there are some actions
9912 that may be taken.
9913 First, the message may have its status changed.
9914 This is the same message status that you can manipulate manually using the
9915 <a href="h_common_flag">Flag Command</a>.
9916 There are always four elements of message status that you can control.
9917 You can set or clear the Important status, the New status, the Deleted
9918 status, and the Answered status.
9919 Of course, if the filter is going to delete the message,
9920 then there is no point in setting message status.
9921 You may also be able to set user-defined keywords for a message.
9922 Read a little about keywords in the help text for the
9923 <A HREF="h_common_flag">Flag</A> command.
9925 Second, the filter may delete or move the message.
9926 Deleting the message marks it Deleted and removes it from view.
9927 It is effectively gone forever (though it technically is still there until
9928 the next expunge command, which may happen implicitly).
9929 Moving the message moves it from the open folder into the folder
9930 listed on the &quot;Folder List&quot; line of the filter configuration.
9931 If you list more than one folder name (separated by commas) then the message
9932 will be copied to each of those folders.
9933 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
9934 message is removed from the current folder.
9935 If you just want to set the messages status without deleting it from
9936 the folder, then set the filter action to
9937 &quot;Just Set Message Status&quot;.
9939 (There is no way to do a Copy instead of a Move, due to the difficulties
9940 involved in keeping track of whether or not a message has
9941 already been copied.)
9943 <H2>Command Descriptions</H2>
9945 <H3>Add</H3>
9947 The Add command is used to add a new filter definition to your set of
9948 filters.
9949 The new filter will be added after the highlighted filter.
9951 <H3>Delete</H3>
9953 The Delete command deletes the currently highlighted filter.
9955 <H3>Change</H3>
9957 The Change command lets you edit the nickname, Pattern,
9958 and Folder of the currently highlighted filter.
9960 <H3>Shuffle</H3>
9962 The Shuffle command allows you to change the order of the filters.
9963 You may move the currently highlighted filter up or down in the list.
9964 The order of the filters is important since the filters are tested for a
9965 match starting with the first filter and continuing until a match is found.
9966 You should place the filters with more specific Patterns near the beginning
9967 of the list, and those with more general Patterns near the end so that
9968 the more specific matches will happen when appropriate.
9970 <H3>Replicate</H3>
9972 The Replicate command is used to copy an existing filter and modify it.
9973 The new filter will be added after the highlighted filter.
9975 <H3>IncludeFile</H3>
9977 The IncludeFile command allows you to add a filters file to your configuration.
9978 Usually, your filters will be contained in your Alpine configuration file.
9979 If you wish, some or all of your filters may be stored in a separate file.
9980 If a filters file already exists (maybe it was made by somebody else using
9981 Alpine), you may insert it before the currently highlighted filter.
9982 You may also insert an empty file or a file that does not yet exist.
9983 Once you have an empty filters file in your configuration, you may use
9984 the Shuffle command to move filters into it.
9985 In fact, that's the only way to get the initial filter into the file.
9987 <H3>eXcludeFile</H3>
9989 The eXcludeFile command removes a filters file from your filters configuration.
9990 A limitation of the program is that in order to exclude a filters file
9991 that file must have at least one filter
9992 in it, otherwise you won't be able to highlight a line in the file.
9993 So you may have to add a dummy filter to the file in order to exclude the file.
9994 <P><UL>
9995 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9996 </UL>
9998 <H3>Performance Considerations</H3>
9999 The number and type of patterns being tested can 
10000 adversely effect performance.  Issues to be aware
10001 of include:
10003 <UL>
10004   <LI> The more filters you have defined the longer it will take to run down
10005 the list.  Deleting unused filters is a good idea.
10006   <LI> Filtering in newsgroups served by an NNTP server will be slow
10007 if your patterns include tests other than &quot;From:&quot;
10008 or &quot;Subject:&quot;.
10009 </UL>
10011 &lt;End of help on this topic&gt;
10012 </BODY>
10013 </HTML>
10014 ===== h_rules_score =====
10015 <HTML>
10016 <HEAD>
10017 <TITLE>SETUP SCORING SCREEN</TITLE>
10018 </HEAD>
10019 <BODY>
10020 <H1>SETUP SCORING SCREEN</H1>
10021 <H2>SETUP SCORING COMMANDS</H2>
10022 <!--chtml if pinemode="function_key"-->
10023 <PRE>
10024 Available  Commands -- Group 1         Available Commands -- Group 2   
10025 -------------------------------        ------------------------------  
10026 F1  Show Help Text                      F1  Show Help Text             
10027 F2  See commands in next group          F2  See commands in next group
10028 F3  Back to MAIN Alpine menu
10029 F4  Change configuration for rule
10030 F5  Move to previous rule               F5  Include file in rule config
10031 F6  Move to next rule                   F6  Exclude file from config
10032 F7  Previous page of rules
10033 F8  Next page of rules
10034 F9  Add new rule                        F9  Replicate existing rule
10035 F10 Delete existing rule
10036 F11 Shuffle the order of rules
10037 F12 Whereis (search rule nicknames)
10038 </PRE>
10039 <!--chtml else-->
10040 <PRE>
10041 Navigation                     General Alpine Commands
10042 -------------------------      -----------------------
10043  P  Prev rule                     ?  Display this help text
10044  N  Next rule                     E  Back to MAIN Alpine menu
10045  -  Previous page
10046 Spc (space bar) Next page
10047  W  WhereIs (search for word in rule nicknames)
10049 Setup Scoring Commands
10050 ------------------------------------------------
10051  A  Add new rule                  $  Shuffle the order of rules
10052  D  Delete existing rule          C  Change configuration for highlighted rule
10053  R  Replicate existing rule
10054  I  Include file in rule config   X  Exclude file from rule config
10055 </PRE>
10056 <!--chtml endif-->
10058 <H2>Description of the Setup Scoring Screen</H2>
10060 Most people will not use scores at all, but if you do use them, here's how
10061 they work in Alpine.
10062 Using this screen, you may define Scoring rules.
10063 The score for a message is calculated by looking at every Score rule defined
10064 and adding up the Score Values for the ones that match the message.
10065 If there are no matches for a message, it has a score of zero.
10066 Message scores may be used a couple of ways in Alpine.
10068 <H3>Sorting by Score</H3>
10070 One of the methods you may use to sort message indexes is to sort by
10071 score.
10072 The scores of all the messages in a folder will be calculated and then
10073 the index will be ordered by placing the messages in order of ascending or
10074 descending score.
10076 <H3>Scores for use in Patterns</H3>
10078 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10079 category labeled &quot;Score Interval&quot;.
10080 When a message is being compared with a Pattern to check for a match, if
10081 the Score Interval is set only messages that have a score somewhere in
10082 the interval are a match.
10084 <H2>Scoring Rule Patterns</H2>
10086 In order to determine whether or not a message matches a scoring rule
10087 the message is compared with the rule's Pattern.
10088 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10089 Scoring, Other Rules, and Search Rules, so are described in only one place,
10090 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10093 Actually, Scoring rule Patterns are slightly different from the other types of
10094 Patterns because Scoring rule Patterns don't contain a Score Interval.
10095 In other words, when calculating the score for a message, which is done
10096 by looking at the Scoring rule Patterns, scores aren't used.
10098 <H2>Score Value</H2>
10100 This is the value that will be added to the score for a message if the
10101 rule's Pattern is a match.
10102 Each individual Score Value is an integer between -100 and 100, and the
10103 values from matching rules are added together to get a message's score.
10104 There is also a way to extract the value from a particular header of each
10105 message. See the help text for Score Value for further information.
10107 <H2>Command Descriptions</H2>
10109 <H3>Add</H3>
10111 The Add command is used to add a new scoring rule definition.
10112 The new rule will be added after the highlighted rule.
10114 <H3>Delete</H3>
10116 The Delete command deletes the currently highlighted scoring rule.
10118 <H3>Change</H3>
10120 The Change command lets you edit the nickname, Pattern,
10121 and Score Value of the currently highlighted scoring rule.
10123 <H3>Shuffle</H3>
10125 The Shuffle command allows you to change the order of the scoring rules.
10126 You may move the currently highlighted rule up or down in the list.
10127 The order of the rules is important since the rules are tested for a
10128 match starting with the first rule and continuing until a match is found.
10129 You should place the rules with more specific Patterns near the beginning
10130 of the list, and those with more general Patterns near the end so that
10131 the more specific matches will happen when appropriate.
10133 <H3>Replicate</H3>
10135 The Replicate command is used to copy an existing rule and modify it.
10136 The new rule will be added after the highlighted rule.
10138 <H3>IncludeFile</H3>
10140 The IncludeFile command allows you to add a rules file to your configuration.
10141 Usually, your rules will be contained in your Alpine configuration file.
10142 If you wish, some or all of your rules may be stored in a separate file.
10143 If a rules file already exists (maybe it was made by somebody else using
10144 Alpine), you may insert it before the currently highlighted rule.
10145 You may also insert an empty file or a file that does not yet exist.
10146 Once you have an empty rules file in your configuration, you may use
10147 the Shuffle command to move rules into it.
10148 In fact, that's the only way to get the initial rule into the file.
10150 <H3>eXcludeFile</H3>
10152 The eXcludeFile command removes a rules file from your rules configuration.
10153 A limitation of the program is that in order to exclude a rules file
10154 that file must have at least one rule
10155 in it, otherwise you won't be able to highlight a line in the file.
10156 So you may have to add a dummy rule to the file in order to exclude the file.
10157 <P><UL>
10158 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10159 </UL>
10161 &lt;End of help on this topic&gt;
10162 </BODY>
10163 </HTML>
10164 ===== h_direct_config =====
10165 <HTML>
10166 <HEAD>
10167 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10168 </HEAD>
10169 <BODY>
10170 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10171 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10172 <!--chtml if pinemode="function_key"-->
10173 <PRE>
10174 Available  Commands                        
10175 -------------------------------            
10176 F1  Show Help Text                         
10177 F3  Back to MAIN Alpine menu                 
10178 F4  Change configuration for directory server  
10179 F5  Move to previous directory server          
10180 F6  Move to next directory server              
10181 F7  Previous page of directory servers         
10182 F8  Next page of directory servers
10183 F9  Add new directory server
10184 F10 Delete existing directory server
10185 F11 Shuffle the order of directory servers
10186 F12 Whereis (search directory server titles)   
10187 </PRE>
10188 <!--chtml else-->
10189 <PRE>
10190 Navigation                     General Alpine Commands
10191 -------------------------      -----------------------
10192  P  Prev Directory Server         ?  Display this help text
10193  N  Next Directory Server         E  Back to MAIN Alpine menu
10194  -  Previous page
10195 Spc (space bar) Next page
10196  W  WhereIs (search for word in directory server titles)
10198 Setup LDAP Directory Server Commands
10199 ------------------------------------------------
10200  A  Add new directory server      $  Shuffle the order of directory servers
10201  D  Delete existing dir server    C  Change configuration for highlighted server
10202 </PRE>
10203 <!--chtml endif-->
10205 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10207 This screen lets you add, delete, modify, or change the order of your
10208 directory servers. You may also set some optional behavior for each server.
10209 The &quot;Add Dir&quot; command brings up a blank form to 
10210 fill in. You will have to supply at least the name of the LDAP server.
10211 You will often have to supply a search base to be used with that server,
10212 as well. Once the form has been brought up on your screen, there is help
10213 available for each of the options you may set.
10215 The &quot;Del Dir&quot; command allows you to remove a directory server
10216 from your configuration.
10218 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10219 The difference is that instead of bringing up a form for a new server
10220 configuration, you are changing the configuration of an existing entry.
10221 For example, you might want to correct a typing error, change a
10222 nickname, or change one of the options set for that server.
10224 The &quot;Shuffle&quot; command is used to change the order of directory
10225 servers.
10226 <P><UL>
10227 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10228 </UL>
10230 &lt;End of help on this topic&gt;
10231 </BODY>
10232 </HTML>
10233 ============= h_address_display ========================
10234 <HTML>
10235 <HEAD>
10236 <TITLE>SEARCH RESULTS INDEX</TITLE>
10237 </HEAD>
10238 <BODY>
10239 <H1>SEARCH RESULTS INDEX</H1>
10240 This screen shows the results, if any, of your Directory Server search.  
10241 Commands (besides those for screen navigation) are:
10242 <DL>
10243 <DT>View
10244 <!--chtml if pinemode="function_key"-->
10245 (F4)
10246 <!--chtml else-->
10248 <!--chtml endif-->
10249 </DT>
10250 <DD>See the full information for the selected entry.
10252 <DT>Compose
10253 <!--chtml if pinemode="function_key"-->
10254 (F9)
10255 <!--chtml else-->
10257 <!--chtml endif--></DT>
10258 <DD>Compose a message with the selected entry as the recipient.
10260 <DT>Role
10261 <!--chtml if pinemode="function_key"-->
10262 (F2)
10263 <!--chtml else-->
10265 <!--chtml endif--></DT>
10266 <DD>Compose a message with the selected entry as the recipient. This differs
10267 from Compose in that you may select a role before beginning your composition.
10269 <DT>Forward
10270 <!--chtml if pinemode="function_key"-->
10271 (F10)
10272 <!--chtml else-->
10274 <!--chtml endif--></DT>
10275 <DD>Send the full information for the selected entry as an 
10276 email message to someone else.
10278 <DT>Save
10279 <!--chtml if pinemode="function_key"-->
10280 (F11)
10281 <!--chtml else-->
10283 <!--chtml endif-->
10284 </DT>
10285 <DD>Save to your address book:
10286 <UL>
10287 <LI>the result of the search (as just found through your query) for the 
10288 selected entry; or 
10289 <LI>the selected entry for repeated Directory Server searching when used 
10290 in the future.
10291 </UL>
10292 or<BR>
10293 Export to a file (external to Alpine):
10294 <UL>
10295 <LI>the full information for the selected entry; or
10296 <LI>the email address from the selected entry; or
10297 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10298 </UL>
10299 <DT>WhereIs
10300 <!--chtml if pinemode="function_key"-->
10301 (F12)
10302 <!--chtml else-->
10304 <!--chtml endif-->
10305 </DT>
10306 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10307 displayed text, not the full records for each entry.)  
10308 </DL>
10309 &lt;End of help on this topic&gt;
10310 </BODY>
10311 </HTML>
10312 ============= h_address_select ========================
10313 <HTML>
10314 <HEAD>
10315 <TITLE>SEARCH RESULTS INDEX</TITLE>
10316 </HEAD>
10317 <BODY>
10318 <H1>SEARCH RESULTS INDEX</H1>
10319 This screen shows the results, if any, of your Directory Server search.  
10320 Commands (besides those for screen navigation) are:
10321 <DL>
10322 <DT>Select
10323 </DT>
10324 <DD>Select this entry for use.
10326 <DT>ExitSelect
10327 <DD>Exit without selecting any of the entries.
10329 <DT>WhereIs
10330 </DT>
10331 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10332 displayed text, not the full records for each entry.)  
10333 </DL>
10334 &lt;End of help on this topic&gt;
10335 </BODY>
10336 </HTML>
10337 ===== h_folder_maint =====
10338 <HTML>
10339 <HEAD>
10340 <TITLE>Help for Folder List</TITLE>
10341 </HEAD>
10342 <BODY>
10343 <H1>FOLDER LIST COMMANDS</H1>
10344 <!--chtml if pinemode="function_key"-->
10345 <PRE>
10346 Available Commands -- Group 1        Available Commands -- Group 2
10347 -------------------------------      ------------------------------
10348 F1  Show Help Text                    F1  Show Help Text               
10349 F2  See commands in next group        F2  See commands in next group  
10350 F3  MAIN MENU Screen                  F3  Quit Alpine                    
10351 F4  Select folder and view it         F4  MAIN MENU Screen
10352 F5  Move to previous folder
10353 F6  Move to next folder               F6  Specify a folder to go to
10354 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
10355 F8  Show next screen of listing       F8  Compose a message
10356 F9  Add a new folder                  F9  Print folder listing
10357 F10 Delete selected folder
10358 F11 Rename selected folder
10359 F12 Whereis (search folder names)
10361 Available Commands -- Group 3
10362 F1  Show Help Text
10363 F2  See commands in next group
10364 F5  Go to next new message
10365     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
10366 F8  Compose a message using roles
10367 F9  Export folder to a file
10368 F10 Import the file back to a folder
10369 </PRE>
10370 <!--chtml else-->
10371 <PRE>
10372 Navigating the Folder Screen            Operations on the Selected Folder
10373 ----------------------------            ---------------------------------
10374  P   Move to previous folder              V  View Index of selected folder
10375  N   Move to next folder                  D  Delete
10376  -   Show previous page of listing        R  Rename
10377 Spc  (space bar) Show next page           E  Export to file
10378                                           U  Import from file to folder
10380 FOLDER LIST Screen Commands              General Alpine Command
10381 ---------------------------              -----------------------
10382  A  Add a folder                          O  Show all other available commands
10383  G  Specify a folder to go to             ?  Show Help text
10384  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
10385  W  Whereis (search folder names)         Q  Quit Alpine
10386  %  Print folder listing                  C  Compose a message
10387                                           #  Compose a message using roles
10388 </PRE>
10389 <!--chtml endif-->
10391 These commands are only available in the FOLDER LIST screen when the 
10392 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
10393 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
10394 <DT>Select:</DT>
10395 <DD>Select folders by certain criteria:<UL>
10396 <LI>All: of limited use, since there is no Apply command.
10397 <LI>by Property: <UL>
10398         <LI>folder contains messages not yet seen 
10399         <LI>folder contains new messages
10400         <LI>folder contains exactly as many, more, or fewer messages 
10401 than a given number
10402         </UL>
10403 <LI>by Text: <UL>
10404         <LI>contained in name of folder (Name Select)
10405         <LI>contained in messages in folder (Content Select)
10406         </UL>
10407 </UL></DD>
10409 <DT>Select current:</DT>
10410 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
10411 add one or more folders to a set created with the Select command described 
10412 above.)</DD>
10413 <DT>Zoom mode:</DT>
10414 <DD>Toggles display of only selected folders or all folders on and off.</DD>
10415 </DL>
10417 If the feature
10418 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
10419 is set then the TAB key will display the number of recent messages and
10420 the total number of messages in the highlighted folder.
10422 The &quot;Export&quot; command causes the lowest common denominator style
10423 mailbox to be written to a file.
10424 If the file already exists, you are asked if you want to delete it.
10425 If you say No, then the operation is aborted.
10426 Export might be a reasonable way to store a backup or an archival copy of
10427 a folder.
10428 The exported-to file is a local file on the system where you are running Alpine.
10429 The &quot;Import&quot; command is the opposite of the Export command.
10430 It reads a file created by Export and asks where it should save it in your
10431 folders.
10432 This could be a new folder or an existing folder.
10433 If the folder already exists, the messages from the exported file will be
10434 appended to the folder.
10436 <CENTER>Description of the FOLDER LIST Screen</CENTER>
10438 The purpose of the FOLDER LIST screen is to help you browse and manage
10439 the folders and directories (also known as &quot;hierarchy&quot;)
10440 contained within a collection.
10443 Folders and directories are arranged alphabetically across lines of
10444 the screen.  Directories, if present, are denoted by a special
10445 character at the end of the name known as the hierarchy delimiter
10446 (typically, &quot;/&quot;).  By default, folders and directories are
10447 mixed together.  The
10448 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
10449 configuration option can be used to group directories toward the 
10450 beginning or end of the list.
10453 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
10454 commands change the &quot;selected&quot; (i.e., highlighted) folder or
10455 directory, and the View Fldr/Dir commands will &quot;open&quot; the
10456 selected item.  Folder and directory management is provided via the
10457 Rename, Delete and Add commands.
10459 <P><CENTER>About Folders</CENTER>
10460 What are Folders?<P>
10462 Folders are simply files where messages are kept.  Every message has to be
10463 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
10464 folder for sent mail and a folder for saved messages.<P>
10466 You may create as many other folders as you wish.  They must be given
10467 names that can be filenames on the filesystem.  
10470 You can move messages from one folder to another by opening the original
10471 folder and saving messages into the other folder just as you can save
10472 message from your INBOX to any other folder.<P>
10474 Folders are typically just files in the filesystem.  However, the files
10475 that are
10476 folders have some special formatting in them (so that Alpine knows where one
10477 message ends and another begins) and should <EM>not</EM> be edited outside of
10478 Alpine.  If you want copies of your messages in text files that you can edit
10479 or otherwise manipulate, use the Export command to copy them from Alpine into
10480 your regular file area.
10483 FOR MORE INFORMATION: See the section on
10484 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10486 <CENTER>About Directories</CENTER>
10488 A directory is simply a container used to group folders within a
10489 folder list.  You can create as many directories as you like.  And 
10490 directories can even contain directories themselves.
10493 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
10494 to note that not all IMAP servers support directories.  If you find that
10495 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
10496 then it's likely that directories are not supported by the server serving
10497 in that collection.
10500 Similarly, servers that do provide for directories may not do so in
10501 the same way.  On some servers, for example, each folder name you
10502 create is at the same time capable of being a directory.  When this
10503 happens, Alpine will display both the folder name and the name of the
10504 directory (with trailing hierarchy delimiter) in the folder list.
10507 Another issue with IMAP access, though with a much smaller set of servers,
10508 is that not all servers accept the request to list out the available
10509 folders and directories in the same way.  If you find yourself having
10510 trouble viewing folders on your server, you might investigate the
10511 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
10512 feature.
10514 <UL>
10515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10516 </UL>
10518 &lt;End of help on this topic&gt;
10519 </BODY>
10520 </HTML>
10521 ========= h_valid_folder_names ========
10522 <HTML>
10523 <HEAD>
10524 <TITLE>Explanation of Valid Folder Names</TITLE>
10525 </HEAD>
10526 <BODY>
10527 <H1>Folder Name Syntax Explained</H1>
10529 Once your folder collections are defined, you can usually refer to
10530 folders by their simple (unqualified) name, or pick from a FOLDER LIST
10531 display.  However, understanding the complete syntax for folder names,
10532 both local and remote, is handy when using the Goto command and when
10533 you are adding new folder collections via the Setups/collectionList screen.
10535 An Alpine folder name looks like
10538 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
10541 The square brackets ([]) mean that the part is optional.
10544 If there is no remote-specification, then the folder name is interpreted
10545 locally on the computer running Alpine.
10546 Local folder names depend on the operating system used by the computer 
10547 running Alpine, as well as the configuration of that system.  For example,
10548 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
10549 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
10550 system running Unix.
10553 Alpine users have the option of using folders that are stored on some other
10554 computer.  Alpine accesses remote folders via IMAP (the Internet Message
10555 Access Protocol), or in the case of news, via NNTP (the Network News
10556 Transport Protocol).  To be able to access remote folders in Alpine, the
10557 remote host must be running the appropriate server software (imapd or
10558 nntpd) and you must correctly specify the name of the folder to Alpine,
10559 including the domain name of the remote machine. For example,
10561 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
10563 could be a remote folder specification, and so could
10565 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
10568 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
10570 Note that in the case of remote folders, the directory/file path in the specification is 
10571 determined by the operating system of the remote computer, <B>not</B> by
10572 the operating system of the computer on which you are running Alpine.
10574 As you can tell, the name of the computer is in &#123;} brackets
10575 followed immediately by the name of the folder.  (In each of these cases the
10576 optional namespace is missing.)  If, as in these
10577 examples, there is no remote access protocol specified, then IMAP is
10578 assumed.  Check
10579 <A HREF="h_folder_server_syntax">here</A>
10580 for a more detailed look at what options can be placed between the brackets.
10581 If there are no brackets at all, then the folder name is interpreted locally
10582 on the computer on which you are running Alpine.
10585 To the right of the brackets when a server name is present, or at the
10586 start of the foldername if no server is present, the sharp sign,
10587 &quot;#&quot;, holds special meaning.  It indicates a folder name
10588 outside the area reserved for your personal folders.  In fact, it's
10589 used to indicate both the name of the folder, and a special phrase
10590 telling Alpine how to interpret the name that follows.
10593 So, for example, Alpine can be used to access a newsgroup that might be 
10594 available on your computer using:
10596 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
10598 The sharp sign indicates the folder name is outside your personal
10599 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
10600 interpret the remainder of the name as a newsgroup.
10603 Similarly, to access a newsgroup on your IMAP server, you might
10604 use something like:
10606 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
10609 There are a number of such special phrases (or &quot;namespaces&quot;)
10610 available.  For a more detailed explanation read about
10611 <A HREF="h_folder_name_namespaces">Namespaces</A>.
10614 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
10615 names.  The name INBOX refers to your &quot;principal incoming
10616 message folder&quot; and will be mapped to the actual file name used for your
10617 INBOX on any given host.  Therefore, a name like
10618 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
10619 store incoming mail for you on that particular host.
10622 &lt;End of help on this topic&gt;
10623 </BODY>
10624 </HTML>
10625 ======= h_folder_name_namespaces =======
10626 <HTML>
10627 <HEAD>
10628 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
10629 </HEAD>
10630 <BODY>
10631 <H1>Folder Name Namespaces Explained</H1>
10633 An Alpine folder name looks like
10636 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
10639 The local part of a folder name has an optional &quot;Namespace&quot; which
10640 tells Alpine how to interpret the rest of the name.
10642 <P> 
10643 By default the folder name is interpreted as defining a section of your personal
10644 folder area.  This area and how you specify it are defined by the
10645 server, if one is specified, or, typically, the home
10646 directory, if no server is defined.
10649 If a namespace is specified, it begins with the
10650 sharp, &quot;#&quot;, character followed by the name of the namespace
10651 and then the namespace's path-element-delimiter.  Aside from the
10652 path's format, namespaces can also imply access rights, content
10653 policy, audience, location, and, occasionally, access methods.
10656 Each server exports its own set (possibly of size one) of 
10657 namespaces.  Hence, it's likely communication with your server's
10658 administrator will be required for specific configurations.  Some of
10659 the more common namespaces, however, include:
10661 <DL>
10662 <DT>#news.</DT>
10663 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
10664 names are hierarchically defined with each level delimited by a period.
10666 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
10668 </DD>
10669 <DT>#public/</DT>
10670 <DD>This specifies a folder area that the server may export to the general
10671 public.
10672 </DD>
10673 <DT>#shared/</DT>
10674 <DD>This specifies a folder area that the server may export to groups
10675 of users.
10676 </DD>
10677 <DT>#ftp/</DT>
10678 <DD>This specifies a folder area that is the same as that it may have 
10679 exported via the &quot;File Transfer Protocol&quot;.
10680 </DD>
10681 <DT>#mh/</DT>
10682 <DD>This specifies the personal folder area associated with folders
10683 and directories that were created using the MH message handling system.
10684 </DD>
10685 <DT>#move/</DT>
10686 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
10688 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
10690 The #move namespace is followed by two folder names separated by a delimiter
10691 character.
10692 The delimiter character may be any character that does not appear in
10693 the MailDropFolder name.
10694 The meaning of #move is that mail will be copied from the MailDropFolder to
10695 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
10696 Periodic checks at frequency
10697 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
10698 time between checks set by
10699 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
10700 are made for new mail arriving in the MailDropFolder.
10701 An example that copies mail from a POP inbox to a local folder follows
10703 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
10705 To you it appears that mail is being delivered to the local folder when it
10706 is copied from the MailDropFolder, and you read mail from the local folder.
10708 Note that if the DestinationFolder does not exist then the messages are not
10709 copied from the MailDropFolder.
10710 A #move folder may only be used as an
10711 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
10712 an Inbox.
10713 When you are in the FOLDER LIST of Incoming Message Folders (after turning
10714 on the
10715 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
10716 option)
10717 the Add command has a subcommand &quot;Use Mail Drop&quot;
10718 which may be helpful for defining the folder in your Alpine configuration.
10719 The same is true when you edit the
10720 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
10721 option in Setup/Config.
10722 Each of these configuration methods will also create the DestinationFolder
10723 if it doesn't already exist.
10724 If you are having problems, make sure the DestinationFolder exists.
10725 You may find some more useful information about Mail Drops at
10726 <A HREF="h_maildrop">What is a Mail Drop?</A>.
10727 </DD>
10728 </DL>
10731 In addition, the server may support access to other user's folders,
10732 provided you have suitable permissions.  Common methods use a prefix
10733 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
10734 indicate the root of the other user's folder area.
10737 No, nothing's simple.
10740 &lt;End of help on this topic&gt;
10741 </BODY>
10742 </HTML>
10743 ============= h_whatis_vcard ========================
10744 <HTML>
10745 <HEAD>
10746 <TITLE>VCARD EXPLAINED</TITLE>
10747 </HEAD>
10748 <BODY>
10749 <H1>What is the vCard format?</H1>
10750 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
10751 information about and among people and organizations electronically.  
10752 More information about vCard can be found (as of May 1998) on the WWW site 
10753 of the Internet Mail Consortium at the URL:
10755 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
10757 &lt;End of help on this topic&gt;
10758 </BODY>
10759 </HTML>
10760 ===== h_folder_open =====
10761 <HTML>
10762 <HEAD>
10763 <TITLE>Explanation of Folder Selection</TITLE>
10764 </HEAD>
10765 <BODY>
10766 <BR>
10767 <BR>
10768 This screen is designed to allow you to quickly and easily survey your
10769 folders and select one to open.
10770 <!--chtml if pinemode="function_key"-->
10771 <PRE>
10772 Navigating the List of Folders             General Alpine Commands
10773 ------------------------------             -----------------------
10774  P   Move to previous folder               ?   Show this help text
10775  N   Move to next folder
10776  -   Show previous screen of folders
10777 Spc  (space bar) Show next screen
10778  W   WhereIs (search folder names)
10780 Folder Selection Commands
10781 -------------------------
10782  E   Exit the Folder Select menu (without selecting a folder)
10783  S   Select the currently highlighted folder
10784 </PRE>
10785 <!--chtml else-->
10786 <PRE>
10787 Navigating the List of Folders             General Alpine Commands
10788 ------------------------------             -----------------------
10789 F5   Move to previous folder               F1  Show this help text
10790 F6   Move to next folder
10791 F7   Show previous screen of folders
10792 F8   Show next screen of folders
10793 F12  WhereIs (search folder names)
10795 Folder Selection Commands
10796 -------------------------
10797 F3   Exit the Folder Select menu (without selecting a folder)
10798 F4   Select the currently highlighted folder
10799 </PRE>
10800 <!--chtml endif-->
10802 FOR MORE INFORMATION: See the section on
10803 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10805 &lt;End of help on this topic&gt;
10806 </BODY>
10807 </HTML>
10808 ===== h_folder_subscribe =====
10809 <HTML>
10810 <HEAD>
10811 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
10812 </HEAD>
10813 <BODY>
10814 <H1>FOLDER SUBSCRIBE HELP</H1>
10816 This screen is designed to help you subscribe to newsgroups you are
10817 not currently subscribed to.  The screen display is a list of all
10818 available newsgroups (or possibly a partial list if you specified a
10819 partial name when entering the screen).  Groups you have already
10820 subscribed to have the letters &quot;SUB&quot; next to them.  You may
10821 select a single new group to subscribe to by moving the cursor to that
10822 group and pressing &quot;S&quot; or carriage return.  Alternatively,
10823 you may change into ListMode with the &quot;ListMode&quot; command.
10824 The display will change slightly so that each group has a checkbox in
10825 front of it.  Use the cursor and the Set/Unset command to place an
10826 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
10829 When you are finished marking groups, the &quot;Subscribe&quot;
10830 command will subscribe you to those groups you have marked.  Note, you
10831 may not unsubscribe to groups with this command.  Instead of the
10832 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
10833 UnSbscrbe command.
10836 <!--chtml if pinemode="function_key"-->
10837 <PRE>
10838 Navigating the List of Newsgroups          General Alpine Commands
10839 ---------------------------------          -----------------------
10840 F5   Move to previous group                F1   Show this help text
10841 F6   Move to next group
10842 F7   Show previous screen of groups
10843 F8   Show next screen of groups
10844 F12  WhereIs (search group names)
10845 F9   Use ListMode
10847 Group Selection Commands
10848 -------------------------
10849 F3  Exit the News Subscribe menu (without selecting any groups)
10850 F4  Subscribe to the currently highlighted newsgroup
10851 </PRE>
10852 <!--chtml else-->
10853 <PRE>
10854 Navigating the List of Newsgroups          General Alpine Commands
10855 ---------------------------------          -----------------------
10856  P   Move to previous group                ?   Show this help text
10857  N   Move to next group
10858  -   Show previous screen of groups
10859 Spc  (space bar) Show next screen
10860  W   WhereIs (search group names)
10861  L   Use ListMode
10863 Group Selection Commands
10864 -------------------------
10865  E   Exit the News Subscribe menu (without selecting any groups)
10866  S   Subscribe to the currently highlighted newsgroup
10867 </PRE>
10868 <!--chtml endif-->
10870 When in ListMode, there is an additional command for marking groups to
10871 subscribe to:
10873 <!--chtml if pinemode="function_key"-->
10874 <PRE>
10875 ListMode Commands
10876 -------------------------
10877 F9  Set or unset the highlighted group
10878 </PRE>
10879 <!--chtml else-->
10880 <PRE>
10881 ListMode Commands
10882 -------------------------
10883 X   Set or unset the highlighted group
10884 </PRE>
10885 <!--chtml endif-->
10887 &lt;End of help on this topic&gt;
10888 </BODY>
10889 </HTML>
10890 ===== h_folder_postnews =====
10891 <HTML>
10892 <HEAD>
10893 <TITLE>Newsgroup selecting for Posting explained</TITLE>
10894 </HEAD>
10895 <BODY>
10896 This screen is designed to allow you to quickly and easily survey
10897 the available newsgroups and select one to post news to.
10899 <!--chtml if pinemode="function_key"-->
10900 <PRE>
10901 Navigating the List of Newsgroups          General Alpine Commands
10902 ---------------------------------          -----------------------
10903 F5   Move to previous group                F1  Show this help text
10904 F6   Move to next group
10905 F7   Show previous screen of groups
10906 F8   Show next screen of groups
10907 F12  WhereIs (search group names)
10909 Group Selection Commands
10910 -------------------------
10911 F3   Exit the Selection menu (without selecting a group)
10912 F4   Select the currently highlighted newsgroup
10913 </PRE>
10914 <!--chtml else-->
10915 <PRE>
10916 Navigating the List of Newsgroups          General Alpine Commands
10917 ---------------------------------          -----------------------
10918  P   Move to previous group                ?  Show this help text
10919  N   Move to next group
10920  -   Show previous screen of groups
10921 Spc  (space bar) Show next screen of groups
10922  W   WhereIs (search group names)
10924 Group Selection Commands
10925 -------------------------
10926  E   Exit the Selection menu (without selecting a group)
10927  S   Select the currently highlighted newsgroup
10928 </PRE>
10929 <!--chtml endif-->
10931 &lt;End of help on this topic&gt;
10932 </BODY>
10933 </HTML>
10934 ===== h_folder_save =====
10935 <HTML>
10936 <HEAD>
10937 <TITLE>Folder Select for Save Explained</TITLE>
10938 </HEAD>
10939 <BODY>
10940 This screen is designed to allow you to quickly and easily survey your
10941 folders and select one to use for saving the current message.
10944 <!--chtml if pinemode="function_key"-->
10945 <PRE>
10946 Navigating the List of Folders             General Alpine Commands
10947 ------------------------------             -----------------------
10948 F5   Move to previous folder               F1  Show this help text
10949 F6   Move to next folder
10950 F7   Show previous screen of folders
10951 F8   Show next screen of folders
10952 F12  WhereIs (search folder names)
10954 Folder Selection Commands
10955 -------------------------
10956 F3   Exit the Folder Select menu (without selecting a folder)
10957 F4   Select the currently highlighted folder
10958 F11  AddNew folder (just like Select, but you type in a new folder name)
10959 </PRE>
10960 <!--chtml else-->
10961 <PRE>
10962 Navigating the List of Folders             General Alpine Commands
10963 ------------------------------             -----------------------
10964  P   Move to previous folder               ?  Show this help text
10965  N   Move to next folder
10966  -   Show previous screen of folders
10967 Spc  (space bar) Show next screen of folders
10968  W   WhereIs (search folder names)
10970 Folder Selection Commands
10971 -------------------------
10972  E   Exit the Folder Select menu (without selecting a folder)
10973  S   Select the currently highlighted folder
10974  A   AddNew folder (just like Select, but you type in a new folder name)
10975 </PRE>
10976 <!--chtml endif-->
10978 FOR MORE INFORMATION: See the section on
10979 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10981 &lt;End of help on this topic&gt;
10982 </BODY>
10983 </HTML>
10984 ===== h_folder_fcc =====
10985 <HTML>
10986 <HEAD>
10987 <TITLE>Folder Select for Fcc Explained</TITLE>
10988 </HEAD>
10989 <BODY>
10990 This screen is designed to allow you to quickly and easily survey your
10991 folders and select one to use as the file carbon copy (fcc) for the
10992 current message.
10995 <!--chtml if pinemode="function_key"-->
10996 <PRE>
10997 Navigating the List of Folders             General Alpine Commands
10998 ------------------------------             -----------------------
10999 F5   Move to previous folder               F1  Show this help text
11000 F6   Move to next folder
11001 F7   Show previous screen of folders
11002 F8   Show next screen of folders
11003 F12  WhereIs (search folder names)
11005 Folder Selection Commands
11006 -------------------------
11007 F3   Exit the Folder Select menu (without selecting a folder)
11008 F4   Select the currently highlighted folder
11009 F11  AddNew folder (just like Select, but you type in a new folder name)
11010 </PRE>
11011 <!--chtml else-->
11012 <PRE>
11013 Navigating the List of Folders             General Alpine Commands
11014 ------------------------------             -----------------------
11015  P   Move to previous folder               ?  Show this help text
11016  N   Move to next folder
11017  -   Show previous screen of folders
11018 Spc  (space bar) Show next screen of folders
11019  W   WhereIs (search folder names)
11021 Folder Selection Commands
11022 -------------------------
11023  E   Exit the Folder Select menu (without selecting a folder)
11024  S   Select the currently highlighted folder
11025  A   AddNew folder (just like Select, but you type in a new folder name)
11026 </PRE>
11027 <!--chtml endif-->
11029 FOR MORE INFORMATION: See the section on
11030 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11032 &lt;End of help on this topic&gt;
11033 </BODY>
11034 </HTML>
11035 ===== h_folder_pattern_roles =====
11036 <HTML>
11037 <HEAD>
11038 <TITLE>Folder Select for Current Folder Explained</TITLE>
11039 </HEAD>
11040 <BODY>
11041 This screen is designed to allow you to quickly and easily survey your
11042 folders and select one to use as the specific Current Folder
11043 in a Pattern.
11046 <!--chtml if pinemode="function_key"-->
11047 <PRE>
11048 Navigating the List of Folders             General Alpine Commands
11049 ------------------------------             -----------------------
11050 F5   Move to previous folder               F1  Show this help text
11051 F6   Move to next folder
11052 F7   Show previous screen of folders
11053 F8   Show next screen of folders
11054 F12  WhereIs (search folder names)
11056 Folder Selection Commands
11057 -------------------------
11058 F3   Exit the Folder Select menu (without selecting a folder)
11059 F4   Select the currently highlighted folder
11060 F11  AddNew folder (just like Select, but you type in a new folder name)
11061 </PRE>
11062 <!--chtml else-->
11063 <PRE>
11064 Navigating the List of Folders             General Alpine Commands
11065 ------------------------------             -----------------------
11066  P   Move to previous folder               ?  Show this help text
11067  N   Move to next folder
11068  -   Show previous screen of folders
11069 Spc  (space bar) Show next screen of folders
11070  W   WhereIs (search folder names)
11072 Folder Selection Commands
11073 -------------------------
11074  E   Exit the Folder Select menu (without selecting a folder)
11075  S   Select the currently highlighted folder
11076  A   AddNew folder (just like Select, but you type in a new folder name)
11077 </PRE>
11078 <!--chtml endif-->
11080 FOR MORE INFORMATION: See the section on
11081 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11083 &lt;End of help on this topic&gt;
11084 </BODY>
11085 </HTML>
11086 ===== h_folder_stayopen_folders =====
11087 <HTML>
11088 <HEAD>
11089 <TITLE>Folder Select Explained</TITLE>
11090 </HEAD>
11091 <BODY>
11092 This screen is designed to allow you to quickly and easily survey your
11093 folders and select one to use as a Stay-Open folder.
11096 <!--chtml if pinemode="function_key"-->
11097 <PRE>
11098 Navigating the List of Folders             General Alpine Commands
11099 ------------------------------             -----------------------
11100 F5   Move to previous folder               F1  Show this help text
11101 F6   Move to next folder
11102 F7   Show previous screen of folders
11103 F8   Show next screen of folders
11104 F12  WhereIs (search folder names)
11106 Folder Selection Commands
11107 -------------------------
11108 F3   Exit the Folder Select menu (without selecting a folder)
11109 F4   Select the currently highlighted folder
11110 F11  AddNew folder (just like Select, but you type in a new folder name)
11111 </PRE>
11112 <!--chtml else-->
11113 <PRE>
11114 Navigating the List of Folders             General Alpine Commands
11115 ------------------------------             -----------------------
11116  P   Move to previous folder               ?  Show this help text
11117  N   Move to next folder
11118  -   Show previous screen of folders
11119 Spc  (space bar) Show next screen of folders
11120  W   WhereIs (search folder names)
11122 Folder Selection Commands
11123 -------------------------
11124  E   Exit the Folder Select menu (without selecting a folder)
11125  S   Select the currently highlighted folder
11126  A   AddNew folder (just like Select, but you type in a new folder name)
11127 </PRE>
11128 <!--chtml endif-->
11130 FOR MORE INFORMATION: See the section on
11131 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11133 &lt;End of help on this topic&gt;
11134 </BODY>
11135 </HTML>
11136 ===== h_folder_action_roles =====
11137 <HTML>
11138 <HEAD>
11139 <TITLE>Folder Select Explained</TITLE>
11140 </HEAD>
11141 <BODY>
11142 This screen is designed to allow you to quickly and easily survey your
11143 folders and select one to use as the folder into which messages
11144 matching this filter will be moved.
11147 <!--chtml if pinemode="function_key"-->
11148 <PRE>
11149 Navigating the List of Folders             General Alpine Commands
11150 ------------------------------             -----------------------
11151 F5   Move to previous folder               F1  Show this help text
11152 F6   Move to next folder
11153 F7   Show previous screen of folders
11154 F8   Show next screen of folders
11155 F12  WhereIs (search folder names)
11157 Folder Selection Commands
11158 -------------------------
11159 F3   Exit the Folder Select menu (without selecting a folder)
11160 F4   Select the currently highlighted folder
11161 F11  AddNew folder (just like Select, but you type in a new folder name)
11162 </PRE>
11163 <!--chtml else-->
11164 <PRE>
11165 Navigating the List of Folders             General Alpine Commands
11166 ------------------------------             -----------------------
11167  P   Move to previous folder               ?  Show this help text
11168  N   Move to next folder
11169  -   Show previous screen of folders
11170 Spc  (space bar) Show next screen of folders
11171  W   WhereIs (search folder names)
11173 Folder Selection Commands
11174 -------------------------
11175  E   Exit the Folder Select menu (without selecting a folder)
11176  S   Select the currently highlighted folder
11177  A   AddNew folder (just like Select, but you type in a new folder name)
11178 </PRE>
11179 <!--chtml endif-->
11181 FOR MORE INFORMATION: See the section on
11182 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11184 &lt;End of help on this topic&gt;
11185 </BODY>
11186 </HTML>
11187 ===== h_abook_config =====
11188 <HTML>
11189 <HEAD>
11190 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11191 </HEAD>
11192 <BODY>
11193 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11194 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11195 <!--chtml if pinemode="function_key"-->
11196 <PRE>
11197 Available  Commands                        
11198 -------------------------------            
11199 F1  Show Help Text                         
11200 F3  Back to MAIN Alpine menu                 
11201 F4  Change configuration for address book  
11202 F5  Move to previous address book          
11203 F6  Move to next address book              
11204 F7  Previous page of address books         
11205 F8  Next page of address books             
11206 F9  Add new address book                   
11207 F10 Delete existing address book           
11208 F11 Shuffle the order of address books     
11209 F12 Whereis (search address book titles)   
11210 </PRE>
11211 <!--chtml else-->
11212 <PRE>
11213 Navigation                     General Alpine Commands
11214 -----------------------        -----------------------
11215  P  Prev Address Book           ?  Display this help text
11216  N  Next Address Book           E  Back to MAIN Alpine menu
11217  -  Previous page
11218 Spc (space bar) Next page
11219  W  WhereIs (search for word in address book titles)
11221 Setup Address Books Commands
11222 ------------------------------------------------
11223  A  Add new address book          $  Shuffle the order of address books
11224  D  Delete existing address book  C  Change configuration for address book
11225 </PRE>
11226 <!--chtml endif-->
11228 <H2>Description of the Setup Address Books Screen</H2>
11230 This screen lets you add, delete, modify, or change the order of your
11231 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11232 fill in.  If you are adding a remote address book on an IMAP server
11233 you should fill in the name of the IMAP server.  Otherwise, leave
11234 that field blank.  (Note that remote IMAP address books are an Alpine
11235 concept and are unlikely to interoperate with other mail clients.)
11236 For a remote address book, fill in the name of the remote folder
11237 in the Folder field.  This should be a folder that is used only for
11238 this one purpose, not a general purpose folder you expect to store
11239 messages in.
11240 <P>If you are adding a local address book, fill in the
11241 Folder Name field with a local file name (e.g., .addressbook).
11243 <B>Please note:</B> Remote address books stored on an IMAP server are 
11244 of an entirely different format (namely, a special-purpose 
11245 &quot;mail folder&quot;) than that of the local addressbook familiar 
11246 to Alpine users.  Therefore, 
11247 you cannot use &quot;add a remote address book&quot; to make an existing 
11248 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11249 Alpine running on a different host.  
11252 The &quot;Del Abook&quot; command allows you to remove an address book
11253 from your configuration.  It will also ask you if you wish to remove
11254 the data for that address book, which would erase all traces of the
11255 address book if you answer Yes.
11258 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11259 The difference is that instead of adding a new address book to your
11260 configuration, you are changing the configuration of an existing entry.
11261 For example, you might want to correct a typing error or change a
11262 nickname.  The &quot;Change&quot; command is not a move command.  If you
11263 change the folder name or server name the data will not be moved for you.
11266 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11267 an address book toward another address book in the same group then
11268 the order of those two address books will be swapped.  If you shuffle
11269 the last Personal address book down towards the Global address book
11270 section, it will become a Global address book.  If you shuffle
11271 the first Global address book up it will become a Personal address
11272 book.  The main difference between Personal and Global address
11273 books is that Global address books are forced read-only.
11274 <P><UL>
11275 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11276 </UL>
11278 &lt;End of help on this topic&gt;
11279 </BODY>
11280 </HTML>
11281 ===== h_abook_top =====
11282 <HTML>
11283 <HEAD>
11284 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11285 </HEAD>
11286 <BODY>
11287 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11288 <!--chtml if pinemode="function_key"-->
11289 <PRE>
11290 Available  Commands -- Group 1         Available Commands -- Group 2
11291 -------------------------------        ------------------------------
11292 F1  Show Help Text                      F1  Show Help Text
11293 F2  See commands in next group          F2  See commands in next group
11294 F3  Exit to MAIN MENU                   F3  Quit Alpine
11295 F4  View/Edit selected address book
11296 F5  Move to previous address book       F5  FOLDER LIST screen
11297 F6  Move to next address book           F6  Specify a folder to go to
11298 F7  Previous page                       F7  MESSAGE INDEX screen
11299 F8  Next page                           F9  Print list of address books
11300 F12 Whereis (search for word)
11301 </PRE>
11302 <!--chtml else-->
11303 <PRE>
11304 Navigation                       General Alpine Commands
11305 -----------------------          -----------------------
11306  P  Previous Entry                ?  Display this help text
11307  N  Next Entry                    O  Show all other available commands
11308  -  Previous page                 &lt;  Back to MAIN Alpine menu
11309 Spc (space bar) Next page         Q  Quit Alpine
11310  W  WhereIs (search for word)     L  FOLDER LIST screen
11311                                   G  Specify a folder to go to
11312 Address Book Commands             I  MESSAGE INDEX screen
11313 ------------------------------------------------
11314  &gt;  View/Edit selected address book
11315               or
11316  &gt;  Search on selected directory server
11318  %  Print list of address books and directory servers
11319 </PRE>
11320 <!--chtml endif-->
11322 <H2>Description of the Address Book List Screen</H2>
11324 From this screen you may choose which address book you wish to view
11325 or edit. For more information on address books, view one of your
11326 address books (with
11327 <!--chtml if pinemode="function_key"-->
11329 <!--chtml else-->
11330 &quot;&gt;&quot;
11331 <!--chtml endif-->)
11332 and see the Help Text there.<P>
11334 You may also choose a directory server on which to search for entries.
11335 You do that by highlighting the directory server line and using
11336 <!--chtml if pinemode="function_key"-->
11338 <!--chtml else-->
11339 &quot;&gt;&quot;
11340 <!--chtml endif-->.<P>
11342 If you wish to define new address books or directory servers go to the Main
11343 menu and choose Setup. You may then either choose to setup AddressBooks or
11344 Directory (among other things). It's possible that the Directory option
11345 will not be there if the Alpine you are using does not contain LDAP directory
11346 lookup functionality.
11348 <P><UL>
11349 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11350 </UL><P>
11351 &lt;End of help on this topic&gt;
11352 </BODY>
11353 </HTML>
11354 ===== h_abook_opened =====
11355 <HTML>
11356 <HEAD>
11357 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
11358 </HEAD>
11359 <BODY>
11360 <H1>THE ALPINE ADDRESS BOOK</H1>
11361 <H2>ADDRESS BOOK COMMANDS</H2>
11362 <PRE>
11363 <!--chtml if pinemode="function_key"-->
11364 Available  Commands -- Group 1         Available Commands -- Group 2   
11365 -------------------------------        ------------------------------  
11366 F1  Show Help Text                      F1  Show Help Text             
11367 F2  See commands in next group          F2  See commands in next group
11368 F3  Exit this screen                    F3  Quit Alpine                  
11369 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
11370 F5  Move to previous entry              F5  FOLDER LIST screen         
11371 F6  Move to next entry                  F6  Specify a folder to go to  
11372 F7  Previous page of address book       F7  MESSAGE INDEX screen        
11373 F8  Next page of address book           F8  Compose to entry using roles
11374 F9  Add new entry to address book       F9  Print address book         
11375 F10 Delete selected entry               F10 TakeAddr to another addrbook
11376 F11 Compose to selected entry           F11 Save or Export addrbook selections
11377 F12 Whereis (search address book)       F12 Forward entry by mail       
11379 Available Commands -- Group 3                                           
11380 ------------------------------                                          
11381 F3  Select                              F6  Zoom (or unZoom)            
11382 F5  Select Current                      F7  Apply Command to Selection  
11383 <!--chtml else-->
11384 Address Book Navigation        General Alpine Commands
11385 -----------------------        -----------------------
11386  P  Prev Address                  ?  Display this help text
11387  N  Next Address                  O  Show all other available commands
11388  -  Previous page of address book M  Back to MAIN MENU
11389 Spc (space bar) Next page         Q  Quit Alpine
11390  W  WhereIs (search for word      C  Compose message to selected addr
11391      or name in address book)     #  Compose to addr using roles
11392  &lt;  To List of Address Books if   L  FOLDER LIST screen
11393      more than one, else to MAIN  G  Specify a folder to go to
11394                                   I  MESSAGE INDEX screen
11396 Address Book Commands
11397 ----------------------------------------------------
11398  &gt;  View/Update selected entry    D  Delete selected entries
11399  %  Print address book            S  Save or Export address book selections
11400  F  Forward entries by mail       @  Add new entry to address book
11402  ;  Select command                Z  Toggle Zoom Mode
11403  :  Select highlighted entry      A  Apply command to selected entries
11405 <!--chtml endif-->
11406 </PRE>
11407 Note:  The presence or absence of the final four commands above is
11408 controlled by the option 
11409 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
11412 <H2>Description of the Address Book Screen</H2>
11414 This screen lets you edit and manage entries in your address book.  It
11415 also acts as a short-cut for composing messages to people in the address
11416 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
11417 message starts &quot;pre-addressed&quot; to whatever address book entry is
11418 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
11419 role to use in your composition.
11421 Alpine's address book helps you keep a list of addresses you send email to so
11422 you do not have to remember addresses that are often complex.  Each entry
11423 in the address book has five fields, all of them optional.  The three
11424 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
11426         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
11427         This is what you type in as you are addressing the message in the
11428         composer.  If there is a matching entry in your address book(s),
11429         Alpine will extract the corresponding FullName and Address fields to
11430         generate the actual address for your message.
11432         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
11433 of the
11434         person or organization.  Usually the full names are put in last
11435         name first so they sort nicely in alphabetical order.  Whatever
11436         you put as the name here will appear on the message when it is
11437         finally delivered.  Examples:<PRE>
11438            Garcia Marquez, Gabriel
11439            Henscheid, Eckhard
11440            Alpine-Info mailing list
11441            Library materials renewal requests
11442            Kim An-guk
11443            &quot;George III, King of Great Britain, 1738-1820&quot;
11444 </PRE>
11445 (In the second-to-last example, no comma is used in the name so that 
11446 the family name appears first in the address book and when the entry is 
11447 used in the composer.
11448 In the last example, retaining the commas is intended; 
11449 double-quotation marks surround the name to 
11450 prevent the transposition of its parts when the entry is used in 
11451 the composer.)
11453         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
11454         a valid Internet address that conforms to the Internet message
11455         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
11457 The two fields that aren't usually visible are:<DL>
11459   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
11460         message to this address to be saved in.  If this field is set, and
11461         this address is the first one in the message's To: header, then
11462         Alpine will use this folder name for the FCC in lieu of the normal
11463         FCC folder name.
11465   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
11466         </DL>
11468 Due to screen width limitations, these last two fields do not show up in
11469 the normal ADDRESS BOOK display.  You may select the 
11470 &quot;View/Update&quot; command to
11471 view or modify them.  You may use the configuration variable
11472 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
11473 to add these fields to your ADDRESS BOOK 
11474 display, or to modify the format of the display.
11476 <H2>Sorting the Address book</H2>
11478 By default, address book entries are sorted alphabetically on the full
11479 name with distribution lists sorted to the end.  Sorting can be changed by
11480 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
11481 --assuming you have &quot;write&quot; permission for the address book file.
11483 Unlike the sorting of folders (which only changes presentation), sorting an
11484 address book actually changes the file as it is kept on the computer.  For
11485 this reason you won't be able to sort a shared or system-wide address
11486 book.
11488 <H2>Adding New Entries</H2>
11490 The easiest way to add new entries to your address book is to use the
11491 &quot;TakeAddr&quot; command when viewing a message.
11492 This command allows you to take addresses from the header and body of the
11493 message and put them into your address book, without having to type
11494 them in.
11497 To manually add a new entry from within the address book screen, use the AddNew
11498 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
11499 Use this command both for adding a simple alias and for adding a
11500 distribution list.
11502 <H2>Distribution Lists</H2>
11504 Address book entries can be simple cases of aliases (a single nickname is linked
11505 to a single email address) or distribution lists (a single nickname
11506 pointing at more than one email address).  Each distribution list has a
11507 nickname, a full name and a list of addresses.  The addresses may be
11508 actual addresses or they may be other nicknames in your address book.
11509 They may even refer to other distribution lists.
11510 There's really no difference between a simple alias and a distribution list,
11511 other than the number of addresses.
11512 Therefore, you can turn a simple alias with one address into a distribution
11513 list simply by adding more addresses.
11514 To add entries to an existing list or alias
11515 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
11516 a single address from the list if the cursor is placed on the address;
11517 it will delete the entire distribution list if the cursor is on the
11518 nickname/fullname line.  View/Update may also be used to delete addresses
11519 from a list.
11521 Address field entries in distribution lists may take any one of three
11522 forms: a nickname existing in any of the defined address books, a normal
11523 address of the form &quot;jsmith@art.example.com&quot;, or a complete
11524 fullname/address combination, e.g. &quot;John Smith
11525 &lt;jsmith@art.example.com&gt;&quot;.
11527 Distribution lists in Alpine address books can only be used by the person or
11528 people who have access to that address book.  They are not usually used to
11529 implement discussion groups, but can be used to facilitate small
11530 discussion groups if all the participants have access to the same shared
11531 address book.
11533 <H2>FCC and Comments</H2>
11535 As mentioned above, each entry in the address book also has two other optional
11536 fields, Fcc and Comments.  The command to look at or change either of these
11537 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
11538 Comments field is just for your own use.  The Fcc field overrides the
11539 default Fcc if this address is the first one on the To line.  The WhereIs
11540 command may be used to search for particular strings in the address book,
11541 including fields that are not visible (like Comment and Fcc by default).
11543 <H2>Aggregate Operations</H2>
11545 If the feature
11546 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
11547 is turned on (the default), then the four commands &quot;Select&quot;,
11548 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
11549 are available.  The two selection commands allow you to mark a set of
11550 address book entries as being selected.  If you have more than one address
11551 book, the selections may be in more than one of those address books.
11552 The &quot;Zoom&quot; command will toggle between displaying only the selected
11553 entries and all of the entries.  The &quot;Apply&quot; command allows you to
11554 apply one of the regular address book commands to all of the selected
11555 entries.  Usually the address book commands apply to only the entry
11556 highlighted by the cursor.  The &quot;Apply&quot; command works with the
11557 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
11558 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
11560 <H2>Exporting and Forwarding Address book entries</H2>
11562 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
11563 address book entry is placed in a plain text file in your home directory
11564 <!--chtml if pinemode="running"-->
11565 (which, in the present configuration of your system, is
11566  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
11567 <!--chtml endif-->
11568 or current working directory
11569 <!--chtml if pinemode="running"-->
11570 (which, at least for your current Alpine &quot;session,&quot; 
11571 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
11572 <!--chtml endif-->, depending on the 
11573 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
11574 configuration setting.  If you have some entries selected and use the
11575 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
11576 placed in the text file.
11578 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
11579 address book entry is placed in a special attachment and you are put into
11580 the composer.  You can fill in some comments in the body of the message,
11581 if you'd like, and send it to somebody else who uses Alpine.  The recipient
11582 may use the TakeAddr command on that message to insert the address book
11583 entry you sent in their own address book.  If you have some entries
11584 selected and use the Apply Forward command all of the selected entries
11585 will be forwarded in a single message.  You may
11586 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.
11587 The recipient must be using Alpine in order to receive this correctly.
11588 One way for the recipient to handle this might be to create an empty
11589 address book and then &quot;Take&quot; your forwarded address book entries into
11590 that empty address book.
11592 <H2>Multiple and/or Site-Wide Address books</H2>
11594 You may have more than one personal address book.  In addition, there may
11595 be one or more global address books.  This capability allows you to have
11596 multiple personal address books (some of which may be shared) and it also
11597 allows system administrators to implement site-wide address books that
11598 contain entries for users on multiple machines within the organization.
11599 <P><DL>
11600 <DT>Searching
11601   <DD> If you enter a nickname when composing a message, your
11602   personal address books will be searched through in order, and then the
11603   global address book(s) searched. If more than one address book has an entry
11604   for the nickname, Alpine uses the first one that it finds, so an entry in
11605   your personal address book would override a global address book entry. If
11606   after searching all the address books there is still no match, (Unix) Alpine
11607   then searches the local host password file on the assumption that you have
11608   entered a local user name rather than an address book nickname.
11609   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
11610   command, but global address books are always searched after personal
11611   address books.
11613   <P><DT>Tab completion
11614   <DD> If the
11615   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
11616   feature is turned on (the default) then the Tab key may be used
11617   in the composer to complete partially typed nicknames in the To
11618   or Cc lines. You type the first few letters of a nickname and then
11619   press the Tab key. It there is only one nickname that matches it will
11620   be filled in by Alpine. If there is more than one the unambiguous part
11621   of the nicknames will be filled in. For example, if your address book or
11622   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
11623   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
11624   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
11625   If you then type a second Tab character you will be presented with a list
11626   of matching nicknames to select from. Alternatively, you could type another
11627   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
11628   in the entire &quot;barbecue&quot; entry.
11630   <P><DT>Defining
11631   <DD> You define multiple personal address books in the 
11632   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
11633   from the MAIN MENU.  
11634   You may add as many as you like.  Global address books are usually
11635   site-wide address books defined by the System administrator, but
11636   you may define global address books of your own just like you define
11637   personal address books.
11639   <P><DT>Creating and updating
11640   <DD> Personal address books are normally created empty
11641   and populated by explicit additions from within Alpine, e.g. via the
11642   TakeAddr command.  Unlike personal address books, global address books may
11643   not be modified/updated from within Alpine; that is, they are Read-Only.
11644   Thus, global address books are created, populated and updated outside of
11645   Alpine. They might be hand-edited, generated by a program from another
11646   database, or by copying an existing address book.  They might also be
11647   some other user's personal address book, and so be modified normally by
11648   that user but accessed Read-Only by you.  See the Alpine Technical
11649   Notes document (included in the Alpine distribution) for more information on
11650   this.
11652   <P><DT>Accessing
11653   <DD>There are two different types of address books in Alpine.
11654   A local address book is stored in a regular file and the normal file
11655   access permissions apply.  A remote address book is stored on an IMAP
11656   server in a special folder that contains only messages pertaining to
11657   that address book.  The last message in the remote folder contains a
11658   copy of the address book data, and that data is copied to a local cache
11659   file in your home directory.  From there it is accessed just like a local
11660   address book.  The name of the cache file is kept track of in a special
11661   file called the
11662   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
11663   the name of which is stored in
11664   your Alpine configuration file the first time you use a remote address book.
11665   Just as local Alpine address books use a format that only Alpine understands,
11666   remote Alpine address books do the same and other mail reading programs
11667   are unlikely to be able to understand them.<P>
11668   While global address books are explicitly intended to be shared, there is
11669   nothing to prevent you from sharing a personal address book with other
11670   Alpine users. This might be useful in the case of a small workgroup.
11671   However, it is recommended that updates to shared personal address books
11672   be done when other Alpine users are not accessing the address book. Alpine
11673   does not do any file-locking to manage concurrent updates to the
11674   addressbook, but it does check to see if the file has been modified before
11675   making any changes.  Consequently, inadvertent concurrent updates will
11676   only cause other Alpine users to have to restart their address book
11677   operation, which will cause Alpine to reopen the updated file.
11679   <P><DT>Converting to Remote
11680   <DD>The easiest way to convert an existing local
11681   address book into a remote address book is to create an empty new remote
11682   personal address book by typing &quot;A&quot; to execute the
11683   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
11684   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
11685   address book.
11686   After you have added the empty
11687   remote address book, go into the screen for the address book you wish
11688   to copy and &quot;Select&quot; &quot;All&quot;.
11689   This selects every entry in that
11690   address book.  Then type the command &quot;Apply Save&quot;.
11691   You will be asked for the address book to save to.  You may use ^P and ^N
11692   to get to the new empty address book, then hit RETURN and the addresses
11693   will be copied.
11694   At this point you'll probably want to unselect all the entries in the local
11695   address book before proceeding. You do that with
11696   &quot;Select&quot; &quot;unselect All&quot;.
11698 </DL>
11699 <UL>
11700 <LI><A HREF="h_address_format">Explanation of Address formats</A>
11701 </UL>
11702 <P><UL>
11703 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11704 </UL>
11706 &lt;End of help on this topic&gt;
11707 </BODY>
11708 </HTML>
11709 ===== h_abook_select_addr =====
11710 <HTML>
11711 <HEAD>
11712 <TITLE>Addressbook Selection Explained</TITLE>
11713 </HEAD>
11714 <BODY>
11715 <H1>SELECT ADDRESS</H1>
11716 <!--chtml if pinemode="function_key"-->
11717 <PRE>
11718 Navigating the List of Messages               General Alpine Commands
11719 -------------------------------               -----------------------
11720 F5   Move to previous entry                   F1  Show this help text
11721 F6   Move to next entry
11722 F7   Show previous screen of address book
11723 F8   Show next screen of address book
11724 F12  WhereIs (search through address book)
11726 Address Selection Commands
11727 --------------------------
11728 F3   Exit the Address Select screen (without selecting an address)
11729 F4   Select the currently highlighted entry
11730 </PRE>
11731 <!--chtml else-->
11732 <PRE>
11733 Navigating the List of Messages               General Alpine Commands
11734 -------------------------------               -----------------------
11735  P   Move to previous entry                    ?  Show this help text
11736  N   Move to next entry
11737  -   Show previous screen of address book
11738 Spc  (space bar) Show next screen of address book
11739  W   WhereIs (search through address book)
11741 Address Selection Commands
11742 --------------------------
11743  E   Exit the Address Select screen (without selecting an address)
11744  S   Select the currently highlighted entry
11745 </PRE>
11746 <!--chtml endif-->
11749 This screen is designed to let you easily scan your address book(s) in
11750 order to select an entry for the message you are composing.  You cannot
11751 edit your address book in any way at this time, for address book
11752 maintenance, select the address book command when not composing a message.
11755 If you are composing a message and know the nickname of the person/list you
11756 want, you can bypass this screen by simply typing in the nickname on the
11757 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11758 selecting an entry does not cancel your message.
11761 FOR MORE INFORMATION on addressing see
11762 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11763 <A HREF="h_abook_opened">Address Book Screen's</A>
11764 help text.
11766 &lt;End of help on this topic&gt;
11767 </BODY>
11768 </HTML>
11769 ===== h_abook_select_top =====
11770 <HTML>
11771 <HEAD>
11772 <TITLE>Addressbook Selection Navigation Explained</TITLE>
11773 </HEAD>
11774 <BODY>
11775 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
11776 <!--chtml if pinemode="function_key"-->
11777 <PRE>
11778 Navigating the List of Address Books       General Alpine Commands
11779 ------------------------------------       -----------------------
11780 F4   View the highlighted address book
11781 F5   Move to previous address book         F1  Show this help text
11782 F6   Move to next address book
11783 F7   Show previous screen of address books
11784 F8   Show next screen of address books
11785 F12  WhereIs (search through address books)
11787 Address Selection Commands
11788 --------------------------
11789 F3   Exit the Address Select screen (without selecting an address)
11790 F4   Select the currently selected entries (if using ListMode)
11791 F9   Change to ListMode
11792 </PRE>
11793 <!--chtml else-->
11794 <PRE>
11795 Navigating the List of Address Books       General Alpine Commands
11796 ------------------------------------       -----------------------
11797  &gt;   View the highlighted address book
11798  P   Move to previous address book         ?  Show this help text
11799  N   Move to next address book
11800  -   Show previous screen of address books
11801 Spc  (space bar) Show next screen of address books
11802  W   WhereIs (search through address books)
11804 Address Selection Commands
11805 --------------------------
11806  E   Exit the Address Select screen (without selecting an address)
11807  S   Select the currently selected entries (if using ListMode)
11808  L   Change to ListMode
11809 </PRE>
11810 <!--chtml endif-->
11813 This screen is designed to let you easily scan your address book(s) in
11814 order to select entries for the message you are composing.  You cannot
11815 edit your address book in any way at this time.  For address book
11816 maintenance, select the address book command when not composing a message.
11819 If you are composing a message and know the nickname of the person/list you
11820 want, you can bypass this screen by simply typing in the nickname on the
11821 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11822 selecting an entry does not cancel your message.
11825 The ListMode command will add a column at the left edge of the screen.
11826 You mark the entries that you wish to select with the &quot;X&quot; command.
11827 This allows you to choose more than one entry at a time.
11830 An alternative method of composing a message to entries in your
11831 address book(s) is to first use the &quot;Select&quot; command from
11832 the address book maintenance screen and then the &quot;Apply&quot;
11833 &quot;ComposeTo&quot; command to start the composer composing to the
11834 selected entries.
11837 FOR MORE INFORMATION on addressing see
11838 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11839 <A HREF="h_abook_opened">Address Book Screen's</A>
11840 help text.
11842 &lt;End of help on this topic&gt;
11843 </BODY>
11844 </HTML>
11845 ===== h_abook_select_listmode =====
11846 <HTML>
11847 <HEAD>
11848 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
11849 </HEAD>
11850 <BODY>
11851 <H1>COMPOSER: SELECT ADDRESSES</H1>
11852 <!--chtml if pinemode="function_key"-->
11853 <PRE>
11854 Navigating the List of Messages                 General Alpine Commands
11855 -------------------------------                 -----------------------
11856 F5   Move to previous entry                     F1  Show this help text
11857 F6   Move to next entry
11858 F7   Show previous screen of address book
11859 F8   Show next screen of address book
11860 F12  WhereIs (search through address book)
11862 Address Selection Commands
11863 --------------------------
11864 F3   Exit the Address Select screen (without selecting an address)
11865 F4   Select the currently highlighted entry
11866 F9   Change to ListMode
11867 </PRE>
11868 <!--chtml else-->
11869 <PRE>
11870 Navigating the List of Messages                 General Alpine Commands
11871 -------------------------------                 -----------------------
11872  P   Move to previous entry                     ?  Show this help text
11873  N   Move to next entry
11874  -   Show previous screen of address book
11875 Spc  (space bar) Show next screen of address book
11876  W   WhereIs (search through address book)
11878 Address Selection Commands
11879 --------------------------
11880  E   Exit the Address Select screen (without selecting an address)
11881  S   Select the currently highlighted entry
11882  L   Change to ListMode
11883 </PRE>
11884 <!--chtml endif-->
11887 This screen is designed to let you easily scan your address book(s) in
11888 order to select entries for the message you are composing.  You cannot
11889 edit your address book in any way at this time, for address book
11890 maintenance, select the address book command when not composing a message.
11893 If you are composing a message and know the nickname of the person/list you
11894 want, you can bypass this screen by simply typing in the nickname on the
11895 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11896 selecting an entry does not cancel your message.
11899 The ListMode command will add a column at the left edge of the screen.
11900 You mark the entries that you wish to select with the &quot;X&quot; command.
11901 This allows you to choose more than one entry at a time.
11904 An alternative method of composing a message to entries in your
11905 address book(s) is to first use the &quot;Select&quot; command from
11906 the address book maintenance screen and then the &quot;Apply&quot;
11907 &quot;ComposeTo&quot; command to start the composer composing to the
11908 selected entries.
11911 FOR MORE INFORMATION on addressing see
11912 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11913 <A HREF="h_abook_opened">Address Book Screen's</A>
11914 help text.
11916 &lt;End of help on this topic&gt;
11917 </BODY>
11918 </HTML>
11919 ===== h_abook_select_checks =====
11920 <HTML>
11921 <HEAD>
11922 <TITLE>Address Selection from Composer Explained</TITLE>
11923 </HEAD>
11924 <BODY>
11925 <H1>COMPOSER: SELECT ADDRESSES</H1>
11926 <!--chtml if pinemode="function_key"-->
11927 <PRE>
11928 Navigating the List of Messages                 General Alpine Commands
11929 -------------------------------                 -----------------------
11930 F5   Move to previous entry                     F1  Show this help text
11931 F6   Move to next entry
11932 F7   Show previous screen of address book
11933 F8   Show next screen of address book
11934 F12  WhereIs (search through address book)
11936 Address Selection Commands
11937 --------------------------
11938 F3   Exit the Address Select screen (without selecting an address)
11939 F4   Select the currently highlighted entry
11940 F8   Either Sets or Unsets all entries in this address book
11941 F9   Set or Unset the highlighted entry
11942 </PRE>
11943 <!--chtml else-->
11944 <PRE>
11945 Navigating the List of Messages                 General Alpine Commands
11946 -------------------------------                 -----------------------
11947  P   Move to previous entry                     ?  Show this help text
11948  N   Move to next entry
11949  -   Show previous screen of address book
11950 Spc  (space bar) Show next screen of address book
11951  W   WhereIs (search through address book)
11953 Address Selection Commands
11954 --------------------------
11955  E   Exit the Address Select screen (without selecting an address)
11956  S   Select the currently highlighted entry
11957  X   Set or Unset the highlighted entry
11958  A   Either Sets or Unsets all entries in this address book
11959 </PRE>
11960 <!--chtml endif-->
11963 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
11964 command.  Type &quot;S Select&quot; to select all of the entries you
11965 have marked, just as if you had typed them in by hand.
11968 An alternative method of composing a message to entries in your
11969 address book(s) is to first use the &quot;Select&quot; command from
11970 the address book maintenance screen and then the &quot;Apply&quot;
11971 &quot;ComposeTo&quot; command to start the composer composing to the
11972 selected entries.
11975 FOR MORE INFORMATION on addressing see
11976 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11977 <A HREF="h_abook_opened">Address Book Screen's</A>
11978 help text.
11980 &lt;End of help on this topic&gt;
11981 </BODY>
11982 </HTML>
11983 ===== h_abook_select_nicks_take =====
11984 <HTML>
11985 <HEAD>
11986 <TITLE>Take Address Nickname Selection Explained</TITLE>
11987 </HEAD>
11988 <BODY>
11989 <H1>TAKEADDR: SELECT NICKNAME</H1>
11990 <!--chtml if pinemode="function_key"-->
11991 <PRE>
11992 Navigating the List of Messages                 General Alpine Commands
11993 -------------------------------                 -----------------------
11994 F5   Move to previous entry                     F1  Show this help text
11995 F6   Move to next entry
11996 F7   Show previous screen of address book
11997 F8   Show next screen of address book
11998 F12  WhereIs (search through address book)
12000 Message Selection Commands
12001 --------------------------
12002 F3   Exit the Nickname Select screen (without selecting an address)
12003 F4   Select the currently highlighted entry
12004 </PRE>
12005 <!--chtml else-->
12006 <PRE>
12007 Navigating the List of Messages                 General Alpine Commands
12008 -------------------------------                 -----------------------
12009  P   Move to previous entry                     ?  Show this help text
12010  N   Move to next entry
12011  -   Show previous screen of address book
12012 Spc  (space bar) Show next screen of address book
12013  W   WhereIs (search through address book)
12015 Message Selection Commands
12016 --------------------------
12017  E   Exit the Nickname Select screen (without selecting an address)
12018  S   Select the currently highlighted entry
12019 </PRE>
12020 <!--chtml endif-->
12023 This screen is designed to let you modify or add to an existing
12024 address book entry.  You have already selected the name(s) and
12025 address(es) through &quot;Take Address&quot;.  This screen simply lets
12026 you scan your address books and select the nickname to be
12027 changed/augmented.  If you want to add a new entry, then you are in
12028 the wrong place-- Select &quot;Exit&quot; command.
12031 FOR MORE INFORMATION on addressing see
12032 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12033 <A HREF="h_abook_opened">Address Book Screen's</A>
12034 help text.
12036 &lt;End of help on this topic&gt;
12037 </BODY>
12038 </HTML>
12039 ===== h_abook_select_nick =====
12040 <HTML>
12041 <HEAD>
12042 <TITLE>Nickname Selection Explained</TITLE>
12043 </HEAD>
12044 <BODY>
12045 <H1>SELECT NICKNAME</H1>
12046 <!--chtml if pinemode="function_key"-->
12047 <PRE>
12048 Navigating the List of Messages                 General Alpine Commands
12049 -------------------------------                 -----------------------
12050 F5   Move to previous entry                     F1  Show this help text
12051 F6   Move to next entry
12052 F7   Show previous screen of address book
12053 F8   Show next screen of address book
12054 F12  WhereIs (search through address book)
12056 Message Selection Commands
12057 --------------------------
12058 F3   Exit the Nickname Select screen (without selecting an address)
12059 F4   Select the currently highlighted entry
12060 </PRE>
12061 <!--chtml else-->
12062 <PRE>
12063 Navigating the List of Messages                 General Alpine Commands
12064 -------------------------------                 -----------------------
12065  P   Move to previous entry                     ?  Show this help text
12066  N   Move to next entry
12067  -   Show previous screen of address book
12068 Spc  (space bar) Show next screen of address book
12069  W   WhereIs (search through address book)
12071 Message Selection Commands
12072 --------------------------
12073  E   Exit the Nickname Select screen (without selecting an address)
12074  S   Select the currently highlighted entry
12075 </PRE>
12076 <!--chtml endif-->
12079 This screen is designed to let you look at the nicknames in your address
12080 books before choosing a new one.
12083 FOR MORE INFORMATION on addressing see
12084 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12085 <A HREF="h_abook_opened">Address Book Screen's</A>
12086 help text.
12088 &lt;End of help on this topic&gt;
12089 </BODY>
12090 </HTML>
12091 ===== h_takeaddr_screen =====
12092 <HTML>
12093 <HEAD>
12094 <TITLE>Take Address Screen Explained</TITLE>
12095 </HEAD>
12096 <BODY>
12097 <H1>TAKE ADDRESS COMMANDS</H1>
12098 <!--chtml if pinemode="function_key"-->
12099 <PRE>
12100 Navigating the List of Addresses       Address Selection Commands        
12101 --------------------------------       --------------------------        
12102  F5  Move to previous entry            F3  Exit without taking address
12103  F6  Move to next entry                F4  Take current address(es)
12104  F7  Show previous page of address list
12105  F8  Show next page of address list
12106  F2  WhereIs (search list)
12107                                --------------
12108 Mode Toggle            F9  Set/Unset current address
12109 -----------            F10 Set all
12110  F12 Toggle between List and single mode       F11 Unset all
12111 </PRE>
12112 <!--chtml else-->
12113 <PRE>
12114 Navigating the List of Addresses       Address Selection Commands
12115 --------------------------------       --------------------------
12116  P  Move to previous entry              &lt;  Exit without taking address
12117  N  Move to next entry                  T  Take address
12118  -  Show previous page of address list
12119 Spc (space bar) Show next page of address list
12120  W  WhereIs (search list)              List Mode
12121                                        ---------
12122 Single Mode                             X  Set/Unset current address
12123 -----------                             A  Set all addresses
12124  L  Switch to list mode                 U  Unset all addresses
12125                                         S  Switch to single mode
12126 </PRE>
12127 <!--chtml endif-->
12129 <H2>Description of the Take Address Screen</H2>
12131 This screen is designed to let you select one or more address/name
12132 combinations from the current message and put them into your address book.
12133 The cursor is initially placed on the line with the message author.
12134 Other lines include the names of people and/or mailing lists who also
12135 received the message.  Other people &quot;involved&quot; in the
12136 message (e.g. the person named as Reply-To:) are also listed here.
12139 The simple case is adding a new, single entry into your address book. To
12140 do this, simply highlight the correct line and press 
12141 <!--chtml if pinemode="function_key"-->
12143 <!--chtml else-->
12144 &quot;T&quot;.
12145 <!--chtml endif-->
12146 To create a new list or add to an existing list, switch the screen display
12147 into List Mode by pressing
12148 <!--chtml if pinemode="function_key"-->
12149 F12.
12150 <!--chtml else-->
12151 &quot;L&quot;.
12152 <!--chtml endif-->
12153 In List Mode, you select the
12154 group of addresses you wish to manipulate by marking them with an
12155 &quot;X&quot;.
12156 The Set/Unset
12157 <!--chtml if pinemode="function_key"-->
12158 (F9)
12159 <!--chtml else-->
12160 (&quot;X&quot;)
12161 <!--chtml endif-->
12162 command will turn the &quot;X&quot; on for the
12163 highlighted address if it was off or turn it off if it was previously on.
12164 The SetAll command will select all of the addresses, and the UnSetAll
12165 command will turn off all the selections.  Once you've gotten the
12166 selection the way you want it, you may create a new list by pressing
12167 <!--chtml if pinemode="function_key"-->
12169 <!--chtml else-->
12170 &quot;T&quot;.
12171 <!--chtml endif-->
12174 In both the simple and list cases, after choosing to take the address,
12175 you will be asked for the nickname of the entry.  Typing in a new name
12176 creates the new entry/list.  Entering an existing nickname will replace
12177 the entry (simple case) or add to the list (list case).  Alternatively,
12178 you can press Ctrl-T at the nickname prompt and select an existing
12179 nickname from your address book.
12182 You will normally start in Single Mode, unless you used the Apply command
12183 to startup the TakeAddr screen, in which case you will start in List Mode.
12184 You may switch between the two modes at any time.  If you've already
12185 selected several addresses in List Mode, those will be remembered when you
12186 switch to Single Mode and then back to List Mode.  The set of addresses
12187 that are pre-selected when you start in List Mode are the From addresses
12188 of all of the messages you are operating on.  You may, of course, easily
12189 erase those selections with the UnSetAll command.
12192 If you have more than one writable address book, you will be prompted for
12193 the name of the address book you wish to add the new entry to before
12194 anything else. You can use ^N and ^P to choose among the defined address
12195 books, or type in the address book name.
12198 FOR MORE INFORMATION on addressing see
12199 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12200 <A HREF="h_abook_opened">Address Book Screen's</A>
12201 help text.
12203 &lt;End of help on this topic&gt;
12204 </BODY>
12205 </HTML>
12206 ===== h_takeexport_screen =====
12207 <HTML>
12208 <HEAD>
12209 <TITLE>Take Export Screen Explained</TITLE>
12210 </HEAD>
12211 <BODY>
12212 <H1>TAKE EXPORT COMMANDS</H1>
12213 <!--chtml if pinemode="function_key"-->
12214 <PRE>
12215 Navigating the List of Addresses       Address Selection Commands        
12216 --------------------------------       --------------------------        
12217  F5  Move to previous entry            F3  Exit without taking address
12218  F6  Move to next entry                F4  Take current address(es)
12219  F7  Show previous page of address list
12220  F8  Show next page of address list
12221  F2  WhereIs (search list)
12222                                --------------
12223 Mode Toggle            F9  Set/Unset current address
12224 -----------            F10 Set all
12225  F12 Toggle between List and single mode       F11 Unset all
12226 </PRE>
12227 <!--chtml else-->
12228 <PRE>
12229 Navigating the List of Addresses       Address Selection Commands
12230 --------------------------------       --------------------------
12231  P  Move to previous entry              &lt;  Exit without taking address
12232  N  Move to next entry                  T  Take address
12233  -  Show previous page of address list
12234 Spc (space bar) Show next page of address list
12235  W  WhereIs (search list)              List Mode
12236                                        ---------
12237 Single Mode                             X  Set/Unset current address
12238 -----------                             A  Set all addresses
12239  L  Switch to list mode                 U  Unset all addresses
12240                                         S  Switch to single mode
12241 </PRE>
12242 <!--chtml endif-->
12244 <H2>Description of the Take Export Screen</H2>
12246 This screen is designed to let you select one or more addresses
12247 from the current message and put them into a file.
12248 Only the user@domain_name part of each address is put into the file.
12251 To put a single entry into a file simply highlight the correct line and press 
12252 <!--chtml if pinemode="function_key"-->
12254 <!--chtml else-->
12255 &quot;T&quot;.
12256 <!--chtml endif-->
12257 To put more than one entry into a file
12258 switch the screen display
12259 into List Mode by pressing
12260 <!--chtml if pinemode="function_key"-->
12261 F12.
12262 <!--chtml else-->
12263 &quot;L&quot;.
12264 <!--chtml endif-->
12265 In List Mode, you select the
12266 group of addresses you wish to manipulate by marking them with an
12267 &quot;X&quot;.
12268 The Set/Unset
12269 <!--chtml if pinemode="function_key"-->
12270 (F9)
12271 <!--chtml else-->
12272 (&quot;X&quot;)
12273 <!--chtml endif-->
12274 command will turn the &quot;X&quot; on for the
12275 highlighted address if it was off or turn it off if it was previously on.
12276 The SetAll command will select all of the addresses, and the UnSetAll
12277 command will turn off all the selections.  Once you've gotten the
12278 selection the way you want it, you may put the addresses in a file by typing
12279 <!--chtml if pinemode="function_key"-->
12281 <!--chtml else-->
12282 &quot;T&quot;.
12283 <!--chtml endif-->
12286 You will be asked for the name of a file to put the addresses in.
12287 If the file already exists, you will be asked whether you want to Overwrite
12288 (replace) the contents of the file or Append to the contents of the file.
12291 &lt;End of help on this topic&gt;
12292 </BODY>
12293 </HTML>
12294 ============= h_abook_view ========================
12295 <HTML>
12296 <HEAD>
12297 <TITLE>Address Book View Explained</TITLE>
12298 </HEAD>
12299 <BODY>
12300 This function allows you to view the contents of an address book entry. You
12301 can only view one entry at a time.
12303 <DL>
12304 <DT>Help
12305 <!--chtml if pinemode="function_key"-->
12306 (F1)
12307 <!--chtml else-->
12309 <!--chtml endif-->
12310 </DT>
12311 <DD>
12312 Display this help text.
12314 <DT>Abook
12315 <!--chtml if pinemode="function_key"-->
12316 (F3)
12317 <!--chtml else-->
12318 (&lt;)
12319 <!--chtml endif-->
12320 </DT>
12321 <DD>
12322 Go back to index of address book entries.
12324 <DT>Update
12325 <!--chtml if pinemode="function_key"-->
12326 (F4)
12327 <!--chtml else-->
12329 <!--chtml endif-->
12330 </DT>
12331 <DD>
12332 Update (modify) this entry.
12334 <DT>ComposeTo
12335 <!--chtml if pinemode="function_key"-->
12336 (F5)
12337 <!--chtml else-->
12339 <!--chtml endif-->
12340 </DT>
12341 <DD>Compose a message to the address(es) in this entry.
12343 <DT>Role
12344 <!--chtml if pinemode="function_key"-->
12345 (F6)
12346 <!--chtml else-->
12348 <!--chtml endif-->
12349 </DT>
12350 <DD>Compose a message to the address(es) in this entry using roles.
12352 <DT>Prev Page
12353 <!--chtml if pinemode="function_key"-->
12354 (F7)
12355 <!--chtml else-->
12357 <!--chtml endif-->
12358 </DT>
12359 <DD>
12360 Show the previous page of the current entry.
12362 <DT>Next Page
12363 <!--chtml if pinemode="function_key"-->
12364 (F8)
12365 <!--chtml else-->
12366 (Space)
12367 <!--chtml endif-->
12368 </DT>
12369 <DD>
12370 Show the next page of the current entry.
12372 <DT>Print
12373 <!--chtml if pinemode="function_key"-->
12374 (F9)
12375 <!--chtml else-->
12377 <!--chtml endif-->
12378 </DT>
12379 <DD>Print the current entry.  You can select the
12380 printer or the print command via the &quot;Setup&quot; command
12381 on the MAIN MENU.
12383 <DT>WhereIs
12384 <!--chtml if pinemode="function_key"-->
12385 (F10)
12386 <!--chtml else-->
12388 <!--chtml endif-->
12389 </DT>
12390 <DD>Search the entry for a string of letters.  If it is
12391 found, move to it.  The string can be one word or a phrase.
12392 If there are multiple occurrences, the cursor moves to the
12393 first occurrence beyond the current cursor position.
12395 <DT>Fwd Email
12396 <!--chtml if pinemode="function_key"-->
12397 (F11)
12398 <!--chtml else-->
12400 <!--chtml endif-->
12401 </DT>
12402 <DD>Begin composition of a new mail message with the displayed
12403 text already inserted in the message body.
12405 </DL>
12407 &lt;End of help on this topic&gt;
12408 </BODY>
12409 </HTML>
12410 ============= h_ldap_view ========================
12411 <HTML>
12412 <HEAD>
12413 <TITLE>LDAP Response View Explained</TITLE>
12414 </HEAD>
12415 <BODY>
12416 This function allows you to view the contents of a directory entry. You
12417 can only view one entry at a time.
12419 <DL>
12420 <DT>Help
12421 <!--chtml if pinemode="function_key"-->
12422 (F1)
12423 <!--chtml else-->
12425 <!--chtml endif-->
12426 </DT>
12427 <DD>
12428 Display this help text.
12430 <DT>Results Index
12431 <!--chtml if pinemode="function_key"-->
12432 (F3)
12433 <!--chtml else-->
12434 (&lt;)
12435 <!--chtml endif-->
12436 </DT>
12437 <DD>Go back to index of search results.
12439 <DT>ComposeTo
12440 <!--chtml if pinemode="function_key"-->
12441 (F5)
12442 <!--chtml else-->
12444 <!--chtml endif-->
12445 </DT>
12446 <DD>Compose a message to the address(es) in this entry.
12448 <DT>Role
12449 <!--chtml if pinemode="function_key"-->
12450 (F6)
12451 <!--chtml else-->
12453 <!--chtml endif-->
12454 </DT>
12455 <DD>Compose a message to the address(es) in this entry using roles.
12457 <DT>Prev Page
12458 <!--chtml if pinemode="function_key"-->
12459 (F7)
12460 <!--chtml else-->
12462 <!--chtml endif-->
12463 </DT>
12464 <DD>
12465 Show the previous page of the current entry.
12467 <DT>Next Page
12468 <!--chtml if pinemode="function_key"-->
12469 (F8)
12470 <!--chtml else-->
12471 (Space)
12472 <!--chtml endif-->
12473 </DT>
12474 <DD>
12475 Show the next page of the current entry.
12477 <DT>Print
12478 <!--chtml if pinemode="function_key"-->
12479 (F9)
12480 <!--chtml else-->
12482 <!--chtml endif-->
12483 </DT>
12484 <DD>Print the current entry on paper.  You can select the
12485 printer or the print command via the &quot;Setup&quot; command
12486 on the MAIN MENU.
12488 <DT>WhereIs
12489 <!--chtml if pinemode="function_key"-->
12490 (F10)
12491 <!--chtml else-->
12493 <!--chtml endif-->
12494 </DT>
12495 <DD>Search the entry for a string of letters.  If it is
12496 found, move to it.  The string can be one word or a phrase.
12497 If there are multiple occurrences, the cursor moves to the
12498 first occurrence beyond the current cursor position.
12500 <DT>Fwd Email
12501 <!--chtml if pinemode="function_key"-->
12502 (F11)
12503 <!--chtml else-->
12505 <!--chtml endif-->
12506 </DT>
12507 <DD>Begin composition of a new mail message with the displayed
12508 text already inserted in the message body.
12510 <DT>Save
12511 <!--chtml if pinemode="function_key"-->
12512 (F12)
12513 <!--chtml else-->
12515 <!--chtml endif-->
12516 </DT>
12517 <DD>Save the displayed entry to one of your address books or export
12518 it to a file.
12519 </DL>
12521 &lt;End of help on this topic&gt;
12522 </BODY>
12523 </HTML>
12524 ===== h_attachment_screen =====
12525 <HTML>
12526 <HEAD>
12527 <TITLE>Attachment Index Screen Explained</TITLE>
12528 </HEAD>
12529 <BODY>
12530 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
12531 message's attachments, and allows various operations on them.  The
12532 first attachment is usually the message text, but does not include the
12533 header portion of the message.
12535 Available commands include:
12537 <DL>
12539 <DT>Help</DT>
12540 <DD>Show this help text.
12542 <DT>Msg #<I>num</I></DT>
12543 <DD>Leave this screen without displaying or saving any attachments.
12545 <DT>View</DT>
12546 <DD>View the currently selected attachment.
12548 <DT>Prev Attach</DT>
12549 <DD>Move to previous attachment.
12551 <DT>Next Attach</DT>
12552 <DD>Move to next attachment.
12554 <DT>Prev Page</DT>
12555 <DD>Previous page of the listed attachments.
12557 <DT>Next Page</DT>
12558 <DD>Next page of the listed attachments.
12560 <DT>Delete</DT>
12561 <DD>Mark the currently selected attachment for Deletion.
12562 This does not modify the current message by deleting the attachment from
12563 it, but instead the delete flag <EM>only</EM> has an effect when saving
12564 the message to a folder.
12565 Attachments marked for deletion are not copied to the destination folder
12566 along with the rest of the message when it is saved.
12567 It is ok for the destination folder to be the same as the current folder.
12568 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
12570 <DT>Undelete</DT>
12571 <DD>Turn off the Delete flag for the selected attachment.
12573 <DT>Save</DT>
12574 <DD>Save the selected attachment to a file.  If the attachment is of
12575 type &quot;RFC822/Message&quot;, then the attachment will be saved to
12576 the specified mail folder.
12578 <DT>Export</DT>
12579 <DD>If the attachment is of
12580 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12581 copy the message to a file in the same way this command works on 
12582 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12584 <DT>Pipe</DT>
12585 <DD>Pipe the attachment contents into a UNIX command (if enabled).
12586 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
12588 <DT>WhereIs</DT>
12589 <DD>Find a matching string in the attachment list.
12591 <DT>AboutAttch</DT>
12592 <DD>Examine various aspects of the selected attachment.
12594 <DT>Print</DT>
12595 <DD>Print the selected attachment.
12597 <DT>Forward</DT>
12598 <DD>Forward the selected attachment as an attachment.
12599 </DL>
12603 All attachments can be saved or piped into a UNIX command, but some may
12604 not be readily displayed by either Alpine or an external tool.  In such
12605 cases, the reason why the message cannot be displayed is displayed on
12606 Alpine's message line.
12608 &lt;End of help on this topic&gt;
12609 </BODY>
12610 </HTML>
12611 ============= h_mail_text_att_view ========================
12612 <HTML>
12613 <HEAD>
12614 <TITLE>Attachment View Screen Explained</TITLE>
12615 </HEAD>
12616 <BODY>
12617 This function allows you to view the contents of a text attachment. You
12618 can only view one attachment at a time.
12620 Available commands include:
12622 <DL>
12624 <DT>Help</DT>
12625 <DD>Display this help text
12627 <DT>AttchIndex</DT>
12628 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
12630 <DT>Prev Page</DT>
12631 <DD>Show the previous page of the current attachment.
12633 <DT>Next Page</DT>
12634 <DD>Show the next page of the current attachment by pressing the space bar.
12636 <DT>Delete</DT>
12637 <DD>Mark the viewed attachment for Deletion.  The delete
12638 flag <EM>only</EM> has affect when saving the message to a folder.
12639 Attachments marked for deletion are exluded from the messsage when
12640 it is saved.  In addition, the delete mark <EM>only</EM> applies to
12641 this Alpine session.
12643 <DT>Undelete</DT>
12644 <DD>Turn off the Delete flag for the selected attachment.
12646 <DT>Save</DT>
12647 <DD>Copy the current attachment to a file.  If you just enter
12648 a filename, the attachment will be saved with that name in
12649 your home directory 
12650 <!--chtml if pinemode="running"-->
12651 (which, in the present configuration of your system, is
12652  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12653 <!--chtml endif-->
12654 or current working directory
12655 <!--chtml if pinemode="running"-->
12656 (which, at least for your current Alpine &quot;session,&quot; 
12657 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12658 <!--chtml endif-->, depending on the
12659 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12660 configuration setting.  You may enter the full
12661 path and filename to save it in another directory instead.
12663 <DT>Export</DT>
12664 <DD>If the attachment is of
12665 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12666 copy the message to a file in the same way this command works on 
12667 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12668 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
12669 defined, they may affect the contents of the exported file.)
12671 <DT>Pipe</DT>
12672 <DD>Pipe the attachment contents into a UNIX command (if enabled)
12674 <DT>WhereIs</DT>
12675 <DD>Search the attachment for a string of letters.  If it is
12676 found, move to it.  The string can be one word or a phrase.
12677 If there are multiple occurrences, the cursor moves to the
12678 first occurrence beyond the current cursor position.
12680 <DT>Print</DT>
12681 <DD>Print the current attachment on paper.  You can select the
12682 printer or the print command via the &quot;Setup&quot; command
12683 on the MAIN MENU.
12685 <DT>Forward</DT>
12686 <DD>Forward the selected attachment as an attachment.
12687 </DL>
12689 &lt;End of help on this topic&gt;
12690 </BODY>
12691 </HTML>
12692 ============= h_journal ==============
12693 <HTML>
12694 <HEAD>
12695 <TITLE>Recent Message Journal Explained</TITLE>
12696 </HEAD>
12697 <BODY>
12699 The following commands are available on this screen:
12701 <DL>
12702 <DT>Help</DT>
12703 <DD>Show this help text
12705 <DT>Exit</DT>
12706 <DD>Exit Viewer, and go back to mail processing
12708 <DT>Prev Page</DT>
12709 <DD>Show the previous page text
12711 <DT>Next Page</DT>
12712 <DD>Show the next page of text by pressing the space bar
12714 <DT>Print</DT>
12715 <DD>Print the displayed text on paper.  You can select the
12716 printer or the print command via the &quot;Setup&quot; command
12717 on the MAIN MENU.
12719 <DT>Fwd Email</DT>
12720 <DD>Begin composition of a new mail message with the displayed
12721 text already inserted in the message body.
12723 <DT>Save</DT>
12724 <DD>Copy the displayed text to a file.  If you just enter
12725 a filename, the text will be saved with that name in
12726 your 
12727 home directory 
12728 <!--chtml if pinemode="running"-->
12729 (which, in the present configuration of your system, is
12730  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12731 <!--chtml endif-->
12732 or current working directory
12733 <!--chtml if pinemode="running"-->
12734 (which, at least for your current Alpine &quot;session,&quot; 
12735 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12736 <!--chtml endif-->, depending on the
12737 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12738 configuration setting.   You may enter the full
12739 path and filename to save it in another directory instead.
12741 <DT>WhereIs</DT>
12742 <DD>Search the text for a string of letters.  If it is
12743 found, move to it.  The string can be one word or a phrase.
12744 If there are multiple occurrences, the cursor moves to the
12745 first occurrence beyond the current cursor position.
12746 </DL>
12748 &lt;End of help on this topic&gt;
12749 </BODY>
12750 </HTML>
12751 ============= h_debugjournal ==============
12752 <HTML>
12753 <HEAD>
12754 <TITLE>Debug Journal Explained</TITLE>
12755 </HEAD>
12756 <BODY>
12758 The following commands are available on this screen:
12760 <DL>
12761 <DT>Help</DT>
12762 <DD>Show this help text
12764 <DT>Exit</DT>
12765 <DD>Exit Viewer, and go back to mail processing
12767 <DT>Timestamps</DT>
12768 <DD>Turn on or off timestamps.
12770 <DT>DebugView</DT>
12771 <DD>Set the level of debugging you want to see. The level may be any number
12772 in the range 0-9. Higher numbers show more debugging detail. Note that the
12773 debugging information has already been captured. This setting just causes the
12774 debugging information that you see to be filtered. If you set this to
12775 the number &quot;5&quot; then you will be shown all of the debugging information
12776 at levels 5 and below.
12777 It's actually a bit more complicated than that. A fixed amount of memory
12778 is used to store the debug information.
12779 Since the amount of memory used is limited the debugging information
12780 has to be trimmed back when it gets too large.
12782 <DT>Prev Page</DT>
12783 <DD>Show the previous page text
12785 <DT>Next Page</DT>
12786 <DD>Show the next page of text by pressing the space bar
12788 <DT>Print</DT>
12789 <DD>Print the displayed text on paper.  You can select the
12790 printer or the print command via the &quot;Setup&quot; command
12791 on the MAIN MENU.
12793 <DT>Fwd Email</DT>
12794 <DD>Begin composition of a new mail message with the displayed
12795 text already inserted in the message body.
12797 <DT>Save</DT>
12798 <DD>Copy the displayed text to a file.  If you just enter
12799 a filename, the text will be saved with that name in
12800 your 
12801 home directory 
12802 <!--chtml if pinemode="running"-->
12803 (which, in the present configuration of your system, is
12804  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12805 <!--chtml endif-->
12806 or current working directory
12807 <!--chtml if pinemode="running"-->
12808 (which, at least for your current Alpine &quot;session,&quot; 
12809 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12810 <!--chtml endif-->, depending on the
12811 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12812 configuration setting.   You may enter the full
12813 path and filename to save it in another directory instead.
12815 <DT>WhereIs</DT>
12816 <DD>Search the text for a string of letters.  If it is
12817 found, move to it.  The string can be one word or a phrase.
12818 If there are multiple occurrences, the cursor moves to the
12819 first occurrence beyond the current cursor position.
12820 </DL>
12822 &lt;End of help on this topic&gt;
12823 </BODY>
12824 </HTML>
12825 ============= h_simple_text_view ==============
12826 <HTML>
12827 <HEAD>
12828 <TITLE>Simple Text View Screen Explained</TITLE>
12829 </HEAD>
12830 <BODY>
12832 The following commands are available on this screen:
12834 <DL>
12835 <DT>Help</DT>
12836 <DD>Show this help text
12838 <DT>Exit</DT>
12839 <DD>Exit Viewer, and go back to mail processing
12841 <DT>Prev Page</DT>
12842 <DD>Show the previous page text
12844 <DT>Next Page</DT>
12845 <DD>Show the next page of text by pressing the space bar
12847 <DT>Print</DT>
12848 <DD>Print the displayed text on paper.  You can select the
12849 printer or the print command via the &quot;Setup&quot; command
12850 on the MAIN MENU.
12852 <DT>Fwd Email</DT>
12853 <DD>Begin composition of a new mail message with the displayed
12854 text already inserted in the message body.
12856 <DT>Save</DT>
12857 <DD>Copy the displayed text to a file.  If you just enter
12858 a filename, the attachment will be saved with that name in
12859 your 
12860 home directory 
12861 <!--chtml if pinemode="running"-->
12862 (which, in the present configuration of your system, is
12863  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12864 <!--chtml endif-->
12865 or current working directory
12866 <!--chtml if pinemode="running"-->
12867 (which, at least for your current Alpine &quot;session,&quot; 
12868 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12869 <!--chtml endif-->, depending on the
12870 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12871 configuration setting.   You may enter the full
12872 path and filename to save it in another directory instead.
12874 <DT>WhereIs</DT>
12875 <DD>Search the attachment for a string of letters.  If it is
12876 found, move to it.  The string can be one word or a phrase.
12877 If there are multiple occurrences, the cursor moves to the
12878 first occurrence beyond the current cursor position.
12879 </DL>
12881 &lt;End of help on this topic&gt;
12882 </BODY>
12883 </HTML>
12884 ======= h_pine_for_windows ========
12885 <HTML>
12886 <HEAD>
12887 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
12888 </HEAD>
12889 <BODY>
12890 <H1>Getting Help In PC-Alpine</H1>
12893 PC-Alpine offers general and specific help text. From the <A
12894 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
12895 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
12896 specific help for that screen is available from the toolbar Help menu or
12897 with the 
12898 <!--chtml if pinemode="function_key"-->
12899 &quot;F1&quot; key.
12900 <!--chtml else-->
12901 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
12902 typing &quot;?&quot; would be mistaken as entering text.
12903 <!--chtml endif-->
12906 Although this version of Alpine is for Microsoft Windows, it is not
12907 considered a full &quot;Graphical User Interface&quot; application. 
12908 Yet, many of the controls that Windows users are accustomed to seeing, 
12909 such as scrollbars and toolbars, are available.
12912 PC-Alpine offers considerable mouse support.  You can view what is
12913 &quot;click-able&quot; by dragging your mouse over any screen; when the
12914 arrow cursor changes into a hand, you found something. Mouse-click
12915 possibilities include navigating between screens and folders and
12916 double-clicking on hyperlinks to open your Web browser.
12917 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
12918 screen.  Examples of right-click options include &quot;copy&quot; after
12919 selecting text to copy and &quot;View in New Window&quot; when you click
12920 on a particular message in the Message Index. The menu choices available
12921 to you will vary based upon what screen is open, where on the screen your
12922 cursor is located, and even what action you have already taken.
12925 &lt;End of help on this topic&gt;
12926 </BODY>
12927 </HTML>
12928 ===== h_composer =====
12929 <HTML>
12930 <HEAD>
12931 <TITLE>COMPOSER COMMANDS</TITLE>
12932 </HEAD>
12933 <BODY>
12934 <H1>COMPOSER COMMANDS</H1>
12936 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>
12937 &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>
12938 &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>
12939 &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>
12940 &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>
12941 &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>
12942 &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>
12943 &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>
12944 &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>
12945 &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>
12946 ---------------------------------------|&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>
12947 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>
12948 &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>
12949 &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>
12950 &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>
12953 NOTE:
12954 <OL>
12955  <LI>For help on a particular command, highlight the bold text associated
12956 with it above and hit Return.
12957  <LI> The availability of certain commands
12958 is determined by Alpine configuration files and system capabilities.
12959 At some sites, certain commands may not be available due to security or
12960 support concerns.
12961  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
12962 Ctrl-&#92;, ESC.
12963  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
12964 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
12965 </OL>
12968 HINT: To move rapidly to the bottom of a message you are composing,
12969 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
12970 with the Mark and Cut commands to eliminate large amounts of unwanted
12971 text in a Reply.
12973 <H2>Description of Composer</H2>
12975 Alpine has a built-in editing program that allows you to compose messages
12976 without having to leave Alpine.  The editor is designed to be very simple to
12977 use so that you can get started writing email right away.
12980 Messages are usually just text, about 80 columns wide.  Using upper and
12981 lower case is encouraged.  On some systems the size limit of the message
12982 is about 100,000 characters, which is about 2,000 lines.  You can include
12983 punctuation and special characters found on most keyboards, but you can't
12984 include characters with diacritical marks and certain special symbols.
12987 Text automatically wraps as you type past the end of a line so you do not
12988 have to hit return.  Using the
12989 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
12990 you can also reformat text explicitly, perhaps after you have
12991 deleted some text.
12994 You can include other text files with the 
12995 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
12996 which will prompt you for the name of the file to insert at the
12997 current cursor postion.
13000 <UL>
13001 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13002 </UL>
13004 &lt;End of help on this topic&gt;
13005 </BODY>
13006 </HTML>
13007 ====== h_composer_browse =====
13008 <HTML>
13009 <HEAD>
13010 <TITLE>BROWSER</TITLE>
13011 </HEAD>
13012 <BODY>
13013 <H1>BROWSER</H1>
13014 This screen lets you browse your files and directories.  To go to another 
13015 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13016 choose &quot;Select&quot; (the default choice on the menu); 
13017 or choose &quot;Goto&quot; and enter the name of the directory.
13018 <!--chtml if pinemode="os_windows"-->
13019 <!--chtml else--> 
13020 In Unix Alpine, you may use 
13021 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13022 to another's home directory.  
13023 <!--chtml endif--><P>
13024 To select a file, move the cursor to it and 
13025 choose &quot;Select&quot; (the default choice on the menu).  
13027 <UL>
13028 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13029 inclusion in the 
13030 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13031 the 
13032 &quot;----- Message Text -----&quot; line
13033 while composing, then &quot;To Files&quot;):  Since the file 
13034 selected will become part of the message text, it must be in a format 
13035 suitable for that (Alpine does not check!), such as a plain text file.
13036 Files of other formats (for example, graphics, databases, software 
13037 programs) should be 
13038 <B>attached</B> to the message instead --
13039 by moving the cursor in the COMPOSE MESSAGE screen into the 
13040 message header area and pressing 
13041 <!--chtml if pinemode="function_key"-->
13043 <!--chtml else-->
13044 Ctrl-J.
13045 <!--chtml endif--> 
13047 <P><LI>
13048 Note <B>if</B> you are currently using the BROWSER for saving a message 
13049 attachment, or exporting a message, to a file: You can use the Add command to 
13050 provide the name for a new file to save/export to, and then select that name 
13051 to use it for the save/export operation.  Back at the prompt 
13052 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13053 either Overwrite or Append (it doesn't make a difference, since the file is 
13054 so far empty).  Note: If you cancel the 
13055 operation at that point, the file created with the Add command will remain 
13056 0 bytes in size.
13058 </UL>
13059 <P><UL>
13060 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13061 </UL>
13063 &lt;End of help on this topic&gt;
13064 </BODY>
13065 </HTML>
13066 ====== h_composer_ins =====
13067 <HTML>
13068 <HEAD>
13069 <TITLE>INSERT TEXT FILE</TITLE>
13070 </HEAD>
13071 <BODY>
13072 <H1>INSERT TEXT FILE</H1>
13074 Use this function to insert a text file. The file name
13075 given can be an absolute file path name for your system
13076 <!--chtml if pinemode="os_windows"-->
13077 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13078 with a relative pathname, or simply a file name without
13079 drive or directory specification.  
13080 <!--chtml else-->
13081 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13082 a file in your home directory, or a file path relative to your 
13083 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13084 your home directory or &quot;~user&quot; to refer to another
13085 account's home directory.
13086 <!--chtml endif-->
13088 No wild card characters may be used.  
13089 The file must reside on the system running Alpine.
13091 If the 
13092 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13093 feature is set, names are relative to your current working directory 
13094 <!--chtml if pinemode="running"-->
13095 (which, at least for your current Alpine &quot;session,&quot; 
13096 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13097 <!--chtml endif-->
13098 rather than your home directory
13099 <!--chtml if pinemode="running"-->
13100 (which, in the present configuration of your system, is
13101  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13102 <!--chtml endif-->
13104 <P><UL>
13105 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13106 </UL>
13108 &lt;End of help on this topic&gt;
13109 </BODY>
13110 </HTML>
13111 ====== h_composer_ins_m =====
13112 <HTML>
13113 <HEAD>
13114 <TITLE>INSERT MESSAGE</TITLE>
13115 </HEAD>
13116 <BODY>
13117 <H1>INSERT MESSAGE</H1>
13119 Type in the number of a message in the currently open folder to insert it
13120 into your message.
13121 <P><UL>
13122 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13123 </UL>
13125 &lt;End of help on this topic&gt;
13126 </BODY>
13127 </HTML>
13128 ====== h_composer_search =====
13129 <HTML>
13130 <HEAD>
13131 <TITLE>Explanation of Composer Whereis Command </TITLE>
13132 </HEAD>
13133 <BODY>
13134 <H1>Help For Whereis Command</H1>
13136 Whereis is used to search the message for a word or part of a word.
13137 When searching in the composer, only the message part of your mail is
13138 searched, and the cursor is put on the first occurrence appearing
13139 after the location of the cursor.  The search will wrap to the
13140 beginning of the message when it no longer finds matches in the
13141 remainder of the message.
13143 To search for the same string a second time, press 
13144 <!--chtml if pinemode="function_key"-->
13145 &quot;F6&quot;
13146 <!--chtml else-->
13147 &quot;^W&quot;
13148 <!--chtml endif-->
13149 to begin search and then just press RETURN to accept the previous
13150 search string shown in square brackets rather than entering a new
13151 search string.<P>
13153 The &quot;Search&quot; prompt has several sub-command available:
13155 <DL>
13156 <DT>Get Help</DT>
13157 <DD> Takes you to this help page.
13159 <DT>Cancel</DT>
13160 <DD> Cancels the prompt.  No search takes place.
13162 <DT>First Line</DT>
13163 <DD> Takes you back to the composer with the cursor on the first character
13164 of the first line of text.
13166 <DT>Last Line</DT>
13167 <DD> Takes you back to the composer with the cursor on the last character
13168 of the last line of text.
13170 <DT>Replace (Optional)</DT>
13171 <DD> This sub-command is enabled by the 
13172 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13173 feature (which is on by default); see its help screen for details on how replacing works.
13175 </DL>
13177 &lt;End of help on this topic&gt;
13178 </BODY>
13179 </HTML>
13180 ====== h_sigedit_search =====
13181 <HTML>
13182 <HEAD>
13183 <TITLE>Explanation of Whereis Command </TITLE>
13184 </HEAD>
13185 <BODY>
13186 <H1>Help For Whereis Command</H1>
13188 Whereis is used to search for a word or part of a word.
13189 When searching the cursor is put on the first occurrence appearing
13190 after the location of the cursor.  The search will wrap to the
13191 beginning of the signature when it no longer finds matches in the
13192 remainder of the signature.
13194 To search for the same string a second time, press 
13195 <!--chtml if pinemode="function_key"-->
13196 &quot;F6&quot;
13197 <!--chtml else-->
13198 &quot;^W&quot;
13199 <!--chtml endif-->
13200 to begin search and then just press RETURN to accept the previous
13201 search string shown in square brackets rather than entering a new
13202 search string.<P>
13204 The &quot;Search&quot; prompt has several sub-command available:
13206 <DL>
13207 <DT>Get Help</DT>
13208 <DD> Takes you to this help page.
13210 <DT>Cancel</DT>
13211 <DD> Cancels the prompt.  No search takes place.
13213 <DT>First Line</DT>
13214 <DD> Takes you back to the composer with the cursor on the first character
13215 of the first line of text.
13217 <DT>Last Line</DT>
13218 <DD> Takes you back to the composer with the cursor on the last character
13219 of the last line of text.
13221 <DT>Replace (Optional)</DT>
13222 <DD> This sub-command is enabled by the 
13223 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13224 feature (which is on by default); see its help screen for details on how replacing works.
13226 </DL>
13228 &lt;End of help on this topic&gt;
13229 </BODY>
13230 </HTML>
13231 ======= h_composer_to ====
13232 <HTML>
13233 <HEAD>
13234 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13235 </HEAD>
13236 <BODY>
13237 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13239 <H2>The &quot;To:&quot; field</H2>
13240 The address you enter here must be a valid email address that is reachable
13241 from your site. 
13243 <H2>Email Address Format</H2>
13244 You may enter a full name and email address, 
13245 <!--chtml if pinemode="os_windows"-->
13246 <!--chtml else-->
13247 a local (meaning, on the same 
13248 host as the one you are running Alpine on) username that Alpine will
13249 complete for you, 
13250 <!--chtml endif-->
13251 the nickname of someone in a 
13252 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13253 mail alias defined by your system administrator.  When you move the cursor
13254 out of this field, the nicknames will be expanded to the addresses in your
13255 address book, and the local usernames will be expanded to include the 
13256 persons' actual names.  You may enter as many addresses as you wish, but they 
13257 must be separated by commas.  You can move around this and other header fields
13258 with the arrow keys and use many of the usual composer editing keys.
13260 <UL>
13261 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13262 </UL>
13265 <H2>MESSAGE HEADER COMMANDS</H2>
13266 <!--chtml if pinemode="function_key"-->
13267 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13268 ^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>
13269 ^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>
13270 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13271 ^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>
13272 ^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>
13273 ^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>
13274 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>
13275 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>
13276 ^@&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>
13277 ----------------------------------------|<BR>
13278 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13279 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>
13280 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>
13281 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>
13282 <!--chtml else-->
13283 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13284 ^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>
13285 ^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>
13286 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13287 ^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>
13288 ^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>
13289 ^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>
13290 ^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>
13291 ^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>
13292 ^@&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>
13293 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13294 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>
13295 ^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>
13296 ^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>
13297 ^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>
13298 <!--chtml endif-->
13301 NOTE:
13302 <OL>
13303  <LI>For help on a particular command, highlight the bold text associated
13304 with it above and hit Return.
13305  <LI> The availability of certain commands 
13306 is determined by Alpine configuration files and system capabilities.
13307 At some sites, certain commands may not be available due to security or
13308 support concerns.
13309 </OL>
13312 <UL>   
13313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13314 </UL><P>
13315 &lt;End of help on this topic&gt;
13316 </BODY>
13317 </HTML>
13318 ======= h_composer_cc ====
13319 <HTML>
13320 <HEAD>
13321 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13322 </HEAD>
13323 <BODY>
13324 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13325 The Cc: field is just like the To: field, except it is used for addressees
13326 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13327 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13328 them to see the message.  The only difference the recipients see is that their 
13329 name is in the Cc: field, rather than the To: field.
13331 For help with Cc: field editing
13332 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13334 <UL>
13335 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13336 </UL>
13338 <UL>   
13339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13340 </UL><P>
13341 &lt;End of help on this topic&gt;
13342 </BODY>
13343 </HTML>
13344 ======= h_composer_bcc ====
13345 <HTML>
13346 <HEAD>
13347 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
13348 </HEAD>
13349 <BODY>
13350 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
13351 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
13352 a copy of the message to one or more people whose addresses you do not
13353 wish disclosed, either to reduce clutter or for confidentiality.
13355 The format of the Bcc: field is just the same as the To: and Cc: fields in
13356 the way the addresses are entered.  The recipients listed here will
13357 receive a copy of the message, but --assuming your site's mail transport
13358 software is properly configured-- their addresses will not show up in the
13359 headers of the message, as delivered to all of the recipients.  The To:
13360 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
13362 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
13363 will automatically generate and place in the To: field a pseudo-address of 
13364   &quot;undisclosed-recipients: ;&quot;
13365 or whatever string has been specified in the 
13366 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13367 variable.
13369 The reason for this is to avoid embarrassment caused by some Internet
13370 mail transfer software that interprets a &quot;missing&quot; To: header as 
13371 an error and replaces it with an Apparently-to: header that may contain
13372 the addresses you entered on the Bcc: line.  In addition, it may be
13373 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
13375 You can manipulate what text ends up on the (originally) empty To:
13376 field.  Just remember to put a colon and semicolon at the end of the
13377 field, which is a special notation denoting that it is not a real address.
13379 For information on message header editing
13380 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13382 <UL>
13383 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13384 </UL>
13386 <UL>   
13387 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13388 </UL><P>
13389 &lt;End of help on this topic&gt;
13390 </BODY>
13391 </HTML>
13392 ======= h_composer_lcc ====
13393 <HTML>
13394 <HEAD>
13395 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
13396 </HEAD>
13397 <BODY>
13398 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
13399 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
13400 you wish to send a message to a list of people but avoid having all
13401 of their addresses visible, in order to reduce clutter when the
13402 message is received.
13404 It is similar to the 
13405 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
13406 in that individual
13407 addressees are hidden, but Lcc is designed to work specifically with
13408 distribution lists you have created in your 
13409 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
13410 the nickname of the list on the Lcc line will result in the full name of
13411 your Alpine Address Book list being placed on the To: line of the message,
13412 using a special notation that distinguishes it from a real address. You
13413 must leave the To: line blank for your list name to appear there.
13415 For example, if you have this list entered in your Address Book:<PRE>
13417         largo         Key Largo List       DISTRIBUTION LIST:
13418                                            bogie@mgm.com
13419                                            lauren@mgm.com
13420                                            walter@mgm.com</PRE>
13423 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
13424 the result is:<PRE>
13426         To      : Key Largo List: ;
13427         Cc      :
13428         Bcc     :
13429         Fcc     : sent-mail
13430         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
13431                   lauren@mgm.com,
13432                   walter@mgm.com
13433         Subject :</PRE>
13435 Each recipient listed on the Lcc: line receives a copy of the message
13436 without their address being visible (as though they were listed on the
13437 Bcc: line). The colon-semicolon notation used to put the full-name of the
13438 list on the To: line is a special address format that doesn't specify any
13439 actual addressees, but does give some information to the recipients of the
13440 message.
13442 Note: if after entering an LCC, you delete the list name that is placed
13443 on the To: line, then recipients will see <PRE>
13444        To: undisclosed-recipients: ;</PRE>
13446 (or whatever string is defined in the 
13447 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13448 variable) just as in the BCC case. 
13450 For help with Lcc: field editing
13451 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13453 <UL>
13454 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13455 </UL>
13457 <UL>   
13458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13459 </UL><P>
13460 &lt;End of help on this topic&gt;
13461 </BODY>
13462 </HTML>
13463 ======= h_composer_from =======
13464 <HTML>
13465 <HEAD>
13466 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
13467 </HEAD>
13468 <BODY>
13469 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
13471 This header carries your return address.  It is the address toward which
13472 replies (and often, future unrelated correspondence) will be directed,
13473 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
13474 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
13475 sure this address is correct.
13477 For help with message header editing
13478 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13480 <UL>
13481 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13482 </UL>
13484 <UL>   
13485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13486 </UL><P>
13487 &lt;End of help on this topic&gt;
13488 </BODY>
13489 </HTML>
13490 ======= h_composer_reply_to =======
13491 <HTML>
13492 <HEAD>
13493 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
13494 </HEAD>
13495 <BODY>
13496 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
13498 Most people should not need this header. The Reply-To: header is used in
13499 cases where you would like replies to your messages to be directed to an
13500 address other than your normal &quot;From:&quot; address.  This is atypical, 
13501 but can happen when you use multiple machines and do not have the same account
13502 name on each one, or when you wish to direct certain replies to accounts
13503 or folders designated for specific classes of correspondence.
13505 For help with message header editing
13506 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13508 <UL>
13509 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13510 </UL>
13513 <UL>   
13514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13515 </UL><P>
13516 &lt;End of help on this topic&gt;
13517 </BODY>
13518 </HTML>
13519 ======= h_composer_custom_addr ====
13520 <HTML>
13521 <HEAD>
13522 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13523 </HEAD>
13524 <BODY>
13525 <H1>CUSTOMIZED HEADER FIELD</H1>
13526 This is a customized header, i.e. not one that is part of Alpine's normal
13527 set of Compose headers.
13529 For help with message header editing
13530 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13532 <UL>
13533 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13534 </UL>
13536 <UL>   
13537 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13538 </UL><P>
13539 &lt;End of help on this topic&gt;
13540 </BODY>
13541 </HTML>
13542 ======= h_composer_custom_free ====
13543 <HTML>
13544 <HEAD>
13545 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13546 </HEAD>
13547 <BODY>
13548 <H1>CUSTOMIZED HEADER FIELD</H1>
13549 This is a customized header, i.e. not one that is part of Alpine's normal
13550 set of Compose headers.
13552 This field consists of arbitrary text.
13554 For help with message header editing
13555 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13557 <UL>   
13558 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13559 </UL><P>
13560 &lt;End of help on this topic&gt;
13561 </BODY>
13562 </HTML>
13563 ====== h_composer_news =====
13564 <HTML>
13565 <HEAD>
13566 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
13567 </HEAD>
13568 <BODY>
13569 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
13570 Use the newsgroups line to specify any and all USENET newsgroups to which
13571 your message should be posted.  When composing a message from scratch, this
13572 line may be hidden.  If so, just press the rich headers command
13573 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
13574 to make it visible.
13576 <EM>Be aware</EM> that when you post to a newsgroup thousands of
13577 people will be reading your message.  Also, you or your system manager
13578 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
13579 in order for you to be able to post.
13581 For help with message header editing
13582 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13583 <P><UL>
13584 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13585 </UL>
13587 &lt;End of help on this topic&gt;
13588 </BODY>
13589 </HTML>
13590 ======= h_composer_fcc ====
13591 <HTML>
13592 <HEADER>
13593 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
13594 </HEADER>
13595 <BODY>
13596 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
13597 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
13598 each outgoing message.  The default value can be configured with the
13599 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
13600 the file carbon copy on any message you send by editing the FCC header.<p>
13602 You may type ^T to get a list of all your folders and select one to use as
13603 the FCC for this message.<P>
13605 For help with message header editing
13606 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13608 <UL>   
13609 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13610 </UL><P>
13611 &lt;End of help on this topic&gt;
13612 </BODY>
13613 </HTML>
13614 ======= h_composer_subject ====
13615 <HTML>
13616 <HEADER>
13617 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
13618 </HEADER>
13619 <BODY>
13620 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
13622 The subject header provides a place to enter a few words that summarize
13623 the topic of the message you are sending.  You may leave this line blank,
13624 but it is considered a courtesy to use a meaningful subject.<p>
13626 For help with message header editing
13627 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13629 <UL>   
13630 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13631 </UL><P>
13632 &lt;End of help on this topic&gt;
13633 </BODY>
13634 </HTML>
13635 ======= h_composer_attachment ====
13636 <HTML>
13637 <HEAD>
13638 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
13639 </HEAD>
13640 <BODY>
13641 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
13643 The &quot;Attchmnt:&quot; field is where you specify what file or
13644 files you'd like attached to
13645 the message you are composing.  Those files must reside on the machine
13646 running Alpine. If your file is on a PC or Mac and you run Alpine with an
13647 account on a Unix machine, you'll have to transfer it before attaching it.
13648 Contact local computer support people for assistance with transferring.
13651 The file name
13652 given can be an absolute file path name for your system
13653 <!--chtml if pinemode="os_windows"-->
13654 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13655 with a relative pathname, or simply a file name without
13656 drive or directory specification.  
13657 <!--chtml else-->
13658 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13659 a file in your home directory, or a file path relative to your 
13660 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13661 your home directory or &quot;~user&quot; to refer to another
13662 account's home directory.
13663 <!--chtml endif--><P>
13664 No wild card characters may be used.
13665 <P>If the 
13666 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13667 feature is set, names are relative to your current working directory 
13668 <!--chtml if pinemode="running"-->
13669 (which, at least for your current Alpine &quot;session,&quot; 
13670 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13671 <!--chtml endif-->
13672 rather than your home directory
13673 <!--chtml if pinemode="running"-->
13674 (which, in the present configuration of your system, is
13675  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13676 <!--chtml endif-->
13679 Alpine uses MIME encoding for attachments, so binaries and files of any
13680 length can safely be delivered to any MIME-capable mail reading program.
13681 If you send an attachment to someone who does not have a MIME-capable mail
13682 reading program yet, then the main message text will be readable, but
13683 attachments (even attachments that are just plain text) are not.
13686 Typing the filename on the Attchmnt: line achieves the same
13687 result as using the 
13688 <!--chtml if pinemode="function_key"-->
13690 <!--chtml else-->
13691 Ctrl-J
13692 <!--chtml endif--> command.
13695 If you Forward a message with attachments, you may delete them from your
13696 Forwarded message by editing the Attchmnt header line.
13699 For help with message header editing
13700 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13702 <UL>   
13703 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13704 </UL><P>
13705 &lt;End of help on this topic&gt;
13706 </BODY>
13707 </HTML>
13708 ======= h_composer_ctrl_j ====
13709 <HTML>
13710 <HEAD>
13711 <TITLE>COMPOSER ATTACH</TITLE>
13712 </HEAD>
13713 <BODY>
13714 After the
13715 <!--chtml if pinemode="function_key"-->
13717 <!--chtml else-->
13718 Ctrl-J
13719 <!--chtml endif--> command:
13720 At the &quot;File to attach:&quot; prompt, enter the name of the 
13721 existing file to attach to your message.  
13722 When the feature
13723 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
13724 is set
13725 you need only enter the beginning of the filename (enough of it to uniquely 
13726 identify the file) and press TAB to complete it.
13728 Or, press ^T to use the BROWSER screen for 
13729 selecting the file.  <P>
13730 For more information on attaching files, see the help screen for the 
13731 composer's 
13732 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
13733 but can be revealed using the 
13734 <!--chtml if pinemode="function_key"-->
13736 <!--chtml else-->
13737 Ctrl-R
13738 <!--chtml endif--> 
13739 command with the cursor positioned above the
13740 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
13742 &lt;End of help on this topic&gt;
13743 </BODY>
13744 </HTML>
13745 ======= h_edit_nav_cmds =========
13746 <HTML>
13747 <HEAD>
13748 <TITLE>Composer Editing Commands Explained</TITLE>
13749 </HEAD>
13750 <BODY>
13751 <H1>EDITING and NAVIGATION COMMANDS</H1>
13752 <!--chtml if pinemode="function_key"-->
13753 <PRE>
13754 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
13755 ^B (Left Arrow)    Back character       | ^D       Delete current character
13756 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
13757 ^P (Up Arrow)      Previous line        |
13758 ^N (Down Arrow)    Next line            | F9       Cut marked text or
13759 ^A                 Beginning of line    |            delete current line
13760 ^E                 End of line          | F10      Undelete line(s)
13761 F7                 Previous page        |
13762 F8                 Next page            |-------------------------------------
13763 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
13764 ----------------------------------------|
13765 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
13766 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
13767 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
13768 </PRE>
13769 <!--chtml else-->
13770 <PRE>
13771 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
13772 ^B (Left Arrow)    Back character       | ^D       Delete current character
13773 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
13774 ^P (Up Arrow)      Previous line        |
13775 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
13776 ^A                 Beginning of line    |            delete current line
13777 ^E                 End of line          | ^U       Undelete line(s)
13778 ^Y                 Previous page        |
13779 ^V                 Next page            |-------------------------------------
13780 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
13781 ----------------------------------------|
13782 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
13783 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
13784 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
13785 </PRE>
13786 <!--chtml endif-->
13787 &lt;End of help on this topic&gt;
13788 </BODY>
13789 </HTML>
13790 ===== h_composer_sigedit =====
13791 <HTML>
13792 <HEAD>
13793 <TITLE>Signature Editor Commands Explained</TITLE>
13794 </HEAD>
13795 <BODY>
13796 <H1>SIGNATURE EDITOR COMMANDS</H1>
13797 <!--chtml if pinemode="function_key"-->
13798 <PRE>
13799 CURSOR MOTION KEYS                     |EDITING KEYS
13800   ^B (Left Arrow)   Back character     | ^D       Delete current character
13801   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13802   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13803   ^N (Down Arrow)   Next line          | F9       Cut marked text or
13804   ^A                Beginning of line  |           delete current line
13805   ^E                End of line        | F10       Paste text, undelete lines
13806   F7                Previous page      |           cut with ^K, or unjustify
13807   F8                Next page          |-------------------------------------
13808   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13809 ---------------------------------------| F6       Whereis (search for string)
13810 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
13811  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
13812                  |  ^Z    Suspend      | ^L       Redraw Screen
13813  F2   Send       |  F6    Alt. editor  | F5       Read in a file
13814 </PRE>
13815 <!--chtml else-->
13816 <PRE>
13817 CURSOR MOTION KEYS                     |EDITING KEYS
13818   ^B (Left Arrow)   Back character     | ^D       Delete current character
13819   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13820   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13821   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
13822   ^A                Beginning of line  |           delete current line
13823   ^E                End of line        | ^U        Paste text, undelete lines
13824   ^Y                Previous page      |           cut with ^K, or unjustify
13825   ^V                Next page          |-------------------------------------
13826   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13827 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
13828 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
13829  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
13830                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
13831  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
13832 </PRE>
13833 <!--chtml endif-->
13835 NOTE: The presence or absence of the following commands is determined
13836 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
13837 some of these commands may be administratively disabled by your system
13838 manager; if they don't work, please check with your local help desk
13839 before reporting a bug.
13841 <UL>
13842  <LI>Suspend (suspends Alpine and gives a system prompt)
13843  <LI>Alternate editor (allows you to compose with your own editor)
13844 </UL>
13847 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13848 Ctrl-&#92;, ESC
13851 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13852 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13854 &lt;End of help on this topic&gt;
13855 </BODY>
13856 </HTML>
13857 ===== h_composer_commentedit =====
13858 <HTML>
13859 <HEAD>
13860 <TITLE>Comment Editor Commands Explained</TITLE>
13861 </HEAD>
13862 <BODY>
13863 <H1>COMMENT EDITOR COMMANDS</H1>
13864 <!--chtml if pinemode="function_key"-->
13865 <PRE>
13866 CURSOR MOTION KEYS                     |EDITING KEYS
13867   ^B (Left Arrow)   Back character     | ^D       Delete current character
13868   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13869   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13870   ^N (Down Arrow)   Next line          | F9       Cut marked text or
13871   ^A                Beginning of line  |           delete current line
13872   ^E                End of line        | F10       Paste text, undelete lines
13873   F7                Previous page      |           cut with ^K, or unjustify
13874   F8                Next page          |-------------------------------------
13875   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13876 ---------------------------------------| F6       Whereis (search for string)
13877 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
13878  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
13879                  |  ^Z    Suspend      | ^L       Redraw Screen
13880  F2   Send       |  F6    Alt. editor  | F5       Read in a file
13881 </PRE>
13882 <!--chtml else-->
13883 <PRE>
13884 CURSOR MOTION KEYS                     |EDITING KEYS
13885   ^B (Left Arrow)   Back character     | ^D       Delete current character
13886   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13887   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13888   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
13889   ^A                Beginning of line  |           delete current line
13890   ^E                End of line        | ^U        Paste text, undelete lines
13891   ^Y                Previous page      |           cut with ^K, or unjustify
13892   ^V                Next page          |-------------------------------------
13893   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13894 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
13895 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
13896  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
13897                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
13898  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
13899 </PRE>
13900 <!--chtml endif-->
13902 NOTE: The presence or absence of the following commands is determined
13903 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
13904 some of these commands may be administratively disabled by your system
13905 manager; if they don't work, please check with your local help desk
13906 before reporting a bug.
13908 <UL>
13909  <LI>Suspend (suspends Alpine and gives a system prompt)
13910  <LI>Alternate editor (allows you to compose with your own editor)
13911 </UL>
13914 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13915 Ctrl-&#92;, ESC
13918 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13919 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13921 &lt;End of help on this topic&gt;
13922 </BODY>
13923 </HTML>
13924 ======= h_composer_abook_nick =======
13925 <HTML>
13926 <HEAD>
13927 <TITLE>Addressbook Nickname Explained</TITLE>
13928 </HEAD>
13929 <BODY>
13930 This is a short nickname for this address book entry.  If it is used in
13931 place of an address from the composer, the composer will fill in the
13932 address(es) for the entry that matches the nickname. 
13935 Look <A HREF="h_edit_nav_cmds">here</A>
13936 to see the available Editing and Navigation commands.
13938 &lt;End of help on this topic&gt;
13939 </BODY>
13940 </HTML>
13941 ======= h_composer_abook_full =======
13942 <HTML>
13943 <HEAD>
13944 <TITLE>Addressbook Fullname Explained</TITLE>
13945 </HEAD>
13946 <BODY>
13947 This is the full name field for this entry.  If this is going to be a
13948 distribution list (more than one address), it should be a descriptive
13949 phrase describing the list.  It will be included in the mail header if you
13950 put the list in the To: or CC: field, or in the To: line if you put the
13951 list in the Lcc: field.  It's OK to leave this field blank (and OK to
13952 leave any of the other fields blank, too). If this address book entry is
13953 going to be a simple entry with just one address, then this field is the
13954 person's name. When you send mail to this entry, this is the field to the
13955 left of the brackets. That is, it is the most readable part of the 
13956 address. For example, in the sample address:
13957 <PRE>
13958        John Doe &lt;jdoe@some.domain&gt;
13959 </PRE>
13960 "John Doe" is the full name field. If you are sorting your address book
13961 with one of the options that uses full names, then it might be useful to
13962 enter the full name as "Last, First", for example:
13963 <PRE>
13964        Doe, John
13965 </PRE>
13966 so that it will be sorted using Doe instead of John. This will be changed
13967 back into John Doe when you use it.
13969 Look <A HREF="h_edit_nav_cmds">here</A>
13970 to see the available Editing and Navigation commands.
13972 &lt;End of help on this topic&gt;
13973 </BODY>
13974 </HTML>
13975 ======= h_composer_abook_fcc =======
13976 <HTML>
13977 <HEAD>
13978 <TITLE>Addressbook Fcc Explained</TITLE>
13979 </HEAD>
13980 <BODY>
13981 If this entry is the first one in the To: line of an outgoing message,
13982 this field will be used for the Fcc (File Carbon Copy) instead of whatever
13983 you would normally get (which depends on which
13984 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
13985 you've chosen). 
13987 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
13988 that you don't want any Fcc associated with this entry.
13990 Look <A HREF="h_edit_nav_cmds">here</A>
13991 to see the available Editing and Navigation commands.
13993 &lt;End of help on this topic&gt;
13994 </BODY>
13995 </HTML>
13996 ====== h_config_combined_abook_display =====
13997 <HTML>
13998 <HEAD>
13999 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14000 </HEAD>
14001 <BODY>
14002 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14004 This feature affects the address book display screens.
14005 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14006 will cause the remaining address books and directory servers to disappear
14007 from the screen, leaving only the entries of the expanded address book.
14008 If this feature is set, then the other address books will remain on the screen,
14009 so that all of the address books can be present at once.
14012 The way that commands work won't be changed.
14013 For example, the Select All command will select all of the entries in the
14014 current address book, not all of the entries in all of the address books.
14015 The WhereIs command will change a little.
14016 It will search through all of the text on the screen plus all of the entries
14017 from expanded address books.
14020 When this feature is set, the setting of the feature
14021 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14022 has an effect.
14024 &lt;End of help on this topic&gt;
14025 </BODY>
14026 </HTML>
14027 ====== h_config_titlebar_color_style =====
14028 <HTML>
14029 <HEAD>
14030 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14031 </HEAD>
14032 <BODY>
14033 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14035 This option affects the colors used to display the titlebar (the top
14036 line on the screen) when viewing a message.
14039 The available options include:
14042 <DL>
14043 <DT>default</DT>
14044 <DD>The color of the titlebar will be the color you set for the
14045 <A HREF="h_config_title_color">Title Color</A>.
14046 The Title Color may be set by using the
14047 <A HREF="h_color_setup">Setup Kolor</A> screen.
14048 </DD>
14050 <DT>indexline</DT>
14051 <DD>The color of the titlebar will be the same as the color of the
14052 index line corresponding to the message being viewed.
14053 The rules that determine what color the index line will be may be set
14054 up by going to the Setup/Rules/Indexcolor screen.
14055 If the index line for a message is not colored explicitly by the
14056 Indexcolor rules, then the titlebar will be colored the same as for
14057 the &quot;default&quot; option above (which is not the same color that
14058 the index line itself will have).
14059 </DD>
14061 <DT>reverse-indexline</DT>
14062 <DD>This is similar to the &quot;indexline&quot; option except the
14063 foreground and background colors from the corresponding index line will
14064 be reversed.
14065 For example, if the index line color is red letters on a white background,
14066 then the titlebar will be white letters on a red background.
14067 If the index line for a message is not colored explicitly by the
14068 Indexcolor rules, then the titlebar will be colored the same as for
14069 the &quot;default&quot; option above (which is not the same color that
14070 the index line itself will have).
14071 </DD>
14072 </DL>
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_config_index_color_style =====
14083 <HTML>
14084 <HEAD>
14085 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14086 </HEAD>
14087 <BODY>
14088 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14090 This option affects the colors used to display the current line in the
14091 MESSAGE INDEX screen.
14092 If you do not have Index Color Rules defined, then this option will
14093 have no effect in the index.
14094 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14096 If the option
14097 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14098 is turned on and the
14099 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14100 is set to something other than the default, then
14101 this option also affects the color used to display the current folder
14102 in the Incoming FOLDER LIST screen.
14105 The available options include:
14108 <DL>
14109 <DT>flip-colors</DT>
14110 <DD>This is the default.
14111 If an index line is colored because it matches one of your
14112 Index Color Rules, then its colors will be reversed when it is the currently
14113 highlighted line.
14114 For example, if the line is normally red text on a blue background, then
14115 when it is the current line it will be drawn as blue text on a red background.
14117 The rest of the option values all revert to this flip-colors behavior if
14118 there is no Reverse Color defined.
14119 </DD>
14121 <DT>reverse</DT>
14122 <DD>With this option the Reverse color is always used to highlight the
14123 current line.
14124 </DD>
14126 <DT>reverse-fg</DT>
14127 <DD>The foreground part of the Reverse Color is used to highlight
14128 the current line.
14129 If this would cause the text to be unreadable (because the foreground and
14130 background colors are the same) or if it would cause no change in the
14131 color of the index line, then the colors are flipped instead.
14133 Some people think this works particularly well if you use different
14134 background colors to emphasize &quot;interesting&quot; lines,
14135 but always with the same Normal foreground color,
14136 and you use a different foreground color for the Reverse Color.
14137 </DD>
14139 <DT>reverse-fg-no-ambiguity</DT>
14140 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14141 the resulting color will be exactly the same as the regular Reverse
14142 Color.
14143 That can lead to some possible confusion because an
14144 &quot;interesting&quot;
14145 line that is the current line will be displayed exactly the same as a
14146 non-interesting line that is current.
14147 You can't tell whether the line is just a regular current line or if it is
14148 an &quot;interesting&quot; current line by looking at the color.
14149 Setting the option to this value removes that ambiguity.
14150 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14151 interesting current line would look just like a non-interesting current line.
14152 In that case, the interesting line's colors are simply flipped (like in the
14153 default behavior).
14155 As an alternative way to preserve the line's interestingness in this case,
14156 you may find that using both a different foreground and a different
14157 background color for the interesting line will help.
14158 </DD>
14160 <DT>reverse-bg</DT>
14161 <DD>The background part of the Reverse Color is used to highlight
14162 the current line.
14163 If this would cause the text to be unreadable (because the foreground and
14164 background colors are the same) or if it would cause no change in the
14165 color of the index line, then the colors are flipped instead.
14167 Some people think this works particularly well if you use different
14168 foreground colors to emphasize &quot;interesting&quot; lines,
14169 but always with the same Normal background color,
14170 and you use a different background color for the Reverse Color.
14171 </DD>
14173 <DT>reverse-bg-no-ambiguity</DT>
14174 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14175 rule may also result in a color that is exactly the same as the regular
14176 Reverse Color.
14177 Setting the option to this value removes that ambiguity.
14178 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14179 current line has the same color as the Reverse Color.
14180 In that case, the interesting line's colors are simply flipped (like in the
14181 default behavior).
14182 </DD>
14183 </DL>
14187 <UL>   
14188 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14189 </UL><P>
14190 &lt;End of help on this topic&gt;
14191 </BODY>
14192 </HTML>
14193 ====== h_config_expanded_addrbooks =====
14194 <HTML>
14195 <HEAD>
14196 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14197 </HEAD>
14198 <BODY>
14199 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14201 If multiple address books (either personal or global) are defined, and you
14202 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14203 screen, then set this feature. This feature will have no effect unless the
14204 feature
14205 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14206 is also set.
14208 &lt;End of help on this topic&gt;
14209 </BODY>
14210 </HTML>
14211 ====== h_config_combined_folder_display =====
14212 <HTML>
14213 <HEAD>
14214 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14215 </HEAD>
14216 <BODY>
14217 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14219 This feature affects the folder list display screens.
14220 Normally, each folder list is viewed within its collection only.  This
14221 command allows folder lists to be viewed within a single screen that
14222 combines the contents of all collections.
14225 The way that commands work won't be changed.
14226 For example, the Select All command will select all of the folders in the
14227 current collection, not all of the entries in all of the collections.
14228 The WhereIs command will change a little.
14229 It will search through all of the folders in the current collection as well
14230 as all the folder in any other expanded collection.
14233 When this feature is set, the setting of the feature
14234 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14235 has an effect.
14237 &lt;End of help on this topic&gt;
14238 </BODY>
14239 </HTML>
14240 ====== h_config_combined_subdir_display =====
14241 <HTML>
14242 <HEAD>
14243 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14244 </HEAD>
14245 <BODY>
14246 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14248 This feature affects the Folder List screen when
14250 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14251 feature is enabled.  Normally, selecting a directory from the Folder
14252 List takes you into a new screen displaying only the contents of
14253 that directory.
14256 Enabling this feature will cause the contents of the selected
14257 directory to be
14258 displayed within the boundaries of the &quot;Collection&quot; it
14259 is a part of.  All previously displayed collections will remain
14260 in the screen.
14263 The way that commands work won't be changed.
14264 For example, the Select All command will select all of the folders in the
14265 directory, as opposed to all of the entries in all of the collections.
14266 The WhereIs command will change a little.
14267 It will search through all of the folders in the current collection as well
14268 as all the folder in any other expanded collection.
14271 &lt;End of help on this topic&gt;
14272 </BODY>
14273 </HTML>
14274 ====== h_config_separate_fold_dir_view =====
14275 <HTML>
14276 <HEAD>
14277 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14278 </HEAD>
14279 <BODY>
14280 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14282 This feature affects folder collections wherein a folder
14283 and directory can have the same name.  By default, Alpine displays them
14284 only once, denoting that it is both a folder and directory by appending
14285 the folder name with the hierarchy character enclosed
14286 in square brackets.
14290 Enabling this feature will cause Alpine to display such names
14291 separately marking the name representing a directory with a trailing
14292 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14295 The feature also alters the command set slightly.  By default, the
14296 right-arrow descends into the directory, while hitting the Return key will
14297 cause the folder by that name to be opened.
14300 With this feature set, the Return key will open the highlighted folder, or
14301 enter the highlighted directory.
14304 &lt;End of help on this topic&gt;
14305 </BODY>
14306 </HTML>
14307 ====== h_config_expanded_folders =====
14308 <HTML>
14309 <HEAD>
14310 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14311 </HEAD>
14312 <BODY>
14313 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14315 If multiple folder collections are defined, and you
14316 wish to have them all expanded implicitly upon entering the FOLDER LIST
14317 screen, then set this feature. This feature will have no effect unless the
14318 feature
14319 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14320 is also set.
14322 &lt;End of help on this topic&gt;
14323 </BODY>
14324 </HTML>
14325 ======= h_config_ldap_server =======
14326 <HTML>
14327 <HEAD>
14328 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14329 </HEAD>
14330 <BODY>
14331 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14332 This is the name of the host where an LDAP server is running.
14333 For redundancy, this may be a space-delimited set of server names, in which
14334 case the first server that answers is used.
14335 Each of the server names may be optionally followed by
14336 a colon and a port number.
14337 If this form is used then the port number configured below in the
14338 <EM>port</EM> field is not used.
14340 To find out whether your organization has its own LDAP server, 
14341 contact its computing support staff.
14342 <P><UL>
14343 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14344 </UL>
14346 &lt;End of help on this topic&gt;
14347 </BODY>
14348 </HTML>
14349 ======= h_config_ldap_base =======
14350 <HTML>
14351 <HEAD>
14352 <TITLE>LDAP OPTION: Search-Base</TITLE>
14353 </HEAD>
14354 <BODY>
14355 <H1>LDAP OPTION: Search-Base</H1>
14357 This is the search base to be used on this server.  It functions as a filter 
14358 by restricting your searches in the LDAP server database
14359 to the specified contents of the specified fields.  Without it, searches 
14360 submitted to this directory server may fail.  It might be something
14361 like:
14363 <PRE>
14364       O = &lt;Your Organization Name&gt;, C = US
14365 </PRE>
14366 or it might be blank.  
14367 (Some LDAP servers actually ignore anything specified here.)
14369 If in doubt what parameters you should specify here, 
14370 contact the maintainers of the LDAP server.
14371 <P><UL>
14372 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14373 </UL>
14375 &lt;End of help on this topic&gt;
14376 </BODY>
14377 </HTML>
14378 ======= h_config_ldap_port =======
14379 <HTML>
14380 <HEAD>
14381 <TITLE>LDAP OPTION: Port</TITLE>
14382 </HEAD>
14383 <BODY>
14384 <H1>LDAP OPTION: Port</H1>
14386 This is the TCP port number to be used with this LDAP server. If you leave
14387 this blank port 389 will be used.
14389 &lt;End of help on this topic&gt;
14390 </BODY>
14391 </HTML>
14392 ======= h_config_ldap_nick =======
14393 <HTML>
14394 <HEAD>
14395 <TITLE>LDAP OPTION: Nickname</TITLE>
14396 </HEAD>
14397 <BODY>
14398 <H1>LDAP OPTION: Nickname</H1>
14400 This is a nickname to be used in displays. If you don't supply a
14401 nickname the server name
14402 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
14403 will be used instead.  This option is strictly for your convenience.
14405 &lt;End of help on this topic&gt;
14406 </BODY>
14407 </HTML>
14408 ======= h_config_ldap_binddn =======
14409 <HTML>
14410 <HEAD>
14411 <TITLE>LDAP OPTION: Bind-DN</TITLE>
14412 </HEAD>
14413 <BODY>
14414 <H1>LDAP OPTION: Bind-DN</H1>
14416 You may need to authenticate to the LDAP server before you are able to use it.
14417 This is the Distinguished Name to bind to when authenticating to this server.
14418 Try leaving this blank until you know you need it.
14420 Alpine only knows about LDAP Simple authentication.
14421 It does not attempt LDAP SASL authentication.
14422 The DN and password will be sent in the clear unless TLS encryption is
14423 being used on this connection.
14424 Because of this, you may want to set the LDAP feature
14425 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
14426 or the feature
14427 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14428 if you are going to be providing a password.
14429 <P><UL>
14430 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14431 </UL>
14433 &lt;End of help on this topic&gt;
14434 </BODY>
14435 </HTML>
14436 ======= h_config_ldap_opts_impl =======
14437 <HTML>
14438 <HEAD>
14439 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
14440 </HEAD>
14441 <BODY>
14442 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
14444 Set this to have lookups done to this server implicitly from the composer.
14445 If an address doesn't look like a fully-qualified address, it will be looked
14446 up in your address books, and if it doesn't match a nickname there, then it
14447 will be looked up on the LDAP servers that have this feature set.
14448 The lookups will also be done when using the address completion feature
14449 (TAB command) in the composer if any of the serves have this feature set.
14450 Also see the LDAP feature
14451 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
14452 and the Setup/Config feature
14453 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14455 &lt;End of help on this topic&gt;
14456 </BODY>
14457 </HTML>
14458 ======= h_config_ldap_opts_tls =======
14459 <HTML>
14460 <HEAD>
14461 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
14462 </HEAD>
14463 <BODY>
14464 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
14466 When connecting to this server Alpine will attempt to use TLS encryption
14467 on the connection.
14468 Also see the closely related feature
14469 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14471 &lt;End of help on this topic&gt;
14472 </BODY>
14473 </HTML>
14474 ======= h_config_ldap_opts_tlsmust =======
14475 <HTML>
14476 <HEAD>
14477 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
14478 </HEAD>
14479 <BODY>
14480 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
14482 When connecting to this server Alpine will attempt to use TLS encryption
14483 on the connection.
14484 If the StartTLS operation fails then the connection will not be used.
14486 &lt;End of help on this topic&gt;
14487 </BODY>
14488 </HTML>
14489 ====== h_config_ldap_opts_rhs =====
14490 <HTML>
14491 <HEAD>
14492 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
14493 </HEAD>
14494 <BODY>
14495 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
14497 Normally implicit LDAP lookups from the composer are done only for the
14498 strings you type in from the composer screen. In other words, you type in
14499 something in the To or CC field and press return, then the string is looked up.
14500 First that string is looked up in your address books. If a match is found
14501 there, then the results of that match are looked up again. If you place
14502 a string in your address book that you want to have looked up on the LDAP
14503 directory server, you need to turn on this feature. If you set this feature
14504 for a server, you almost always will also want to set the
14505 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
14506 feature. An example might serve to best illustrate this feature.
14508 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
14509 entry with an
14510 address of pres@whitehouse.gov, then you might put an entry in your address
14511 book that looks like:
14513 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
14514 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
14516 Now, when you type &quot;bill&quot; into an
14517 address field in the composer Alpine will
14518 find the &quot;bill&quot; entry in your address book.
14519 It will replace &quot;bill&quot; with
14520 &quot;William Clinton&quot;.
14521 It will then search for an entry with that nickname
14522 in your address book and not find one. If this feature
14523 is set, Alpine will then attempt to lookup
14524 &quot;William Clinton&quot; on the LDAP server and find the entry with address
14525 pres@whitehouse.gov.
14527 A better way to accomplish the same thing is probably to use the feature
14528 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
14530 &lt;End of help on this topic&gt;
14531 </BODY>
14532 </HTML>
14533 ====== h_config_ldap_opts_ref =====
14534 <HTML>
14535 <HEAD>
14536 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
14537 </HEAD>
14538 <BODY>
14539 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
14541 Normally when you save the results of an LDAP directory lookup to your
14542 address book the results of the lookup are saved. If this feature is set
14543 and the entry being saved was found on this directory server, then the
14544 search criteria is saved instead of the results of the search. When this
14545 address book entry is used in the future, instead of copying the results
14546 from the address book the directory lookup will be done again. This could
14547 be useful if the copied result might become stale because the data on
14548 the directory server changes (for example, the entry's email address changes).
14549 You probably don't want to set this feature if the server is at all slow or
14550 unreliable.
14552 The way this actually works is that instead of saving the email address
14553 in your address book, Alpine saves enough information to look up the same
14554 directory entry again. In particular, it saves the server name and the
14555 distinguished name of the entry. It's possible that the server administrators
14556 might change the format of distinguished names on the server, or that the
14557 entry might be removed from the server. If Alpine notices this, you will be warned
14558 and a backup copy of the email address will be used. You may want to create
14559 a new entry in this case, since you will get the annoying warning every
14560 time you use the old entry. You may do that by Saving the entry to a new
14561 nickname in the same address book. You will be asked whether or not you
14562 want to use the backup email address.
14564 A related feature in the Setup/Config screen is
14565 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14567 &lt;End of help on this topic&gt;
14568 </BODY>
14569 </HTML>
14570 ======= h_config_ldap_opts_nosub =======
14571 <HTML>
14572 <HEAD>
14573 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
14574 </HEAD>
14575 <BODY>
14576 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
14578 Spaces in your input are normally handled specially.
14579 Each space character is replaced
14582 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
14584 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
14585 The reason this is done is so the input string
14587 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
14589 (which is converted to &quot;Greg* Donald&quot;) will match
14590 the names &quot;Greg Donald&quot;,
14591 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
14592 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
14593 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
14594 then it would also match the name &quot;Greg Donaldson&quot;.
14596 Turning on this feature will disable this substitution.
14598 &lt;End of help on this topic&gt;
14599 </BODY>
14600 </HTML>
14601 ====== h_config_ldap_searchtypes =======
14602 <HTML>
14603 <HEAD>
14604 <TITLE>LDAP OPTION: Search-Type</TITLE>
14605 </HEAD>
14606 <BODY>
14607 <H1>LDAP OPTION: Search-Type</H1>
14609 This affects the way that LDAP searches are done.
14610 In particular, this tells the server where to look for the string to be matched.
14611 If set to &quot;name&quot; then the string that is being searched for will
14612 be compared with the string in the
14613 &quot;Name&quot; field on the server
14614 (technically, it is the &quot;commonname&quot; field on the server).
14615 &quot;Surname&quot; means we're looking for a
14616 match in the &quot;Surname&quot; field on the
14617 server (actually the &quot;sn&quot; field).
14618 &quot;Givenname&quot; really is &quot;givenname&quot;
14619 and &quot;email&quot; is the electronic mail address (this is actually the field
14620 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
14621 The other three types are combinations of
14622 the types listed so far. &quot;Name-or-email&quot;
14623 means the string should appear
14624 in either the &quot;name&quot; field OR the &quot;email&quot; field.
14625 Likewise, &quot;surname-or-givenname&quot;
14626 means &quot;surname&quot; OR &quot;givenname&quot;
14627 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
14629 This search TYPE is combined with the
14630 search <A HREF="h_config_ldap_searchrules">RULE</A>
14631 to form the actual search query.
14633 The usual default value for this
14634 option is &quot;sur-or-given-or-name-or-email&quot;.
14635 This type of search may be slow on some servers.
14636 Try &quot;name-or-email&quot;, which is often
14637 faster, or just &quot;name&quot; if the performance seems to be a problem.
14639 Some servers have been configured with different attribute names for
14640 these four fields.
14641 In other words, instead of using the attribute name &quot;mail&quot;
14642 for the email address field, the server might be configured to use something
14643 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
14644 Alpine can be configured to use these different attribute names by using
14645 the four configuration options:
14646 <P><UL>
14647 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
14648 </UL>
14649 <P><UL>
14650 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
14651 </UL>
14652 <P><UL>
14653 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
14654 </UL>
14655 <P><UL>
14656 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
14657 </UL>
14659 &lt;End of help on this topic&gt;
14660 </BODY>
14661 </HTML>
14662 ====== h_config_ldap_searchrules =======
14663 <HTML>
14664 <HEAD>
14665 <TITLE>LDAP OPTION: Search-Rule</TITLE>
14666 </HEAD>
14667 <BODY>
14668 <H1>LDAP OPTION: Search-Rule</H1>
14670 This affects the way that LDAP searches are done.
14671 If set to &quot;equals&quot; then
14672 only exact matches count.
14673 &quot;Contains&quot; means that the string you type in
14674 is a substring of what you are matching against.
14675 &quot;Begins-with&quot; and &quot;ends-with&quot;
14676 mean that the string starts or ends with the string you type in.
14678 Spaces in your input are normally handled specially, but you can turn that
14679 special handling off with the
14680 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
14681 feature.
14683 The usual default value for this option is &quot;begins-with&quot;.
14685 &lt;End of help on this topic&gt;
14686 </BODY>
14687 </HTML>
14688 ======= h_config_ldap_email_attr =======
14689 <HTML>
14690 <HEAD>
14691 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
14692 </HEAD>
14693 <BODY>
14694 <H1>LDAP OPTION: EmailAttribute</H1>
14696 This is the name of the attribute that is searched for when looking for
14697 an email address. The default value for this option is &quot;mail&quot; or
14698 &quot;electronicmail&quot;.
14699 If the server you are using uses a different attribute name for the email
14700 address, put that attribute name here.
14702 This will affect the search filter used if your Search-Type is one that
14703 contains a search for &quot;email&quot;.
14704 It will also cause the attribute value matching this attribute name to be used
14705 as the email address when you look up an entry from the composer.
14707 &lt;End of help on this topic&gt;
14708 </BODY>
14709 </HTML>
14710 ======= h_config_ldap_sn_attr =======
14711 <HTML>
14712 <HEAD>
14713 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
14714 </HEAD>
14715 <BODY>
14716 <H1>LDAP OPTION: SurnameAttribute</H1>
14718 This is the name of the attribute that is searched for when looking for
14719 the surname of the entry. The default value for this option is &quot;sn&quot;.
14720 If the server you are using uses a different attribute name for the surname,
14721 put that attribute name here.
14722 This will affect the search filter used if your Search-Type is one that
14723 contains a search for &quot;surname&quot;.
14725 &lt;End of help on this topic&gt;
14726 </BODY>
14727 </HTML>
14728 ======= h_config_ldap_gn_attr =======
14729 <HTML>
14730 <HEAD>
14731 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
14732 </HEAD>
14733 <BODY>
14734 <H1>LDAP OPTION: GivennameAttribute</H1>
14736 This is the name of the attribute that is searched for when looking for
14737 the given name of the entry. The default value for this option is &quot;givenname&quot;.
14738 If the server you are using uses a different attribute name for the given name,
14739 put that attribute name here.
14740 This will affect the search filter used if your Search-Type is one that
14741 contains a search for &quot;givenname&quot;.
14743 &lt;End of help on this topic&gt;
14744 </BODY>
14745 </HTML>
14746 ======= h_config_ldap_cn_attr =======
14747 <HTML>
14748 <HEAD>
14749 <TITLE>LDAP OPTION: NameAttribute</TITLE>
14750 </HEAD>
14751 <BODY>
14752 <H1>LDAP OPTION: NameAttribute</H1>
14754 This is the name of the attribute that is searched for when looking for
14755 the name of the entry. The default value for this option is &quot;cn&quot;, which
14756 stands for common name.
14757 If the server you are using uses a different attribute name for the name,
14758 put that attribute name here.
14759 This will affect the search filter used if your Search-Type is one that
14760 contains a search for &quot;name&quot;.
14762 &lt;End of help on this topic&gt;
14763 </BODY>
14764 </HTML>
14765 ======= h_config_ldap_time =======
14766 <HTML>
14767 <HEAD>
14768 <TITLE>LDAP OPTION: Timelimit</TITLE>
14769 </HEAD>
14770 <BODY>
14771 <H1>LDAP OPTION: Timelimit</H1>
14773 This places a limit on the number of seconds the LDAP search will continue.
14774 The default is 30 seconds. A value of 0 means no limit. Note that some servers
14775 may place limits of their own on searches.
14777 &lt;End of help on this topic&gt;
14778 </BODY>
14779 </HTML>
14780 ======= h_config_ldap_size =======
14781 <HTML>
14782 <HEAD>
14783 <TITLE>LDAP OPTION: Sizelimit</TITLE>
14784 </HEAD>
14785 <BODY>
14786 <H1>LDAP OPTION: Sizelimit</H1>
14788 This places a limit on the number of entries returned by the LDAP server.
14789 A value of 0 means no limit. The default is 0. Note that some servers
14790 may place limits of their own on searches.
14792 &lt;End of help on this topic&gt;
14793 </BODY>
14794 </HTML>
14795 ======= h_config_ldap_cust =======
14796 <HTML>
14797 <HEAD>
14798 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
14799 </HEAD>
14800 <BODY>
14801 <H1>LDAP OPTION: Custom-Search-Filter</H1>
14803 This one is for advanced users only! If you define this, then the
14804 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
14805 However, the feature
14806 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
14807 is still in effect.
14808 That is, the space substitution will take place even in a custom filter unless
14809 you disable it.
14811 If your LDAP service stops working and you suspect it might be because
14812 of your custom filter, just delete this filter and try using the
14813 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
14814 Another option that sometimes causes trouble is the
14815 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
14817 This variable may be set to the string representation of an LDAP search
14818 filter (see RFC1960). In the places where you want the address string to be
14819 substituted in, put a '%s' in this filter string. Here are some examples:
14821 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
14822 is equivalent to the &quot;Custom-Search-Filter&quot;
14823 <PRE>
14824      (cn=%s*)
14825 </PRE>
14826 When you try to match against the string &quot;string&quot; the program replaces
14827 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
14828 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
14830 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
14831 of &quot;contains&quot; is equivalent to
14832 <PRE>
14833      (|(cn=*%s*)(mail=*%s*))
14834 </PRE>
14836 If your server uses a different attribute <EM>name</EM> than
14837 Alpine uses by default,
14838 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
14839 then you may be able to use one or more of the four attribute configuration
14840 options instead of defining a custom filter:
14841 <P><UL>
14842 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
14843 </UL>
14844 <P><UL>
14845 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
14846 </UL>
14847 <P><UL>
14848 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
14849 </UL>
14850 <P><UL>
14851 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
14852 </UL>
14854 &lt;End of help on this topic&gt;
14855 </BODY>
14856 </HTML>
14857 ======= h_composer_abook_comment =======
14858 <HTML>
14859 <HEAD>
14860 <TITLE>Addressbook Comment Explained</TITLE>
14861 </HEAD>
14862 <BODY>
14863 This is a comment to help you remember what this entry is. The WhereIs
14864 command searches comments so that it is easier to find an entry with a comment
14865 you know about attached to it. This field is not used in the outgoing message.
14867 Look <A HREF="h_edit_nav_cmds">here</A>
14868 to see the available Editing and Navigation commands.
14870 &lt;End of help on this topic&gt;
14871 </BODY>
14872 </HTML>
14873 ======= h_composer_abook_addrs =======
14874 <HTML>
14875 <HEAD>
14876 <TITLE>Addressbook Lists</TITLE>
14877 </HEAD>
14878 <BODY>
14879 <H1>Addressbook Lists</H1>
14881 This is a list of addresses to send to when sending to this address book
14882 entry.  Each member of the list may be an address or another nickname from
14883 any of your address books.  If it is an address, it is OK to include the
14884 full name field as well as the electronic address portion of that address.
14885 For example, the following are all legitimate entries in this field:
14887 <DL><DT>&nbsp;</DT>
14888 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
14889 <DD>jdoe@some.domain
14890 <DD>John Doe &lt;jdoe@some.domain&gt;
14891 </DL>
14893 The addresses should be listed separated by commas, just like you would
14894 enter them from the composer.
14898 The only difference between a distribution list and a simple entry with a
14899 single address, is that a distribution list has more than one address   
14900 listed in the Addresses: field, whereas a simple personal entry has just  
14901 one address.
14905 For individual address book entries, if there is a full name in the
14906 Fullname: field (filling in the Fullname: field is not required), it is
14907 used.  If the full name is specified in the Address: field and not in the
14908 Fullname: field, then the full name from the Address: field is used.
14912 If you type the nickname of a distribution list from one of your address 
14913 books in the Lcc: field, then the full name of that list is used in the  
14914 To: field.  If you put a list in the To: or Cc: fields, that list will be
14915 expanded into all of its addresses.  If the list has a full name, then
14916 that will appear at the beginning of the addresses.
14918 <DL><DT>&nbsp;</DT>
14919 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
14920 &lt;sal@here.there&gt;
14921 </DL>
14923 If the first address in the distribution list also has a full name, then
14924 the list full name and that full name are combined into something like the
14925 following:
14927 <DL><DT>&nbsp;</DT>
14928 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
14929 </DL>
14932 If you specify a list via Lcc, the full name is used in the To: line.  If
14933 you specify a list in the To: or Cc: fields, then it uses the same method
14934 as for individual entries for filling in the full name.
14938 For help with editing and navigation commands, check the Help for the
14939 Nickname: field.
14942 &lt;End of help on this topic&gt;
14943 </BODY>
14944 </HTML>
14945 ======= h_config_role_nick =======
14946 <HTML>
14947 <HEAD>
14948 <TITLE>Nickname Explained</TITLE>
14949 </HEAD>
14950 <BODY>
14951 <H1>Nickname Explained</H1>
14953 This is a nickname to help you.
14954 You should have a different nickname for each role you define.
14955 The nickname will be used in the SETUP ROLE RULES screen to allow you to
14956 pick a role to edit.
14957 It will also be used when you send a message to let you know you are
14958 sending with a different role than you use by default, and
14959 it will be useful for choosing a role when composing with the Role command
14960 or when composing with one of the Role Uses set to With Confirmation.
14961 This field is not used in the outgoing message.
14963 Look <A HREF="h_edit_nav_cmds">here</A>
14964 to see the available Editing and Navigation commands.
14966 &lt;End of help on this topic&gt;
14967 </BODY>
14968 </HTML>
14969 ======= h_config_role_comment =======
14970 <HTML>
14971 <HEAD>
14972 <TITLE>Comment Explained</TITLE>
14973 </HEAD>
14974 <BODY>
14975 <H1>Comment Explained</H1>
14977 This is a comment to help you.
14978 This comment does not play any functional role, it is simply an optional
14979 comment to help you remember what the rule is for.
14981 Look <A HREF="h_edit_nav_cmds">here</A>
14982 to see the available Editing and Navigation commands.
14984 &lt;End of help on this topic&gt;
14985 </BODY>
14986 </HTML>
14987 ======= h_config_other_nick =======
14988 <HTML>
14989 <HEAD>
14990 <TITLE>Nickname Explained</TITLE>
14991 </HEAD>
14992 <BODY>
14993 <H1>Nickname Explained</H1>
14995 This is a nickname to help you.
14996 You should have a different nickname for each rule you define.
14997 The nickname will be used in the SETUP OTHER RULES screen to allow you to
14998 pick a rule to edit.
15000 Look <A HREF="h_edit_nav_cmds">here</A>
15001 to see the available Editing and Navigation commands.
15003 &lt;End of help on this topic&gt;
15004 </BODY>
15005 </HTML>
15006 ======= h_config_score_nick =======
15007 <HTML>
15008 <HEAD>
15009 <TITLE>Nickname Explained</TITLE>
15010 </HEAD>
15011 <BODY>
15012 <H1>Nickname Explained</H1>
15014 This is a nickname to help you.
15015 You should have a different nickname for each scoring rule you define.
15016 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15017 pick a rule to edit.
15019 Look <A HREF="h_edit_nav_cmds">here</A>
15020 to see the available Editing and Navigation commands.
15022 &lt;End of help on this topic&gt;
15023 </BODY>
15024 </HTML>
15025 ======= h_config_incol_nick =======
15026 <HTML>
15027 <HEAD>
15028 <TITLE>Nickname Explained</TITLE>
15029 </HEAD>
15030 <BODY>
15031 <H1>Nickname Explained</H1>
15033 This is a nickname to help you.
15034 You should have a different nickname for each color rule you define.
15035 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15036 pick a rule to edit.
15038 Look <A HREF="h_edit_nav_cmds">here</A>
15039 to see the available Editing and Navigation commands.
15041 &lt;End of help on this topic&gt;
15042 </BODY>
15043 </HTML>
15044 ======= h_config_filt_nick =======
15045 <HTML>
15046 <HEAD>
15047 <TITLE>Nickname Explained</TITLE>
15048 </HEAD>
15049 <BODY>
15050 <H1>Nickname Explained</H1>
15052 This is a nickname to help you.
15053 You should have a different nickname for each filtering rule you define.
15054 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15055 pick a rule to edit.
15057 Look <A HREF="h_edit_nav_cmds">here</A>
15058 to see the available Editing and Navigation commands.
15060 &lt;End of help on this topic&gt;
15061 </BODY>
15062 </HTML>
15063 ======= h_config_score_topat =======
15064 <HTML>
15065 <HEAD>
15066 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15067 </HEAD>
15068 <BODY>
15069 <H1>&quot;To:&quot; Pattern Explained</H1>
15071 Any text you enter as the &quot;To pattern&quot;
15072 will be compared to the recipients from the To: line of
15073 the message being scored.
15074 When the text you entered matches
15075 all or part of the To: line of a message, then the Score Value
15076 you have specified will be added to the score for the message.
15077 (Any other non-blank parts of the Pattern must match, too.)
15080 You may enter a complete email address, part of an address, or a
15081 list of addresses or partial addresses.
15082 For example:
15085 <PRE>
15086  To pattern = friend@public.com
15088  To pattern = rated.net
15090  To pattern = xxx@adults.com
15091               admin@msn.com
15092               fool@motleyfool.com
15093 </PRE>
15096 Each of those are valid To patterns.
15099 Messages match those patterns if any of the
15100 addresses in the To: line of the message contains the pattern.
15101 If the pattern is a list of patterns
15102 (like the last example above) then it is a match if any of the patterns in
15103 the list match any of the addresses in the To: line.
15104 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15105 present for a match.
15106 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15107 address2 must be present.
15108 That is exactly what using a list does.)
15111 Some messages may be &quot;bounced&quot; to you, and will
15112 have a &quot;Resent-To:&quot; header line.
15113 If the message contains a Resent-To: line
15114 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15115 Alpine will look for
15116 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15117 the original To: line.
15120 When entering a pattern, you may choose an address from your address book
15121 with the &quot;T&quot; command.
15124 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15125 &quot;!&quot; &quot;toggle NOT&quot; command.
15126 This changes the meaning of the To pattern so that it has the opposite meaning.
15127 It will be considered a match if there are no matches between the
15128 addresses in the To: line and the list of To patterns.
15130 Don't make the mistake of putting the &quot;!&quot; in the data field for
15131 the pattern.
15132 For example, if you type the characters &quot;!frizzle&quot; into the To
15133 pattern, the pattern will look like:
15135 <PRE>
15136  To pattern = !frizzle
15137 </PRE>
15139 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15140 In order to match messages that do not have &quot;frizzle&quot; in
15141 their To field, first type the characters &quot;frizzle&quot; followed
15142 by carriage return for the value of the To pattern, then negate it
15143 by typing the &quot;!&quot; command.
15144 It should end up looking like
15146 <PRE>
15147  ! To pattern = frizzle
15148 </PRE>
15150 You are not limited to using the six standard header patterns that are
15151 normally shown (To, From, Sender, Cc, News, and Subject).
15152 You may add any other header to a Pattern by
15153 using the &quot;eXtraHdr&quot; command to specify a different
15154 message header line; and then the Add or Change command to fill in
15155 a pattern for the new header line, just like you would for a standard header.
15157 A technicality: Since comma is the character used to separate multiple
15158 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15159 you want to include a literal comma in the field.
15160 In other words, if you type a backslash followed by a comma it will
15161 be interpreted as a comma by Alpine, instead of as a separator between
15162 pattern values.
15163 All other backslashes are literal backslashes and should not be escaped.
15165 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15166 for more information on Patterns.
15168 Look <A HREF="h_edit_nav_cmds">here</A>
15169 to see the available Editing and Navigation commands.
15171 &lt;End of help on this topic&gt;
15172 </BODY>
15173 </HTML>
15174 ======= h_config_incol_topat =======
15175 <HTML>
15176 <HEAD>
15177 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15178 </HEAD>
15179 <BODY>
15180 <H1>&quot;To:&quot; Pattern Explained</H1>
15182 Any text you enter as the &quot;To pattern&quot;
15183 will be compared to the recipients from the To: lines of
15184 the messages in the index.
15185 When the text you entered matches
15186 all or part of the To: line of a message, then the Index Line Color you have
15187 specified will be used for that line in the index.
15188 (Any other non-blank parts of the Pattern must match, too.)
15191 You may enter a complete email address, part of an address, or a
15192 list of addresses or partial addresses.
15193 For example:
15196 <PRE>
15197  To pattern = friend@public.com
15198  To pattern = rated.net
15199  To pattern = xxx@adults.com
15200               admin@msn.com
15201               fool@motleyfool.com
15202 </PRE>
15205 Each of those are valid To patterns.
15208 Messages match those patterns if any of the
15209 addresses in the To: line of the message contains the pattern.
15210 If the pattern is a list of patterns
15211 (like the last example above) then it is a match if any of the patterns in
15212 the list match any of the addresses in the To: line.
15213 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15214 present for a match.
15215 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15216 address2 must be present.
15217 That is exactly what using a list does.)
15220 Some messages may be &quot;bounced&quot; to you, and will
15221 have a &quot;Resent-To:&quot; header line.
15222 If the message contains a Resent-To: line
15223 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15224 Alpine will look for
15225 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15226 the original To: line.
15229 When entering a pattern, you may choose an address from your address book
15230 with the &quot;T&quot; command.
15233 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15234 &quot;!&quot; &quot;toggle NOT&quot; command.
15235 This changes the meaning of the To pattern so that it has the opposite meaning.
15236 It will be considered a match if there are no matches between the
15237 addresses in the To: line and the list of To patterns.
15239 Don't make the mistake of putting the &quot;!&quot; in the data field for
15240 the pattern.
15241 For example, if you type the characters &quot;!frizzle&quot; into the To
15242 pattern, the pattern will look like:
15244 <PRE>
15245  To pattern = !frizzle
15246 </PRE>
15248 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15249 In order to match messages that do not have &quot;frizzle&quot; in
15250 their To field, first type the characters &quot;frizzle&quot; followed
15251 by carriage return for the value of the To pattern, then negate it
15252 by typing the &quot;!&quot; command.
15253 It should end up looking like
15255 <PRE>
15256  ! To pattern = frizzle
15257 </PRE>
15260 You are not limited to using the six standard header patterns that are
15261 normally shown (To, From, Sender, Cc, News, and Subject).
15262 You may add any other header to a Pattern by
15263 using the &quot;eXtraHdr&quot; command to specify a different
15264 message header line; and then the Add or Change command to fill in
15265 a pattern for the new header line, just like you would for a standard header.
15267 A technicality: Since comma is the character used to separate multiple
15268 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15269 you want to include a literal comma in the field.
15270 In other words, if you type a backslash followed by a comma it will
15271 be interpreted as a comma by Alpine, instead of as a separator between
15272 pattern values.
15273 All other backslashes are literal backslashes and should not be escaped.
15275 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15276 for more information on Patterns.
15278 Look <A HREF="h_edit_nav_cmds">here</A>
15279 to see the available Editing and Navigation commands.
15281 &lt;End of help on this topic&gt;
15282 </BODY>
15283 </HTML>
15284 ======= h_config_other_topat =======
15285 <HTML>
15286 <HEAD>
15287 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15288 </HEAD>
15289 <BODY>
15290 <H1>&quot;To:&quot; Pattern Explained</H1>
15292 For some of the OTHER RULES actions, there is no message that is being
15293 compared against.
15294 If that is the case, then only the Current Folder Type is checked.
15295 In particular, this To pattern is ignored.
15296 Actions that fall into this category include both
15297 Sort Order and Index Format.
15299 A technicality: Since comma is the character used to separate multiple
15300 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15301 you want to include a literal comma in the field.
15302 In other words, if you type a backslash followed by a comma it will
15303 be interpreted as a comma by Alpine, instead of as a separator between
15304 pattern values.
15305 All other backslashes are literal backslashes and should not be escaped.
15307 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15308 for more information on Patterns.
15310 Look <A HREF="h_edit_nav_cmds">here</A>
15311 to see the available Editing and Navigation commands.
15313 &lt;End of help on this topic&gt;
15314 </BODY>
15315 </HTML>
15316 ======= h_config_filt_topat =======
15317 <HTML>
15318 <HEAD>
15319 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15320 </HEAD>
15321 <BODY>
15322 <H1>&quot;To:&quot; Pattern Explained</H1>
15324 Any text you enter as the &quot;To pattern&quot;
15325 will be compared to the recipients from the To: line of
15326 messages when Alpine opens folders.
15327 When the text you entered matches
15328 all or part of the To: line of a message, then the Filter Action you have
15329 specified will be carried out.
15330 (Any other non-blank parts of the Pattern must match, too.)
15333 You may enter a complete email address, part of an address, or a
15334 list of addresses or partial addresses.
15335 For example:
15338 <PRE>
15339  To pattern = friend@public.com
15340  To pattern = rated.net
15341  To pattern = xxx@adults.com
15342               admin@msn.com
15343               fool@motleyfool.com
15344 </PRE>
15347 Each of those are valid To patterns.
15350 Messages match those patterns if any of the
15351 addresses in the To: line of the message contains the pattern.
15352 If the pattern is a list of patterns
15353 (like the last example above) then it is a match if any of the patterns in
15354 the list match any of the addresses in the To: line.
15355 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15356 present for a match.
15357 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15358 address2 must be present.
15359 That is exactly what using a list does.)
15362 Some messages may be &quot;bounced&quot; to you, and will
15363 have a &quot;Resent-To:&quot; header line.
15364 If the message contains a Resent-To: line
15365 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15366 Alpine will look for
15367 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15368 the original To: line.
15371 When entering a pattern, you may choose an address from your address book
15372 with the &quot;T&quot; command.
15375 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15376 &quot;!&quot; &quot;toggle NOT&quot; command.
15377 This changes the meaning of the To pattern so that it has the opposite meaning.
15378 It will be considered a match if there are no matches between the
15379 addresses in the To: line and the list of To patterns.
15381 Don't make the mistake of putting the &quot;!&quot; in the data field for
15382 the pattern.
15383 For example, if you type the characters &quot;!frizzle&quot; into the To
15384 pattern, the pattern will look like:
15386 <PRE>
15387  To pattern = !frizzle
15388 </PRE>
15390 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15391 In order to match messages that do not have &quot;frizzle&quot; in
15392 their To field, first type the characters &quot;frizzle&quot; followed
15393 by carriage return for the value of the To pattern, then negate it
15394 by typing the &quot;!&quot; command.
15395 It should end up looking like
15397 <PRE>
15398  ! To pattern = frizzle
15399 </PRE>
15402 You are not limited to using the six standard header patterns that are
15403 normally shown (To, From, Sender, Cc, News, and Subject).
15404 You may add any other header to a Pattern by
15405 using the &quot;eXtraHdr&quot; command to specify a different
15406 message header line; and then the Add or Change command to fill in
15407 a pattern for the new header line, just like you would for a standard header.
15409 A technicality: Since comma is the character used to separate multiple
15410 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15411 you want to include a literal comma in the field.
15412 In other words, if you type a backslash followed by a comma it will
15413 be interpreted as a comma by Alpine, instead of as a separator between
15414 pattern values.
15415 All other backslashes are literal backslashes and should not be escaped.
15417 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15418 for more information on Patterns.
15420 Look <A HREF="h_edit_nav_cmds">here</A>
15421 to see the available Editing and Navigation commands.
15423 &lt;End of help on this topic&gt;
15424 </BODY>
15425 </HTML>
15426 ======= h_config_role_topat =======
15427 <HTML>
15428 <HEAD>
15429 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15430 </HEAD>
15431 <BODY>
15432 <H1>&quot;To:&quot; Pattern Explained</H1>
15434 Any text you enter as the &quot;To pattern&quot;
15435 will be compared to the recipients from the To: line of
15436 the message being replied to or forwarded.
15437 (Any other non-blank parts of the Pattern must match, too.)
15438 In the case of the Compose command, this pattern and the other header
15439 patterns are ignored.
15442 You may enter a complete email address, part of an address, or a
15443 list of addresses or partial addresses.
15444 For example:
15447 <PRE>
15448  To pattern = friend@public.com
15449  To pattern = rated.net
15450  To pattern = xxx@adults.com
15451               admin@msn.com
15452               fool@motleyfool.com
15453 </PRE>
15456 Each of those are valid To patterns.
15459 Messages match those patterns if any of the
15460 addresses in the To: line of the message contains the pattern.
15461 If the pattern is a list of patterns
15462 (like the last example above) then it is a match if any of the patterns in
15463 the list match any of the addresses in the To: line.
15464 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15465 present for a match.
15466 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15467 address2 must be present.
15468 That is exactly what using a list does.)
15471 Some messages may be &quot;bounced&quot; to you, and will
15472 have a &quot;Resent-To:&quot; header line.
15473 If the message contains a Resent-To: line
15474 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15475 Alpine will look for
15476 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15477 the original To: line.
15480 When entering a pattern, you may choose an address from your address book
15481 with the &quot;T&quot; command.
15484 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15485 &quot;!&quot; &quot;toggle NOT&quot; command.
15486 This changes the meaning of the To pattern so that it has the opposite meaning.
15487 It will be considered a match if there are no matches between the
15488 addresses in the To: line and the list of To patterns.
15490 Don't make the mistake of putting the &quot;!&quot; in the data field for
15491 the pattern.
15492 For example, if you type the characters &quot;!frizzle&quot; into the To
15493 pattern, the pattern will look like:
15495 <PRE>
15496  To pattern = !frizzle
15497 </PRE>
15499 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15500 In order to match messages that do not have &quot;frizzle&quot; in
15501 their To field, first type the characters &quot;frizzle&quot; followed
15502 by carriage return for the value of the To pattern, then negate it
15503 by typing the &quot;!&quot; command.
15504 It should end up looking like
15506 <PRE>
15507  ! To pattern = frizzle
15508 </PRE>
15511 You are not limited to using the six standard header patterns that are
15512 normally shown (To, From, Sender, Cc, News, and Subject).
15513 You may add any other header to a Pattern by
15514 using the &quot;eXtraHdr&quot; command to specify a different
15515 message header line; and then the Add or Change command to fill in
15516 a pattern for the new header line, just like you would for a standard header.
15518 A technicality: Since comma is the character used to separate multiple
15519 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15520 you want to include a literal comma in the field.
15521 In other words, if you type a backslash followed by a comma it will
15522 be interpreted as a comma by Alpine, instead of as a separator between
15523 pattern values.
15524 All other backslashes are literal backslashes and should not be escaped.
15526 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15527 for more information on Patterns.
15529 Look <A HREF="h_edit_nav_cmds">here</A>
15530 to see the available Editing and Navigation commands.
15532 &lt;End of help on this topic&gt;
15533 </BODY>
15534 </HTML>
15535 ======= h_config_role_frompat =======
15536 <HTML>
15537 <HEAD>
15538 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
15539 </HEAD>
15540 <BODY>
15541 <H1>&quot;From:&quot; Pattern Explained</H1>
15543 This is just like the &quot;To pattern&quot; except that it is compared with
15544 the address in the From: line of the message
15545 instead of the addresses from the To: line.
15546 See the help for the To pattern for more information on header patterns.
15548 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15549 for more information on Patterns.
15551 Look <A HREF="h_edit_nav_cmds">here</A>
15552 to see the available Editing and Navigation commands.
15554 &lt;End of help on this topic&gt;
15555 </BODY>
15556 </HTML>
15557 ======= h_config_role_senderpat =======
15558 <HTML>
15559 <HEAD>
15560 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
15561 </HEAD>
15562 <BODY>
15563 <H1>&quot;Sender:&quot; Pattern Explained</H1>
15565 This is just like the &quot;To pattern&quot; except that it is compared with
15566 the address from the Sender: line of the message
15567 instead of the addresses from the To: line.
15568 See the help for the To pattern for more information on header patterns.
15570 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15571 for more information on Patterns.
15573 Look <A HREF="h_edit_nav_cmds">here</A>
15574 to see the available Editing and Navigation commands.
15576 &lt;End of help on this topic&gt;
15577 </BODY>
15578 </HTML>
15579 ======= h_config_role_ccpat =======
15580 <HTML>
15581 <HEAD>
15582 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
15583 </HEAD>
15584 <BODY>
15585 <H1>&quot;Cc:&quot; Pattern Explained</H1>
15587 This is just like the &quot;To pattern&quot; except that it is compared with
15588 the addresses from the Cc: line of the message
15589 instead of the addresses from the To: line.
15590 See the help for the To pattern for more information on header patterns.
15592 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15593 for more information on Patterns.
15595 Look <A HREF="h_edit_nav_cmds">here</A>
15596 to see the available Editing and Navigation commands.
15598 &lt;End of help on this topic&gt;
15599 </BODY>
15600 </HTML>
15601 ======= h_config_role_recippat =======
15602 <HTML>
15603 <HEAD>
15604 <TITLE>Recipient Pattern Explained</TITLE>
15605 </HEAD>
15606 <BODY>
15607 <H1>Recipient Pattern Explained</H1>
15609 This is just like the &quot;To pattern&quot; except that it is compared with
15610 the addresses from both the To: line and the Cc: line of the
15611 message instead of just the addresses from the To: line.
15612 In other words, it is considered a match if the pattern matches
15613 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
15614 in the Cc: line.
15615 (Notice that defining the Recipient pattern does not have the same
15616 effect as defining both the To and Cc patterns.
15617 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
15618 It is equivalent to having two different rules;
15619 one with a To pattern and the other with the same Cc pattern.)
15621 A technicality: Since comma is the character used to separate multiple
15622 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15623 you want to include a literal comma in the field.
15624 In other words, if you type a backslash followed by a comma it will
15625 be interpreted as a comma by Alpine, instead of as a separator between
15626 pattern values.
15627 All other backslashes are literal backslashes and should not be escaped.
15629 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15630 for more information on Patterns.
15632 Look <A HREF="h_edit_nav_cmds">here</A>
15633 to see the available Editing and Navigation commands.
15635 &lt;End of help on this topic&gt;
15636 </BODY>
15637 </HTML>
15638 ======= h_config_role_particpat =======
15639 <HTML>
15640 <HEAD>
15641 <TITLE>Participant Pattern Explained</TITLE>
15642 </HEAD>
15643 <BODY>
15644 <H1>Participant Pattern Explained</H1>
15646 This is just like the &quot;To pattern&quot; except that it is compared with
15647 the addresses from the From: line, the To: line, and the Cc: line of the
15648 message instead of just the addresses from the To: line.
15649 In other words, it is considered a match if the pattern matches
15650 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
15651 in the To: line, <EM>OR</EM> an address in the Cc: line.
15652 (Notice that defining the Participant pattern does not have the same
15653 effect as defining all of the From, To, and Cc patterns.
15654 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
15655 From <EM>AND</EM> To <EM>AND</EM> Cc.
15656 It is equivalent to having three different rules;
15657 one with a From pattern, another with the same To pattern, and a third with
15658 the same Cc pattern.)
15660 A technicality: Since comma is the character used to separate multiple
15661 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15662 you want to include a literal comma in the field.
15663 In other words, if you type a backslash followed by a comma it will
15664 be interpreted as a comma by Alpine, instead of as a separator between
15665 pattern values.
15666 All other backslashes are literal backslashes and should not be escaped.
15668 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15669 for more information on Patterns.
15671 Look <A HREF="h_edit_nav_cmds">here</A>
15672 to see the available Editing and Navigation commands.
15674 &lt;End of help on this topic&gt;
15675 </BODY>
15676 </HTML>
15677 ======= h_config_role_newspat =======
15678 <HTML>
15679 <HEAD>
15680 <TITLE>News Pattern Explained</TITLE>
15681 </HEAD>
15682 <BODY>
15683 <H1>News Pattern Explained</H1>
15685 If this pattern is non-blank, then for this rule to be considered a
15686 match, at least one of the newsgroups from
15687 the Newsgroups line of the message must match this pattern.
15688 If this pattern is a list of patterns, then at least one of the
15689 newsgroups must match at least one of the patterns.
15690 (Any other non-blank parts of the Pattern must match, too.)
15692 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
15693 &quot;!&quot; &quot;toggle NOT&quot; command.
15694 This changes the meaning of the News pattern so that it has the opposite meaning.
15695 It will be considered a match if there are no matches between the
15696 addresses in the Newsgroups: line and the list of News patterns.
15698 Don't make the mistake of putting the &quot;!&quot; in the data field for
15699 the pattern.
15700 For example, if you type the characters &quot;!frizzle&quot; into the News
15701 pattern, the pattern will look like:
15703 <PRE>
15704  News pattern = !frizzle
15705 </PRE>
15707 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15708 In order to match messages that do not have &quot;frizzle&quot; in
15709 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
15710 by carriage return for the value of the News pattern, then negate it
15711 by typing the &quot;!&quot; command.
15712 It should end up looking like
15714 <PRE>
15715  ! News pattern = frizzle
15716 </PRE>
15718 A technicality: Since comma is the character used to separate multiple
15719 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15720 you want to include a literal comma in the field.
15721 In other words, if you type a backslash followed by a comma it will
15722 be interpreted as a comma by Alpine, instead of as a separator between
15723 pattern values.
15724 All other backslashes are literal backslashes and should not be escaped.
15727 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15728 for more information on Patterns.
15730 Look <A HREF="h_edit_nav_cmds">here</A>
15731 to see the available Editing and Navigation commands.
15733 &lt;End of help on this topic&gt;
15734 </BODY>
15735 </HTML>
15736 ======= h_config_role_subjpat =======
15737 <HTML>
15738 <HEAD>
15739 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
15740 </HEAD>
15741 <BODY>
15742 <H1>&quot;Subject:&quot; Pattern Explained</H1>
15744 This is similar to the other parts of the Pattern.
15745 It is compared with
15746 the contents from the Subject of the message.
15748 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15749 for more information on Patterns.
15751 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
15752 &quot;!&quot; &quot;toggle NOT&quot; command.
15753 This changes the meaning of the Subject pattern so that it has the opposite meaning.
15754 It will be considered a match if there are no matches between the
15755 text in the Subject: line and the list of Subject patterns.
15758 If you wish to have a header pattern that is not one of the six standard
15759 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
15761 A technicality: Since comma is the character used to separate multiple
15762 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15763 you want to include a literal comma in the field.
15764 In other words, if you type a backslash followed by a comma it will
15765 be interpreted as a comma by Alpine, instead of as a separator between
15766 pattern values.
15767 All other backslashes are literal backslashes and should not be escaped.
15769 Look <A HREF="h_edit_nav_cmds">here</A>
15770 to see the available Editing and Navigation commands.
15772 &lt;End of help on this topic&gt;
15773 </BODY>
15774 </HTML>
15775 ======= h_config_role_alltextpat =======
15776 <HTML>
15777 <HEAD>
15778 <TITLE>AllText Pattern Explained</TITLE>
15779 </HEAD>
15780 <BODY>
15781 <H1>AllText Pattern Explained</H1>
15783 This is similar to the header patterns.
15784 Instead of comparing with text in a particular header field it 
15785 is compared with all of the text in the message header and body.
15787 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
15788 &quot;!&quot; &quot;toggle NOT&quot; command.
15789 This changes the meaning of the AllText pattern so that it has the opposite meaning.
15790 It will be considered a match if there are no matches between the
15791 text of the message and the list of AllText patterns.
15793 Don't make the mistake of putting the &quot;!&quot; in the data field for
15794 the pattern.
15795 For example, if you type the characters &quot;!frizzle&quot; into the AllText
15796 pattern, the pattern will look like:
15798 <PRE>
15799  AllText pattern = !frizzle
15800 </PRE>
15802 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15803 In order to match messages that do not have &quot;frizzle&quot; in
15804 the text of the message, first type the characters &quot;frizzle&quot; followed
15805 by carriage return for the value of the AllText pattern, then negate it
15806 by typing the &quot;!&quot; command.
15807 It should end up looking like
15809 <PRE>
15810  ! AllText pattern = frizzle
15811 </PRE>
15813 It is possible that you may notice degraded performance when using
15814 AllText Patterns.
15816 A technicality: Since comma is the character used to separate multiple
15817 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15818 you want to include a literal comma in the field.
15819 In other words, if you type a backslash followed by a comma it will
15820 be interpreted as a comma by Alpine, instead of as a separator between
15821 pattern values.
15822 All other backslashes are literal backslashes and should not be escaped.
15824 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15825 for more information on Patterns.
15827 Look <A HREF="h_edit_nav_cmds">here</A>
15828 to see the available Editing and Navigation commands.
15830 &lt;End of help on this topic&gt;
15831 </BODY>
15832 </HTML>
15833 ======= h_config_role_bodytextpat =======
15834 <HTML>
15835 <HEAD>
15836 <TITLE>BodyText Pattern Explained</TITLE>
15837 </HEAD>
15838 <BODY>
15839 <H1>BodyText Pattern Explained</H1>
15841 This is similar to the header patterns.
15842 Instead of comparing with text in a particular header field it 
15843 is compared with all of the text in the message body.
15845 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
15846 &quot;!&quot; &quot;toggle NOT&quot; command.
15847 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
15848 It will be considered a match if there are no matches between the
15849 text of the body of the message and the list of BodyText patterns.
15851 Don't make the mistake of putting the &quot;!&quot; in the data field for
15852 the pattern.
15853 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
15854 pattern, the pattern will look like:
15856 <PRE>
15857  BdyText pattern = !frizzle
15858 </PRE>
15860 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15861 In order to match messages that do not have &quot;frizzle&quot; in
15862 their BodyText, first type the characters &quot;frizzle&quot; followed
15863 by carriage return for the value of the BodyText pattern, then negate it
15864 by typing the &quot;!&quot; command.
15865 It should end up looking like
15867 <PRE>
15868  ! BodyText pattern = frizzle
15869 </PRE>
15871 It is possible that you may notice degraded performance when using
15872 BodyText Patterns.
15874 A technicality: Since comma is the character used to separate multiple
15875 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15876 you want to include a literal comma in the field.
15877 In other words, if you type a backslash followed by a comma it will
15878 be interpreted as a comma by Alpine, instead of as a separator between
15879 pattern values.
15880 All other backslashes are literal backslashes and should not be escaped.
15882 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15883 for more information on Patterns.
15885 Look <A HREF="h_edit_nav_cmds">here</A>
15886 to see the available Editing and Navigation commands.
15888 &lt;End of help on this topic&gt;
15889 </BODY>
15890 </HTML>
15891 ======= h_config_role_charsetpat =======
15892 <HTML>
15893 <HEAD>
15894 <TITLE>Character Set Pattern Explained</TITLE>
15895 </HEAD>
15896 <BODY>
15897 <H1>Character Set Pattern Explained</H1>
15899 A message may use one or more character sets.
15900 This part of the Pattern matches messages that make use of
15901 certain specified character sets.
15902 It will be considered a match if a message uses any of the character
15903 sets in the list you give here.
15906 When filling in a value for this field, you may use
15907 the &quot;T&quot; command, which presents you with a large list of
15908 possible character sets to choose from.
15909 You may also just type in the name of a character set, and it need not
15910 be one that Alpine knows about.
15913 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
15914 GB2312) you may also use some shorthand names that Alpine provides.
15915 These names are more understandable shorthand names for sets of 
15916 character set names.
15917 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
15918 Selecting one of these shorthand names is equivalent to selecting all of
15919 the character sets that make up the set.
15920 You can see all of these shorthand names and the lists of character sets
15921 they stand for by typing the &quot;T&quot; command.
15924 For the purposes of this Pattern,
15925 Alpine will search through a message for all of the text parts and
15926 collect the character sets declared for each part.
15927 It will also look in the Subject line for a character set used there.
15928 Alpine does not actually look at the text of the message or the text
15929 of the Subject to determine if a declared character set is actually
15930 used, it looks only at the declarations themselves in the MIME part headers
15931 and in the Subject.
15934 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
15935 &quot;!&quot; &quot;toggle NOT&quot; command.
15936 This changes the meaning of the Character Set pattern so that
15937 it has the opposite meaning.
15938 It will be considered a match if none of the character sets in the
15939 list are used in a message.
15941 Don't make the mistake of putting the &quot;!&quot; in the data field for
15942 the pattern.
15943 For example, if you type the characters &quot;!GB2312&quot; into the
15944 Character Set pattern, the pattern will look like:
15946 <PRE>
15947  Charset pattern = !GB2312
15948 </PRE>
15950 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
15951 In order to match messages that do not have the
15952 character set &quot;GB2312&quot;
15953 set, first type the characters &quot;GB2312&quot; followed
15954 by carriage return for the value of the Character Set pattern, then negate it
15955 by typing the &quot;!&quot; command.
15956 It should end up looking like
15958 <PRE>
15959  ! Charset pattern = GB2312
15960 </PRE>
15962 A technicality: Since comma is the character used to separate multiple
15963 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15964 you want to include a literal comma in the field.
15965 In other words, if you type a backslash followed by a comma it will
15966 be interpreted as a comma by Alpine, instead of as a separator between
15967 pattern values.
15968 All other backslashes are literal backslashes and should not be escaped.
15970 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15971 for more information on Patterns.
15973 Look <A HREF="h_edit_nav_cmds">here</A>
15974 to see the available Editing and Navigation commands.
15976 &lt;End of help on this topic&gt;
15977 </BODY>
15978 </HTML>
15979 ======= h_config_role_keywordpat =======
15980 <HTML>
15981 <HEAD>
15982 <TITLE>Keyword Pattern Explained</TITLE>
15983 </HEAD>
15984 <BODY>
15985 <H1>Keyword Pattern Explained</H1>
15987 A folder may have user-defined keywords.
15988 These are similar to the Important flag, which the user may set using the
15989 Flag command.
15990 The difference is that the Important flag is always present for each folder.
15991 User-defined keywords are picked by the user.
15992 You may add new keywords by defining them in the
15993 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
15994 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
15995 the Flag command may be used to set or clear the keyword on individual messages.
15996 If you have given a keyword a nickname when configuring it,
15997 that nickname may be used instead of the actual keyword.
16000 When filling in a value for this field, it may be easiest to use
16001 the &quot;T&quot; command, which presents you with a list of the keywords
16002 you have defined to choose from.
16005 This part of the Pattern matches messages with certain keywords set.
16006 It will be considered a match if a message has any of the keywords in the
16007 list set.
16008 A keyword that you have not defined using the
16009 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16010 will not be a match.
16013 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16014 &quot;!&quot; &quot;toggle NOT&quot; command.
16015 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16016 It will be considered a match if none of the keywords in the list are set
16017 for a message.
16018 A keyword that you have not defined using the
16019 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16020 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16022 Don't make the mistake of putting the &quot;!&quot; in the data field for
16023 the pattern.
16024 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16025 pattern, the pattern will look like:
16027 <PRE>
16028  Keyword pattern = !frizzle
16029 </PRE>
16031 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16032 In order to match messages that do not have the keyword &quot;frizzle&quot;
16033 set, first type the characters &quot;frizzle&quot; followed
16034 by carriage return for the value of the Keyword pattern, then negate it
16035 by typing the &quot;!&quot; command.
16036 It should end up looking like
16038 <PRE>
16039  ! Keyword pattern = frizzle
16040 </PRE>
16042 A technicality: Since comma is the character used to separate multiple
16043 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16044 you want to include a literal comma in the field.
16045 In other words, if you type a backslash followed by a comma it will
16046 be interpreted as a comma by Alpine, instead of as a separator between
16047 pattern values.
16048 All other backslashes are literal backslashes and should not be escaped.
16050 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16051 for more information on Patterns.
16053 Look <A HREF="h_edit_nav_cmds">here</A>
16054 to see the available Editing and Navigation commands.
16056 &lt;End of help on this topic&gt;
16057 </BODY>
16058 </HTML>
16059 ======= h_config_role_arbpat =======
16060 <HTML>
16061 <HEAD>
16062 <TITLE>Extra Header Patterns Explained</TITLE>
16063 </HEAD>
16064 <BODY>
16065 <H1>Extra Header Patterns Explained</H1>
16067 The header patterns that come after the Participant pattern but before the 
16068 AllText pattern are extra header patterns that you have added to a rule's
16069 Pattern. These are just like the other header patterns except that
16070 the contents of the particular header listed on the left hand side will
16071 be used for comparisons.
16073 The &quot;eXtraHdr&quot; command may be used to add more of these
16074 header patterns to the rule you are editing.
16076 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16077 extra header pattern from the rule you are editing.
16079 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16080 &quot;!&quot; &quot;toggle NOT&quot; command.
16081 This changes the meaning of the pattern so that it has the opposite meaning.
16082 It will be considered a match if there are no matches between the
16083 text in the header line and the list of patterns.
16085 Don't make the mistake of putting the &quot;!&quot; in the data field for
16086 the pattern.
16087 For example, if you type the characters &quot;!frizzle&quot; into the
16088 pattern, the pattern will look like:
16090 <PRE>
16091  Xyz pattern = !frizzle
16092 </PRE>
16094 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16095 In order to match messages that do not have &quot;frizzle&quot; in
16096 their Xyz field, first type the characters &quot;frizzle&quot; followed
16097 by carriage return for the value of the pattern, then negate it
16098 by typing the &quot;!&quot; command.
16099 It should end up looking like
16101 <PRE>
16102  ! Xyz pattern = frizzle
16103 </PRE>
16106 A technicality: Since comma is the character used to separate multiple
16107 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16108 you want to include a literal comma in the field.
16109 In other words, if you type a backslash followed by a comma it will
16110 be interpreted as a comma by Alpine, instead of as a separator between
16111 pattern values.
16112 All other backslashes are literal backslashes and should not be escaped.
16114 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16115 for more information on Patterns.
16117 Look <A HREF="h_edit_nav_cmds">here</A>
16118 to see the available Editing and Navigation commands.
16120 &lt;End of help on this topic&gt;
16121 </BODY>
16122 </HTML>
16123 ======= h_config_role_cat_cmd =======
16124 <HTML>
16125 <HEAD>
16126 <TITLE>Categorizer Command Explained</TITLE>
16127 </HEAD>
16128 <BODY>
16129 <H1>Categorizer Command Explained</H1>
16131 This is a command that is run with its standard input set to the message
16132 being checked and its standard output discarded.
16133 The full directory path should be specified.
16134 The command will be run and then its exit status will be checked against
16135 the Exit Status Interval, which defaults to just the value zero.
16136 If the exit status of the command falls in the interval, it is considered
16137 a match, otherwise it is not a match.
16140 This option may actually be a list of commands.
16141 The first one that exists and is executable is used.
16142 That makes it possible to use the same configuration with Unix Alpine and
16143 PC-Alpine.
16146 If none of the commands in the list exists and is executable then the rule
16147 is <EM>not</EM> a match.
16148 If it is possible that the command may not exist, you should be careful
16149 to structure your rules so that nothing destructive
16150 happens when the command does not exist.
16151 For example, you might have a filter that filters away spam when there is
16152 a match but does nothing when there is not a match.
16153 That would cause no harm if the command didn't exist.
16154 However, if you have a filter that filters away spam when there is not
16155 a match and keeps it when there is a match, that would filter everything
16156 if the categorizer command didn't exist.
16158 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16159 setup for the bogofilter filter.
16162 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16163 for more information on Patterns.
16165 Look <A HREF="h_edit_nav_cmds">here</A>
16166 to see the available Editing and Navigation commands.
16168 &lt;End of help on this topic&gt;
16169 </BODY>
16170 </HTML>
16171 ======= h_config_role_cat_cmd_example =======
16172 <HTML>
16173 <HEAD>
16174 <TITLE>Categorizer Command Example</TITLE>
16175 </HEAD>
16176 <BODY>
16177 <H1>Categorizer Command Example</H1>
16179 Bogofilter
16180 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16181 is a mail filter that attempts to classify mail as spam or
16182 non-spam using statistical analysis of the message content.
16183 When run with no arguments and a message as standard input, it exits with
16184 exit status 0 if it thinks a message is spam and 1 if it thinks
16185 it is not spam.
16186 To use bogofilter as your Categorizer Command you would simply set Command to
16187 the pathname of the bogofilter program.
16188 For example,
16190 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16192 Exit status of zero is what you are interested in, so you'd set the
16193 Exit Status Interval to
16195 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16198 In order to prevent downloading an entire huge message to check for spam, you
16199 might want to set the Character Limit to a few thousand characters (the
16200 assumption being that the spam will reveal itself in those characters)
16202 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16205 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16206 be to move the message to a spam folder.
16207 It would usually be wise to also check the &quot;Message is Recent&quot;
16208 part of the rule so that messages are only checked when they first arrive,
16209 and to restrict the Current Folder Type to just your INBOX.
16210 The reason for checking only Recent messages is to save the time it takes
16211 to run bogofilter on each message.
16212 As an experiment, you might start out by using this in an Indexcolor Rule
16213 instead of a Filter Rule.
16214 In that case, you probably wouldn't check the Recent checkbox.
16216 The use described above assumes that you are somehow maintaining bogofilter's
16217 database of words associated with spam and non-spam messages.
16218 One way to start your database would be to select a bunch of spam messages
16219 in Alpine (you might Save spam messages to a special folder or use Alpine's
16220 Select command to select several) and then Apply
16221 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16222 a pipe command to the spam messages.
16223 For example, you could have a shell script or an alias
16224 called <EM>this_is_spam</EM>, which would simply be the command
16226 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16229 It is probably best to use the pipe command's Raw Text, With Delimiter,
16230 and Free Output options,
16231 which are at the bottom of the screen when you type the pipe command.
16232 That's because bogofilter expects the raw message as input, and uses
16233 the Delimiters to tell when a new message starts.
16234 You would not need to use a separate pipe for each message, because
16235 bogofilter can handle multiple messages at once.
16237 Similarly, you would select a group of non-spam messages
16238 and run them through a <EM>this_is_nonspam</EM> script
16239 that was something like
16241 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16244 For the more adventurous, the next step might be to automate the upkeep of
16245 the bogofilter database.
16246 It might make more sense to have bogofilter be part of the delivery process,
16247 but it is also possible to do it entirely from within Alpine.
16248 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16249 the &quot;-u&quot; argument will cause bogofilter to update the database.
16251 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16253 You'd want a couple more aliases or shell scripts called something like
16254 <EM>change_to_spam</EM>
16256 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16259 <EM>change_to_nonspam</EM>
16261 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16263 When you run across a message in your INBOX that should have been
16264 classified as spam you would pipe it to the change_to_spam script, and
16265 when you run across a message in your spam folder that should have been
16266 left in your INBOX you would pipe it through change_to_nonspam.
16269 There is a technical problem with this approach.
16270 Alpine may check your filters more than once.
16271 In particular, every time you start Alpine the filters will be checked for
16272 each message.
16273 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16274 then Alpine will recheck for matches in messages that have changed state
16275 at the time you close the folder and before expunging.
16276 This is usually ok.
16277 However, in this case it is a problem because the command
16279 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16281 has the side effect of updating the database.
16282 So you run the risk of updating the database multiple times for a single
16283 message instead of updating it just once per message.
16284 There are some ways to work around this problem.
16285 What you need is a way to mark the message after you have run the filter.
16286 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16287 Besides having the filter move the message to a spam folder, also have it
16288 set the Bogo keyword.
16289 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16290 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16291 This rule can only set the Bogo keyword for the messages that it matches.
16292 You will also need to add a second rule right after this one that
16293 matches all the messages that don't have the Bogo keyword set
16294 (put the keyword in the Keyword pattern and toggle
16295 the Not with the ! command)
16296 and takes the action of setting it.
16297 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16298 (and so it won't re-run the bogofilter command) if the keyword is already
16299 set.
16301 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16302 on all messages that don't have the Bogo keyword set.
16303 This will have the side effect of inserting that message in the bogofilter
16304 database, match or not.
16305 If this rule matches (it is spam), the Bogo keyword will be set and
16306 the message will be moved to a spam folder.
16307 If it does not match, the
16308 following rule will mark the message by turning on the keyword.
16309 This second rule should be a non-terminating
16310 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
16311 rule so that it doesn't stop the filtering process before the rest of
16312 your rules are consulted.
16315 In summary, the first rule is something like
16316 <PRE>
16317   Nickname          = bogofilter -u rule
16318   Current Folder Type =
16319                (*) Specific
16320                    Folder = INBOX
16322   ! Keyword pattern = Bogo
16324   External Categorizer Commands =
16325        Command              = /usr/local/bin/bogofilter -u
16326        Exit Status Interval = (0,0)
16327        Character Limit      = <No Value Set: using "-1">  (optionally set this)
16329   Filter Action =
16330        (*) Move
16331            Folder = spam
16332   
16333   Set These Keywords   = Bogo
16334 </PRE>
16336 and the following rule is
16337 <PRE>
16338   Nickname          = Set Bogo Keyword
16339   Current Folder Type =
16340                (*) Specific
16341                    Folder = INBOX
16343   ! Keyword pattern = Bogo
16345   Filter Action =
16346        (*) Just Set Message Status
16348   Set These Keywords   = Bogo
16350   Features =
16351       [X]  dont-stop-even-if-rule-matches
16352 </PRE>
16354 If it is possible for you to insert bogofilter in the delivery process instead
16355 of having it called from Alpine you could prevent having to wait
16356 for the bogofilter processing while you read your mail.
16357 You would have bogofilter add a header to the message at the time of delivery
16358 that identified it as spam or nonspam.
16359 With this method, you could avoid using a Categorizer Command while running Alpine,
16360 and just match on the header instead.
16361 You might still want to use the scripts mentioned above to initialize the
16362 database or to re-classify wrongly classified messages.
16365 Finally, it isn't for the faint-hearted,
16366 but it is also possible to run bogofilter from PC-Alpine.
16367 You can install Cygwin from
16368 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
16369 then compile bogofilter in the cygwin environment, and run it from
16370 within PC-Alpine.
16371 You would end up with a Categorizer command that looked something like
16373 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
16375 Note that the &quot;.exe&quot; extension is explicit,
16376 and that the bogofilter.exe executable should be in the same directory
16377 as cygwin1.dll.
16380 &lt;End of help on this topic&gt;
16381 </BODY>
16382 </HTML>
16383 ======= h_config_role_cat_status =======
16384 <HTML>
16385 <HEAD>
16386 <TITLE>Exit Status Interval Explained</TITLE>
16387 </HEAD>
16388 <BODY>
16389 <H1>Exit Status Interval Explained</H1>
16391 The categorizer command is run and the result is the exit status of
16392 that command.
16393 If that exit status falls in the Exit Status Interval
16394 then it is considered a match, otherwise it is not a match.
16395 Of course for the entire rule to match, it must also be checked against
16396 the other defined parts of the Pattern.
16398 The Exit Status Interval defaults to the single value 0 (zero).
16399 If you define it, it should be set to something like:
16401 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
16403 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
16404 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
16405 positive and negative integers.
16407 Actually, a list of intervals may be used if you wish.
16408 A list would look like
16410 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
16412 When there is an Exit Status Interval defined, it is a match if the exit status
16413 of the categorizer command is contained in any of the intervals.
16414 The intervals include both endpoints.
16416 The default interval is
16418 <CENTER><SAMP>(0,0)</SAMP></CENTER>
16420 and it matches only if the command exits with exit status equal to zero.
16423 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16424 for more information on Patterns.
16426 Look <A HREF="h_edit_nav_cmds">here</A>
16427 to see the available Editing and Navigation commands.
16429 &lt;End of help on this topic&gt;
16430 </BODY>
16431 </HTML>
16432 ======= h_config_role_cat_limit =======
16433 <HTML>
16434 <HEAD>
16435 <TITLE>Character Limit Explained</TITLE>
16436 </HEAD>
16437 <BODY>
16438 <H1>Character Limit Explained</H1>
16440 Setting this option makes it possible to limit how much of the message
16441 is made available to the categorizer command as input.
16442 The default value (-1) means that the entire message is fed to the
16443 command.
16444 A value of 0 (zero) means that only the headers of the message are
16445 made available.
16446 A positive integer means that the headers plus that many characters from
16447 the body of the message are passed to the categorizer.
16450 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16451 for more information on Patterns.
16453 Look <A HREF="h_edit_nav_cmds">here</A>
16454 to see the available Editing and Navigation commands.
16456 &lt;End of help on this topic&gt;
16457 </BODY>
16458 </HTML>
16459 ======= h_config_role_age =======
16460 <HTML>
16461 <HEAD>
16462 <TITLE>Age Interval Explained</TITLE>
16463 </HEAD>
16464 <BODY>
16465 <H1>Age Interval Explained</H1>
16467 The Age Interval, if defined, is part of the Pattern.
16468 If you use this, it should be set to something like:
16470 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
16472 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
16473 The special value &quot;INF&quot; may be used for the max value.
16474 It represents infinity.
16476 In rare cases it may be useful to use the more general form of the value,
16477 which is a comma-separated list of intervals.
16478 It would look something like:
16480 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
16482 When there is an Age Interval defined, it is a match if the age, in days, of
16483 the message is contained in the interval.
16484 The interval includes both endpoints.
16485 If the option is set to a list of intervals then it is a match if the
16486 age of the message is contained in any of the intervals.
16488 Even though this option is called Age, it isn't actually
16489 the <EM>age</EM> of the message.
16490 Instead, it is how many days ago the message arrived in one of your folders.
16491 If the current time is a little past midnight, then a message that arrived
16492 just before midnight arrived yesterday, even though the message is only
16493 a few minutes old.
16494 By default, the date being used is not the date in the Date
16495 header of the message.
16496 It is the date that the message arrived in one of your folders.
16497 When you Save a message from one folder to another that arrival date
16498 is preserved.
16499 If you would like to use the date in the Date header that is possible.
16500 Turn on the option
16501 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
16502 near the bottom of the rule definition.
16504 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
16505 The age interval
16507 <CENTER><SAMP>(2,2)</SAMP></CENTER>
16509 matches all messages that arrived on the day before yesterday.
16510 The interval
16512 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
16514 matches all messages that arrived at least 180 days before today.
16515 The interval
16517 <CENTER><SAMP>(0,1)</SAMP></CENTER>
16519 matches all messages that arrived today or yesterday.
16522 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16523 for more information on Patterns.
16525 Look <A HREF="h_edit_nav_cmds">here</A>
16526 to see the available Editing and Navigation commands.
16528 &lt;End of help on this topic&gt;
16529 </BODY>
16530 </HTML>
16531 ======= h_config_role_size =======
16532 <HTML>
16533 <HEAD>
16534 <TITLE>Size Interval Explained</TITLE>
16535 </HEAD>
16536 <BODY>
16537 <H1>Size Interval Explained</H1>
16539 The Size Interval, if defined, is part of the Pattern.
16540 If you use this, it should be set to something like:
16542 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
16544 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
16545 The special value &quot;INF&quot; may be used for the max value.
16546 It represents infinity.
16548 In rare cases it may be useful to use the more general form of the value,
16549 which is a comma-separated list of intervals.
16550 It would look something like:
16552 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
16554 When there is a Size Interval defined, it is a match if the size of
16555 the message is contained in the interval.
16556 The interval includes both endpoints.
16557 If the option is set to a list of intervals then it is a match if the
16558 size of the message is contained in any of the intervals.
16560 The size interval
16562 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
16564 matches all messages with sizes greater than or equal to 10000, and less
16565 than or equal to 50000.
16566 The interval
16568 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
16570 matches all messages with sizes greater than or equal to 100000.
16573 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16574 for more information on Patterns.
16576 Look <A HREF="h_edit_nav_cmds">here</A>
16577 to see the available Editing and Navigation commands.
16579 &lt;End of help on this topic&gt;
16580 </BODY>
16581 </HTML>
16582 ======= h_config_role_scorei =======
16583 <HTML>
16584 <HEAD>
16585 <TITLE>Score Interval Explained</TITLE>
16586 </HEAD>
16587 <BODY>
16588 <H1>Score Interval Explained</H1>
16590 The Score Interval, if defined, is part of the Pattern.
16591 If you use this, it should be set to something like:
16593 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
16595 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
16596 -32000 and 32000.
16597 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
16598 the min and max values.
16599 These represent negative and positive infinity.
16601 Actually, the value may be a list of intervals rather than just a
16602 single interval if that is useful.
16603 The elements of the list are separated by commas like:
16605 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
16607 When there is a Score Interval defined, it is a match if the score for
16608 the message is contained in any of the intervals.
16609 The intervals include both endpoints.
16610 The score for a message is calculated by looking at every scoring rule
16611 defined and adding up the Score Values for the rules that match the message.
16612 Scoring rules are created using the
16613 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
16616 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16617 for more information on Patterns.
16619 Look <A HREF="h_edit_nav_cmds">here</A>
16620 to see the available Editing and Navigation commands.
16622 &lt;End of help on this topic&gt;
16623 </BODY>
16624 </HTML>
16625 ======= h_config_role_fldr_type =======
16626 <HTML>
16627 <HEAD>
16628 <TITLE>Current Folder Type Explained</TITLE>
16629 </HEAD>
16630 <BODY>
16631 <H1>Current Folder Type Explained</H1>
16633 The Current Folder Type is part of the role's Pattern.
16634 It refers to the type of the currently open folder, which is the folder
16635 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
16636 In order for a role to be considered a match, the current folder must
16637 be of the type you set here.
16638 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16639 all what you might think.
16641 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
16642 example, then
16643 that role will only be a match if the current folder is a newsgroup and
16644 the rest of the Pattern matches.
16645 The value &quot;Specific&quot; may be used when you want to limit the match
16646 to a specific folder (not just a specific type of folder), or to a list of
16647 specific folders.
16649 In order to match a specific folder you Select the &quot;Specific&quot;
16650 button <EM>AND</EM> fill in
16651 the name (or list of names) of
16652 the folder in the &quot;Folder List&quot; field.
16653 If the current folder is any of the folders in the list, that is considered
16654 a match.
16655 The name of each folder in the list may be either &quot;INBOX&quot;,
16656 the technical specification
16657 of the folder (like what appears in your configuration file) or, if the
16658 folder is one of your incoming folders, it may be the nickname you've given
16659 the folder.
16660 Here are a couple samples of specific folder names:
16662 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16664 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16666 The easiest way to fill in the &quot;Folder List&quot; field is to use
16667 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
16668 highlighted, or to use the &quot;Take&quot; command with the configuration
16669 feature
16670 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
16671 turned on.
16672 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16673 Current Folder Type is set to &quot;Specific&quot;, and any value that
16674 &quot;Folder List&quot; has is ignored unless the type
16675 is set to &quot;Specific&quot;.
16677 When reading a newsgroup, there may be a performance penalty
16678 incurred when collecting the information necessary to check a Pattern.
16679 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16681 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16682 for more information on Patterns.
16684 Look <A HREF="h_edit_nav_cmds">here</A>
16685 to see the available Editing and Navigation commands.
16687 &lt;End of help on this topic&gt;
16688 </BODY>
16689 </HTML>
16690 ======= h_config_filt_rule_type =======
16691 <HTML>
16692 <HEAD>
16693 <TITLE>Filter Action Explained</TITLE>
16694 </HEAD>
16695 <BODY>
16696 <H1>Filter Action Explained</H1>
16698 The Filter Action specifies the action to be taken when the Pattern is a
16699 match.
16700 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
16701 &quot;Just Set Message Status&quot;.
16703 If it is set to &quot;Delete&quot;, then the message that matches the
16704 Pattern will be deleted from the open folder.
16706 If it is set to &quot;Move&quot;, then the name of the folder to which
16707 the matching message should be moved is given in the &quot;Folder List&quot; field on the
16708 next line of the screen.
16709 A list of folders separated by commas may be given, in which case the
16710 message will be copied to all of the folders in the list before it is
16711 deleted.
16713 If it is set to neither of those two values (it is set to the value
16714 labeled &quot;Just Set Message Status&quot;) then the message status
16715 setting will happen
16716 but the message will not be deleted or moved.
16718 If you are Moving a message you may also set Message Status if you wish.
16720 The easiest way to fill in the &quot;Folder List&quot; field is to use
16721 the T command that is available when the &quot;Folder List&quot; line is
16722 highlighted.
16723 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16724 Filter Action is set to &quot;Move&quot;, and any value that
16725 &quot;Folder List&quot; has is ignored unless the type
16726 is set to &quot;Move&quot;.
16728 There are a few tokens that may be used in the names in the Folder List.
16729 They are all related to the date on which the filtering is taking place.
16730 The tokens are words surrounded by underscores.
16731 For example, if you want your filter to move messages to a folder named
16732 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
16733 you could specify the folder as
16734 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
16735 which would result in a file named something like
16736 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
16738 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
16739 which would result in a file named something like
16740 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
16741 The available tokens are listed
16742 <A HREF="h_index_tokens">here</A>.
16744 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16745 for more information on Patterns.
16747 Look <A HREF="h_edit_nav_cmds">here</A>
16748 to see the available Editing and Navigation commands.
16750 &lt;End of help on this topic&gt;
16751 </BODY>
16752 </HTML>
16753 ======= h_config_score_fldr_type =======
16754 <HTML>
16755 <HEAD>
16756 <TITLE>Current Folder Type Explained</TITLE>
16757 </HEAD>
16758 <BODY>
16759 <H1>Current Folder Type Explained</H1>
16761 The Current Folder Type is part of the scoring rule's Pattern.
16762 It refers to the type of the folder that
16763 the message being scored is in.
16764 In order for a rule to be considered a match, the current folder must
16765 be of the type you set here.
16766 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16767 all what you might think.
16769 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16770 example, then
16771 that Pattern will only match if the current folder is a newsgroup and
16772 the rest of the Pattern matches.
16773 The value &quot;Specific&quot; may be used when you want to limit the match
16774 to a specific folder (not just a specific type of folder), or to a list of
16775 specific folders.
16777 In order to match a specific folder you Select the &quot;Specific&quot;
16778 button <EM>AND</EM> fill in
16779 the name (or list of names) of
16780 the folder in the &quot;Folder List&quot; field.
16781 If the current folder is any of the folders in the list, that is considered
16782 a match.
16783 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16784 of the folder (like what appears in your configuration file) or, if the
16785 folder is one of your incoming folders, it may be the nickname you've given
16786 the folder.
16787 Here are a couple samples of specific folder names:
16789 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16791 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16793 The easiest way to fill in the &quot;Folder List&quot; field is to use
16794 the T command that is available when the &quot;Folder List&quot; line is
16795 highlighted.
16796 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16797 Current Folder Type is set to &quot;Specific&quot;, and any value that
16798 &quot;Folder List&quot; has is ignored unless the type
16799 is set to &quot;Specific&quot;.
16801 When reading a newsgroup, there may be a performance penalty
16802 incurred when collecting the information necessary to check a Pattern.
16803 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16804 For example, if you have Index Line Coloring rules that have Score Intervals
16805 defined then the scores for all the visible messages will need to be calculated.
16806 If some of your Scoring rules have 
16807 a Current Folder Type of
16808 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
16809 screen to draw more slowly when in a newsgroup.
16811 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16812 for more information on Patterns.
16814 Look <A HREF="h_edit_nav_cmds">here</A>
16815 to see the available Editing and Navigation commands.
16817 &lt;End of help on this topic&gt;
16818 </BODY>
16819 </HTML>
16820 ======= h_config_other_fldr_type =======
16821 <HTML>
16822 <HEAD>
16823 <TITLE>Current Folder Type Explained</TITLE>
16824 </HEAD>
16825 <BODY>
16826 <H1>Current Folder Type Explained</H1>
16828 The Current Folder Type is part of the rule's Pattern.
16829 It refers to the type of the folder being viewed.
16830 In order for a rule to be considered a match, the current folder must
16831 be of the type you set here.
16832 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16833 all what you might think.
16835 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16836 example, then
16837 that Pattern will only match if the current folder is a newsgroup.
16838 The value &quot;Specific&quot; may be used when you want to limit the match
16839 to a specific folder (not just a specific type of folder), or to a list of
16840 specific folders.
16842 In order to match a specific folder you Select the &quot;Specific&quot;
16843 button <EM>AND</EM> fill in
16844 the name (or list of names) of
16845 the folder in the &quot;Folder List&quot; field.
16846 If the current folder is any of the folders in the list, that is considered
16847 a match.
16848 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16849 of the folder (like what appears in your configuration file) or, if the
16850 folder is one of your incoming folders, it may be the nickname you've given
16851 the folder.
16852 Here are a couple samples of specific folder names:
16854 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16856 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16858 The easiest way to fill in the &quot;Folder List&quot; field is to use
16859 the T command that is available when the &quot;Folder List&quot; line is
16860 highlighted.
16861 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16862 Current Folder Type is set to &quot;Specific&quot;, and any value that
16863 &quot;Folder List&quot; has is ignored unless the type
16864 is set to &quot;Specific&quot;.
16866 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16867 for more information on Patterns.
16869 Look <A HREF="h_edit_nav_cmds">here</A>
16870 to see the available Editing and Navigation commands.
16872 &lt;End of help on this topic&gt;
16873 </BODY>
16874 </HTML>
16875 ======= h_config_incol_fldr_type =======
16876 <HTML>
16877 <HEAD>
16878 <TITLE>Current Folder Type Explained</TITLE>
16879 </HEAD>
16880 <BODY>
16881 <H1>Current Folder Type Explained</H1>
16883 The Current Folder Type is part of the Line Coloring rule's Pattern.
16884 It refers to the type of the folder for which the MESSAGE INDEX is
16885 being viewed.
16886 In order for a rule to be considered a match, the current folder must
16887 be of the type you set here.
16888 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16889 all what you might think.
16891 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16892 example, then
16893 that Pattern will only match if the current folder is a newsgroup and
16894 the rest of the Pattern matches.
16895 The value &quot;Specific&quot; may be used when you want to limit the match
16896 to a specific folder (not just a specific type of folder), or to a list of
16897 specific folders.
16899 In order to match a specific folder you Select the &quot;Specific&quot;
16900 button <EM>AND</EM> fill in
16901 the name (or list of names) of
16902 the folder in the &quot;Folder List&quot; field.
16903 If the current folder is any of the folders in the list, that is considered
16904 a match.
16905 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16906 of the folder (like what appears in your configuration file) or, if the
16907 folder is one of your incoming folders, it may be the nickname you've given
16908 the folder.
16909 Here are a couple samples of specific folder names:
16911 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16913 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16915 The easiest way to fill in the &quot;Folder List&quot; field is to use
16916 the T command that is available when the &quot;Folder List&quot; line is
16917 highlighted.
16918 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16919 Current Folder Type is set to &quot;Specific&quot;, and any value that
16920 &quot;Folder List&quot; has is ignored unless the type
16921 is set to &quot;Specific&quot;.
16923 When reading a newsgroup, there may be a performance penalty
16924 incurred when collecting the information necessary to check a Pattern.
16925 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16926 For example, a rule with a non-Normal Index Line Color
16927 and a Current Folder Type of
16928 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
16929 screen to draw more slowly when in a newsgroup.
16931 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16932 for more information on Patterns.
16934 Look <A HREF="h_edit_nav_cmds">here</A>
16935 to see the available Editing and Navigation commands.
16937 &lt;End of help on this topic&gt;
16938 </BODY>
16939 </HTML>
16940 ======= h_config_filt_fldr_type =======
16941 <HTML>
16942 <HEAD>
16943 <TITLE>Current Folder Type Explained</TITLE>
16944 </HEAD>
16945 <BODY>
16946 <H1>Current Folder Type Explained</H1>
16948 The Current Folder Type is part of the Filtering rule's Pattern.
16949 It refers to the type of the folder for which the filtering is being done.
16950 In order for a rule to be considered a match, the current folder must
16951 be of the type you set here.
16952 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16953 all what you might think.
16955 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16956 example, then
16957 that Pattern will only match if the current folder is a newsgroup and
16958 the rest of the Pattern matches.
16959 The value &quot;Specific&quot; may be used when you want to limit the match
16960 to a specific folder (not just a specific type of folder), or to a list of
16961 specific folders.
16963 In order to match a specific folder you Select the &quot;Specific&quot;
16964 button <EM>AND</EM> fill in
16965 the name (or list of names) of
16966 the folder in the &quot;Folder List&quot; field.
16967 If the current folder is any of the folders in the list, that is considered
16968 a match.
16969 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16970 of the folder (like what appears in your configuration file) or, if the
16971 folder is one of your incoming folders, it may be the nickname you've given
16972 the folder.
16973 Here are a couple samples of specific folder names:
16975 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16977 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16979 The easiest way to fill in the &quot;Folder List&quot; field is to use
16980 the T command that is available when the &quot;Folder List&quot; line is
16981 highlighted.
16982 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16983 Current Folder Type is set to &quot;Specific&quot;, and any value that
16984 &quot;Folder List&quot; has is ignored unless the type
16985 is set to &quot;Specific&quot;.
16987 When reading a newsgroup, there may be a performance penalty
16988 incurred when collecting the information necessary to check a Pattern.
16989 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16990 For example, a rule with a Current Folder Type of either
16991 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
16992 more slowly when opening a newsgroup.
16994 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16995 for more information on Patterns.
16997 Look <A HREF="h_edit_nav_cmds">here</A>
16998 to see the available Editing and Navigation commands.
17000 &lt;End of help on this topic&gt;
17001 </BODY>
17002 </HTML>
17003 ======= h_config_role_stat_imp =======
17004 <HTML>
17005 <HEAD>
17006 <TITLE>Message Important Status Explained</TITLE>
17007 </HEAD>
17008 <BODY>
17009 <H1>Message Important Status Explained</H1>
17011 This part of the Pattern may have one of three possible values.
17012 The default value is &quot;Don't care&quot;, which matches any message.
17013 The other two values are &quot;Yes&quot;, which means the message must be
17014 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17015 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17016 to be a match.
17018 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17019 for more information on Patterns.
17021 Look <A HREF="h_edit_nav_cmds">here</A>
17022 to see the available Editing and Navigation commands.
17024 &lt;End of help on this topic&gt;
17025 </BODY>
17026 </HTML>
17027 ======= h_config_role_stat_new =======
17028 <HTML>
17029 <HEAD>
17030 <TITLE>Message New Status Explained</TITLE>
17031 </HEAD>
17032 <BODY>
17033 <H1>Message New Status Explained</H1>
17035 This part of the Pattern may have one of three possible values.
17036 The default value is &quot;Don't care&quot;, which matches any message.
17037 The other two values are &quot;Yes&quot;, which means the message must be
17038 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17039 means the message must <EM>not</EM> be &quot;New&quot; in order
17040 to be a match.
17041 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17042 same as <EM>Seen</EM>.
17044 The nomenclature for New and Recent is a bit confusing:
17046 New means that the message is Unseen.
17047 It could have been in your mailbox for a long time but if you haven't looked
17048 at it, it is still considered New.
17049 That matches the default Alpine index display that shows an N for such a
17050 message.
17052 Recent means that the message was added to this folder since the last time
17053 you opened the folder.
17054 Alpine also shows an N by default for these types of messages.
17055 If you were to run two copies of Alpine that opened a folder one right after
17056 the other, a message would only show up as Recent in (at most) the first
17057 Alpine session.
17059 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17060 for more information on Patterns.
17062 Look <A HREF="h_edit_nav_cmds">here</A>
17063 to see the available Editing and Navigation commands.
17065 &lt;End of help on this topic&gt;
17066 </BODY>
17067 </HTML>
17068 ======= h_config_role_stat_recent =======
17069 <HTML>
17070 <HEAD>
17071 <TITLE>Message Recent Status Explained</TITLE>
17072 </HEAD>
17073 <BODY>
17074 <H1>Message Recent Status Explained</H1>
17076 This part of the Pattern may have one of three possible values.
17077 The default value is &quot;Don't care&quot;, which matches any message.
17078 The other two values are &quot;Yes&quot;, which means the message must be
17079 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17080 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17081 to be a match.
17082 &quot;Recent&quot; means that the message was added to the folder since
17083 the last time the folder was opened.
17084 If more than one mail client has the folder opened, the message will
17085 appear to be &quot;Recent&quot; to only one of the clients.
17087 The nomenclature for New and Recent is a bit confusing:
17089 New means that the message is Unseen.
17090 It could have been in your mailbox for a long time but if you haven't looked
17091 at it, it is still considered New.
17092 That matches the default Alpine index display that shows an N for such a
17093 message.
17095 Recent means that the message was added to this folder since the last time
17096 you opened the folder.
17097 Alpine also shows an N by default for these types of messages.
17098 If you were to run two copies of Alpine that opened a folder one right after
17099 the other, a message would only show up as Recent in (at most) the first
17100 Alpine session.
17102 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17103 for more information on Patterns.
17105 Look <A HREF="h_edit_nav_cmds">here</A>
17106 to see the available Editing and Navigation commands.
17108 &lt;End of help on this topic&gt;
17109 </BODY>
17110 </HTML>
17111 ======= h_config_role_stat_del =======
17112 <HTML>
17113 <HEAD>
17114 <TITLE>Message Deleted Status Explained</TITLE>
17115 </HEAD>
17116 <BODY>
17117 <H1>Message Deleted Status Explained</H1>
17119 This part of the Pattern may have one of three possible values.
17120 The default value is &quot;Don't care&quot;, which matches any message.
17121 The other two values are &quot;Yes&quot;, which means the message must be
17122 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17123 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17124 to be a match.
17126 If you are thinking of using this part of the Pattern as a way to prevent
17127 messages from being filtered more than once in a Filter Pattern,
17128 take a look at the Filter Option
17129 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17130 instead.
17131 It should work better than using this field since it will hide the filtered
17132 messages even if they are already Deleted.
17133 That option is at the bottom of the Filter configuration screen.
17135 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17136 for more information on Patterns.
17138 Look <A HREF="h_edit_nav_cmds">here</A>
17139 to see the available Editing and Navigation commands.
17141 &lt;End of help on this topic&gt;
17142 </BODY>
17143 </HTML>
17144 ======= h_config_role_stat_ans =======
17145 <HTML>
17146 <HEAD>
17147 <TITLE>Message Answered Status Explained</TITLE>
17148 </HEAD>
17149 <BODY>
17150 <H1>Message Answered Status Explained</H1>
17152 This part of the Pattern may have one of three possible values.
17153 The default value is &quot;Don't care&quot;, which matches any message.
17154 The other two values are &quot;Yes&quot;, which means the message must be
17155 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17156 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17157 to be a match.
17159 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17160 for more information on Patterns.
17162 Look <A HREF="h_edit_nav_cmds">here</A>
17163 to see the available Editing and Navigation commands.
17165 &lt;End of help on this topic&gt;
17166 </BODY>
17167 </HTML>
17168 ======= h_config_role_abookfrom =======
17169 <HTML>
17170 <HEAD>
17171 <TITLE>Address in Address Book Explained</TITLE>
17172 </HEAD>
17173 <BODY>
17174 <H1>Address in Address Book Explained</H1>
17176 This option gives you a way to match messages that contain an address
17177 that is in one of your address books.
17178 Only the simple entries in your address books are searched.
17179 Address book distribution lists are ignored!
17181 This part of the Pattern may have one of five possible values.
17182 The default value is &quot;Don't care&quot;, which matches any message.
17183 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17184 from the message must be in at least one of your
17185 address books in order to be a match.
17186 The value &quot;No, not in any address book&quot;
17187 means none of the addresses may
17188 be in any of your address books in order to be a match.
17190 The values &quot;Yes, in specific address books&quot; and
17191 &quot;No, not in any of specific address books&quot; are similar but instead
17192 of depending on all address books you are allowed to give a list of address
17193 books to look in.
17194 Usually this would be a single address book but it may be a
17195 list of address books as well.
17196 For each of these &quot;specific&quot; address book options you Select which
17197 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17198 name (or list of names) of the address book in the
17199 &quot;Abook List&quot; field.
17200 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17201 The easiest way to fill in the Abook List field it to use
17202 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17203 line is highlighted.
17204 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17205 option is set to one of the two &quot;Specific&quot;, values.
17207 The addresses from the message that are checked for are determined by the
17208 setting you have for &quot;Types of addresses to check for in address book&quot;.
17209 If you set this to &quot;From&quot; the From address from the message will
17210 be looked up in the address book.
17211 If you set it to &quot;To&quot; instead then the To addresses will be used.
17212 If any of the To addresses are in the address book then it is considered
17213 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17214 You could set it to both From and To, in which case all of the From and To
17215 addresses are used.
17216 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17217 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17218 exists or the From address if there is no Reply-To address.
17219 Same for the Sender address.
17221 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17222 for more information on Patterns.
17224 Look <A HREF="h_edit_nav_cmds">here</A>
17225 to see the available Editing and Navigation commands.
17227 &lt;End of help on this topic&gt;
17228 </BODY>
17229 </HTML>
17230 ======= h_config_inabook_from =======
17231 <HTML>
17232 <HEAD>
17233 <TITLE>From</TITLE>
17234 </HEAD>
17235 <BODY>
17236 <H1>From</H1>
17238 Setting the From line will cause the address from the From header line
17239 of the message to be checked for in the address book.
17241 &lt;End of help on this topic&gt;
17242 </BODY>
17243 </HTML>
17244 ======= h_config_inabook_replyto =======
17245 <HTML>
17246 <HEAD>
17247 <TITLE>Reply-To</TITLE>
17248 </HEAD>
17249 <BODY>
17250 <H1>Reply-To</H1>
17252 Setting the Reply-To line will cause the address from the Reply-To header line
17253 of the message to be checked for in the address book.
17254 However, if there is no Reply-To header line in the message the From header
17255 line will be used instead.
17256 We understand this is dumb but we don't have an easy way around it.
17258 &lt;End of help on this topic&gt;
17259 </BODY>
17260 </HTML>
17261 ======= h_config_inabook_sender =======
17262 <HTML>
17263 <HEAD>
17264 <TITLE>Sender</TITLE>
17265 </HEAD>
17266 <BODY>
17267 <H1>Sender</H1>
17269 Setting the Sender line will cause the address from the Sender header line
17270 of the message to be checked for in the address book.
17271 However, if there is no Sender header line in the message the From header
17272 line will be used instead.
17273 We understand this is dumb but we don't have an easy way around it.
17275 &lt;End of help on this topic&gt;
17276 </BODY>
17277 </HTML>
17278 ======= h_config_inabook_to =======
17279 <HTML>
17280 <HEAD>
17281 <TITLE>To</TITLE>
17282 </HEAD>
17283 <BODY>
17284 <H1>To</H1>
17286 Setting the To line will cause the address from the To header line
17287 of the message to be checked for in the address book.
17289 &lt;End of help on this topic&gt;
17290 </BODY>
17291 </HTML>
17292 ======= h_config_inabook_cc =======
17293 <HTML>
17294 <HEAD>
17295 <TITLE>CC</TITLE>
17296 </HEAD>
17297 <BODY>
17298 <H1>CC</H1>
17300 Setting the CC line will cause the address from the CC header line
17301 of the message to be checked for in the address book.
17303 &lt;End of help on this topic&gt;
17304 </BODY>
17305 </HTML>
17306 ======= h_config_role_stat_8bitsubj =======
17307 <HTML>
17308 <HEAD>
17309 <TITLE>Raw 8-bit in Subject Explained</TITLE>
17310 </HEAD>
17311 <BODY>
17312 <H1>Raw 8-bit in Subject Explained</H1>
17314 It seems that lots of unwanted email contains unencoded 8-bit characters
17315 in the Subject.
17316 Normally, characters with the 8th bit set are not allowed in the Subject
17317 header unless they are MIME-encoded.
17318 This option gives you a way to match messages that have Subjects that
17319 contain unencoded 8-bit characters.
17321 This part of the Pattern may have one of three possible values.
17322 The default value is &quot;Don't care&quot;, which matches any message.
17323 The other two values are &quot;Yes&quot;, which means the Subject of
17324 the message must contain unencoded 8-bit characters (characters with the
17325 most significant bit set)
17326 in order to be a match; or &quot;No&quot;, which
17327 means the Subject must <EM>not</EM>
17328 contain unencoded 8-bit characters in order to be a match.
17330 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17331 for more information on Patterns.
17333 Look <A HREF="h_edit_nav_cmds">here</A>
17334 to see the available Editing and Navigation commands.
17336 &lt;End of help on this topic&gt;
17337 </BODY>
17338 </HTML>
17339 ======= h_config_role_bom =======
17340 <HTML>
17341 <HEAD>
17342 <TITLE>Beginning of Month</TITLE>
17343 </HEAD>
17344 <BODY>
17345 <H1>Beginning of Month</H1>
17347 This option gives you a limited ability to take different actions depending on whether
17348 this is the first time Alpine has been run this month or not.
17349 Though it would be nice to have such an option available, this is not the
17350 same as whether or not this is the first time a paricular folder has been
17351 opened this month.
17352 If you want some action (probably Filtering) to take place in a folder each
17353 month, then you will need to be sure that the folder is opened during the
17354 first Alpine session of the month in order for this option to be helpful.
17356 This part of the Pattern may have one of three possible values.
17357 The default value is &quot;Don't care&quot;, which matches any message.
17358 The other two values are &quot;Yes&quot;, which means this is the first
17359 time Alpine has been run this month;
17360 or &quot;No&quot;, which
17361 means this is not the first time Alpine has been run this month.
17363 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17364 for more information on Patterns.
17366 Here are some technical details.
17367 The way that Alpine decides if it is the beginning of the month or not is
17368 to compare today's date with the date stored in the
17369 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17370 variable in the config file.
17371 If the month of today's date is later than the month stored in the variable,
17372 then this is considered to be the first time you have run Alpine this month, and
17373 that turns the Beginning of the Month option on.
17375 Look <A HREF="h_edit_nav_cmds">here</A>
17376 to see the available Editing and Navigation commands.
17378 &lt;End of help on this topic&gt;
17379 </BODY>
17380 </HTML>
17381 ======= h_config_role_boy =======
17382 <HTML>
17383 <HEAD>
17384 <TITLE>Beginning of Year</TITLE>
17385 </HEAD>
17386 <BODY>
17387 <H1>Beginning of Year</H1>
17389 This option gives you a limited ability to take different actions depending on whether
17390 this is the first time Alpine has been run this year or not.
17391 Though it would be nice to have such an option available, this is not the
17392 same as whether or not this is the first time a paricular folder has been
17393 opened this year.
17394 If you want some action (probably Filtering) to take place in a folder each
17395 year, then you will need to be sure that the folder is opened during the
17396 first Alpine session of the year in order for this option to be helpful.
17398 This part of the Pattern may have one of three possible values.
17399 The default value is &quot;Don't care&quot;, which matches any message.
17400 The other two values are &quot;Yes&quot;, which means this is the first
17401 time Alpine has been run this year;
17402 or &quot;No&quot;, which
17403 means this is not the first time Alpine has been run this year.
17405 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17406 for more information on Patterns.
17408 Here are some technical details.
17409 The way that Alpine decides if it is the beginning of the year or not is
17410 to compare today's date with the date stored in the
17411 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17412 variable in the config file.
17413 If the year of today's date is later than the year stored in the variable,
17414 then this is considered to be the first time you have run Alpine this year, and
17415 that turns the Beginning of the Year option on.
17417 Look <A HREF="h_edit_nav_cmds">here</A>
17418 to see the available Editing and Navigation commands.
17420 &lt;End of help on this topic&gt;
17421 </BODY>
17422 </HTML>
17423 ======= h_config_role_inick =======
17424 <HTML>
17425 <HEAD>
17426 <TITLE>Initialize Values From Role Explained</TITLE>
17427 </HEAD>
17428 <BODY>
17429 <H1>Initialize Values From Role Explained</H1>
17431 This is a power user feature.
17432 You will usually want to leave this field empty.
17433 The value of this field is the nickname of another one of your roles.
17434 The Action values from that other role
17435 are used as the initial values of the Action items for this role.
17436 If you put something in any of the action fields for this role, that will
17437 override whatever was in the corresponding field of the initializer role.
17439 You might use this field if the &quot;Action&quot; part of one of your roles
17440 is something you want to use in more than one role.
17441 Instead of filling in those action values again for each role, you
17442 may give the nickname of the role where the values are filled in.
17443 It's just a shortcut way to define Role Actions.
17445 Here's an example to help explain how this works.
17446 Suppose you have a role with nickname &quot;role1&quot; and role1 has
17447 (among other things)
17449 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
17451 set.
17452 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
17453 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
17454 from role1 by default (and any of the other inheritable action values
17455 that are set).
17456 So if role2 had
17458 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
17460 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
17461 However, if role2 had
17463 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
17465 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
17467 If you wish,
17468 you may choose a nickname from your list of roles by using the
17469 &quot;T&quot; command.
17470 If the role you are using to initialize also has a role it initializes from,
17471 then that initialization happens first.
17472 That is, inheritance works as expected with the grandparent and
17473 great-grandparent (and so on) roles having the expected effect.
17475 Look <A HREF="h_edit_nav_cmds">here</A>
17476 to see the available Editing and Navigation commands.
17478 &lt;End of help on this topic&gt;
17479 </BODY>
17480 </HTML>
17481 ======= h_config_role_setfrom =======
17482 <HTML>
17483 <HEAD>
17484 <TITLE>Set From Explained</TITLE>
17485 </HEAD>
17486 <BODY>
17487 <H1>Set From Explained</H1>
17489 This describes part of the action to be taken if the Pattern for this
17490 role is a match.
17491 This field consists of a single address that will be used as the From
17492 address on the message you are sending.
17493 This should be a fully-qualified address like
17495 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17497 or just
17499 <CENTER><SAMP>user@domain</SAMP></CENTER>
17501 If you wish,
17502 you may choose an address from your address book with the
17503 &quot;T&quot; command.
17505 If this is left blank, then your normal From address will be used.
17507 You may also find it useful to add the changed From address to the
17508 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
17509 configuration option.
17511 Look <A HREF="h_edit_nav_cmds">here</A>
17512 to see the available Editing and Navigation commands.
17514 &lt;End of help on this topic&gt;
17515 </BODY>
17516 </HTML>
17517 ======= h_config_role_setreplyto =======
17518 <HTML>
17519 <HEAD>
17520 <TITLE>Set Reply-To Explained</TITLE>
17521 </HEAD>
17522 <BODY>
17523 <H1>Set Reply-To Explained</H1>
17525 This describes part of the action to be taken if the Pattern for this
17526 role is a match.
17527 This field consists of a single address that will be used as the Reply-To
17528 address on the message you are sending.
17529 This may be a fully-qualified address like
17531 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17533 or just
17535 <CENTER><SAMP>user@domain</SAMP></CENTER>
17537 If you wish,
17538 you may choose an address from your address book with the
17539 &quot;T&quot; command.
17541 If this is left blank, then there won't be a Reply-To address unless
17542 you have configured one specially with the
17543 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
17544 configuration option.
17546 Look <A HREF="h_edit_nav_cmds">here</A>
17547 to see the available Editing and Navigation commands.
17549 &lt;End of help on this topic&gt;
17550 </BODY>
17551 </HTML>
17552 ======= h_config_role_setfcc =======
17553 <HTML>
17554 <HEAD>
17555 <TITLE>Set Fcc Explained</TITLE>
17556 </HEAD>
17557 <BODY>
17558 <H1>Set Fcc Explained</H1>
17560 This describes part of the action to be taken if the Pattern for this
17561 role is a match.
17562 This field consists of a single folder name that will be used in
17563 the Fcc field of the message you are sending.
17564 You may put anything here that you would normally type into the Fcc
17565 field from the composer.
17567 In addition, an fcc of &quot;&quot; (two double quotation marks) means
17568 no Fcc.
17570 A blank field here means that Alpine will use its normal rules for deciding
17571 the default value of the Fcc field.
17572 For many roles, perhaps most, it may make more sense for you to use the
17573 other Alpine facilities for setting the Fcc.
17574 In particular, if you want the Fcc to depend on who you are sending the
17575 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
17576 is probably more useful.
17577 In that case, you would want to leave the Fcc field here blank.
17578 However, if you have a role that depends on who the message you are replying
17579 to was From, or what address that message was sent to;
17580 then it might make sense to set the Fcc for that role here.
17582 If you wish,
17583 you may choose a folder from your folder collections by using the
17584 &quot;T&quot; command.
17586 Look <A HREF="h_edit_nav_cmds">here</A>
17587 to see the available Editing and Navigation commands.
17589 &lt;End of help on this topic&gt;
17590 </BODY>
17591 </HTML>
17592 ======= h_config_role_usesmtp =======
17593 <HTML>
17594 <HEAD>
17595 <TITLE>Use SMTP Server Explained</TITLE>
17596 </HEAD>
17597 <BODY>
17598 <H1>Use SMTP Server Explained</H1>
17600 This describes part of the action to be taken if the Pattern for this
17601 role is a match.
17602 If this field has a value, then it will be used as the SMTP server
17603 to send mail when this role is being used (unless the SMTP server variable
17604 is set in the system-wide fixed configuration file).
17605 It has the same semantics as the
17606 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
17607 variable in the Setup/Config screen.
17609 If you are using this to post from home when you are at home and from
17610 work when you are at work you need to be careful about postponing messages.
17611 When you postpone a composition that was using a role with this variable
17612 set, the SMTP server list will be saved
17613 with the postponed composition.
17614 It cannot be changed later.
17615 Because of this, you may want to make this a list of SMTP servers
17616 with the preferred server at the front of the list and alternate servers
17617 later in the list.
17618 In your &quot;Home&quot; role you would put the home SMTP server first and
17619 the work SMTP server last.
17620 In your &quot;Work&quot; role you would put the work SMTP server first and
17621 the home SMTP server last.
17622 Then if you start a composition as &quot;Work&quot;, postpone
17623 it, and then later resume it from home the work SMTP server will fail but
17624 the home SMTP server later in the list will succeed.
17626 You may be able to simplify things by making the regular
17627 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
17628 variable in the Setup/Config screen a list instead of using roles
17629 to set the SMTP server.
17632 Look <A HREF="h_edit_nav_cmds">here</A>
17633 to see the available Editing and Navigation commands.
17635 &lt;End of help on this topic&gt;
17636 </BODY>
17637 </HTML>
17638 ======= h_config_role_usenntp =======
17639 <HTML>
17640 <HEAD>
17641 <TITLE>Use NNTP Server Explained</TITLE>
17642 </HEAD>
17643 <BODY>
17644 <H1>Use NNTP Server Explained</H1>
17646 This describes part of the action to be taken if the Pattern for this
17647 role is a match.
17648 If this field has a value, then it will be used as the NNTP server
17649 to post to newsgroups when this role is being used (unless the NNTP server
17650 variable
17651 is set in the system-wide fixed configuration file).
17652 It has the same semantics as the
17653 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
17654 variable in the Setup/Config screen.
17656 This role setting can facilitate posting to the right nntp server for someone
17657 who reads news from various news sources.  The feature
17658 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
17659 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
17660 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
17661 nntp servers for roles may be more desirable for some people.
17663 If you are using this to post from home when you are at home and from
17664 work when you are at work you need to be careful about postponing messages.
17665 When you postpone a composition that was using a role with this variable
17666 set, the NNTP server list will be saved
17667 with the postponed composition.
17668 It cannot be changed later.
17669 Because of this, you may want to make this a list of NNTP servers
17670 with the preferred server at the front of the list and alternate servers
17671 later in the list.
17672 In your &quot;Home&quot; role you would put the home NNTP server first and
17673 the work NNTP server last.
17674 In your &quot;Work&quot; role you would put the work NNTP server first and
17675 the home NNTP server last.
17676 Then if you start a composition as &quot;Work&quot;, postpone
17677 it, and then later resume it from home the work NNTP server will fail but
17678 the home NNTP server later in the list will succeed.
17680 You may be able to simplify things by making the regular
17681 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
17682 variable in the Setup/Config screen a list instead of using roles
17683 to set the NNTP server.
17686 Look <A HREF="h_edit_nav_cmds">here</A>
17687 to see the available Editing and Navigation commands.
17689 &lt;End of help on this topic&gt;
17690 </BODY>
17691 </HTML>
17692 ======= h_config_role_setotherhdr =======
17693 <HTML>
17694 <HEAD>
17695 <TITLE>Set Other Headers Explained</TITLE>
17696 </HEAD>
17697 <BODY>
17698 <H1>Set Other Headers Explained</H1>
17700 This describes part of the action to be taken if the Pattern for this
17701 role is a match.
17702 This field gives you a way to set values for headers besides
17703 &quot;From&quot; and &quot;Reply-To&quot;.
17704 If you want to set either of those, use the specific
17705 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
17707 This field is similar to the
17708 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
17709 Each header you specify here must include the header tag 
17710 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
17711 and may optionally include a value for that header.
17712 In order to see these headers when you compose using this role you 
17713 must use the rich header
17714 <!--chtml if pinemode="function_key"-->(F5)
17715 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
17716 Here's an example that shows how you might set the To address.
17718 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
17720 Headers set in this way are different from headers set with the
17721 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
17722 will replace any value that already exists.
17723 For example, if you are Replying to a message there will already be at
17724 least one address in the To header (the address you are Replying to).
17725 However, if you Reply using a role that sets the To header, that role's
17726 To header value will be used instead.
17728 Limitation: Because commas are used to separate the list of
17729 Other Headers, it is not possible to have the value of a
17730 header contain a comma;
17731 nor is there currently an &quot;escape&quot; mechanism provided
17732 to make this work.
17734 Look <A HREF="h_edit_nav_cmds">here</A>
17735 to see the available Editing and Navigation commands.
17737 &lt;End of help on this topic&gt;
17738 </BODY>
17739 </HTML>
17740 ======= h_config_role_setlitsig =======
17741 <HTML>
17742 <HEAD>
17743 <TITLE>Set Literal Signature Explained</TITLE>
17744 </HEAD>
17745 <BODY>
17746 <H1>Set Literal Signature Explained</H1>
17748 This describes part of the action to be taken if the Pattern for this
17749 role is a match.
17750 This field contains the actual text for your signature, as opposed to
17751 the name of a file containing your signature.
17752 If this is defined it takes precedence over any value set in the
17753 &quot;Set Signature&quot; field.
17755 This is simply a different way to store the signature.
17756 The signature is stored inside your Alpine configuration file instead of in
17757 a separate file.
17758 Tokens work the same way they do with
17759 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
17760 help text there for more information.
17763 The two character sequence &#92;n (backslash followed by
17764 the character n) will be used to signify a line-break in your signature.
17765 You don't have to enter the &#92;n, but it will be visible in the
17766 CHANGE THIS ROLE RULE window after you are done editing the signature.
17768 Look <A HREF="h_edit_nav_cmds">here</A>
17769 to see the available Editing and Navigation commands.
17771 &lt;End of help on this topic&gt;
17772 </BODY>
17773 </HTML>
17774 ======= h_config_role_setsig =======
17775 <HTML>
17776 <HEAD>
17777 <TITLE>Set Signature Explained</TITLE>
17778 </HEAD>
17779 <BODY>
17780 <H1>Set Signature Explained</H1>
17782 This describes part of the action to be taken if the Pattern for this
17783 role is a match.
17785 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
17786 option from Setup/Config
17787 or the &quot;Set LiteralSig&quot; option for this role are defined,
17788 then this option will be ignored.
17789 You can tell that that is the case because the value of this
17790 option will show up as
17792 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
17794 You may either use all Literal Signatures (signatures stored in your
17795 configuration file) throughout Alpine, or all signature files.
17796 You can't mix the two.
17798 This field consists of a filename that will be used as the signature
17799 file when using this role.
17801 If the filename is followed by a vertical bar (|) then instead
17802 of reading the contents of the file the file is assumed to be a
17803 program that will produce the text to be used on its standard output.
17804 The program can't have any arguments and doesn't receive any input from Alpine,
17805 but the rest of the processing works as if the contents came from a file.
17807 Instead of storing the data in a local file, the
17808 signature data may be stored remotely in an IMAP folder.
17809 In order to do this, 
17810 you must use a remote name for the signature.
17811 A remote signature name might look like:
17813 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
17816 The syntax used here is the same as the syntax used for a remote
17817 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
17818 Note that you may not access an existing signature file remotely,
17819 you have to create a new <EM>folder</EM> that contains the signature data.
17820 If the name you use here for the signature data is a remote name, then when
17821 you edit the file using the &quot;F&quot; command the data will
17822 be saved remotely in the folder.
17823 You aren't required to do anything special to create the folder, it
17824 gets created if you use a remote name.
17827 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
17828 the name of the file) you have specified.
17829 If you type &quot;T&quot; you may use a browser to choose an existing filename.
17831 Besides containing regular text, a signature file may also
17832 contain (or a signature program may produce) tokens that are replaced with text
17833 that depends on the message you are replying to or forwarding.
17834 The tokens all look like _word_ (a word surrounded by underscores).
17835 For example, if the token
17837 <CENTER><SAMP>_DATE_</SAMP></CENTER>
17839 is included in the text of the signature file, then when you reply to
17840 or forward a message, the token will be replaced with the actual date
17841 the message you are replying to or forwarding was sent.
17843 If you use a role that has a signature file for a plain composition
17844 (that is, not a reply or forward) then there is no original message, so
17845 any tokens that depend on the message will be replaced with nothing.
17846 So if you want a signature file to be useful for new compositions it
17847 shouldn't include any of the tokens that depend on the message being
17848 replied to or forwarded.
17850 The list of available tokens is
17851 <A HREF="h_index_tokens">here</A>.
17853 Actually, for the adventurous, there is a way to conditionally include text based
17854 on whether or not a token would result in specific replacement text.
17855 For example, you could include some text based on whether or not
17856 the _NEWS_ token would result in any newsgroups if it was used.
17857 It's explained in detail
17858 <A HREF="h_reply_token_conditionals">here</A>.
17860 In the very unlikely event that you want to include a literal token in
17861 a signature file, you must precede it with a backslash character.
17862 For example, to include the literal text _DATE_ you must actually use
17863 &#92;_DATE_.
17864 It is not possible to have a literal backslash followed by an expanded token.
17866 A blank field here means that Alpine will use its normal rules for deciding
17867 which file (if any) to use for the signature file.
17869 An alternate method for storing the signature is available in
17870 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
17872 Look <A HREF="h_edit_nav_cmds">here</A>
17873 to see the available Editing and Navigation commands.
17875 &lt;End of help on this topic&gt;
17876 </BODY>
17877 </HTML>
17878 ======= h_config_role_settempl =======
17879 <HTML>
17880 <HEAD>
17881 <TITLE>Set Template Explained</TITLE>
17882 </HEAD>
17883 <BODY>
17884 <H1>Set Template Explained</H1>
17886 This describes part of the action to be taken if the Pattern for this
17887 role is a match.
17888 This field consists of a filename that will be used as the template
17889 file when using this role.
17890 The template file is a file that is included at the top of the message you
17891 are composing.
17893 If the filename is followed by a vertical bar (|) then instead
17894 of reading the contents of the file the file is assumed to be a
17895 program that will produce the text to be used on its standard output.
17896 The program can't have any arguments and doesn't receive any input from Alpine,
17897 but the rest of the processing works as if the contents came from a file.
17899 Instead of storing the data in a local file, the
17900 template may be stored remotely in an IMAP folder.
17901 In order to do this, 
17902 you must use a remote name for the template.
17903 A remote template name might look like:
17905 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
17908 The syntax used here is the same as the syntax used for a remote
17909 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
17910 Note that you may not access an existing template file remotely,
17911 you have to create a new <EM>folder</EM> that contains the template data.
17912 If the name you use here for the template is a remote name, then when
17913 you edit the file using the &quot;F&quot; command the data will
17914 be saved remotely in the folder.
17915 You aren't required to do anything special to create the folder, it
17916 gets created if you use a remote name.
17918 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
17919 the name of the file) you have specified.
17920 If you type &quot;T&quot; you may use a browser to choose an existing filename.
17922 Besides containing regular text, the template file may also
17923 contain (or a template file program may produce) tokens that are replaced with text
17924 that depends on the message you are replying to or forwarding.
17925 The tokens all look like _word_ (a word surrounded by underscores).
17926 For example, if the token
17928 <CENTER><SAMP>_DATE_</SAMP></CENTER>
17930 is included in the text of the template file, then when you reply to
17931 or forward a message, the token will be replaced with the actual date
17932 the message you are replying to or forwarding was sent.
17934 If you use a role that has a template file for a plain composition
17935 (that is, not a reply or forward) then there is no original message, so
17936 any tokens that depend on the message will be replaced with nothing.
17937 So if you want a template file to be useful for new compositions it
17938 shouldn't include any of the tokens that depend on the message being
17939 replied to or forwarded.
17941 The list of available tokens is
17942 <A HREF="h_index_tokens">here</A>.
17944 Actually, for the adventurous, there is a way to conditionally include text based
17945 on whether or not a token would result in specific replacement text.
17946 For example, you could include some text based on whether or not
17947 the _NEWS_ token would result in any newsgroups if it was used.
17948 It's explained in detail
17949 <A HREF="h_reply_token_conditionals">here</A>.
17951 In the very unlikely event that you want to include a literal token in
17952 a template file, you must precede it with a backslash character.
17953 For example, to include the literal text _DATE_ you must actually use
17954 &#92;_DATE_.
17955 It is not possible to have a literal backslash followed by an expanded token.
17957 A blank template field means that Alpine will not use a template file when
17958 this role is being used.
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_filt_stat_imp =======
17967 <HTML>
17968 <HEAD>
17969 <TITLE>Set Important Status Explained</TITLE>
17970 </HEAD>
17971 <BODY>
17972 <H1>Set Important Status Explained</H1>
17974 This describes part of the action to be taken if the Pattern for this
17975 filter is a match.
17976 If set to &quot;Don't change it&quot; then this does nothing.
17977 If set to &quot;Set this state&quot; then the Important flag is set
17978 for the matching message.
17979 If set to &quot;Clear this state&quot; then the Important flag is cleared
17980 for the matching message.
17981 The important flag usually causes an asterisk to show up in the MESSAGE
17982 INDEX.
17983 It may also be useful when selecting a set of messages
17984 with the Select command.
17986 Look <A HREF="h_edit_nav_cmds">here</A>
17987 to see the available Editing and Navigation commands.
17989 &lt;End of help on this topic&gt;
17990 </BODY>
17991 </HTML>
17992 ======= h_config_filt_stat_new =======
17993 <HTML>
17994 <HEAD>
17995 <TITLE>Set New Status Explained</TITLE>
17996 </HEAD>
17997 <BODY>
17998 <H1>Set New Status Explained</H1>
18000 This describes part of the action to be taken if the Pattern for this
18001 filter is a match.
18002 If set to &quot;Don't change it&quot; then this does nothing.
18003 If set to &quot;Set this state&quot; then the
18004 matching message is marked New.
18005 If set to &quot;Clear this state&quot; then the
18006 matching message is marked Seen.
18008 Look <A HREF="h_edit_nav_cmds">here</A>
18009 to see the available Editing and Navigation commands.
18011 &lt;End of help on this topic&gt;
18012 </BODY>
18013 </HTML>
18014 ======= h_config_filt_stat_ans =======
18015 <HTML>
18016 <HEAD>
18017 <TITLE>Set Answered Status Explained</TITLE>
18018 </HEAD>
18019 <BODY>
18020 <H1>Set Answered Status Explained</H1>
18022 This describes part of the action to be taken if the Pattern for this
18023 filter is a match.
18024 If set to &quot;Don't change it&quot; then this does nothing.
18025 If set to &quot;Set this state&quot; then the Answered flag is set
18026 for the matching message.
18027 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18028 for the matching message.
18030 Look <A HREF="h_edit_nav_cmds">here</A>
18031 to see the available Editing and Navigation commands.
18033 &lt;End of help on this topic&gt;
18034 </BODY>
18035 </HTML>
18036 ======= h_config_filt_stat_del =======
18037 <HTML>
18038 <HEAD>
18039 <TITLE>Set Deleted Status Explained</TITLE>
18040 </HEAD>
18041 <BODY>
18042 <H1>Set Deleted Status Explained</H1>
18044 This describes part of the action to be taken if the Pattern for this
18045 filter is a match.
18046 If set to &quot;Don't change it&quot; then this does nothing.
18047 If set to &quot;Set this state&quot; then the
18048 matching message is marked Deleted.
18049 If set to &quot;Clear this state&quot; then the
18050 matching message is marked UnDeleted.
18052 You should not use this option unless you are prepared to have matching
18053 messages expunged from the folder permanently.
18054 For example, if you type the Expunge command, this filter is applied
18055 before the expunge, so matching messages will be marked Deleted and then
18056 will be permanently expunged from the folder.
18057 However, since the index isn't redrawn in between the time that the message
18058 is marked Deleted and the time that you are asked to expunge, the only
18059 indication that you are expunging the message comes in the number of messages
18060 being expunged.
18061 The same thing may happen when you close a folder.
18062 It is also possible that an expunge not initiated by you will
18063 delete matching messages.
18065 Look <A HREF="h_edit_nav_cmds">here</A>
18066 to see the available Editing and Navigation commands.
18068 &lt;End of help on this topic&gt;
18069 </BODY>
18070 </HTML>
18071 ======= h_config_role_scoreval =======
18072 <HTML>
18073 <HEAD>
18074 <TITLE>Score Value Explained</TITLE>
18075 </HEAD>
18076 <BODY>
18077 <H1>Score Value Explained</H1>
18079 A message's score is the sum of the Score Values from all of the Scoring rules
18080 with Patterns that match the message.
18081 The value you give here is the Score Value associated with this rule.
18082 A Score Value is an integer between -100 and 100, with the default
18083 value of zero.
18085 Alternatively, if the
18086 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18087 field is defined
18088 (on the line right below the &quot;Score Value&quot; field)
18089 then the &quot;Score Value&quot; is ignored and
18090 the &quot;Score From Header&quot; field is used instead.
18092 Look <A HREF="h_edit_nav_cmds">here</A>
18093 to see the available Editing and Navigation commands.
18095 &lt;End of help on this topic&gt;
18096 </BODY>
18097 </HTML>
18098 ======= h_config_role_scorehdrtok =======
18099 <HTML>
18100 <HEAD>
18101 <TITLE>Score Value From Header Explained</TITLE>
18102 </HEAD>
18103 <BODY>
18104 <H1>Score Value From Header Explained</H1>
18106 This option provides a way to use a number that appears in the headers of your
18107 messages as the message's score, or as a component of that score.
18108 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18109 The idea behind this option is that there may be a score embedded in the
18110 headers of messages that has already been calculated outside of Alpine.
18111 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18112 somewhere in that header there is a score.
18114 The value for this option is the name of the header followed by parentheses
18115 with two arguments inside:
18117 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18119 No space is allowed between the comma and the start of the field_separators.
18120 It would be interpreted as the first separator if it was there.
18121 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18122 starts after that and goes to the second separator, and so on.
18123 It's easier to explain with examples.
18125 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18127 In the above example the header that is used is the &quot;X-Spam&quot; header.
18128 The value of that header (the part after the colon and the space) is split
18129 into fields separated by spaces.
18131 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18133 The second field is selected and converted to an integer. It only makes sense
18134 if Field2 really is an integer.
18136 Here's an example of a SpamAssassin header.
18137 The exact look of the header will vary, but if your incoming mail
18138 contains headers that look like the following
18140 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18142 you might want to use the hits value as a score.
18143 Since the score is an integer value you can't make use of the decimal part of
18144 the number, but
18145 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18146 and &quot;.&quot; as your separators.
18148 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18150 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18151 hits.
18152 The second field is &quot;10&quot; so the score value would be 10.
18154 Another example we've seen has headers that look like
18156 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18158 Because there are two equals before the 7% the value
18160 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18162 should capture the probability as the score.
18164 The Score From Header scoring value actually works just like the
18165 regular Score Value in that the rest of the pattern has to match before
18166 it is used and the scores from all the different scoring rules that
18167 match for a particular message are added together.
18168 When using the Score From Header method it may (or may not) make sense to
18169 use only a single scoring rule with a pattern that matches every message.
18171 Look <A HREF="h_edit_nav_cmds">here</A>
18172 to see the available Editing and Navigation commands.
18174 &lt;End of help on this topic&gt;
18175 </BODY>
18176 </HTML>
18177 ======= h_config_role_replyuse =======
18178 <HTML>
18179 <HEAD>
18180 <TITLE>Reply Use Explained</TITLE>
18181 </HEAD>
18182 <BODY>
18183 <H1>Reply Use Explained</H1>
18185 This option determines how this particular role will be used when Replying
18186 to a message.
18187 There are three possible values for this option.
18188 The value &quot;Never&quot;
18189 means that this role will not be a candidate for use when Replying.
18190 The role's Pattern will not be checked for a match, however the role will
18191 be available to be manually switched to if there is a confirmation prompt.
18194 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18195 mean that you do want to consider this role when Replying.
18196 For either of these settings, the role's Pattern will be compared with
18197 the message being replied to.
18198 If there is a match then this role will either be used without confirmation
18199 or will be the default when confirmation is asked for, depending on
18200 which of the two options is selected.
18201 If confirmation is requested, you will also have a chance to
18202 manually change the role to any one of your other roles.
18205 You won't be prompted for confirmation if none of your role Patterns
18206 match the message being replied to.
18207 This is independent of the value of the current option.
18208 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18209 feature may be used to change this behavior.
18211 &lt;End of help on this topic&gt;
18212 </BODY>
18213 </HTML>
18214 ======= h_config_role_forwarduse =======
18215 <HTML>
18216 <HEAD>
18217 <TITLE>Forward Use Explained</TITLE>
18218 </HEAD>
18219 <BODY>
18220 <H1>Forward Use Explained</H1>
18222 This option determines how this particular role will be used when Forwarding
18223 a message.
18224 There are three possible values for this option.
18225 The value &quot;Never&quot;
18226 means that this role will not be a candidate for use when Forwarding.
18227 The role's Pattern will not be checked for a match, however the role will
18228 be available to be manually switched to if there is a confirmation prompt.
18231 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18232 mean that you do want to consider this role when Forwarding.
18233 For either of these settings, the role's Pattern will be compared with
18234 the message being forwarded.
18235 If there is a match then this role will either be used without confirmation
18236 or will be the default when confirmation is asked for, depending on
18237 which of the two options is selected.
18238 If confirmation is requested, you will also have a chance to
18239 manually change the role to any one of your other roles.
18242 You won't be prompted for confirmation if none of your role Patterns
18243 match the message being forwarded.
18244 This is independent of the value of the current option.
18245 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18246 feature may be used to change this behavior.
18248 &lt;End of help on this topic&gt;
18249 </BODY>
18250 </HTML>
18251 ======= h_config_role_composeuse =======
18252 <HTML>
18253 <HEAD>
18254 <TITLE>Compose Use Explained</TITLE>
18255 </HEAD>
18256 <BODY>
18257 <H1>Compose Use Explained</H1>
18259 This option determines how this particular role will be used when Composing
18260 a new message using the &quot;Compose&quot; command.
18261 This does not affect what happens when using the &quot;Role&quot; command
18262 to compose a new message.
18263 The &quot;Role&quot; command allows you to select a role from all of the
18264 roles you have defined, regardless of what Uses you've assigned to those
18265 roles.
18268 There are three possible values for this option.
18269 The value &quot;Never&quot;
18270 means that this role will not be a candidate for use when Composing.
18271 The role's Current Folder Type will not be checked for a match, however the role
18272 will be available to be manually switched to if there is a confirmation prompt.
18275 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18276 mean that you do want to consider this role when Composing.
18277 For either of these settings,
18278 the role's Current Folder Type will be checked (since there is no message
18279 to compare with, the rest of the Pattern is considered a match).
18280 If there is a match then this role will either be used without confirmation
18281 or will be the default when confirmation is asked for, depending on
18282 which of the two options is selected.
18283 If confirmation is requested, you will also have a chance to
18284 manually change the role to any one of your other roles.
18287 When using the Compose command the role checking is a little different
18288 because there is no message being replied to or forwarded.
18289 Because of this the Current Folder Type is checked but the header pattern
18290 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18291 A role is considered to be a match if it is a candidate for Compose Use and
18292 its Current Folder Type matches the currently open folder.
18293 This could be useful if you want to set a role based on the folder you
18294 are reading, or the type of folder you are reading.
18297 You won't be prompted for confirmation if none of your role Patterns
18298 are a match.
18299 This is independent of the value of the current option.
18300 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18301 feature may be used to change this behavior.
18303 &lt;End of help on this topic&gt;
18304 </BODY>
18305 </HTML>
18306 ======= h_config_filter_folder =======
18307 <HTML>
18308 <HEAD>
18309 <TITLE>Filter Folder Explained</TITLE>
18310 </HEAD>
18311 <BODY>
18312 <H1>Filter Folder Explained</H1>
18314 When the Filter Action is set to &quot;Move&quot;,
18315 the folder or folders specified here will be used to store messages matching
18316 the provided pattern.
18319 If you set the Filter Action to &quot;Move&quot; you must give a folder name
18320 here.
18323 If you wish,
18324 you may choose a folder from your folder collections by using the
18325 &quot;T&quot; command.
18327 Besides regular text, the folder name may also contain
18328 tokens that are replaced with text representing the current date
18329 when you run Alpine.
18330 For example, if the folder name you use is
18332 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
18334 that is replaced with something like
18336 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
18340 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
18342 becomes
18344 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
18346 The token names must be surrounded by underscores in order to be recognized
18347 as tokens.
18348 The tokens that may be used are those that are derived from the current date.
18349 They're listed near the bottom of the list of tokens give
18350 <A HREF="h_index_tokens">here</A>.
18352 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18353 for more information on Patterns.
18355 Look <A HREF="h_edit_nav_cmds">here</A>
18356 to see the available Editing and Navigation commands.
18358 &lt;End of help on this topic&gt;
18359 </BODY>
18360 </HTML>
18361 ======= h_config_filter_kw_set =======
18362 <HTML>
18363 <HEAD>
18364 <TITLE>Set These Keywords Explained</TITLE>
18365 </HEAD>
18366 <BODY>
18367 <H1>Set These Keywords Explained</H1>
18369 This describes part of the action to be taken if the Pattern for this
18370 filter is a match.
18371 Read a little about keywords in the help text for the
18372 <A HREF="h_common_flag">Flag</A> command.
18373 This option is a list of keywords that will be Set when there is a match.
18374 If you wish, you may choose keywords from the list of keywords you have
18375 defined with the &quot;T&quot; command.
18376 You may add new keywords by defining them in the
18377 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18378 If you have given a keyword a nickname when configuring it,
18379 that nickname may be used instead of the actual keyword.
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_filter_kw_clr =======
18389 <HTML>
18390 <HEAD>
18391 <TITLE>Clear These Keywords Explained</TITLE>
18392 </HEAD>
18393 <BODY>
18394 <H1>Clear These Keywords Explained</H1>
18396 This describes part of the action to be taken if the Pattern for this
18397 filter is a match.
18398 Read a little about keywords in the help text for the
18399 <A HREF="h_common_flag">Flag</A> command.
18400 This option is a list of keywords that will be Cleared when there is a match.
18401 If you wish, you may choose keywords from the list of keywords you have
18402 defined with the &quot;T&quot; command.
18403 You may add new keywords by defining them in the
18404 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18405 If you have given a keyword a nickname when configuring it,
18406 that nickname may be used instead of the actual keyword.
18409 Look <A HREF="h_edit_nav_cmds">here</A>
18410 to see the available Editing and Navigation commands.
18412 &lt;End of help on this topic&gt;
18413 </BODY>
18414 </HTML>
18415 ======= h_index_tokens =======
18416 <HTML>
18417 <HEAD>
18418 <TITLE>Tokens for Index and Replying</TITLE>
18419 </HEAD>
18420 <BODY>
18422 This set of special tokens may be used in the
18423 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
18424 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
18425 in signature files,
18426 in template files used in
18427 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
18428 that is the target of a Filter Rule.
18429 Some of them aren't available in all situations.
18431 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
18432 option, but they must be surrounded by underscores for the
18433 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
18434 and in the target of Filter Rules.
18438 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
18440 <DL>
18441 <DT>SUBJECT</DT>
18442 <DD>
18443 This token represents the Subject the sender gave the message.
18444 Alternatives for use in the index screen are
18445 SUBJKEY, SUBJKEYINIT, SUBJECTTEXT, SUBJKEYTEXT, and SUBJKEYINITTEXT.
18446 You may color the subject text in the MESSAGE INDEX screen differently by using the
18447 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
18448 <A HREF="h_config_index_opening_color">Index Opening Color</A>
18449 options available from
18450 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18451 </DD>
18453 <DT>FROM</DT>
18454 <DD>
18455 This token represents the personal name (or email address if the name
18456 is unavailable) of the person specified in the message's &quot;From:&quot;
18457 header field.
18458 You may color the from text in the MESSAGE INDEX screen differently by using the
18459 <A HREF="h_config_index_from_color">Index From Color</A>
18460 option available from
18461 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18462 </DD>
18464 <DT>ADDRESS</DT>
18465 <DD>
18466 This is similar to the &quot;FROM&quot; token, only it is always the
18467 email address, never the personal name.
18468 For example, &quot;mailbox@domain&quot;.
18469 </DD>
18471 <DT>MAILBOX</DT>
18472 <DD>
18473 This is the same as the &quot;ADDRESS&quot; except that the 
18474 domain part of the address is left off.
18475 For example, &quot;mailbox&quot;.
18476 </DD>
18478 <DT>SENDER</DT>
18479 <DD>
18480 This token represents the personal name (or email address) of the person
18481 listed in the message's &quot;Sender:&quot; header field.
18482 </DD>
18484 <DT>TO</DT>
18485 <DD>
18486 This token represents the personal names (or email addresses if the names
18487 are unavailable) of the persons specified in the
18488 message's &quot;To:&quot; header field.
18489 </DD>
18491 <DT>NEWSANDTO</DT>
18492 <DD>
18493 This token represents the newsgroups from the
18494 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18495 the personal names (or email addresses if the names
18496 are unavailable) of the persons specified in the
18497 message's &quot;To:&quot; header field.
18498 </DD>
18500 <DT>TOANDNEWS</DT>
18501 <DD>
18502 Same as &quot;NEWSANDTO&quot; except in the opposite order.
18503 </DD>
18505 <DT>NEWS</DT>
18506 <DD>
18507 This token represents the newsgroups from the
18508 message's &quot;Newsgroups:&quot; header field.
18509 </DD>
18511 <DT>CC</DT>
18512 <DD>
18513 This token represents the personal names (or email addresses if the names
18514 are unavailable) of the persons specified in the
18515 message's &quot;Cc:&quot; header field.
18516 </DD>
18518 <DT>RECIPS</DT>
18519 <DD>
18520 This token represents the personal names (or email addresses if the names
18521 are unavailable) of the persons specified in both the
18522 message's &quot;To:&quot; header field and
18523 the message's &quot;Cc:&quot; header field.
18524 </DD>
18526 <DT>NEWSANDRECIPS</DT>
18527 <DD>
18528 This token represents the newsgroups from the
18529 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18530 the personal names (or email addresses if the names
18531 are unavailable) of the persons specified in the
18532 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
18533 </DD>
18535 <DT>RECIPSANDNEWS</DT>
18536 <DD>
18537 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
18538 </DD>
18540 <DT>INIT</DT>
18541 <DD>
18542 This token represents the initials from the personal name
18543 of the person specified in the message's &quot;From:&quot;
18544 header field.
18545 If there is no personal name, it is blank.
18546 </DD>
18548 <DT>DATE</DT>
18549 <DD>
18550 This token represents the date on which the message was sent, according
18551 to the &quot;Date&quot; header field.
18552 It has the format MMM DD. For example, &quot;Oct 23&quot;.
18553 The feature
18554 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
18555 which adjusts for the timezone the message was sent from,
18556 may have an affect on the value of this token as well as the values of
18557 all of the other DATE or TIME tokens.
18558 Some of the DATE and TIME tokens are displayed in a locale-specific
18559 way unless the option
18560 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
18561 </DD>
18563 <DT>SMARTDATE</DT>
18564 <DD>
18565 This token represents the date on which the message was sent, according
18566 to the &quot;Date&quot; header field.
18567 It is &quot;Today&quot; if the message was sent today,
18568 &quot;Yesterday&quot; for yesterday,
18569 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
18570 message is from last year and is more than six months old it includes the year, as well.
18571 See the SMARTDATE alternatives below, as well.
18572 </DD>
18574 <DT>SMARTTIME</DT>
18575 <DD>
18576 This token represents the most relevant elements of the date on which
18577 the message was sent (according to the &quot;Date&quot; header field),
18578 in a compact form. If the message was sent today, only the time is used
18579 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
18580 the past week, the day of the week and the hour are used
18581 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
18582 given as date, month, and year (e.g. &quot;23Aug00&quot;,
18583 &quot;9Apr98&quot;).
18584 </DD>
18586 <DT>SMARTDATETIME</DT>
18587 <DD>
18588 This is a combination of SMARTDATE and SMARTTIME.
18589 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
18590 case it is SMARTTIME.
18591 See the SMARTDATETIME alternatives below, as well.
18592 </DD>
18594 <DT>DATEISO</DT>
18595 <DD>
18596 This token represents the date on which the message was sent, according
18597 to the &quot;Date&quot; header field.
18598 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
18599 </DD>
18601 <DT>SHORTDATEISO</DT>
18602 <DD>
18603 This token represents the date on which the message was sent, according
18604 to the &quot;Date&quot; header field.
18605 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
18606 </DD>
18608 <DT>SHORTDATE1</DT>
18609 <DD>
18610 This token represents the date on which the message was sent, according
18611 to the &quot;Date&quot; header field.
18612 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
18613 </DD>
18615 <DT>SHORTDATE2</DT>
18616 <DD>
18617 This token represents the date on which the message was sent, according
18618 to the &quot;Date&quot; header field.
18619 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
18620 </DD>
18622 <DT>SHORTDATE3</DT>
18623 <DD>
18624 This token represents the date on which the message was sent, according
18625 to the &quot;Date&quot; header field.
18626 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
18627 </DD>
18629 <DT>SHORTDATE4</DT>
18630 <DD>
18631 This token represents the date on which the message was sent, according
18632 to the &quot;Date&quot; header field.
18633 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
18634 </DD>
18636 <DT>LONGDATE</DT>
18637 <DD>
18638 This token represents the date on which the message was sent, according
18639 to the &quot;Date&quot; header field.
18640 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
18641 </DD>
18643 <DT>SMARTDATE alternatives</DT>
18644 <DD>
18645 There are several versions of SMARTDATE that are all the same except
18646 for the way they format dates far in the past.
18647 SMARTDATE formats the date using the information from your locale settings
18648 to format the date string. It may end up formatting dates so that they look
18649 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
18650 The feature
18651 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
18652 may have an affect on the values of these tokens.
18653 If you want more control you may use one of the following.
18654   <DL>
18655   <DT>SMARTDATE</DT> <DD>If the option
18656 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
18657 then this will be locale specific. Control this with the
18658 LC_TIME locale setting on a UNIX system. On Windows
18659 the Regional Options control panel may be used to set the Short date
18660 format. At the programming level, the strftime routine is what Alpine
18661 uses to print the date.
18662 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
18663 to SMARTDATES1.</DD>
18664   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
18665   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
18666   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
18667   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
18668   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
18669   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
18670   </DL>
18671 </DD>
18673 <DT>SMARTDATETIME alternatives</DT>
18674 <DD>
18675 There are several versions of SMARTDATETIME that are all very similar.
18676 The ones that end in 24 use a 24-hour clock for Today's messages instead
18677 of a 12-hour clock.
18678 The other variation is
18679 for the way they format dates far in the past.
18680 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
18681 to format the date string. It may end up formatting dates so that they look
18682 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
18683 The feature
18684 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
18685 may have an affect on the values of these tokens.
18686 The possible choices are:
18687   <DL>
18688   <DT>SMARTDATETIME</DT> <DD>If the option
18689 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
18690 then this will be locale specific. Control this with the
18691 LC_TIME locale setting on a UNIX system. On Windows
18692 the Regional Options control panel may be used to set the Short date
18693 format. At the programming level, the strftime routine is what Alpine
18694 uses to print the date.
18695 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
18696 to SMARTDATETIMES1.</DD>
18697   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
18698   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
18699   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
18700   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
18701   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
18702   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
18703   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
18704   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
18705   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
18706   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
18707   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
18708   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
18709   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
18710   </DL>
18711 </DD>
18713 <DT>DAYDATE</DT>
18714 <DD>
18715 This token represents the date on which the message was sent, according
18716 to the &quot;Date&quot; header field.
18717 It looks like &quot;Sat, 23 Oct 1998&quot;.
18718 This token is never converted in any locale-specific way.
18719 </DD>
18721 <DT>PREFDATE</DT>
18722 <DD>
18723 This token represents the date on which the message was sent, according
18724 to the &quot;Date&quot; header field.
18725 It is your operating system's idea of the preferred date representation for the current locale.
18726 Internally it uses the %x version of the date from the strftime routine.
18727 </DD>
18729 <DT>PREFTIME</DT>
18730 <DD>
18731 This token represents the time at which the message was sent, according
18732 to the &quot;Date&quot; header field.
18733 It is the preferred time representation for the current locale.
18734 Internally it uses the %X version of the time from the strftime routine.
18735 </DD>
18737 <DT>PREFDATETIME</DT>
18738 <DD>
18739 This token represents the date and time at which the message was sent, according
18740 to the &quot;Date&quot; header field.
18741 It is the preferred date and time representation for the current locale.
18742 Internally it uses the %c version of the time from the strftime routine.
18743 </DD>
18745 <DT>DAY</DT>
18746 <DD>
18747 This token represents the day of the month on which the message was sent,
18748 according to the &quot;Date&quot; header field.
18749 For example, &quot;23&quot; or &quot;9&quot;.
18750 </DD>
18752 <DT>DAY2DIGIT</DT>
18753 <DD>
18754 This token represents the day of the month on which the message was sent,
18755 according to the &quot;Date&quot; header field.
18756 For example, &quot;23&quot; or &quot;09&quot;.
18757 It is always 2 digits.
18758 </DD>
18760 <DT>DAYORDINAL</DT>
18761 <DD>
18762 This token represents the ordinal number that is the day of
18763 the month on which the message was sent,
18764 according to the &quot;Date&quot; header field.
18765 For example, &quot;23rd&quot; or &quot;9th&quot;.
18766 </DD>
18768 <DT>DAYOFWEEK</DT>
18769 <DD>
18770 This token represents the day of the week on which the message was sent,
18771 according to the &quot;Date&quot; header field.
18772 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
18773 </DD>
18775 <DT>DAYOFWEEKABBREV</DT>
18776 <DD>
18777 This token represents the day of the week on which the message was sent,
18778 according to the &quot;Date&quot; header field.
18779 For example, &quot;Sun&quot; or &quot;Wed&quot;.
18780 </DD>
18782 <DT>MONTHABBREV</DT>
18783 <DD>
18784 This token represents the month the message was sent, according
18785 to the &quot;Date&quot; header field.
18786 For example, &quot;Oct&quot;.
18787 </DD>
18789 <DT>MONTHLONG</DT>
18790 <DD>
18791 This token represents the month in which the message was sent, according
18792 to the &quot;Date&quot; header field.
18793 For example, &quot;October&quot;.
18794 </DD>
18796 <DT>MONTH</DT>
18797 <DD>
18798 This token represents the month in which the message was sent, according
18799 to the &quot;Date&quot; header field.
18800 For example, &quot;10&quot; or &quot;9&quot;.
18801 </DD>
18803 <DT>MONTH2DIGIT</DT>
18804 <DD>
18805 This token represents the month in which the message was sent, according
18806 to the &quot;Date&quot; header field.
18807 For example, &quot;10&quot; or &quot;09&quot;.
18808 It is always 2 digits.
18809 </DD>
18811 <DT>YEAR</DT>
18812 <DD>
18813 This token represents the year the message was sent, according
18814 to the &quot;Date&quot; header field.
18815 For example, &quot;1998&quot; or &quot;2001&quot;.
18816 </DD>
18818 <DT>YEAR2DIGIT</DT>
18819 <DD>
18820 This token represents the year the message was sent, according
18821 to the &quot;Date&quot; header field.
18822 For example, &quot;98&quot; or &quot;01&quot;.
18823 It is always 2 digits.
18824 </DD>
18826 <DT>TIME24</DT>
18827 <DD>
18828 This token represents the time at which the message was sent, according
18829 to the &quot;Date&quot; header field.
18830 There is no adjustment made for different time zones, so you'll get
18831 the time the message was sent according to the time zone the sender
18832 was in.
18833 It has the format HH:MM. For example, &quot;17:28&quot;.
18834 </DD>
18836 <DT>TIME12</DT>
18837 <DD>
18838 This token represents the time at which the message was sent, according
18839 to the &quot;Date&quot; header field.
18840 This time is for a 12 hour clock.
18841 It has the format HH:MMpm.
18842 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
18843 </DD>
18845 <DT>TIMEZONE</DT>
18846 <DD>
18847 This token represents the numeric timezone from
18848 the &quot;Date&quot; header field.
18849 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
18850 </DD>
18852 </DL>
18855 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
18857 <DL>
18858 <DT>MSGNO</DT>
18859 <DD>
18860 This token represents the message's current position in the folder that,
18861 of course, may change as the folder is sorted or new mail arrives.
18862 </DD>
18864 <DT>STATUS</DT>
18865 <DD>
18866 This token represents a three character wide field displaying various
18867 aspects of the message's state.
18868 The first character is either blank,
18869 a '*' for message marked Important, or a '+' indicating a message
18870 addressed directly to you (as opposed to your having received it via a
18871 mailing list, for example).
18872 When the feature
18873 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
18874 is set, if the first character would have been
18875 blank then it will instead be a '-' if the message is cc'd to you.
18876 The second character is typically blank,
18877 though the arrow cursor may occupy it if either the 
18878 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
18879 or the
18880 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
18881 is set (or you actually are on a slow link).
18882 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
18883 '<A HREF="h_flag_answered">A</A>' (Answered),
18884 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
18885 '<A HREF="h_flag_new">N</A>' (New), or blank.
18887 If you are using a threaded view of the index and this message is at the
18888 top of a collapsed portion of a thread,
18889 then this token refers to all of the messages in the collapsed portion of
18890 the thread instead of just the top message.
18891 The first character will be a '*' if <EM>any</EM> of the messages in the thread
18892 are marked Important, else a '+' if any of the messages are addressed
18893 to you, else a '-' if any of the messages are cc'd to you.
18894 The third character will be a 'D' if <EM>all</EM> of the messages
18895 in the collapsed thread are marked deleted,
18896 an 'A' if <EM>all</EM> of the messages
18897 in the collapsed thread are marked answered,
18898 it will be an 'N' if any of
18899 the messages are undeleted and unseen, and it will be blank otherwise.
18900 </DD>
18902 <DT>FULLSTATUS</DT>
18903 <DD>
18904 This token represents a less abbreviated alternative
18905 to the &quot;STATUS&quot; token.
18906 It is six characters wide.
18907 The first character is '+', '-', or blank, the
18908 second blank, the third either '*' or blank, the fourth
18909 '<A HREF="h_flag_new">N</A>' or blank,
18910 the fifth '<A HREF="h_flag_answered">A</A>'
18911 or blank, and the sixth character is
18912 either '<A HREF="h_flag_deleted">D</A>' or
18913 blank.
18915 If you are using a threaded view of the index and this message is at the
18916 top of a collapsed portion of a thread,
18917 then this token refers to all of the messages in the collapsed portion of
18918 the thread instead of just the top message.
18919 The first character is '+', '-', or blank depending on whether <EM>any</EM>
18920 of the messages in the collapsed thread are addressed to you or cc'd to you.
18921 The third character will be '*' if any of the messages are marked
18922 Important.
18923 The fourth character will be 'N' if all of the messages in the thread
18924 are New, else 'n' if some of the messages in the thread are New, else blank.
18925 The fifth character will be 'A' or 'a' or blank, and the sixth character
18926 will be 'D' or 'd' or blank.
18927 </DD>
18929 <DT>IMAPSTATUS</DT>
18930 <DD>
18931 This token represents an even less abbreviated alternative to the
18932 &quot;STATUS&quot; token.
18933 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
18934 an 'N' if the message is new to this folder since the last time
18935 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
18936 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
18937 new to the folder since it was last opened <EM>but</EM> has not been
18938 viewed, or a blank if the message has been in the folder since it was
18939 last opened and has been viewed.
18941 If you are using a threaded view of the index and this message is at the
18942 top of a collapsed portion of a thread,
18943 then the fourth character will be
18944 'N' if all of the messages in the thread are unseen and recent;
18945 else 'n' if some of the messages in the thread are unseen and recent;
18946 else 'U' if all of the messages in the thread are unseen and not recent;
18947 else 'u' if some of the messages in the thread are unseen and not recent;
18948 else 'R' if all of the messages in the thread are seen and recent;
18949 else 'r' if some of the messages in the thread are seen and recent;
18950 else blank.
18951 </DD>
18953 <DT>SHORTIMAPSTATUS</DT>
18954 <DD>
18955 This is the same as the last four of the six characters of IMAPSTATUS,
18956 so the '+' To Me information will be missing.
18957 </DD>
18959 <DT>SIZE</DT>
18960 <DD>
18961 This token represents the total size, in bytes, of the message.
18962 If a &quot;K&quot; (Kilobyte)
18963 follows the number, the size is approximately 1,000
18964 times that many bytes (rounded to the nearest 1,000).
18965 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
18966 1,000,000 times that many bytes.
18967 Commas are not used in this field.
18968 This field is seven characters wide, including the enclosing parentheses.
18969 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
18970 The progression of sizes used looks like:
18973 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
18975 </DD>
18977 <DT>SIZECOMMA</DT>
18978 <DD>
18979 This token represents the total size, in bytes, of the message.
18980 If a &quot;K&quot; (Kilobyte)
18981 follows the number, the size is approximately 1,000
18982 times that many bytes (rounded to the nearest 1,000).
18983 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
18984 1,000,000 times that many bytes.
18985 Commas are used if the number shown is 1,000 or greater.
18986 The SIZECOMMA field is one character wider than the SIZE field.
18987 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
18988 The progression of sizes used looks like:
18991 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
18993 </DD>
18995 <DT>KSIZE</DT>
18996 <DD>
18997 This token represents the total size of the message, expressed in
18998 kilobytes or megabytes, as most appropriate.
18999 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19000 The progression of sizes used looks like:
19003 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19005 </DD>
19007 <DT>SIZENARROW</DT>
19008 <DD>
19009 This token represents the total size, in bytes, of the message.
19010 If a &quot;K&quot; (Kilobyte)
19011 follows the number, the size is approximately 1,000
19012 times that many bytes.
19013 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19014 1,000,000 times that many bytes.
19015 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19016 1,000,000,000 times that many bytes.
19017 This field uses only five characters of screen width, including the enclosing
19018 parentheses.
19019 The progression of sizes used looks like:
19022 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19024 </DD>
19026 <DT>DESCRIPSIZE</DT>
19027 <DD>
19028 This token is intended to represent a more useful description of the
19029 message than just its size, but it isn't very useful at this point.
19030 The plus sign in this view means there are attachments.
19031 Note that including this token in
19032 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19033 display a little while Alpine collects the necessary information.
19034 </DD>
19036 <DT>SUBJKEY</DT>
19037 <DD>
19038 This token is the same as the SUBJECT token unless keywords are set for
19039 the message.
19040 In that case, a list of keywords enclosed in braces will be prepended to
19041 the subject of the message.
19042 Only those keywords that you have defined in your
19043 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19044 in Setup/Config are considered in the list.
19045 In other words, keywords that have been set by some other means, perhaps
19046 by another email program, won't show up unless included in
19047 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19048 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19049 prepended to the subject in the MESSAGE TEXT screen.
19050 If you have given a keyword a nickname
19051 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19052 instead of the actual keyword.
19053 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19054 option may be used to modify this token slightly.
19055 It is also possible to color keywords in the index using the
19056 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19057 </DD>
19059 <DT>SUBJKEYINIT</DT>
19060 <DD>
19061 This token is the same as the SUBJKEY token except that instead of
19062 prepending a list of keywords to the subject, a list of first initials
19063 of keywords will be prepended instead.
19064 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19065 set (or Work and Now are the Alpine nicknames of keywords that are set)
19066 then the SUBJKEY token would cause a result like
19068 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19070 whereas the SUBJKEYINIT token would give
19072 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19074 Only those keywords that you have defined in your
19075 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19076 in Setup/Config are considered in the list.
19077 In other words, keywords that have been set by some other means, perhaps
19078 by another email program, won't show up unless included in
19079 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19080 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19081 option may be used to modify this token slightly.
19082 It is also possible to color keywords in the index using the
19083 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19084 </DD>
19086 <DT>SUBJECTTEXT</DT>
19087 <DD>
19088 Same as SUBJECT but if there is room in the Subject field for more text,
19089 the opening part of the text of the message is displayed after the subject.
19090 The time needed to fetch the text may cause a performance problem
19091 which can, of course, be avoided by using the SUBJECT version of
19092 the Subject instead.
19093 You may color this opening text differently by using the
19094 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19095 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19096 You may adjust the characters that are displayed between the Subject and the
19097 opening text with the option
19098 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19099 </DD>
19101 <DT>SUBJKEYTEXT</DT>
19102 <DD>
19103 Same as SUBJKEY but with the opening message text.
19104 </DD>
19106 <DT>OPENINGTEXT</DT>
19107 <DD>
19108 This is similar to SUBJECTTEXT.
19109 Instead of combining the Subject and the opening text in a single
19110 field in the index screen this token allows you to allocate a
19111 separate column just for the opening text of the message.
19112 The time needed to fetch this text may cause a performance problem.
19113 You may color this opening text differently by using the
19114 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19115 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19116 </DD>
19118 <DT>OPENINGTEXTNQ</DT>
19119 <DD>
19120 This is very similar to OPENINGTEXT.
19121 The NQ stands for No Quotes.
19122 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19123 For some messages this may be confusing.
19124 For example, a message might have a line preceding some quoted
19125 text that reads something like &quot;On May 8th person A said.&quot;
19126 That no longer makes sense after the quoted text is deleted and it
19127 will appear that person A said whatever the text after the quote
19128 is, even though that is really person B talking.
19129 </DD>
19131 <DT>SUBJKEYINITTEXT</DT>
19132 <DD>
19133 Same as SUBJKEYINIT but with the opening message text.
19134 </DD>
19136 <DT>KEY</DT>
19137 <DD>
19138 This is a space-delimited list of keywords that are set for the message.
19139 Only those keywords that you have defined in your
19140 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19141 in Setup/Config are considered in the list.
19142 In other words, keywords that have been set by some other means, perhaps
19143 by another email program, won't show up unless included in
19144 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19145 If you have given a keyword a nickname
19146 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19147 instead of the actual keyword.
19148 It is also possible to color keywords in the index using the
19149 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19150 This token defaults to an arbitrary width of 5.
19151 You should set it to whatever width suits you using something
19152 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19153 </DD>
19155 <DT>KEYINIT</DT>
19156 <DD>
19157 This is a list of keyword initials that are set for the message.
19158 If you have given a keyword a nickname
19159 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19160 is displayed instead of the initial of the actual keyword.
19161 It is also possible to color keyword initials in the index using the
19162 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19163 This token defaults to an arbitrary width of 2.
19164 You should set it to whatever width suits you using something
19165 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19166 </DD>
19168 <DT>PRIORITY</DT>
19169 <DD>
19170 The X-Priority header is a non-standard header that is used in a
19171 somewhat standard way by many mail programs.
19172 Alpine expects the value of this header to be a digit with a value
19173 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19174 Since this priority is something that the sender sets it is only an indication
19175 of the priority that the sender attaches to the mail and it is therefore almost
19176 totally unreliable for use as a filtering criterion.
19177 This token will display the numeric value of the priority if it is between
19178 1 and 5.
19179 It will be suppressed (blank) if the value is 3, which is normal priority.
19180 This token may be colored with the
19181 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19182 </DD>
19184 <DT>PRIORITYALPHA</DT>
19185 <DD>
19186 This is a more verbose interpretation of the X-Priority field.
19187 Once again nothing is displayed unless the value of the field
19188 is 1, 2, 4, or 5.
19189 The values displayed for those values are:
19191 <TABLE>
19192 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19193 <TR> <TD>2</TD> <TD>High</TD> </TR>
19194 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19195 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19196 </TABLE>
19198 This token may be colored with the
19199 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19200 </DD>
19202 <DT>PRIORITY!</DT>
19203 <DD>
19204 This is a one character, non-numeric version of the X-Priority field.
19205 If the value of the X-Priority header is 1 or 2 an exclamation
19206 point is displayed.
19207 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19208 This token may be colored with the
19209 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19210 </DD>
19212 <DT>ATT</DT>
19213 <DD>
19214 This is a one column wide field that represents the number of attachments
19215 a message has. It will be blank if there are no attachments, a single
19216 digit for one to nine attachments, or an asterisk for more than nine.
19217 Note that including this token in
19218 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19219 display a little while Alpine collects the necessary information.
19220 </DD>
19222 <DT>FROMORTO</DT>
19223 <DD>
19224 This token represents <EM>either</EM> the personal name (or email address) of
19225 the person listed in the message's &quot;From:&quot; header
19226 field, <EM>or</EM>, if that address is yours or one of your
19227 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19228 the first person specified in the
19229 message's &quot;To:&quot; header field
19230 with the prefix &quot;To: &quot; prepended.
19231 If the from address is yours and there is also no &quot;To&quot; address,
19232 Alpine will use the address on the &quot;Cc&quot; line.
19233 If there is no address there, either, Alpine will look for a newsgroup name
19234 from the &quot;Newsgroups&quot; header field and put
19235 that after the &quot;To: &quot; prefix.
19236 </DD>
19238 <DT>FROMORTONOTNEWS</DT>
19239 <DD>
19240 This is almost the same as <EM>FROMORTO</EM>.
19241 The difference is that newsgroups aren't considered.
19242 When a message is from you, doesn't have a To or Cc, and does have
19243 a Newsgroups header; this token will be your name instead of the name
19244 of the newsgroup (like it would be with FROMORTO).
19245 </DD>
19247 <DT>TEXT</DT>
19248 <DD>
19249 This is a different sort of token.
19250 It allows you to display a label within each index line.
19251 It will be the same fixed text for each line.
19252 It is different from all the other tokens in that there is no space column
19253 displayed after this token.
19254 Instead, it is butted up against the following field.
19255 It also has a different syntax.
19256 The text to display is given following a colon after the
19257 word &quot;TEXT&quot;.
19258 For example,
19260 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19262 would insert the literal text &quot;abc=&quot; (without the quotes)
19263 into the index display line.
19264 You must quote the text if it includes space characters, like
19266 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19268 </DD>
19270 <DT>HEADER</DT>
19271 <DD>
19272 This allows you to display the text from a particular header line in the
19273 message.
19274 The syntax for this token is substantially different from all the others
19275 in order that you might be able to display a portion of the text following
19276 a particular header.
19277 The header name you are interested in is given following a colon
19278 after the word &quot;HEADER&quot;.
19279 For example,
19281 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
19283 would display the text of the X-Spam header, if any.
19284 Like for other index tokens a width field may (and probably should)
19285 follow this.
19287 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
19289 displays the first ten characters of the X-Spam header.
19290 Unlike other index tokens, the syntax for HEADER is more flexible.
19291 An optional second argument comes after a comma inside the parentheses.
19292 It specifies the &quot;field&quot; number.
19293 By default, the field separator is a space character.
19294 No extra space characters are allowed in the argument list.
19296 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
19298 would display the second field, left-justified, in a 10 character
19299 wide field.
19300 The second field would consist of all the text after the first space
19301 up to the next space or the end of the header.
19302 The default field number is zero, which stands for the entire line.
19303 There is also an optional third argument that is a list of field
19304 separators. It defaults to a space character.
19305 The example
19307 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
19309 would cause the field separators to be any of colon, percent,
19310 or space (there is a space character between the percent and the
19311 right parenthesis).
19312 The first field runs from the start of the header value up to the first
19313 colon, percent, or space; the second goes from there to the next; and so on.
19314 In order to use a comma character as a field separator you must escape
19315 it by preceding it with a backslash (&#92;).
19316 The same is true of the backslash character itself.
19317 There is one further optional argument.
19318 It is an R or an L to specify right or left adjustment of the text
19319 within the field.
19320 The default is to left justify, however if you are displaying numbers
19321 you might prefer to right justify.
19323 Here's an example of a SpamAssassin header.
19324 The exact look of the header will vary, but if your incoming mail
19325 contains headers that look like the following
19327 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19329 you might want to display the hits value.
19330 The first field starts with the Y in Yes.
19331 To get what you're interested in you might use &quot;=&quot; and
19332 space as the field separators and display the third field, like
19334 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
19336 or maybe you would break at the dot instead
19338 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
19340 Another example we've seen has headers that look like
19342 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19344 Because there are two equals and a comma before the 7% and a comma
19345 after it, the token
19347 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
19349 should display the probability (for example 7% or 83%) right justified
19350 in a 3-wide field.
19351 </DD>
19353 <DT>ARROW</DT>
19354 <DD>
19355 This gives an alternative way to display the current message in the
19356 MESSAGE INDEX screen.
19357 Usually the current message is indicated by the line being shown in
19358 reverse video.
19359 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
19360 the current line will include an &quot;arrow&quot; that
19361 looks like
19363 <CENTER><SAMP>-&gt;</SAMP></CENTER>
19365 in the ARROW token's field.
19366 For all of the non-current messages, the ARROW field will be filled
19367 with blanks.
19368 If you use the fixed-field width feature the length of the &quot;arrow&quot;
19369 may be adjusted.
19370 The arrow will be drawn as width-1 dashes followed by a greater than sign.
19371 For example, if you use ARROW(3) you will get
19373 <CENTER><SAMP>--&gt;</SAMP></CENTER>
19375 and ARROW(1) will give you just
19377 <CENTER><SAMP>&gt;</SAMP></CENTER>
19379 It is also possible to set the color of the ARROW field.
19380 By default (and for non-current messages) the arrow is colored the same
19381 as the index line it is part of.
19382 You may set it to be another color with the 
19383 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
19384 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19385 </DD>
19387 <DT>SCORE</DT>
19388 <DD>
19389 This gives the
19390 <a href="h_rules_score">score</a>
19391 of each message.
19392 This will be six columns wide to accomodate the widest possible score.
19393 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
19394 to limit the width of the field to the widest score that
19395 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
19396 If you have not defined any score rules the scores will all be zero.
19397 If any of your score rules contain AllText or BodyText patterns
19398 then including SCORE in the <!--#echo var="VAR_index-format"-->
19399 may slow down the display of the MESSAGE INDEX screen.
19400 </DD>
19401 </DL>
19404 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
19406 <DL>
19407 <DT>CURNEWS</DT>
19408 <DD>
19409 This token represents the current newsgroup if there is one.
19410 For example, &quot;comp.mail.pine&quot;.
19411 </DD>
19413 <DT>MSGID</DT>
19414 <DD>
19415 This token represents the message ID of the message.
19416 This token does not work with Filter Rule folder names.
19417 </DD>
19419 <DT>CURDATE</DT>
19420 <DD>
19421 This token represents the current date.
19422 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19423 </DD>
19425 <DT>CURDATEISO</DT>
19426 <DD>
19427 This token represents the current date.
19428 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19429 </DD>
19431 <DT>CURDATEISOS</DT>
19432 <DD>
19433 This token represents the current date.
19434 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19435 </DD>
19437 <DT>CURPREFDATE</DT>
19438 <DD>
19439 This token represents the current date.
19440 It is your operating system's idea of the preferred date representation for the current locale.
19441 Internally it uses the %x version of the date from the strftime routine.
19442 </DD>
19444 <DT>CURPREFTIME</DT>
19445 <DD>
19446 This token represents the current time.
19447 It is the preferred time representation for the current locale.
19448 Internally it uses the %X version of the time from the strftime routine.
19449 </DD>
19451 <DT>CURPREFDATETIME</DT>
19452 <DD>
19453 This token represents the current date and time.
19454 It is the preferred date and time representation for the current locale.
19455 Internally it uses the %c version of the time from the strftime routine.
19456 </DD>
19458 <DT>CURTIME24</DT>
19459 <DD>
19460 This token represents the current time.
19461 It has the format HH:MM. For example, &quot;17:28&quot;.
19462 </DD>
19464 <DT>CURTIME12</DT>
19465 <DD>
19466 This token represents the current time.
19467 This time is for a 12 hour clock.
19468 It has the format HH:MMpm.
19469 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19470 </DD>
19472 <DT>CURDAY</DT>
19473 <DD>
19474 This token represents the current day of the month.
19475 For example, &quot;23&quot; or &quot;9&quot;.
19476 </DD>
19478 <DT>CURDAY2DIGIT</DT>
19479 <DD>
19480 This token represents the current day of the month.
19481 For example, &quot;23&quot; or &quot;09&quot;.
19482 It is always 2 digits.
19483 </DD>
19485 <DT>CURDAYOFWEEK</DT>
19486 <DD>
19487 This token represents the current day of the week.
19488 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19489 </DD>
19491 <DT>CURDAYOFWEEKABBREV</DT>
19492 <DD>
19493 This token represents the current day of the week.
19494 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19495 </DD>
19497 <DT>CURMONTH</DT>
19498 <DD>
19499 This token represents the current month.
19500 For example, &quot;10&quot; or &quot;9&quot;.
19501 </DD>
19503 <DT>CURMONTH2DIGIT</DT>
19504 <DD>
19505 This token represents the current month.
19506 For example, &quot;10&quot; or &quot;09&quot;.
19507 It is always 2 digits.
19508 </DD>
19510 <DT>CURMONTHLONG</DT>
19511 <DD>
19512 This token represents the current month.
19513 For example, &quot;October&quot;.
19514 </DD>
19516 <DT>CURMONTHABBREV</DT>
19517 <DD>
19518 This token represents the current month.
19519 For example, &quot;Oct&quot;.
19520 </DD>
19522 <DT>CURYEAR</DT>
19523 <DD>
19524 This token represents the current year.
19525 For example, &quot;1998&quot; or &quot;2001&quot;.
19526 </DD>
19528 <DT>CURYEAR2DIGIT</DT>
19529 <DD>
19530 This token represents the current year.
19531 For example, &quot;98&quot; or &quot;01&quot;.
19532 It is always 2 digits.
19533 </DD>
19535 <DT>LASTMONTH</DT>
19536 <DD>
19537 This token represents last month.
19538 For example, if this is November (the 11th month),
19539 it is equal to &quot;10&quot; or if this is October (the 10th month),
19540 it is &quot;9&quot;.
19541 It is possible that this and the other tokens beginning with LASTMONTH
19542 below could be useful when used with a Filtering Rule that
19543 has the &quot;Beginning of Month&quot; option set.
19544 </DD>
19546 <DT>LASTMONTH2DIGIT</DT>
19547 <DD>
19548 This token represents last month.
19549 For example, if this is November (the 11th month),
19550 it is equal to &quot;10&quot; or if this is October (the 10th month),
19551 it is &quot;09&quot;.
19552 It is always 2 digits.
19553 </DD>
19555 <DT>LASTMONTHLONG</DT>
19556 <DD>
19557 This token represents last month.
19558 For example, if this is November the value is &quot;October&quot;.
19559 </DD>
19561 <DT>LASTMONTHABBREV</DT>
19562 <DD>
19563 This token represents last month.
19564 For example, if this is November the value is &quot;Oct&quot;.
19565 </DD>
19567 <DT>LASTMONTHYEAR</DT>
19568 <DD>
19569 This token represents what the year was a month ago.
19570 For example, if this is October, 1998, it is &quot;1998&quot;.
19571 If this is January, 1998, it is &quot;1997&quot;.
19572 </DD>
19574 <DT>LASTMONTHYEAR2DIGIT</DT>
19575 <DD>
19576 This token represents what the year was a month ago.
19577 For example, if this is October, 1998, it is &quot;98&quot;.
19578 If this is January, 1998, it is &quot;97&quot;.
19579 </DD>
19581 <DT>LASTYEAR</DT>
19582 <DD>
19583 This token represents last year.
19584 For example, if this is 1998, it equals &quot;1997&quot;.
19585 It is possible that this
19586 could be useful when used with a Filtering Rule that
19587 has the &quot;Beginning of Year&quot; option set.
19588 </DD>
19590 <DT>LASTYEAR2DIGIT</DT>
19591 <DD>
19592 This token represents last year.
19593 For example, if this is 1998, it equals &quot;97&quot;.
19594 It is always 2 digits.
19595 </DD>
19597 <DT>ROLENICK</DT>
19598 <DD>
19599 This token represents the nickname of the
19600 role currently being used.  If no role is being used,
19601 then no text will be printed for this token.
19602 This token does not work with Filter Rule folder names.
19603 </DD>
19604 </DL>
19607 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
19608 See the help for the
19609 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
19610 to see why you might want to use this.
19611 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
19612 must be surrounded by underscores when used.
19614 <DL>
19615 <DT>NEWLINE</DT>
19616 <DD>
19617 This is an end of line marker.
19618 </DD>
19619 </DL>
19622 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
19624 <DL>
19625 <DT>CURSORPOS</DT>
19626 <DD>
19627 This token is different from the others.
19628 When it is replaced it is replaced with nothing, but it sets an Alpine
19629 internal variable that tells the composer to start with the cursor
19630 positioned at the position where this token was.
19631 If both the template file and the signature file contain
19632 a &quot;CURSORPOS&quot; token, then the position in the template file
19633 is used.
19634 If there is a template file and neither it nor the signature file contains
19635 a &quot;CURSORPOS&quot; token, then the cursor is positioned
19636 after the end of the contents of the
19637 template file when the composer starts up.
19638 </DD>
19639 </DL>
19642 &lt;End of help on this topic&gt;
19643 </BODY>
19644 </HTML>
19645 ======= h_reply_token_conditionals =======
19646 <HTML>
19647 <HEAD>
19648 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
19649 </HEAD>
19650 <BODY>
19651 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
19653 Conditional text inclusion may be used with
19654 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19655 in signature files, and in template files used in
19656 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
19657 It may <EM>not</EM> be used with the
19658 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
19661 There is a limited if-else capability for including text.
19662 The if-else condition is based
19663 on whether or not a given token would result in replacement text you
19664 specify.
19665 The syntax of this conditional inclusion is
19667 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
19669 The left parenthesis must follow the underscore immediately, with no
19670 intervening space.
19671 It means the token is expanded and the results of that expansion are
19672 compared against the &quot;match_this&quot; argument.
19673 If there is an exact match, then the &quot;if_matched&quot; text is used
19674 as the replacement text.
19675 Otherwise, the &quot;if_not_matched&quot; text is used.
19676 One of the most useful values for the &quot;match_this&quot; argument is
19677 the empty string, &quot;&quot;.
19678 In that case the expansion is compared against the empty string.
19680 Here's an example to make it clearer.
19681 This text could be included in one of your template files:
19683 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
19685 If that is included in a template file that you are using while replying
19686 to a message (because you chose to use the role it was part of),
19687 and that message has a newsgroup header and a newsgroup in that header,
19688 then the text
19690 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
19692 will be included in the message you are about to compose.
19693 On the other hand, if the message you are replying to does not have
19694 a newsgroup, then the text
19696 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
19698 would be included instead.
19699 This would also work in signature files and in
19700 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
19701 If the &quot;match_this&quot;, &quot;if_matched&quot;,
19702 or &quot;if_not_matched&quot; arguments contain
19703 spaces, parentheses, or commas;
19704 they have to be quoted with double quotation marks (like in the example
19705 above).
19706 If you want to include a literal quote (&quot;) in the text you must escape the
19707 quote by preceding it with a backslash (&#92;) character.
19708 If you want to include a literal backslash character you must escape it
19709 by preceding it with another backslash.
19711 The comma followed by &quot;if_not_matched&quot; is optional.
19712 If there is no &quot;if_not_matched&quot;
19713 present then no text is included if the not_matched case is true.
19714 Here's another example:
19716 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
19718 Here you can see that tokens may appear in the arguments.
19719 The same is true for tokens with the conditional parentheses.
19720 They may appear in arguments,
19721 though you do have to be careful to get the quoting and escaping of
19722 nested double quotes correct.
19723 If this was in the signature file being used and you were replying to a message
19724 sent to comp.mail.pine the resulting text would be:
19726 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
19728 If you were replying to a message that wasn't sent to any newsgroup the
19729 resulting text would be a single blank line.
19730 The reason you'd get a blank line is because the end of the line is
19731 outside of the conditional, so is always included.
19732 If you wanted to get rid of that blank line you could do so by moving
19733 the end of line inside the conditional.
19734 In other words, it's ok to have multi-line
19735 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
19736 template file.
19737 The text just continues until the next double quotation, even if it's not
19738 on the same line.
19740 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
19742 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
19744 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
19745 while reading the newsgroup comp.mail.pine the resulting text would be:
19747 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
19749 If you were replying to a message while reading an email folder instead
19750 of a newsgroup the resulting leadin text would be
19752 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
19754 Here's one more (contrived) example illustrating a matching argument
19755 that is not the empty string.
19757 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
19759 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
19760 were replying to
19761 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
19762 would be
19764 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
19766 But if you were replying to a message sent on Oct. 27 (and that wasn't
19767 today) you would get
19769 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
19772 &lt;End of help on this topic&gt;
19773 </BODY>
19774 </HTML>
19775 ======= h_composer_cntxt_nick =======
19776 <HTML>
19777 <HEAD>
19778 <TITLE>Collection Nickname Explained</TITLE>
19779 </HEAD>
19780 <BODY>
19781 <H1>Collection Edit Help -- Nickname Field</H1>
19783 This field is provided so you can add a short nickname to use when
19784 referring to this collection within Alpine.  Spaces are allowed, and
19785 you don't need to use double-quotes.  However, the double-quote
19786 character is not allowed.
19788 Look <A HREF="h_edit_nav_cmds">here</A>
19789 to see the available Editing and Navigation commands.
19791 &lt;End of help on this topic&gt;
19792 </BODY>
19793 </HTML>
19794 ======= h_folder_server_syntax =======
19795 <HTML>
19796 <HEAD>
19797 <TITLE>Server Name Syntax</TITLE>
19798 </HEAD>
19799 <BODY>
19800 <H1>Server Name Syntax</H1>
19802 This help describes the syntax that may be used for server names
19803 that may be associated with remote folders or SMTP servers.
19806 A server name is the hostname of the server.
19807 It's a good idea to use the host's fully-qualified network name.
19810 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
19813 However, IP addresses are allowed if surrounded
19814 with square-brackets.
19817 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
19820 An optional network port number may be supplied by appending
19821 a colon (:) followed by the port number
19822 to the server name.
19823 By default, the IMAP port number, 143, is used.
19826 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
19829 Besides server name and optional port number, various other optional
19830 parameters may be supplied that alter Alpine's interaction with the server.
19831 A parameter is supplied by appending a slash (/) character followed by
19832 the parameter's name and,
19833 depending on the particular parameter, the value assigned to that
19834 name, to the server name (and optional port number).
19835 Parameter names are <EM>not</EM> case sensitive.
19836 Currently supported parameters include:
19838 <DL>
19840 <DT>User</DT>
19841 <DD>This parameter requires an associated value, and is intended to
19842 provide the username identifier with which to establish the server
19843 connection.
19844 If your SMTP server offers SMTP AUTH authentication, adding this 
19845 parameter to the
19846 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
19847 option will cause Alpine to attempt to authenticate to the server using the
19848 supplied username.
19849 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
19850 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
19851 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
19852 option (or to the server name for any folder collection using NNTP)
19853 will cause Alpine to attempt
19854 to authenticate to the server using the supplied username.
19855 An example might be:
19858 <CENTER><SAMP>/user=katie</SAMP></CENTER>
19861 </DD>
19863 <DT>TLS</DT>
19864 <DD>
19865 Normally, when a new connection is made an attempt is made to 
19866 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
19867 If that fails then a non-encrypted connection will be attempted instead.
19868 This is a unary parameter indicating communication with the server must 
19869 take place over a TLS connection. If the attempt to use TLS fails then
19870 this parameter will cause the connection to fail instead of falling
19871 back to an unsecure connection.
19874 <CENTER><SAMP>/tls</SAMP></CENTER>
19877 </DD>
19879 <DT>SSL</DT>
19880 <DD>
19881 This is a unary parameter indicating communication with the server should 
19882 take place over a Secure Socket Layer connection.  The server must support
19883 this method, and be prepared to accept connections on the appropriate
19884 port (993 by default).
19885 Alpine must be linked with an SSL library for this option to be operational.
19888 <CENTER><SAMP>/ssl</SAMP></CENTER>
19891 </DD>
19893 <DT>TLS1</DT>
19894 <DD>
19895 This parameter indicates that the connection to the server will be made
19896 over the SSL port, but using the TLSv1 protocol, instead of the usual
19897 SSLv3 or SSLv2 protocols.
19898 Alpine must be linked with an SSL library for this option to be operational.
19901 <CENTER><SAMP>/tls1</SAMP></CENTER>
19904 </DD>
19906 <DT>DTLS1</DT>
19907 <DD>
19908 This parameter indicates that the connection to the server will be made
19909 over the SSL port, but using the DTLSv1 protocol, instead of the usual
19910 SSLv3 or SSLv2 protocols.
19911 Alpine must be linked with an SSL library for this option to be operational.
19914 <CENTER><SAMP>/dtls1</SAMP></CENTER>
19917 </DD>
19919 <DT>TLS1_1</DT>
19920 <DD>
19921 This parameter indicates that the connection to the server will be made
19922 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
19923 SSLv3 or SSLv2 protocols.
19924 Alpine must be linked with an SSL library for this option to be operational.
19927 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
19930 </DD>
19932 <DT>TLS1_2</DT>
19933 <DD>
19934 This parameter indicates that the connection to the server will be made
19935 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
19936 SSLv3 or SSLv2 protocols.
19937 Alpine must be linked with an SSL library for this option to be operational.
19940 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
19943 </DD>
19946 <DT>NoValidate-Cert</DT>
19947 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
19948 This is needed if the server uses self-signed certificates or if Alpine
19949 cannot validate the certificate for some other known reason.
19951 </DD>
19953 <DT>Anonymous</DT>
19954 <DD>This is a unary parameter (that means it does not have a value)
19955 indicating that the connection be logged in as
19956 &quot;anonymous&quot; rather than a specific user.
19957 Not all servers offer anonymous
19958 access; those which do generally only offer read-only access to certain
19959 &quot;public&quot; folders.
19962 <CENTER><SAMP>/anonymous</SAMP></CENTER>
19965 </DD>
19967 <DT>Secure</DT>
19968 <DD>This is a unary parameter indicating that the connection use the
19969 most secure authentication method mutually supported by Alpine and the
19970 server.
19971 Alpine is capable of authenticating connections to 
19972 the server using several methods.
19973 By default, Alpine will attempt each
19974 method until either a connection is established or the
19975 list of methods is exhausted.
19976 This parameter causes Alpine to instead fail 
19977 the connection if the first (generally most &quot;secure&quot;) method fails.
19980 <CENTER><SAMP>/secure</SAMP></CENTER>
19983 </DD>
19985 <DT>Submit</DT>
19986 <DD>This is a unary parameter for use with the
19987 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
19988 It indicates that the connection should be made to the Submit server
19989 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
19990 (port 587) instead of the SMTP port (25).
19991 At the time this help was written the submit option was equivalent to
19992 specifying port 587.
19995 <CENTER><SAMP>/submit</SAMP></CENTER>
19999 <CENTER><SAMP>host:587</SAMP></CENTER>
20002 </DD>
20004 <DT>Debug</DT>
20005 <DD>This is a unary parameter indicating that the connection be established
20006 in a verbose mode.  Basically, it causes Alpine to log the communication with
20007 the server in Alpine's debug file.
20008 Normally, the pine -d command-line flag would be used instead.
20010 </DD>
20012 <DT>NoRsh</DT>
20013 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20014 the UNIX remote shell program.
20015 Including &quot;NoRsh&quot; will cause connections to this server to skip
20016 the &quot;rsh&quot; attempt.
20017 This might be useful to avoid long timeouts caused by rsh firewalls, for
20018 example.
20020 </DD>
20022 <DT>Service</DT>
20023 <DD>This parameter requires an associated value.  The default value is
20024 &quot;IMAP&quot; which indicates communication with the server based
20025 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20026 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20028 Other service values include:
20029  <DL>
20030  <DT>NNTP</DT>
20031  <DD>This value indicates communication with the server takes place via
20032 the Network News Transfer Protocol.  Use this to define a collection
20033 of newsgroups on a remote news server.  So
20036 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20038 or just
20040 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20043 is the way to specify NNTP access.
20045  </DD>
20047  <DT>POP3</DT>
20048  <DD>This value indicates communication with the server takes place via the
20049 Post Office Protocol 3 protocol.
20052 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20054 or just
20056 <CENTER><SAMP>/POP3</SAMP></CENTER>
20059 Note that there are several important issues
20060 to consider when selecting this option:
20061 <OL>
20062  <LI> POP3 provides access to only your INBOX.  In other words,
20063 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20064  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20065 model and will leave your mail on the server. Refer to the
20066 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20067  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20068 </OL>
20069 </DD>
20070 </DL>
20071 </DL>
20074 Note that it is possible to include more than one parameter in a server
20075 specification by concatenating the parameters. For example:
20078 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20082 &lt;End of help on this topic&gt;
20083 </BODY>
20084 </HTML>
20085 ======= h_composer_cntxt_server =======
20086 <HTML>
20087 <HEAD>
20088 <TITLE>Collection Server: Explained</TITLE>
20089 </HEAD>
20090 <BODY>
20091 <H1>Collection Edit Help -- Server Field</H1>
20093 This collection's &quot;Server:&quot; definition indicates the
20094 hostname of the server providing access to the folders in this
20095 collection.
20096 The syntax of this server name is the same as for other server names used
20097 in remote folder names in
20098 Alpine and is described
20099 <A HREF="h_folder_server_syntax">here</A>.
20102 &lt;End of help on this topic&gt;
20103 </BODY>
20104 </HTML>
20105 ======= h_composer_cntxt_path =======
20106 <HTML>
20107 <HEAD>
20108 <TITLE>Collection Path: Explained</TITLE>
20109 </HEAD>
20110 <BODY>
20111 <H1>Collection Edit Help -- Path Field</H1>
20113 The collection's &quot;Path:&quot; definition indicates the location
20114 of the folders in this collection.  If the path or any of its components
20115 do not exist, Alpine will prompt you for their creation when exiting the
20116 Add/Change screen.
20118 <P> 
20119 By default the path is interpreted as defining a section of your personal
20120 folder area.  This area and how you specify it are defined by the
20121 server, if one is specified in the collection, or, typically, the home
20122 directory if no server is defined.
20125 To define a collection outside the default &quot;area&quot;, prefix
20126 the path with the &quot;namespace&quot; to use when interpreting the
20127 given path.  If a namespace is specified, the Path begins with the
20128 sharp, &quot;#&quot;, character followed by the name of the namespace
20129 and then the namespace's path-element-delimiter.  Aside from the
20130 path's format, namespaces can also imply access rights, content
20131 policy, audience, location, and, occasionally, access methods.
20134 Each server exports its own set (possibly of size one) of 
20135 namespaces.  Hence, it's likely communication with your server's
20136 administrator will be required for specific configurations.  Some of
20137 the more common namespaces, however, include:
20139 <DL>
20140 <DT>#news.</DT>
20141 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20142 names are hierarchically defined with each level delimited by a period.
20143 </DD>
20144 <DT>#public/</DT>
20145 <DD>This specifies a folder area that the server may export to the general
20146 public.
20147 </DD>
20148 <DT>#shared/</DT>
20149 <DD>This specifies a folder area that the folder may export to groups
20150 of users.
20151 </DD>
20152 <DT>#ftp/</DT>
20153 <DD>This specifies a folder area that is the same as that it may have 
20154 exported via the &quot;File Transfer Protocol&quot;.
20155 </DD>
20156 <DT>#mh/</DT>
20157 <DD>This specifies the personal folder area associated with folders
20158 and directories that were created using the MH message handling system.
20159 </DD>
20160 </DL>
20163 In addition, the server may support access to other user's folders,
20164 provided you have suitable permissions.  Common methods use a prefix
20165 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20166 indicate the root of the other user's folder area.
20169 No, nothing's simple.
20172 &lt;End of help on this topic&gt;
20173 </BODY>
20174 </HTML>
20175 ======= h_composer_cntxt_view =======
20176 <HTML>
20177 <HEAD>
20178 <TITLE>Collection View: Explained</TITLE>
20179 </HEAD>
20180 <BODY>
20181 <H1>Collection Edit Help -- View Field</H1>
20183 The collection's &quot;View:&quot; definition provides a way to limit
20184 the displayed list of folders within a collection.  By default, only
20185 folders that contain the specified characters anywhere in their name
20186 are shown in the collection's folder list.
20189 Additionally, you can use a wildcard character to better control
20190 the list of folders selected for display.  The wildcard specifier is
20191 the star, &quot;*&quot;, character.
20194 So, for example, to define a collection of all folders ending with
20195 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20196 quote characters!).  Or, similarly, to define a collection of folders
20197 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20198 specify a view of &quot;a*z&quot;.
20201 &lt;End of help on this topic&gt;
20202 </BODY>
20203 </HTML>
20204 ======= h_composer_abook_add_server =======
20205 <HTML>
20206 <HEAD>
20207 <TITLE>Addressbook Server Name Field Explained</TITLE>
20208 </HEAD>
20209 <BODY>
20210 This field should be left blank if the address book is stored in a regular
20211 file on this system.  If it is a remote address book stored on an IMAP
20212 server then this is the name of that IMAP server.
20214 Look <A HREF="h_edit_nav_cmds">here</A>
20215 to see the available Editing and Navigation commands.
20217 &lt;End of help on this topic&gt;
20218 </BODY>
20219 </HTML>
20220 ======= h_composer_abook_add_folder =======
20221 <HTML>
20222 <HEAD>
20223 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20224 </HEAD>
20225 <BODY>
20226 For a remote address book (one for which the Server Name is filled in)
20227 this is the name of a folder on the remote server. The address book data
20228 will be stored in this folder. This folder should be used only for
20229 storing this single address book, not for other address books or for
20230 other messages.
20232 For a local address book (one for which the Server Name is not filled in)
20233 this is the name of a file in which the address book will be stored.
20234 The file is in the same directory as the Alpine configuration file if the
20235 configuration file is local.
20236 If the configuration file is remote, then this will be in the home directory
20237 for Unix Alpine and in the directory specified by the
20238 &quot;-aux local_directory&quot; command line argument.
20240 Look <A HREF="h_edit_nav_cmds">here</A>
20241 to see the available Editing and Navigation commands.
20243 &lt;End of help on this topic&gt;
20244 </BODY>
20245 </HTML>
20246 ======= h_composer_abook_add_nick =======
20247 <HTML>
20248 <HEAD>
20249 <TITLE>Addressbook NickName Field Explained</TITLE>
20250 </HEAD>
20251 <BODY>
20252 This is just an optional nickname for this address book. If present, it
20253 is used in some of the displays and error messages in the address book
20254 maintenance screens. It is for your convenience only and serves no
20255 other purpose.
20257 Look <A HREF="h_edit_nav_cmds">here</A>
20258 to see the available Editing and Navigation commands.
20260 &lt;End of help on this topic&gt;
20261 </BODY>
20262 </HTML>
20263 ======= h_composer_qserv_cn =======
20264 <HTML>
20265 <HEAD>
20266 <TITLE>Directory Query Form Explained</TITLE>
20267 </HEAD>
20268 <BODY>
20270 Fill in as many of these fields as you wish to narrow down your
20271 search. All the fields you fill in must match in order for an entry
20272 to be returned. You may use the wildcard character &quot;*&quot; in
20273 any of the fields, it matches any zero or more characters at that
20274 point in the string. There are no implicit wildcards, so the match is
20275 exact unless you include wildcards.
20278 Note that if an attribute isn't present at all, then the match will fail.
20279 For example, if a server doesn't support the Locality attribute, then no
20280 matter what you put in the Locality field (other than leaving it empty)
20281 the search will fail.
20284 This field, the Common Name field, is typically a person's full name.
20287 <H1>EDITING and NAVIGATION COMMANDS</H1>
20288 <!--chtml if pinemode="function_key"-->
20289 <PRE>
20290 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20291 ^B (Left Arrow)    Back character       | ^D       Delete current character
20292 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20293 ^P (Up Arrow)      Previous line        |
20294 ^N (Down Arrow)    Next line            | F9       Cut marked text or
20295 ^A                 Beginning of line    |            delete current line
20296 ^E                 End of line          | F10      Undelete line(s)
20297 F7                 Previous page        |
20298 F8                 Next page            |-------------------------------------
20299 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20300 ----------------------------------------|
20301 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
20302 F2   Cancel      |   F1    Get help     |
20303 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
20304 </PRE>
20305 <!--chtml else-->
20306 <PRE>
20307 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20308 ^B (Left Arrow)    Back character       | ^D       Delete current character
20309 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20310 ^P (Up Arrow)      Previous line        |
20311 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
20312 ^A                 Beginning of line    |            delete current line
20313 ^E                 End of line          | ^U       Undelete line(s)
20314 ^Y                 Previous page        |
20315 ^V                 Next page            |-------------------------------------
20316 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20317 ----------------------------------------|
20318 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
20319 ^C   Cancel      |   ^G    Get help     |
20320 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
20321 </PRE>
20322 <!--chtml endif-->
20323 <P><UL>
20324 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20325 </UL><P>
20326 &lt;End of help on this topic&gt;
20327 </BODY>
20328 </HTML>
20329 ======= h_composer_qserv_sn =======
20331 The Surname is usually the family name of a person.
20333 <End of help on this topic>
20334 ======= h_composer_qserv_gn =======
20336 This is the part of a person's name that isn't the surname or initials.
20338 <End of help on this topic>
20339 ======= h_composer_qserv_mail =======
20341 This is the email address of a person.
20343 <End of help on this topic>
20344 ======= h_composer_qserv_org =======
20346 This is the organization a person belongs to.
20348 <End of help on this topic>
20349 ======= h_composer_qserv_unit =======
20351 This is the organizational unit a person belongs to.
20353 <End of help on this topic>
20354 ======= h_composer_qserv_country =======
20356 This is the country a person belongs to.
20358 <End of help on this topic>
20359 ======= h_composer_qserv_state =======
20361 This is the state a person belongs to.
20363 <End of help on this topic>
20364 ======= h_composer_qserv_locality =======
20366 This is the locality a person belongs to.
20368 <End of help on this topic>
20369 ======= h_composer_qserv_custom =======
20371 This one is for advanced users only! If you put something in this field,
20372 then the rest of the fields are ignored.
20374 This field may be set to the string representation of an LDAP search
20375 filter (see RFC1960). Here are some examples:
20377 To search for an entry with a surname equal to "clinton" you could set
20378 the custom filter to:
20380      (sn=clinton)
20381     
20382 This is equivalent to putting "clinton" in the SurName field.
20383 To search for an entry that has a surname that begins with "clint" and
20384 has a givenname equal to "william" you could use:
20386      (&(sn=clint*)(givenname=william))
20387     
20388 This is equivalent to setting the SurName field to "clint*" and the
20389 GivenName field to "william".
20390 To search for an entry where either the common name OR the email address
20391 contains "abcde" you could use:
20393      (|(cn=*abcde*)(mail=*abcde*))
20395 That isn't equivalent to anything you can do by setting the other fields
20396 because of the OR.
20398 <End of help on this topic>
20399 ======= h_composer_qserv_qq =======
20401 This one is a little different from the rest of the categories.  It causes
20402 a search to be formed from the configured search filter that you filled
20403 in when you added the directory server to your configuration. It can also
20404 be combined with the other fields if you'd like.
20406 <End of help on this topic>
20407 ======= h_address_format =======
20408 <HTML>
20409 <HEAD>
20410 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
20411 </HEAD>
20412 <BODY>
20413 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
20415 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
20416 and then a domain, with no spaces.  
20417 For example, jsmith@art.example.com might be the email address
20418 of a person  
20419 with the username &quot;jsmith&quot; who has an account in the domain
20420 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
20421 right of the &quot;@&quot; sign can vary - a shorter example would be 
20422 isabelle@elsewhere.edu (the shortest possible form: here, only the 
20423 organization's domain is specified after the &quot;@&quot; sign); a longer 
20424 example would be 
20425  jsingh@shakti.edutech.example.com
20426 (here, the name of the host &quot;shakti&quot; in the domain 
20427 edutech.example.com is also specified).  
20428 <P>  
20429 If you do not know the exact email address of someone you want to write 
20430 to, ask them what it is using other means of communication than email; or 
20431 use the tools for 
20432 finding people's addresses that are available on the Internet.
20434 If you are sending to someone on the same system as you are, you can leave
20435 the &quot;@&quot; sign and all the information to its right off of the 
20436 address, and Alpine will fill it in automatically, 
20437 unless the feature 
20438 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
20441 When an email address you send a message to is not reachable -- either because 
20442 it is simply an incorrect address, or because email can temporarily not be 
20443 delivered to it due to a technical problem on the way to or at the recipient's 
20444 end -- you will almost always get an error notification email message back.
20446 If you encounter problems with, or have questions about, email delivery or
20447 email address syntax, contact your local network computing consultants.
20448 <P><UL>
20449 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20450 </UL>
20452 &lt;End of help on this topic&gt;
20453 </BODY>
20454 </HTML>
20455 ======= h_flag_user_flag =======
20456 <HTML>
20457 <HEAD>
20458 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
20459 </HEAD>
20460 <BODY>
20461 <H1>STATUS FLAG: User Defined Keyword</h1>
20463 This is a keyword that is defined for this folder.
20464 It was most likely defined by the owner of the folder.
20465 Alpine will not set or clear this flag on its own.
20467 <P><UL>
20468 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20469 </UL><P>
20470 &lt;End of help on this topic&gt;
20471 </BODY>
20472 </HTML>
20473 ======= h_flag_important =======
20474 <html>
20475 <title>STATUS FLAG: Important</title>
20476 <body>
20477 <h1>STATUS FLAG: Important</h1>
20480 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
20481 MESSAGE&nbsp;INDEX
20482 screen, can only be set by the user, and is intended to be used in
20483 whatever fashion makes sense to you.  You are the only one that can set or
20484 clear it. 
20487 &lt;End of help on this topic&gt;
20488 </BODY>
20489 </HTML>
20490 ======= h_flag_new =======
20491 <html>
20492 <title>STATUS FLAG: New</title>
20493 <body>
20494 <h1>STATUS FLAG: New</h1>
20497 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
20498 MESSAGE&nbsp;INDEX screen,
20499 is automatically set when messages are delivered to your Inbox (or other
20500 folder specified outside of Alpine).  Likewise, it is cleared automatically
20501 the first time you read the message it is associated with.
20504 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
20505 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
20506 you'd like to be reminded of it next time you read mail.  This can be done
20507 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
20511 &lt;End of help on this topic&gt;
20512 </BODY>
20513 </HTML>
20514 ======= h_flag_answered =======
20515 <html>
20516 <title>STATUS FLAG: Answered</title>
20517 <body>
20518 <h1>STATUS FLAG: Answered</h1>
20520 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
20521 MESSAGE&nbsp;INDEX
20522 screen, is automatically set when you reply to a message.  This flag is not
20523 automatically cleared.
20526 &lt;End of help on this topic&gt;
20527 </BODY>
20528 </HTML>
20529 ======= h_flag_forwarded =======
20530 <html>
20531 <title>STATUS FLAG: Forwarded</title>
20532 <body>
20533 <h1>STATUS FLAG: Forwarded</h1>
20535 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
20536 MESSAGE&nbsp;INDEX
20537 screen, is automatically set when you forward a message.  This flag is not
20538 automatically cleared.
20541 &lt;End of help on this topic&gt;
20542 </BODY>
20543 </HTML>
20544 ======= h_flag_deleted =======
20545 <html>
20546 <title>STATUS FLAG: Deleted</title>
20547 <body>
20548 <h1>STATUS FLAG: Deleted</h1>
20550 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
20551 MESSAGE&nbsp;INDEX
20552 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
20553 It is cleared
20554 when you use the &quot;U&nbsp;Undelete&quot; command.
20557 Messages marked with this flag will be permanently removed from
20558 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
20559 command, or
20560 when you indicate acceptance of their removal upon leaving the folder.
20563 Note, there can be other actions implicit in the
20564 &quot;D&nbsp;Delete&quot; command,
20565 such as advancing to the next message, that may be momentarily undesirable.
20566 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
20567 flag <A HREF="h_common_flag">explicitly</A>.
20570 &lt;End of help on this topic&gt;
20571 </BODY>
20572 </HTML>
20573 ====== h_config_incoming_timeo ======
20574 <HTML>
20575 <HEAD>
20576 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
20577 </HEAD>
20578 <BODY>
20579 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
20581 This option has no effect unless the feature
20582 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20583 is set, which in turn has no effect unless
20584 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20585 is set.
20587 Sets the time in seconds that Alpine will
20588 attempt to open a network connection used for monitoring for Unseen
20589 messages in Incoming Folders. The default is 5.
20590 If a connection has not completed within this many seconds Alpine will
20591 give up and consider it a failed connection.
20593 <UL>   
20594 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20595 </UL><P>
20596 &lt;End of help on this topic&gt;
20597 </BODY>
20598 </HTML>
20599 ====== h_config_psleep ======
20600 <HTML>
20601 <HEAD>
20602 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
20603 </HEAD>
20604 <BODY>
20605 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
20608 In the good old days a mailcap viewer was used to examine an 
20609 attachment before saving it, and after viewing the attachment control 
20610 would return to the operating system when the viewer was closed. Therefore, 
20611 when the mailcap viewer returned control to the operating system, it 
20612 could be assumed that the user who opened the attachment was done
20613 examining it, and the copy of the attachment that was used, could be removed.
20616 However, today this assumption is not longer valid. Some viewers return 
20617 control to the operating system before they actually read the attachment
20618 to be examined. This causes Alpine to delete the attachment before it 
20619 is read by the viewer, causing the viewer to fail opening the attachment.
20622 In order to work around this problem, Alpine checks, after the viewer has 
20623 returned control to the operating system, if there is any process that is 
20624 using the attachment. This variable controls the number of seconds that 
20625 must elapse between checks. Once it is found that no process is using the 
20626 attachment, this is removed.
20629 The minimum value for this variable is 60 (checks will be made once per 
20630 minute), and the maximum value is 600 (checks will be made once every 10 
20631 minutes). The default value is 60.
20634 <UL>   
20635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20636 </UL><P>
20637 &lt;End of help on this topic&gt;
20638 </BODY>
20639 </HTML>
20640 ====== h_config_incoming_interv ======
20641 <HTML>
20642 <HEAD>
20643 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
20644 </HEAD>
20645 <BODY>
20646 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
20648 This option has no effect unless the feature
20649 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20650 is set, which in turn has no effect unless
20651 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20652 is set.
20654 This option specifies, in seconds, how often Alpine will check
20655 for new mail and state changes in Incoming Folders when Incoming Folders
20656 Checking is turned on.
20657 The default is 3 minutes (180).
20658 This value applies only to folders that are local to the system that
20659 Alpine is running on or that are accessed using the IMAP protocol.
20660 The similar option
20661 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
20662 applies to all other monitored folders.
20664 <UL>   
20665 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20666 </UL><P>
20667 &lt;End of help on this topic&gt;
20668 </BODY>
20669 </HTML>
20670 ====== h_config_incoming_second_interv ======
20671 <HTML>
20672 <HEAD>
20673 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
20674 </HEAD>
20675 <BODY>
20676 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
20678 This option has no effect unless the feature
20679 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20680 is set, which in turn has no effect unless
20681 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20682 is set.
20684 This option together with the option
20685 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
20686 specifies, in seconds, how often Alpine will check
20687 for new mail and state changes in Incoming Folders when Incoming Folders
20688 Checking is turned on.
20689 The default for this option is 3 minutes (180).
20690 For folders that are local to this system or
20691 that are accessed using the IMAP protocol
20692 the value of the option
20693 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
20694 is used.
20695 For all other monitored folders, the value of this option is used.
20697 The reason there are two separate options is because it is usually
20698 less expensive to check local and IMAP folders than it is to check
20699 other types, like POP or NNTP folders.
20700 You may want to set this secondary value to a higher number than
20701 the primary check interval.
20703 <UL>   
20704 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20705 </UL><P>
20706 &lt;End of help on this topic&gt;
20707 </BODY>
20708 </HTML>
20709 ====== h_config_incoming_list ======
20710 <HTML>
20711 <HEAD>
20712 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
20713 </HEAD>
20714 <BODY>
20715 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
20717 This option has no effect unless the feature
20718 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20719 is set, which in turn has no effect unless
20720 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20721 is set.
20723 When monitoring the Incoming Message Folders for Unseen messages Alpine will
20724 normally monitor all Incoming Folders.
20725 You may use this option to restrict the list of monitored folders to a
20726 subset of all Incoming Folders.
20728 <UL>   
20729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20730 </UL><P>
20731 &lt;End of help on this topic&gt;
20732 </BODY>
20733 </HTML>
20734 ====== h_config_pers_name ======
20735 <HTML>
20736 <HEAD>
20737 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
20738 </HEAD>
20739 <BODY>
20740 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
20742 This value is used to determine the full name part of the "From" address
20743 on messages you send.
20744 <!--chtml if pinemode="os_windows"-->
20745  PC-Alpine requires that this be set in order to properly construct the "From" address.
20746 <!--chtml else-->
20747  If unset, Unix Alpine will obtain your full name from
20748  the system password file. PC-Alpine, on the other hand, requires that this be set.
20749 <!--chtml endif-->
20751 If you want to change the value of what gets included in the From header
20752 in messages you send (other than just the Personal Name)
20753 look <A HREF="h_config_change_your_from">here</A> for a description.
20754 <P><UL>
20755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20756 </UL><P>
20757 &lt;End of help on this topic&gt;
20758 </BODY>
20759 </HTML>
20760 ====== h_config_pruned_folders ======
20761 <html>
20762 <header>
20763 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
20764 </header>
20765 <body>
20766 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
20768 This variable allows you to define a list of one or more folders that
20769 Alpine will offer to prune for you in the same way it automatically offers
20770 to prune your "sent-mail" folder each month.
20771 Each folder in this list must be a folder in your default folder collection
20772 (the first folder collection if you have more than one), and it is just
20773 the relative name of the folder in the collection, not the fully-qualified name.
20774 It is similar to sent-mail.
20775 Instead of something like
20777 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
20779 the correct value to use would be
20781 <CENTER><SAMP>folder</SAMP></CENTER>
20783 There is an assumption here that your first collection is the folders in
20785 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
20788 Once a month, for each folder listed, Alpine will offer to move
20789 the contents of the folder to a new folder of the same name but with
20790 the previous month's date appended.  Alpine will then look for any such
20791 date-appended folder names created for a previous month, and offer each
20792 one it finds for deletion.
20795 If you decline the first offer, no mail is moved and no new folder is
20796 created.
20799 The new folders will be created
20800 in your default folder collection.
20803 <UL>   
20804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20805 </UL><P>
20806 &lt;End of help on this topic&gt;
20807 </body>
20808 </html>
20809 ====== h_config_upload_cmd ======
20810 <HTML>
20811 <HEAD>
20812 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
20813 </HEAD>
20814 <BODY>
20815 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
20817 This option affects the behavior of the Composer's &quot;Read File&quot; 
20818 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
20819 commands.  It specifies
20820 a Unix program name, and any necessary command line arguments, that Alpine can
20821 use to transfer files from your personal computer into messages that you are
20822 composing.<P>
20824 <B>Note:</B> this facility is intended for use with serial line transfer 
20825 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
20826 to work with TCP/IP file transfer programs such as ftp.<P>
20828 If a program is specified, the commands listed above are modified to offer a
20829 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
20830 specified here must match the transfer program or protocol available on the
20831 personal computer.<P>
20833 Alpine expects to exchange uploaded data via a file on your Unix system.  When
20834 the specified upload program finishes, Alpine expects the uploaded data to be
20835 contained in this file.<P>
20837 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
20838 generates a
20839 temporary file name that it will pass to the specified Unix program.  Alpine
20840 will read the resulting uploaded text from this file and then delete it when
20841 the upload command is finished.<P>
20843 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
20844 prompt
20845 you for the name of the file that is to contain the uploaded information that
20846 it is to attach.  Alpine will attach this file to the composition, but will
20847 <B>not</B> delete this file after the upload command is finished.<P>
20849 The special token &quot;_FILE_&quot; may be included among the Unix program's 
20850 command
20851 line arguments.  Alpine will replace this symbol with the name of the file
20852 being used to exchange the uploaded information.  This token allows you to
20853 position the file name where it is required in the Unix program's command
20854 line arguments.<P>
20856 If the &quot;_FILE_&quot; token is not present in the specified command, the
20857 temporary file's name is automatically appended to the specified Unix
20858 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
20859 <B>last</B> command line argument.
20860 <P><UL>
20861 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20862 </UL><P>
20863 &lt;End of help on this topic&gt;
20864 </BODY>
20865 </HTML>
20866 ====== h_config_upload_prefix ======
20867 <HTML>
20868 <HEAD>
20869 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
20870 </HEAD>
20871 <BODY>
20872 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
20874 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
20875 It defines text to be written to the terminal emulator (via standard output)
20876 immediately prior to starting upload command.  This is useful for
20877 integrated serial line file transfer agents that permit command passing
20878 (e.g., Kermit's APC method).<P>
20880 The special token &quot;_FILE_&quot; may be included in the string specification.
20881 That symbol will be replaced with the (Alpine-created) name of the temporary
20882 file in which Alpine will expect to find the uploaded file.
20883 <P><UL>
20884 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20885 </UL><P>
20886 &lt;End of help on this topic&gt;
20887 </BODY>
20888 </HTML>
20889 ====== h_config_download_cmd ======
20890 <HTML>
20891 <HEAD>
20892 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
20893 </HEAD>
20894 <BODY>
20895 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
20897 This option affects the behavior of the Export command.  It specifies a Unix
20898 program name, and any necessary command line arguments, that Alpine can use to
20899 transfer the exported message to your personal computer's disk.<P>
20900 Note: this facility is intended for use with serial line transfer 
20901 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
20902 to work with TCP/IP file transfer programs such as ftp.<P>
20903 If a program is specified, the Export command is modified to offer a
20904 subcommand (^V) to activate the transfer (in lieu of saving it to
20905  the machine where Alpine is running).  Obviously, the Unix program
20906 specified here must match the transfer program or protocol available on the
20907 personal computer.<P>
20909 When this subcommand is selected and before Alpine invokes the specified Unix
20910 program, Alpine will create a temporary file containing the text of the
20911 exported message.  Alpine uses this file to pass the exported message text to
20912 the specified Unix program.<P>
20914 The special token &quot;_FILE_&quot; may be included among the Unix program's command
20915 line arguments.  Alpine will replace this symbol with the temporary file's name
20916 before executing the Unix program.  This token allows you to position the
20917 file name where it is required in the Unix program's command line arguments.
20919 If the &quot;_FILE_&quot; token is not present in the specified command, the
20920 temporary file's name is automatically appended to the specified Unix
20921 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
20922 <B>last</B> command line argument.
20923 <P><UL>
20924 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20925 </UL><P>
20926 &lt;End of help on this topic&gt;
20927 </BODY>
20928 </HTML>
20929 ====== h_config_download_prefix ======
20930 <HTML>
20931 <HEAD>
20932 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
20933 </HEAD>
20934 <BODY>
20935 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
20937 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
20938 It defines text to be written to the terminal emulator (via standard output)
20939 immediately prior to starting the download command.  This is useful for
20940 integrated serial line file transfer agents that permit command passing
20941 (e.g., Kermit's APC method).
20943 The special token &quot;_FILE_&quot; may be included in the string 
20944 specification.
20945 That symbol will be replaced with the (Alpine-created) name of the temporary
20946 file into which Alpine will place the message to be downloaded.
20947 <P><UL>
20948 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20949 </UL><P>
20950 &lt;End of help on this topic&gt;
20951 </BODY>
20952 </HTML>
20953 ====== h_config_mailcap_path ======
20954 <HTML>
20955 <HEAD>
20956 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
20957 </HEAD>
20958 <BODY>
20959 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
20960 This variable is used to replace Alpine's default mailcap file search path.
20961 It takes one or more file names (full paths must be specified) in which to
20962 look for mail capability data.  The default search path can be found in this
20963 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
20964 If there is more than one file name listed, list members should be delimited
20965 by 
20966 <!--chtml if pinemode="os_windows"-->
20967 a semi-colon (;) under Windows; for example:<PRE>
20968         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
20969 </PRE>
20970 <!--chtml else-->
20971 a colon (:) under UNIX; for example:<PRE>
20972         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
20973 </PRE>
20974 <!--chtml endif-->
20975 <P><UL>
20976 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20977 </UL>
20979 &lt;End of help on this topic&gt;
20980 </BODY>
20981 </HTML>
20982 ====== h_config_mimetype_path ======
20983 <HTML>
20984 <HEAD>
20985 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
20986 </HEAD>
20987 <BODY>
20988 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
20990 This variable is used to replace Alpine's default mime.types file search path.
20991 It takes one or more file names (full paths must be specified) in which to
20992 look for file-name-extension to MIME type mapping data.  The default search
20993 path can be found in this
20994 <A HREF="h_news_config">Alpine Configuration</A> help.
20998 If there is more than one file name listed, list members should be delimited
20999 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21001 &lt;End of help on this topic&gt;
21002 </BODY></HTML>
21003 ====== h_config_set_att_ansi ======
21004 <HTML><HEAD>
21005 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21006 </HEAD>
21007 <BODY>
21008 <H1>OPTION: Set printer to attached ansi printer</H1>
21010 Type "S" to set your printer to "attached-to-ansi".<BR>
21011 It is OK to include "attached-to-ansi" in your personal list below.
21013 &lt;End of help on this topic&gt;
21014 </BODY></HTML>
21015 ====== h_config_set_att_ansi2 ======
21016 <HTML><HEAD>
21017 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21018 </HEAD>
21019 <BODY>
21020 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21022 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21023 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21024 list below.
21028 This is the same as the "attached-to-ansi" option except that a
21029 formfeed character will not be appended to the end of the print job.
21030 If your printer already ejects the paper by itself at the end of the
21031 job, you may prefer the "no-formfeed" form of this printer so that you
21032 don't get an extra blank page between print jobs.
21035 &lt;End of help on this topic&gt;
21036 </BODY></HTML>
21037 ====== h_config_set_att_wyse ======
21038 <HTML><HEAD>
21039 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21040 </HEAD>
21041 <BODY>
21042 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21044 Type "S" to set your printer to "attached-to-wyse".<BR>
21045 It is OK to include "attached-to-wyse" in your personal list below.
21047 This is very similar to "attached-to-ansi".
21048 The only difference is in the control characters sent to turn the printer
21049 on and off.
21050 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21051 to turn on the printer and ESC LEFT_BRACKET 4 i
21052 to turn it off.
21053 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21054 &lt;End of help on this topic&gt;
21055 </BODY></HTML>
21056 ====== h_config_set_att_wyse2 ======
21057 <HTML><HEAD>
21058 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21059 </HEAD>
21060 <BODY>
21061 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21063 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21064 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21065 list below.
21069 This is the same as the "attached-to-wyse" option except that a
21070 formfeed character will not be appended to the end of the print job.
21071 If your printer already ejects the paper by itself at the end of the
21072 job, you may prefer the "no-formfeed" form of this printer so that you
21073 don't get an extra blank page between print jobs.
21076 &lt;End of help on this topic&gt;
21077 </BODY></HTML>
21078 ====== h_config_set_stand_print ======
21079 <HTML>
21080 <HEAD>
21081 <TITLE>OPTION: Set default printer</TITLE>
21082 </HEAD>
21083 <H1>OPTION: Set default printer</H1>
21084 <BODY>
21085 Move to the printer you want and type "S" to set it to be your
21086 default printer.  This list is not modifiable by you and has been
21087 set up by the system administrators.  If there is more than one printer
21088 listed in the Command List, you will be able to cycle through that
21089 whole list at the time you print, starting with your default.
21090 It is OK to include entries from this Standard list in your personal
21091 list below.
21093 &lt;End of help on this topic&gt;
21094 </BODY>
21095 </HTML>
21096 ====== h_config_set_custom_print ======
21097 <HTML>
21098 <HEAD>
21099 <TITLE>OPTION: Set default printer</TITLE>
21100 </HEAD>
21101 <H1>OPTION: Set default printer</H1>
21102 <BODY>
21103 You may add as many print commands as you want to your personal list.
21104 Specify one of them as your default printer by moving to the printer
21105 you want and typing "S".  If there is more than one printer listed
21106 in the Command List, you will be able to cycle through that list at
21107 the time you print, starting with your default.  It is OK to include
21108 entries from the Standard list above or to include the command
21109 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21110 "attached-to-wyse-no-formfeed" as one of the entries here.
21112 &lt;End of help on this topic&gt;
21113 </BODY>
21114 </HTML>
21115 ====== h_config_user_id =====
21116 <HTML>
21117 <HEAD>
21118 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21119 </HEAD>
21120 <BODY>
21121 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21123 This value is used as part of the "From" address on messages you send.
21124 It is also the default login name for remote IMAP server access.  Set this
21125 to the username part you want to appear on outgoing email.
21127 If you want to change the value of what gets included in the From header
21128 in messages you send (other than just the User ID)
21129 look <A HREF="h_config_change_your_from">here</A> for a description.
21131 <P><UL>   
21132 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21133 </UL><P>
21134 &lt;End of help on this topic&gt;
21135 </BODY>
21136 </HTML>
21137 ====== h_config_user_dom =====
21138 <HTML>
21139 <HEAD>
21140 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21141 </HEAD>
21142 <BODY>
21143 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21145 This value specifies the domain part (right-hand side) of your return
21146 address on outgoing email and is also used as the default domain for email
21147 composed to a local user.
21148 <!--chtml if pinemode="os_windows"-->
21149  This value is required for PC-Alpine. If you are unsure as to what this should be,
21150  contact your local help desk, system administrator, or Internet Service Provider.
21151 <!--chtml else-->
21152  If unset, Unix Alpine will obtain the domain from
21153  the system.  Often this value will be set for your whole site by the
21154  system administrator.<P>
21155 <!--chtml endif-->
21156 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21157 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21159 If you want to change the value of what gets included in the From header
21160 in messages you send (other than just the User Domain)
21161 look <A HREF="h_config_change_your_from">here</A> for a description.
21162 <P><UL>
21163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21164 </UL><P>
21165 &lt;End of help on this topic&gt;
21166 </BODY>
21167 </HTML>
21168 ====== h_config_smtp_server =====
21169 <HTML>
21170 <HEAD>
21171 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21172 </HEAD>
21173 <BODY>
21174 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21175 This value specifies the name of one or more SMTP 
21176 (Simple Mail Transfer Protocol) servers for sending mail. 
21177 <!--chtml if pinemode="os_windows"-->
21178 You must have an SMTP server for use with PC-Alpine.
21179 SMTP servers are
21180 normally set up by a system administrator for use by all members of a given
21181 campus or department.
21182 Contact your local help desk to ask what SMTP
21183 servers you should use.  
21184 <!--chtml else-->
21185 Unix Alpine users may not need to set an SMTP server.
21186 Alpine will attempt to execute the program (usually sendmail) that is used
21187 to insert mail into the mail system.
21188 If this works for you, you may leave this option blank.
21189 If there is an SMTP server running on the Unix host you may be able to
21190 improve sending performance slightly by setting the SMTP server option
21191 to &quot;localhost&quot; or to the actual name of the Unix host.
21193 If the Unix host doesn't work the way Alpine was expecting you will need to
21194 set the value of this option.
21195 SMTP servers are
21196 normally set up by a system administrator for use by all members of a given
21197 campus or department.
21198 Contact your local help desk to ask what SMTP
21199 servers you should use.  
21200 <!--chtml endif-->
21202 Your SMTP server may offer SMTP AUTH authentication.
21203 It may even require it.
21204 If your SMTP server offers SMTP AUTH authentication you may specify a
21205 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21206 This parameter requires an associated value,
21207 the username identifier with which to establish the server
21208 connection.
21209 An example might be:
21212 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21215 If AUTH authentication is offered by the server, this will cause Alpine to
21216 attempt to use it.
21217 If AUTH authentication is not offered by the server, this will cause Alpine
21218 to fail sending with an error similar to:
21221 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21224 Another type of authentication that is used by some ISPs is called
21225 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21226 which means that you have to authenticate
21227 yourself to the POP or IMAP server by opening a mailbox before you
21228 can send mail.
21229 To do this, you usually only have to open your INBOX.
21232 You may tell Alpine to use the
21233 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21234 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21235 parameter
21236 in this option.
21237 At this time &quot;/submit&quot; is simply equivalent to specifying
21238 port 587, though it may imply more than that at some point in the future.
21239 Some ISPs are blocking port 25 in order to reduce the amount of spam
21240 being sent to their users.
21241 You may find that the submit option allows you to get around such a block.
21244 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21247 To specify any non-standard port number on the SMTP server you may follow
21248 the hostname with a colon followed by the portnumber.
21251 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21254 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21255 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21256 If that fails then a non-encrypted connection will be attempted instead.
21257 You may specify that a TLS connection is required if you wish.
21258 If you append &quot;/tls&quot; to the name then the connection will fail
21259 instead of falling back to a non-secure connection.
21262 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
21266 For more details about server name possibilities see
21267 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21270 <UL>
21271 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21272 </UL>
21274 &lt;End of help on this topic&gt;
21275 </BODY>
21276 </HTML>
21277 ====== h_config_nntp_server =====
21278 <HTML>
21279 <HEAD>
21280 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
21281 <BODY>
21282 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
21284 This value specifies the name of one or more NNTP
21285 (Network News Transfer Protocol)
21286 servers for reading and posting USENET news.
21287 NNTP servers are normally
21288 set up by a system administrator for use by all members of a given campus
21289 or department.
21290 Contact your local help desk to ask what NNTP servers you should use.  
21291 <!--chtml if pinemode="os_windows"--><!--chtml else-->
21292 Often Unix Alpine users will find that this variable has been
21293 set for the whole system (and they don't have to worry about it).  
21294 <!--chtml endif-->
21295 When you define an NNTP server here, Alpine implicitly defines a news
21296 collection for you, assuming that server as the news server and assuming
21297 that you will use the NNTP protocol and a local newsrc configuration file
21298 for reading news.
21299 For more about reading news with Alpine, see
21300 <A HREF="h_reading_news">how to use Alpine to read news</A>.
21302 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
21303 or &quot;AUTHINFO USER&quot; authentication.
21304 It may even require it.
21305 If your NNTP server does offer such authentication you may specify a user name
21306 parameter to cause Alpine to attempt to authenticate.
21307 The same is true for the server name in a folder collection that uses NNTP.
21308 This parameter requires an associated value,
21309 the username identifier with which to establish the server connection.
21310 An example might be:
21313 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
21316 If authentication is offered by the server, this will cause Alpine to
21317 attempt to use it.
21318 If authentication is not offered by the server, this will cause Alpine
21319 to fail with an error similar to:
21322 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
21324 For more details about the server name possibilities see
21325 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21326 <P><UL>
21327 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21328 </UL><P>
21329 &lt;End of help on this topic&gt;
21330 </BODY>
21331 </HTML>
21332 ====== h_config_inbox_path =====
21333 <HTML>
21334 <HEAD>
21335 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
21336 </HEAD>
21337 <BODY>
21338 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
21340 This value overrides the default value of your INBOX name/path/location.
21341 <!--chtml if pinemode="os_windows"-->
21342 PC-Alpine users must specify an inbox path and it must be a folder on an
21343 IMAP server.  
21344 <!--chtml else-->
21345 Unix and VMS Alpine users will often find that this variable
21346 has been pre-configured by your system administrator.  
21347 <!--chtml endif-->
21348 You may be able to specify an alternate INBOX that is either a local folder 
21349 or a folder on an IMAP server.
21351 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
21352 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
21353 mail server.
21355 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21356 details on the syntax of folder definitions.
21358 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
21359 mail is disappearing.
21360 <P><UL>
21361 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21362 </UL><P>
21363 &lt;End of help on this topic&gt;
21364 </BODY>
21365 </HTML>
21366 ====== h_config_change_your_from =====
21367 <HTML>
21368 <HEAD>
21369 <TITLE>How to Change your From Address</TITLE>
21370 </HEAD>
21371 <BODY>
21372 <H1>How to Change your From Address</H1>
21374 If the From address that Alpine includes in mail that you send is not correct,
21375 you may want to configure a different default value for the From address.
21376 You may follow these directions to change the default:
21379 <UL>
21380   <LI> Go to the Main Alpine Menu
21381   <LI> From there type the Setup Command
21382   <LI> From there type the Config Command
21383 </UL>
21386 You've probably already seen this SETUP CONFIGURATION screen.
21387 If not, there are many options you may want to set here.
21388 To set the value of the From header you may use the
21389 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
21390 Find it by scrolling down a few pages or use the WhereIs command to
21391 search for &quot;customized&quot;.
21392 You may want to read the help text associated with the option.
21394 To add a custom From header, type the Add command and enter the
21395 full header line, including the leading &quot;From:&nbsp;&quot;.
21396 For example:
21398 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21400 Now exit the Setup command and try sending mail to yourself to see
21401 what the From line looks like.
21403 When you are in the composer you may edit the custom From line by typing
21404 Ctrl-R while your cursor is in the headers of the message and then moving
21405 to the From line and editing.
21406 If you want to leave the default value the same but add the possibility
21407 of being able to edit the header when you compose, add just the header
21408 name without a value.
21409 For example:
21411 <CENTER><SAMP>From:</SAMP></CENTER>
21413 If you change your From address you may also find it useful to add the
21414 changed From address to the
21415 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
21416 configuration option.
21418 <UL>   
21419 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21420 </UL><P>
21421 &lt;End of help on this topic&gt;
21422 </BODY>
21423 </HTML>
21424 ====== h_config_default_fcc =====
21425 <HTML>
21426 <HEAD>
21427 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
21428 </HEAD>
21429 <BODY>
21430 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
21432 This value specifies where a copy of outgoing mail should be saved.  If
21433 this is not a path name, it will be in the default collection for saves.
21434 Any valid folder specification, local or IMAP, is allowed.  This default
21435 folder carbon copy only applies when the 
21436 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
21437 is set to use the default folder.  
21438 <!--chtml if pinemode="os_windows"-->
21439 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
21440 <!--chtml else-->
21441 Unix Alpine default
21442 is normally &quot;sent-mail&quot; in the default folder collection. 
21443 <!--chtml endif-->
21445 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
21446 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
21447 IMAP server (remember that in order to later access this remote folder through Alpine, it
21448 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21449 for more information). An example:<p>
21450 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
21452 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
21454 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21455 details on the syntax of folder definitions.
21457 <UL>   
21458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21459 </UL><P>
21460 &lt;End of help on this topic&gt;
21461 </BODY>
21462 </HTML>
21463 ====== h_config_def_save_folder =====
21464 <HTML>
21465 <HEAD>
21466 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
21467 </HEAD>
21468 <BODY>
21469 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
21471 This option determines the default folder name for save-message operations 
21472 (&quot;saves&quot;).
21474 If this is not a path name, it will be in the default collection for saves.
21475 Any valid folder specification, local or IMAP, is allowed.  This default
21476 folder only applies when the
21477 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
21478 doesn't override it.  
21479 <!--chtml if pinemode="os_windows"-->
21480 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
21481 <!--chtml else-->
21482 Unix Alpine default
21483 is normally &quot;saved-messages&quot; in the default folder collection.
21484 <!--chtml endif-->
21485 If you access your email through an IMAP server, especially if you often switch between Unix
21486 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
21487 IMAP server (remember that in order to later access this remote folder through Alpine, it
21488 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21489 for more information). An example:<p>
21490 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
21492 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21493 details on the syntax of folder definitions.
21495 <UL>   
21496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21497 </UL><P>
21498 &lt;End of help on this topic&gt;
21499 </BODY>
21500 </HTML>
21501 ====== h_config_postponed_folder =====
21502 <HTML>
21503 <HEAD>
21504 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
21505 </HEAD>
21506 <BODY>
21507 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
21509 This value overrides the default name for the folder where postponed
21510 messages are saved.  If this is not a path name, it will be in the default
21511 collection for message Saves.  Any valid folder specification, local or
21512 remote, is allowed. 
21513 PC-Alpine default
21514 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
21515 The Unix Alpine default is normally &quot;postponed-msgs&quot;
21516 in the default collection. 
21518 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
21519 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
21520 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
21521 in all Alpine copies you use. 
21522 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
21523 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
21524 for more information). An
21525 example:<p> 
21526 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
21528 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21529 details on the syntax of folder definitions.
21531 <UL>   
21532 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21533 </UL><P>
21534 &lt;End of help on this topic&gt;
21535 </BODY>
21536 </HTML>
21537 ====== h_config_read_message_folder =====
21538 <HTML>
21539 <HEAD>
21540 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
21541 </HEAD>
21542 <BODY>
21543 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
21545 By virtue of specifying a folder name here, Alpine will be configured to
21546 save all messages that you have read during a session into the designated
21547 &quot;read messages&quot; folder.  This allows you to more easily distinguish
21548 between your really new email (in your INBOX) and those that you have
21549 already read.  Depending on how you define the 
21550 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21551 setting, you may or may not be asked when you quit
21552 Alpine if you want read messages to be moved to this folder.  In either
21553 case, moving the messages means they will be deleted from your INBOX.
21555 If this is not a path name, it will be in the default collection for
21556 saves.  Any valid folder specification, local or remote (via IMAP), is
21557 allowed.  There is no default for the name of the read message folder.
21559 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21560 details on the syntax of folder definitions.
21562 <UL>   
21563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21564 </UL><P>
21565 &lt;End of help on this topic&gt;
21566 </BODY>
21567 </HTML>
21568 ====== h_config_form_folder =====
21569 <HTML>
21570 <HEAD>
21571 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
21572 </HEAD>
21573 <BODY>
21574 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
21576 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
21577 contain messages that you have composed and that are intended to be
21578 sent in their original form repeatedly.
21581 Setting this variable will alter Alpine's usual behavior when you
21582 execute the Compose command.  Normally, Alpine offers a chance to
21583 continue a postponed or interrupted message should one or the other
21584 exist.  When this variable is set to a folder name that exists, Alpine
21585 will also offer the chance to select a message from the folder to
21586 insert into the composer (much like when continuing a postponed message).
21587 The difference, however, is that Alpine will not automatically delete
21588 the selected message from the Form Letter Folder.
21590 Setting this variable will also affect Alpine's behavior when you
21591 Postpone a message from the composer.  Normally, Alpine simply stashes
21592 the message away in your
21593 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
21594 Regardless of the specified folder's existence, Alpine will ask which
21595 folder you intend the message to be stored in.  Choose the
21596 &quot;F&quot; option to store the message in your Form Letter Folder.
21597 This is the most common way to add a message to the folder.
21600 Another method of adding messages to the folder is via the Alpine
21601 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
21602 you expect to send in the same form again, you can enter the Form
21603 Letter Folder's name in this field.  Alpine, as usual, will copy the
21604 message as it's sent.  Note, when you later select this message from 
21605 your Form Letter Folder, it will have the same recipients as the original
21606 message.
21609 To delete a message from the Form Letter Folder, you can either select
21610 the folder from a suitable FOLDER LIST screen, or use the Delete
21611 command in the MESSAGE INDEX offered when selecting from the folder as
21612 part of the Compose command.  You can delete a Form Letter Folder just
21613 as any other folder from a suitable FOLDER LIST screen.
21616 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
21617 facility can be used
21618 to replace the Form Letter Folder.
21621 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21622 details on the syntax of folder definitions.
21625 <UL>   
21626 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21627 </UL><P>
21628 &lt;End of help on this topic&gt;
21629 </BODY>
21630 </HTML>
21631 ====== h_config_archived_folders =====
21632 <HTML>
21633 <HEAD>
21634 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
21635 </HEAD>
21636 <BODY>
21637 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
21639 This is like
21640 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
21641 only more general.  You may archive
21642 any of the folders in your incoming collection.  This is a list of folder
21643 pairs, with the first separated from the second in the pair by a space.
21644 The first folder in a pair is the folder you want to archive, and the
21645 second folder is the folder that read messages from the first should be
21646 moved to.  Depending on how you define the
21647 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21648 setting, you may or may not be asked when you
21649 leave the first folder if you want read messages to be moved to the
21650 second folder.  In either case, moving the messages means they will be
21651 deleted from the first folder.
21653 The name of the first folder in each pair can be either the technical
21654 specification of the folder (like what appears in your configuration file)
21655 or (much easier) the nickname that you gave the folder when you made it
21656 an incoming folder.
21658 For example:<p>
21659 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
21660 <p>or, using nicknames:<p>
21661 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
21663 If these are not path names, they will be in the default collection for
21664 saves. Any valid folder specification, local or remote (via IMAP), is
21665 allowed. There is no default.
21667 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21668 details on the syntax of folder definitions.
21670 <UL>   
21671 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21672 </UL><P>
21673 &lt;End of help on this topic&gt;
21674 </BODY>
21675 </HTML>
21676 ====== h_config_newsrc_path ======
21677 <HTML>
21678 <HEAD>
21679 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
21680 </HEAD>
21681 <BODY>
21682 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
21684 This option overrides the default name Alpine uses for your "newsrc" news
21685 status and subscription file.  If set, Alpine will take this value as the
21686 full pathname for the desired newsrc file.<P>
21688 If this option is <B>not</B> set, 
21689 <!--chtml if pinemode="os_windows"-->
21690 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
21691 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
21692 directory as your pinerc file for NEWSRC.
21693 <!--chtml else-->
21694 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
21695 your account's home directory).
21696 <!--chtml endif-->
21697 <P><UL>
21698 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21699 </UL>
21701 &lt;End of help on this topic&gt;
21702 </BODY>
21703 </HTML>
21704 ====== h_config_literal_sig =====
21705 <HTML>
21706 <HEAD>
21707 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
21708 </HEAD>
21709 <BODY>
21710 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
21712 With this option your actual signature, as opposed to
21713 the name of a file containing your signature,
21714 is stored in the Alpine configuration file.
21715 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
21718 This is simply a different way to store the signature.
21719 The signature is stored inside your Alpine configuration file instead of in
21720 a separate file.
21721 Tokens work the same way they do with the
21722 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
21723 help.
21726 The Setup/Signature command on Alpine's MAIN MENU will edit
21727 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
21728 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
21729 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
21730 instead.
21733 The two character sequence &#92;n (backslash followed by
21734 the character n) will be used to signify a line-break in your signature.
21735 You don't have to enter the &#92;n, but it will be visible in the
21736 SETUP CONFIGURATION window after you are done editing the signature.
21739 <UL>   
21740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21741 </UL><P>
21742 &lt;End of help on this topic&gt;
21743 </BODY>
21744 </HTML>
21745 ====== h_config_signature_file =====
21746 <HTML>
21747 <HEAD>
21748 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
21749 </HEAD>
21750 <BODY>
21751 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
21753 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
21754 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
21755 You can tell that that is the case because the value of the
21756 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
21758 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
21760 You may either use all Literal Signatures (signatures stored in your
21761 configuration file) throughout Alpine, or all signature files.
21762 You can't mix the two.
21764 This is the name of a file that will be automatically inserted into
21765 outgoing messages.
21766 It typically contains information such as your
21767 name, email address and organizational affiliation.
21768 Alpine adds the
21769 signature into the message as soon as you enter the composer so you
21770 can choose to remove it or edit it on a message by message basis.
21771 Signature file placement in message replies is controlled by the
21772 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
21773 setting in the feature list.
21776 The default file name is
21777 <!--chtml if pinemode="os_windows"-->
21778 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
21779 PINERC file is a local file.
21780 If your PINERC file is remote, then it will be in the directory specified
21781 by the &quot;-aux local_directory&quot; command line option.
21782 <!--chtml else-->
21783 &quot;.signature&quot;.
21784 <!--chtml endif-->
21787 To create or edit your signature file choose Setup from the MAIN MENU
21788 and then select S for Signature (Main/Setup/Signature).  This puts you
21789 into the Signature Editor where you can enter a <EM>few</EM> lines of
21790 text containing your identity and affiliation.
21793 If the filename is followed by a vertical bar (|) then instead
21794 of reading the contents of the file the file is assumed to be a
21795 program that will produce the text to be used on its standard output.
21796 The program can't have any arguments and doesn't receive any input from Alpine,
21797 but the rest of the processing works as if the contents came from a file.
21800 Instead of storing the data in a local file, the
21801 signature data may be stored remotely in an IMAP folder.
21802 In order to do this, 
21803 you must use a remote name for the file.
21804 A remote <!--#echo var="VAR_signature-file"--> name might look like:
21806 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
21809 The syntax used here is the same as the syntax used for remote configuration
21810 files from the command line.
21811 Note that you may not access an existing signature file remotely,
21812 you have to create a new <EM>folder</EM> that contains the signature data.
21813 If the name you use here for the signature file is a remote name, then when
21814 you edit the file from the Setup/Signature command the data will be stored
21815 remotely in the folder.
21816 You aren't required to do anything special to create the folder, it
21817 gets created automatically if you use a remote name.
21820 Besides regular text, the signature file may also contain
21821 (or a signature program may produce) tokens that
21822 are replaced with text that usually depends on the message you are replying
21823 to or forwarding.
21824 For example, if the signature file contains the token
21826 <CENTER><SAMP>_DATE_</SAMP></CENTER>
21828 anywhere in the text, then that token is replaced by the date
21829 the message you are replying to or forwarding was sent.
21830 If it contains
21832 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
21834 that is replaced with the current date.
21835 The first is an example of a token that depends on the message you
21836 are replying to (or forwarding) and the second is an example which
21837 doesn't depend on anything other than the current date.
21838 You have to be a little careful with this facility since tokens that
21839 depend on the message you are replying to or forwarding will be replaced
21840 by nothing in the case where you are composing a new message from scratch.
21841 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
21842 in this respect.
21843 It allows you to use different signature files in different cases.
21846 The list of tokens available for use in the signature file is
21847 <A HREF="h_index_tokens">here</A>.
21850 Instead of, or along with the use of &quot;roles&quot; to give you
21851 different signature files in different situations, there is also
21852 a way to conditionally include text based
21853 on whether or not a token would result in specific replacement text.
21854 For example, you could include some text based on whether or not
21855 the _NEWS_ token would result in any newsgroups if it was used.
21856 This is explained in detail
21857 <A HREF="h_reply_token_conditionals">here</A>.
21858 This isn't for the faint of heart.
21860 In the very unlikely event that you want to include a literal token
21861 in the signature you must precede it with a backslash character.
21862 For example,
21864 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
21866 would produce something like
21868 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
21870 It is not possible to have a literal backslash followed by an expanded token.
21872 An alternate method for storing the signature data is available by using the
21873 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
21874 This variable will be used by default.
21876 <UL>   
21877 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21878 </UL><P>
21879 &lt;End of help on this topic&gt;
21880 </BODY>
21881 </HTML>
21882 ====== h_config_init_cmd_list =====
21883 <HTML>
21884 <HEAD>
21885 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
21886 </HEAD>
21887 <BODY>
21888 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
21890 The initial keystroke--or command--list option lets you start Alpine at
21891 any place you like.
21892 Whatever keystrokes you specify here will be executed
21893 by Alpine upon startup as a macro.
21894 The words SPACE, TAB, DOWN, UP, LEFT, and
21895 RIGHT indicate the pressing of those keys.
21896 CR indicates the pressing of the RETURN key.
21897 F1 through F12 represent the function keys, and ^ followed
21898 by a character indicates that key pressed along with the control key (in
21899 other words, ^P means Ctrl-P).
21900 As a shortcut notation, an element of the list may be several characters
21901 surrounded by double-quotes (").
21902 That will be expanded into the individual keystrokes
21903 (excluding the double-quote characters).
21904 For example, the quoted-string
21906 <P><CENTER>"ABC"</CENTER>
21909 is interpreted the same as the three separate list members
21911 <P><CENTER>A and B and C</CENTER>
21914 which is also the same as
21916 <P><CENTER>A,B,C</CENTER>
21919 An example: To view message 1 on startup,
21920 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
21922 <P><CENTER>I,J,1,CR,V</CENTER>
21925 An equivalent version of this is
21927 <P><CENTER>"IJ1",CR,V</CENTER>
21930 Restrictions: You cannot pre-type into the composer with the initial
21931 keystroke list, and you cannot mix function key commands with letter
21932 commands.
21934 <P><UL>   
21935 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21936 </UL>
21938 &lt;End of help on this topic&gt;
21939 </BODY>
21940 </HTML>
21941 ====== h_config_comp_hdrs =====
21942 <html>
21943 <header>
21944 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
21945 </header>
21946 <body>
21947 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
21949 You can control which headers you want visible when composing outgoing
21950 email using this option.
21951 You can specify any of the regular set, any
21952 <A HREF="h_compose_richhdr">Rich Header</A>,
21953 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
21954 that you have already defined.
21955 If you use this setting at all, you must specify all the
21956 headers you want to see, you can't just add to the regular header set.
21957 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
21959 Note that the "Newsgroups:" header will be abbreviated in the Composer
21960 display, but should be spelled out in full here.<p>
21961 <UL>   
21962 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21963 </UL><P>
21964 &lt;End of help on this topic&gt;
21965 </body>
21966 </html>
21967 ====== h_config_custom_hdrs =====
21968 <HTML>
21969 <HEAD>
21970 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
21971 </HEAD>
21972 <BODY>
21973 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
21975 You may add your own custom headers to outgoing messages.
21976 Each header you specify here must include the header tag 
21977 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
21978 and may optionally include a value for that header.
21979 If you want to see these custom headers each time you compose a message,
21980 you must add them to your
21981 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
21982 otherwise they become part
21983 of the rich header set that you only see when you press the
21984 <A HREF="h_compose_richhdr">Rich Header</A>
21985 <!--chtml if pinemode="function_key"-->(F5)
21986 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
21987 (If you are looking for a way to change which headers are <EM>displayed</EM>
21988 when you view a message, take a look at the
21989 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
21990 option instead.)
21991 Here's an example that shows how you might set your From address
21993 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21995 and another showing how you might set a Reply-To address
21997 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
21999 You may also set non-standard header values here.
22000 For example, you could add
22002 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22004 or even
22006 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22008 If you include a value after the colon then that header will be included
22009 in your outgoing messages unless you delete it before sending.
22010 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22011 it will not be included in outgoing messages unless you edit a value
22012 in manually.
22013 For example, if
22015 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22017 is in the list, then the Reply-To header will be available for editing
22018 but won't be included unless a value is added while in the composer.
22020 It's actually a little more complicated than that.
22021 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22022 defaults.
22023 If the message you are about to compose already has a value for a header,
22024 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22025 For example, if you are Replying to a message the Subject field
22026 will already be filled in.
22027 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22028 custom subject will <EM>NOT</EM> be used.
22029 The subject derived from the subject of the message you are Replying
22030 to will be used instead.
22032 It is also possible to make header setting even more complicated and more
22033 automatic by using
22034 <A HREF="h_rules_roles">Roles</A>,
22035 but if all you want to do is set a default value for a header, you don't
22036 need to think about Roles.
22038 If you change your From address you may also find it useful to add the
22039 changed From address to the
22040 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22041 configuration option.
22043 Limitation: Because commas are used to separate the list of
22044 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22045 header contain a comma.
22046 Nor is there currently an &quot;escape&quot; mechanism provided
22047 to make this work.
22048 <P><UL>
22049 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22050 </UL>
22052 &lt;End of help on this topic&gt;
22053 </BODY>
22054 </HTML>
22055 ====== h_config_viewer_headers =====
22056 <HTML>
22057 <HEAD>
22058 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22059 </HEAD>
22060 <BODY>
22061 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22063 You may change the default list of headers that are viewed by listing
22064 the headers you want to view here.  If the headers in your
22065 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22066 will be shown.  The order of the headers you list will be honored.  If
22067 the special value &quot;all-except&quot; is included as the first
22068 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22069 message except those in the list will be shown.  The values are all
22070 case insensitive.
22073 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22074 then the original default headers are ignored.  So, if you just wanted
22075 to add the header Organization to the list, you would have to list
22076 Organization plus all of the other headers originally in the default
22077 list.  If you just included Organization and nothing else, then you
22078 would see only the Organization header, nothing else.
22081 The default list of headers includes:
22082 <UL>
22083   <LI>From
22084   <LI>Resent-From
22085   <LI>To
22086   <LI>Resent-To
22087   <LI>Cc
22088   <LI>Resent-cc
22089   <LI>Bcc
22090   <LI>Newsgroups
22091   <LI>Followup-To
22092   <LI>Date
22093   <LI>Resent-Date
22094   <LI>Subject
22095   <LI>Resent-Subject
22096   <LI>Reply-To
22097 </UL>
22100 If you are looking for a way to control which headers are included in
22101 outgoing mail and are visible or not in the composer, take a look at the
22102 options
22103 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22104 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22105 this option.
22107 <UL>   
22108 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22109 </UL><P>
22110 &lt;End of help on this topic&gt;
22111 </BODY>
22112 </HTML>
22113 ====== h_config_viewer_margin_left =====
22114 <HTML>
22115 <HEAD>
22116 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22117 </HEAD>
22118 <BODY>
22119 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22121 This variable controls the left-hand vertical margin's width in
22122 Alpine's Message Viewing screen.
22123 Its value is the number of space characters preceding each displayed line.
22124 For consistency with
22125 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22126 you may specify the column number to start in
22127 (column numbering begins with number 1)
22128 instead of the width of the margin by appending a lower case letter
22129 &quot;c&quot; to the number.
22130 For example, a value of &quot;2c&quot; means to start the text in column two,
22131 which is entirely equivalent to a value of &quot;1&quot;, which means to
22132 leave a margin of 1 space.
22134 The default is a left margin of 0 (zero).
22135 Misconfigurations (for example, negative values or values with starting
22136 left columns greater than the ending right column)
22137 are silently ignored.
22138 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22139 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22140 instead.
22143 &lt;End of help on this topic&gt;
22144 </BODY>
22145 </HTML>
22146 ====== h_config_viewer_margin_right =====
22147 <HTML>
22148 <HEAD>
22149 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22150 </HEAD>
22151 <BODY>
22152 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22154 This variable controls the right-hand vertical margin's width in
22155 Alpine's Message Viewing screen.
22156 Its value is the number of space characters following each displayed line.
22157 You may specify the column number to end the text in
22158 (column numbering begins with number 1)
22159 instead of the width of the margin by appending a lower case letter
22160 &quot;c&quot; to the number.
22161 For example, a value of &quot;76c&quot; means to end the text in column 76.
22162 If the screen is 80 characters wide, this is equivalent to a value
22163 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22164 However, if you use different size screens at different times, then these
22165 two values are not equivalent.
22167 The default right margin is 4.
22168 Misconfigurations (for example, negative values or values with starting
22169 left columns greater than the ending right column)
22170 are silently ignored.
22171 If the number of columns for text between the
22172 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22173 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22174 instead.
22177 &lt;End of help on this topic&gt;
22178 </BODY>
22179 </HTML>
22180 ====== h_config_quote_suppression =====
22181 <HTML>
22182 <HEAD>
22183 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22184 </HEAD>
22185 <BODY>
22186 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22188 This option should be used with care.
22189 It will cause some of the quoted text to be eliminated from the
22190 display when viewing a message in the MESSAGE TEXT screen.
22191 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22192 value &quot;5&quot;,
22193 this will cause quoted text that is longer than five lines to be truncated.
22194 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22195 Quoted text of more than six lines will have the first five lines displayed
22196 followed by a line that looks something like
22198 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22200 As a special case, if exactly one line of quoted text would be hidden, the
22201 entire quote will be shown instead.
22202 So for the above example, quoted text that is exactly six lines long will
22203 will be shown in its entirety.
22204 (In other words, instead of hiding a single line and adding a line
22205 that announces that one line was hidden, the line is just shown.)
22207 If the sender of a message has carefully chosen the quotes that he or she
22208 includes, hiding those quotes may change the meaning of the message.
22209 For that reason, Alpine requires that when you want to set the value of this
22210 variable to something less than four lines, you actually have to set it
22211 to the negative of that number.
22212 So if you want to set this option to &quot;3&quot;, you actually have to
22213 set it to &quot;-3&quot;.
22214 The only purpose of this is to get you to think about whether or not you
22215 really want to do this!
22216 If you want to delete all quoted text you set the value of this option
22217 to the special value &quot;-10&quot;.
22219 The legal values for this option are
22221 <TABLE>   
22222 <TR>
22223   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22224   <TD> Default, don't hide anything </TD>
22225 </TR>
22226 <TR>
22227   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22228   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22229 </TR>
22230 <TR>
22231   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22232   <TD> Suppress if more than that many lines </TD>
22233 </TR>
22234 <TR>
22235   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22236   <TD> Suppress all quoted lines </TD>
22237 </TR>
22238 </TABLE>
22240 If you set this option to a non-default value you may sometimes wish to
22241 view the quoted text that is not shown.
22242 When this is the case, the
22243 <A HREF="h_common_hdrmode">HdrMode Command</A>
22244 may be used to show the hidden text.
22245 Typing the &quot;H&quot; command once will show the hidden text.
22246 Typing a second &quot;H&quot; will also turn on Full Header mode.
22247 The presence or absence of the HdrMode command is determined by the
22248 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22249 Feature-List option in your Alpine configuration, so you will want to
22250 be sure that is turned on if you use quote suppression.
22252 For the purposes of this option, a quote is a line that begins with the
22253 character &quot;&gt;&quot;.
22255 Quotes are only suppressed when displaying a message on the screen.
22256 The entire quote will be left intact when printing or forwarding or something
22257 similar.
22259 &lt;End of help on this topic&gt;
22260 </BODY>
22261 </HTML>
22262 ====== h_config_saved_msg_name_rule =====
22263 <HTML>
22264 <HEAD>
22265 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
22266 </HEAD>
22267 <BODY>
22268 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
22270 This option determines the default folder name when saving
22271 a message.
22274 The default option is &quot;default-folder&quot;, which is the folder
22275 called &quot;saved-messages&quot; in Unix Alpine and
22276 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
22277 the Alpine option called
22278 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
22281 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
22282 get the chosen option's value for the message being saved (or for the
22283 first message being saved if using an aggregrate save).
22284 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
22285 value of who the message came from (i.e. the from address).
22286 Alpine then attempts to save the message to a folder matching that value.
22287 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
22288 &quot;by-sender&quot;.
22289 The opposite is also true.
22290 If &quot;by-recipient&quot; is chosen and the message was posted to a
22291 newsgroup, Alpine will use the newsgroup name.
22292 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
22293 &quot;by-from&quot;.
22296 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
22297 to use the personal name part of the address instead of the mailbox part.
22298 If any of the &quot;by-nick&quot; options are chosen, the
22299 address is looked up in your address book and if found, the
22300 nickname for that entry is used.
22301 Only simple address book entries are checked, not distribution lists.
22302 Similarly, if any of the
22303 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
22304 address book entry is used.
22305 If by-realname, or the by-nick or by-fcc lookups result in no value,
22306 then if the chosen option ends with the &quot;then-from&quot;,
22307 &quot;then-sender&quot;, &quot;then-replyto&quot;,
22308 or &quot;then-recip&quot; suffix, Alpine
22309 reverts to the same behavior as &quot;by-from&quot;,
22310 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
22311 depending on which option was specified.
22312 If the chosen option doesn't end with one of
22313 the &quot;then-&quot; suffixes, then Alpine reverts to the default
22314 folder when no match is found in the address book.
22317 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
22318 to save to the folder that you saved to the last time you saved a
22319 message.  The first time you save a message in an Alpine session, Alpine
22320 attempts to save the message to the default folder.
22323 Here is an example to make some of the options clearer.
22324 If the message is From
22326 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
22328 and this rule is set to &quot;by-from&quot;, then the default folder offered
22329 in the save dialog would be &quot;flint&quot;.
22331 If this rule is set to &quot;by-realname-of-from&quot; then the default would
22332 be &quot;Fred Flintstone&quot;.
22334 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
22335 for the address &quot;flint@bedrock.org&quot; in your address book.
22336 If an entry is found and it has a nickname associated with it, that nickname
22337 will be offered as the default folder.
22338 If not, the default saved message folder will be offered as the default.
22340 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
22341 for the address &quot;flint@bedrock.org&quot; in your address book.
22342 If an entry is found and it has an Fcc associated with it, that Fcc
22343 will be offered as the default folder.
22344 If not, the default saved message folder will be offered as the default.
22346 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
22347 for the address &quot;flint@bedrock.org&quot; in your address book.
22348 If an entry is found and it has a nickname associated with it, that nickname
22349 will be offered as the default folder.
22350 If it is not found (or has no nickname) then the default offered will be
22351 the same as it would be for the &quot;by-from&quot; rule.
22352 That is, it would be &quot;flint&quot;
22354 <UL>   
22355 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22356 </UL><P>
22357 &lt;End of help on this topic&gt;
22358 </BODY>
22359 </HTML>
22360 ====== h_config_fcc_rule =====
22361 <HTML>
22362 <HEAD>
22363 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
22364 </HEAD>
22365 <BODY>
22366 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
22368 This option determines the default name for folder carbon copy. Choose
22369 one:
22371 <DL>
22372 <DT>default-fcc</DT>
22373 <DD>This is the normal default, the value of which is set in the
22374 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
22375 configuration.
22376 </DD>
22378 <DT>last-fcc-used</DT>
22379 <DD> Causes Alpine to use the folder that was last
22380 used in the fcc field
22381 </DD>
22383 <DT>by-nickname</DT>
22384 <DD>Means that Alpine will use the nickname
22385 from your address book that matches the first address in the To line.
22386 If there is no match, it will use the value of the
22387 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
22388 </DD>
22390 <DT>by-recipient</DT>
22391 <DD>Means Alpine will form a folder name
22392 based on the left hand side of the first address in the To line.
22393 </DD>
22395 <DT>by-nick-then-recip</DT>
22396 <DD>Means that it will use the
22397 matching nickname from your address book if there is one, otherwise it
22398 will extract the recipient name from the address and use that (like
22399 by-recipient).
22400 </DD>
22402 <DT>current-folder</DT>
22403 <DD>Causes a copy to be written to
22404 the currently open folder, unless that is the INBOX.  In the case
22405 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
22406 used instead.
22407 </DD>
22408 </DL>
22411 Note: Whatever the fcc specified by the rule here, it will be
22412 over-ridden by any fcc entries you have in your address book.
22415 <UL>   
22416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22417 </UL><P>
22418 &lt;End of help on this topic&gt;
22419 </BODY>
22420 </HTML>
22421 ====== h_config_sort_key =====
22422 <HTML>
22423 <HEAD>
22424 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
22425 </HEAD>
22426 <BODY>
22427 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
22429 This option determines the order in which messages will be displayed in
22430 the MESSAGE INDEX screen.  Choose from:
22432 <UL>
22433  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22434  <LI> <A HREF="h_index_sort_date">Date</A>
22435  <LI> <A HREF="h_index_sort_subj">Subject</A>
22436  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22437  <LI> <A HREF="h_index_sort_thread">Thread</A>
22438  <LI> <A HREF="h_index_sort_from">From</A>
22439  <LI> <A HREF="h_index_sort_size">Size</A>
22440  <LI> <A HREF="h_index_sort_score">Score</A>
22441  <LI> <A HREF="h_index_sort_to">To</A>
22442  <LI> <A HREF="h_index_sort_cc">Cc</A>
22443 </UL>
22446 Each type of sort may also be reversed.
22447 Normal default is by &quot;Arrival&quot;.
22450 A possible point of confusion arises when you change the configuration
22451 of the <!--#echo var="VAR_sort-key"-->.
22452 The folder will normally be re-sorted when you go back to viewing the
22453 index.
22454 However, if you have manually sorted the folder with the
22455 Sort
22456 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22457 command, then it will not be re-sorted until the next time it is opened.
22460 <UL>   
22461 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22462 </UL><P>
22463 &lt;End of help on this topic&gt;
22464 </BODY>
22465 </HTML>
22466 ====== h_config_other_startup =====
22467 <HTML>
22468 <HEAD>
22469 <TITLE>OPTION: Set Startup Rule</TITLE>
22470 </HEAD>
22471 <BODY>
22472 <H1>OPTION: Set Startup Rule</H1>
22474 This option determines which message will be the <EM>current message</EM> when
22475 the folder is first opened.
22476 It works the same way that the option
22477 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
22478 works, so look there for help.
22479 It may be used for any folder, not just incoming folders.
22482 <UL>   
22483 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22484 </UL><P>
22485 &lt;End of help on this topic&gt;
22486 </BODY>
22487 </HTML>
22488 ====== h_config_perfolder_sort =====
22489 <HTML>
22490 <HEAD>
22491 <TITLE>Set Sort Order</TITLE>
22492 </HEAD>
22493 <BODY>
22494 <H1>Set Sort Order</H1>
22496 This option determines the order in which messages will be displayed in
22497 the MESSAGE INDEX screen when the Current Folder Type set in the
22498 Pattern is a match. Choose from:
22500 <UL>
22501  <LI> <A HREF="h_index_sort_default">Default</A>
22502  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22503  <LI> <A HREF="h_index_sort_date">Date</A>
22504  <LI> <A HREF="h_index_sort_subj">Subject</A>
22505  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22506  <LI> <A HREF="h_index_sort_thread">Thread</A>
22507  <LI> <A HREF="h_index_sort_from">From</A>
22508  <LI> <A HREF="h_index_sort_size">Size</A>
22509  <LI> <A HREF="h_index_sort_score">Score</A>
22510  <LI> <A HREF="h_index_sort_to">To</A>
22511  <LI> <A HREF="h_index_sort_cc">Cc</A>
22512 </UL>
22515 Each type of sort may also be reversed.
22516 Normal default is by &quot;Arrival&quot;.
22519 A possible point of confusion arises when you change the configuration
22520 of the Sort Order for the currently open folder.
22521 The folder will normally be re-sorted when you go back to viewing the
22522 index.
22523 However, if you have manually sorted the folder with the
22524 Sort
22525 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22526 command, then it will not be re-sorted until the next time it is opened.
22529 <UL>   
22530 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22531 </UL><P>
22532 &lt;End of help on this topic&gt;
22533 </BODY>
22534 </HTML>
22535 ====== h_config_fld_sort_rule =====
22536 <HTML>
22537 <HEAD>
22538 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
22539 </HEAD>
22540 <BODY>
22541 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
22543 This option controls the order in which folder list entries will be
22544 presented in the FOLDER LIST screen.  Choose one of the following:
22546 <DL>
22547 <DT>Alphabetical</DT>
22548 <DD>sort by alphabetical name independent of type
22549 </DD>
22551 <DT>Alpha-with-dirs-last</DT>
22552 <DD>sort by alphabetical name grouping directory entries
22553 to the end of the list
22554 </DD>
22556 <DT>Alpha-with-dirs-first</DT>
22557 <DD>sort by alphabetical name grouping directory entries
22558 to the start of the list
22559 </DD>
22560 </DL>
22562 The normal default is &quot;Alphabetical&quot;.
22565 <UL>   
22566 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22567 </UL><P>
22568 &lt;End of help on this topic&gt;
22569 </BODY>
22570 </HTML>
22571 ====== h_config_ab_sort_rule =====
22572 <HTML>
22573 <HEAD>
22574 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
22575 </HEAD>
22576 <BODY>
22577 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
22579 This option controls the order in which address book entries will be
22580 presented.  Choose one of the following:
22582 <DL>
22583 <DT>fullname</DT>
22584 <DD>use fullname field, lists mixed in
22585 </DD>
22587 <DT>fullname-with-lists-last</DT>
22588 <DD>use fullname field, but put lists at end
22589 </DD>
22591 <DT>nickname</DT>
22592 <DD>use nickname field, lists mixed in
22593 </DD>
22595 <DT>nickname-with-lists-last</DT>
22596 <DD>use nickname field, but put lists at end
22597 </DD>
22599 <DT>dont-sort</DT>
22600 <DD>don't change order of file
22601 </DD>
22602 </DL>
22605 The normal default is &quot;fullname-with-lists-last&quot;.
22606 If you use an address book from more than one computer and those
22607 computers sort the address book differently then the sort order
22608 will be the order where the last change to the address book was
22609 made.
22610 There are two reasons the sorting might be different on different
22611 systems.
22612 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
22613 places.
22614 Second, the collation rules on the two computers may be different.
22615 For example, one system might ignore special characters while the other
22616 doesn't or one may sort upper and lower case letters together while
22617 the other doesn't.
22618 In any case, the order you see is the order on the system where the
22619 last change was made, for example by an address book edit or a
22620 Take Address command.
22623 <UL>   
22624 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22625 </UL><P>
22626 &lt;End of help on this topic&gt;
22627 </BODY>
22628 </HTML>
22629 ====== h_config_post_char_set =====
22630 <HTML>
22631 <HEAD>
22632 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
22633 </HEAD>
22634 <BODY>
22635 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
22637 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
22638 when sending messages.
22642 When sending a message the text typed in the composer is
22643 labeled with the character set specified by this option.
22644 If the composed text is not fully representable in the 
22645 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
22646 instead;
22649 Attachments are labeled with your
22650 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
22653 Generally, there should be little need to set this option.
22654 If left unset, the
22655 default behavior is to label composed text as specifically as
22656 possible.  That is, if the composed text has no non-ASCII characters,
22657 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
22658 only ISO-8859-15 characters, it is labeled as such.  Alpine will
22659 attempt to automatically detect a number of character sets including ISO-8859-15,
22660 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
22661 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
22662 If the message contains a mix of character sets,
22663 it is labeled as &quot;UTF-8.&quot;
22667 This setting is provided to allow you to force a particular character set that
22668 Alpine does not automatically detect. For example, if a message is representable
22669 in more than one character set then Alpine may choose a different default
22670 than you want.
22671 Lastly, by setting this option explicitly to
22672 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
22673 &quot;UTF-8&quot; instead of something more specific.
22676 In the Setup/Config screen you may choose from a list of all the
22677 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22680 The options
22681 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
22682 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
22683 are closely related.
22684 Setting the feature
22685 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22686 should cause this option to be ignored.
22689 <UL>   
22690 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22691 </UL><P>
22692 &lt;End of help on this topic&gt;
22693 </BODY>
22694 </HTML>
22695 ====== h_config_unk_char_set =====
22696 <HTML>
22697 <HEAD>
22698 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
22699 </HEAD>
22700 <BODY>
22701 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
22703 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
22704 when reading or replying to messages.
22708 A text message should either be made up of all US-ASCII characters
22709 or it should contain a charset label which tells the software which
22710 character set encoding to use to interpret the message.
22711 Sometimes a malformed message may be unlabeled but contain non-ascii text.
22712 This message is outside of the standards so any attempt to read it could fail.
22713 When Alpine attempts to read such a message it will try to interpret the
22714 text in the character set you specify here.
22715 For example, if you have correspondents who send you unlabeled messages that
22716 are usually made up of characters from the WINDOWS-1251 character set, setting
22717 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
22718 allow you to read those messages.
22719 Of course, if the unlabeled message is actually in some other character set,
22720 then you may see garbage on your screen.
22722 Instead of just unlabeled text, this option also affects text which is labeled
22723 with the charsets &quot;X-Unknown&quot; or &quot;US-ASCII&quot;.
22726 In the Setup/Config screen you may choose from a list of all the
22727 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22730 <UL>   
22731 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22732 </UL><P>
22733 &lt;End of help on this topic&gt;
22734 </BODY>
22735 </HTML>
22736 ====== h_config_char_set =====
22737 <HTML>
22738 <HEAD>
22739 <TITLE>OPTION: Display Character Set</TITLE>
22740 </HEAD>
22741 <BODY>
22742 <H1>OPTION: Display Character Set</H1>
22744 The Display Character Set configuration option is used when viewing messages.
22746 Alpine uses Unicode characters internally and 
22747 it is a goal for Alpine to handle email in many different languages.
22748 Alpine will properly display only left-to-right character sets
22749 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
22750 font is in use, in the sense that
22751 characters are assumed to take up zero, one, or two character cell
22752 widths from left to right on the screen. This is true even in PC-Alpine.
22755 Alpine recognizes some local character sets that are right-to-left
22756 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
22757 (Arabic) and properly converts texts in these character sets to/from
22758 Unicode; however, there are known display bugs with these character
22759 sets.
22762 There are three possible configuration character settings and some
22763 environment variable settings that can affect how Alpine
22764 handles international characters.
22765 The first two of these are only available in UNIX Alpine.
22766 The three configuration options are
22767 Display Character Set,
22768 Keyboard Character Set, and
22769 <!--#echo var="VAR_posting-character-set"-->.
22770 The Keyboard Character Set defaults to being the same value
22771 as the Display Character Set, and that is usually correct, because
22772 the keyboard almost always produces characters in the same character set
22773 as the display displays.
22774 The Display Character Set is the character set that Alpine
22775 will attempt to use when sending characters to the display.
22778 By default, the Display Character Set variable is not set and UNIX Alpine
22779 will attempt to get this information from the environment.
22780 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
22781 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
22782 An explicit configuration setting for Display Character Set will,
22783 of course, override any default setting.
22785 For PC-Alpine the Display Character Set
22786 and the Keyboard Character Set
22787 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
22790 It is probably best to use UNIX Alpine in a terminal emulator
22791 capable of displaying UTF-8 characters, since that will allow you to
22792 view just about any received text that is correctly formatted (note,
22793 however, the above comments about known index display bugs with certain
22794 character sets). You'll need to have an emulator that uses a UTF-8 font
22795 and you'll need to set up your environment to use a UTF-8 charmap. For
22796 example, on a Linux system you might include
22798 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
22801 or something similar in your UNIX startup files.
22802 You'd also have to select a UTF-8 font in your terminal emulator.
22805 The types of values that the character set variables may be set to are
22806 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
22807 The <CODE>ISO-2022</CODE> character sets are not supported for input or
22808 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
22809 for use only as a <!--#echo var="VAR_posting-character-set"-->.
22810 In the Setup/Config screen you may choose from a list of all the
22811 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22812 Here is a list of many of the possible character sets:
22815 <TABLE>
22816 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
22817 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
22818 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
22819 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
22820 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
22821 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
22822 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
22823 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
22824 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
22825 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
22826 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
22827 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
22828 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
22829 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
22830 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
22831 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
22832 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
22833 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
22834 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
22835 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
22836 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
22837 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
22838 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
22839 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22840 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22841 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22842 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
22843 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
22844 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
22845 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
22846 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
22847 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
22848 </TABLE>
22851 When reading incoming email, Alpine understands many different
22852 character sets and is able to convert the incoming mail into Unicode.
22853 The Unicode will be converted to the Display Character Set
22854 for display on your terminal.
22855 Characters typed at the keyboard will be converted from the
22856 Keyboard Character Set to Unicode for Alpine's internal
22857 use.
22858 You may find that you can read some malformed messages that do not
22859 contain a character set label by setting the option
22860 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
22863 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
22864 The default behavior obtained by leaving this variable unset is usually
22865 what is wanted. In that default case, Alpine will attempt
22866 to label the message with the most specific character set from the
22867 rather arbitrary set
22869 US-ASCII, ISO-8859-15,
22870 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
22871 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
22874 For example, if the message is made up of only US-ASCII characters, it
22875 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
22876 that will be the label. If that doesn't work the same is tried for the
22877 remaining members of the list.
22880 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
22881 explicit value instead.
22882 For example, if you usually send messages in Greek, setting this
22883 option to ISO-8859-7 will result in messages being labeled as
22884 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
22885 are only Greek characters, or UTF-8 if there are some characters
22886 that aren't representable in ISO-8859-7.
22887 Another possibility is to set this option explicitly to UTF-8.
22888 In that case
22889 Alpine labels only ascii messages as US-ASCII and all other
22890 messages as UTF-8.
22893 The options
22894 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
22895 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
22896 are closely related to this option.
22897 Setting the feature
22898 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22899 should cause this option to be ignored.
22902 When displaying a message, Alpine compares this setting to the character
22903 set specified in the message.  If not all of the
22904 characters in the message can be displayed using the Display Character Set
22905 then Alpine places an editorial
22906 comment in the displayed text (enclosed in square-brackets) indicating
22907 that some characters may not be displayed correctly.
22908 This comment may be eliminated by turning on the option
22909 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
22912 <UL>   
22913 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22914 </UL><P>
22915 &lt;End of help on this topic&gt;
22916 </BODY>
22917 </HTML>
22918 ====== h_config_key_char_set =====
22919 <HTML>
22920 <HEAD>
22921 <TITLE>OPTION: Keyboard Character Set</TITLE>
22922 </HEAD>
22923 <BODY>
22924 <H1>OPTION: Keyboard Character Set</H1>
22926 UNIX Alpine only.
22928 The Keyboard Character Set identifies the character set of the characters
22929 coming from your keyboard.
22930 It defaults to having the same value as your
22931 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
22932 which in turn defaults to a value obtained from your environment.
22933 It is unlikely that you will need to use this option, because the keyboard
22934 almost always produces the same kind of characters as the display displays.
22937 This character set is also used when accessing files in your local
22938 file system.
22939 The names of the files are assumed to be in the same character set as
22940 what the keyboard produces, as well as the contents of the files.
22943 In the Setup/Config screen you may choose from a list of all the
22944 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22947 The options
22948 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
22949 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
22950 are closely related.
22951 Setting the feature
22952 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22953 should cause this option to be ignored.
22956 <UL>   
22957 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22958 </UL><P>
22959 &lt;End of help on this topic&gt;
22960 </BODY>
22961 </HTML>
22962 ====== h_config_editor =====
22963 <HTML>
22964 <HEAD>
22965 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
22966 </HEAD>
22967 <BODY>
22968 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
22970 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
22971 normally an alternative to Alpine's internal composer (Pico).  You could use
22972 this setting to specify an alternate editor to use occasionally or if you
22973 have a favorite editor and want to use it all the time (see the 
22974 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
22975 If you specify multiple editors for this option, ^_ will invoke the first one 
22976 of those specified that exists and is executable.  When specifying a program 
22977 for use here, make sure that the format of the text it saves -- which, when 
22978 you exit it, will become the message body in Alpine -- is appropriate 
22979 for the body of an email message; avoid proprietary formats that may result in 
22980 a message body that the recipient of your message will be unable to decipher.
22982 <!--chtml if pinemode="os_windows"-->
22983 <!--chtml else-->
22984 If you are in doubt about what editors are available on your system, or which 
22985 of them may be appropriate for specification here, ask your local computing 
22986 support staff.  
22987 <!--chtml endif-->
22989 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
22990 unset, outgoing text will be set as flowed.  In most cases this will be fine,
22991 but if the editor has a &quot;flowed text&quot; mode, it would be best to
22992 use that.
22994 <P><UL>
22995 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22996 </UL>
22998 &lt;End of help on this topic&gt;
22999 </BODY>
23000 </HTML>
23001 ====== h_config_speller =====
23002 <HTML>
23003 <HEAD>
23004 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23005 </HEAD>
23006 <BODY>
23007 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23009 UNIX Alpine only.
23011 For PC-Alpine, you must install the aspell library code that you
23012 may get from
23013 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23015 This option affects the behavior of the ^T (spell check) command in the
23016 Composer.  It specifies the program invoked by ^T in the Composer.
23017 By default, Alpine uses
23019 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23021 if it knows where to find &quot;aspell&quot;.
23022 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23023 then the command used is
23025 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23027 Otherwise, the ancient &quot;spell&quot; command is used.
23029 If you specify a value for this command (with full pathname) then that is what
23030 will be used instead of any of the defaults.
23031 When invoking this
23032 spell-checking program, Alpine appends a tempfile name (where the message is
23033 passed) to the command line. Alpine expects the speller to correct the
23034 spelling in that file. When you exit from that program Alpine will read the
23035 tempfile back into the composer.
23037 Don't set this speller option to the standard Unix spell command.
23038 That won't work because spell works in a different way.
23041 <UL>   
23042 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23043 </UL><P>
23044 &lt;End of help on this topic&gt;
23045 </BODY>
23046 </HTML>
23047 ====== h_config_display_filters =====
23048 <HTML>
23049 <HEAD>
23050 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23051 </HEAD>
23052 <BODY>
23053 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23055 This option defines a list of text-filtering commands (programs or
23056 scripts) that may be used to filter text portions of received messages
23057 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23058 display screen, exporting to a text file).  
23059 For security reasons, the full path name of the
23060 filter command must be specified.
23063 The command is executed and the message is piped into its standard input. 
23064 The standard output of the command is read back by Alpine.  The
23065 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23067 <P> 
23068 The filter's use is based on the configured &quot;trigger&quot; string.  The
23069 format of a filter definition is:
23071 <P>   
23072 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23075 You can specify as many filters as you wish, separating them with a comma.  
23076 Each filter can have only one trigger and command.  Thus, two trigger 
23077 strings that invoke the same command require separate filter 
23078 specifications. 
23080 <P> 
23081 The &quot;trigger&quot; is simply text that, if found in the message,
23082 will invoke the associated command.  If the trigger contains any space
23083 characters, it must be placed within quotes.  Likewise, should you
23084 wish a filter to be invoked unconditionally, define the trigger as the
23085 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23086 trigger string is found anywhere in the text of the message the filter
23087 is invoked.  Placing the trigger text within the tokens defined below
23088 changes where within the text the trigger must be before considering
23089 it a match.
23091 <P>  
23092 Trigger Modifying Tokens:
23093 <DL>
23094 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23095 <DD>This token tells Alpine to invoke the supplied command
23096 if the text is in a character set matching <VAR>string</VAR>
23097 (e.g., ISO-8859-2 or ISO-2022-JP).
23098 </DD>
23101 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23102 <DD>This token tells Alpine to invoke the supplied command
23103 if the enclosed <VAR>string</VAR> is found to be the first
23104 non-whitespace text.
23105 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23106 the space character.
23107 </DD>
23109 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23110 <DD>This token tells Alpine to invoke the supplied command
23111 if the enclosed <VAR>string</VAR> is found at the beginning
23112 of any line in the text.
23113 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23114 the space character.
23115 </DD>
23116 </DL>
23119 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23120 the command line to be invoked if the trigger string is found.  Below
23121 are tokens that Alpine will recognize and replace with special values
23122 when the command is actually invoked.
23125 Command Modifying Tokens:
23127 <DL>
23128 <DT>_TMPFILE_</DT>
23129 <DD>When the command is executed, this token is 
23130 replaced with the path and name of the temporary 
23131 file containing the text to be filtered.  Alpine 
23132 expects the filter to replace this data with the 
23133 filter's result.
23136 NOTE: Use of this token implies that the text to 
23137 be filtered is not piped into standard input of the 
23138 executed command and its standard output is ignored. 
23139 Alpine restores the tty modes before invoking the
23140 filter in case the filter interacts with the user
23141 via its own standard input and output.  
23142 </DD>
23143                         
23144 <DT>_RESULTFILE_</DT>
23145 <DD>When the command is executed, this token is 
23146 replaced with the path and name of a temporary 
23147 file intended to contain a status message from the 
23148 filter.  Alpine displays this in the message status 
23149 field. 
23150 </DD>
23152 <DT>_DATAFILE_</DT>
23153 <DD>When the command is executed, this token is 
23154 replaced with the path and name of a temporary 
23155 file that Alpine creates once per session and deletes 
23156 upon exit.  The file is intended to be used by the 
23157 filter to store state information between instances 
23158 of the filter.
23159 </DD>
23160    
23161 <DT>_PREPENDKEY_</DT>
23162 <DD>When the command is executed, this token indicates that a random
23163 number will be passed down the input stream before the message text.
23164 This number could be used as a session key.  It is sent in this way to
23165 improve security.  The number is unique to the current Alpine session
23166 and is only generated once per session.
23167 </DD>
23169 <DT>_SILENT_</DT>
23170 <DD>When the filter is executed, this token tells Alpine not to repaint
23171 the screen while the command is being executed. This can be used with 
23172 filters that do not interact with the user, and therefore repainting 
23173 the screen is not necessary. 
23174 </DD>
23175 </DL>
23178 The feature
23179 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23181 Performance caveat/considerations:
23182 <BR>
23183 Testing for the trigger and invoking the filter doesn't come for free.
23184 There is overhead associated with searching for the trigger string, testing
23185 for the filter's existence and actually piping the text through the filter.
23186 The impact can be reduced if the Trigger Modifying Tokens above are 
23187 employed.
23189 &lt;End of help on this topic&gt;
23190 </BODY>
23191 </HTML>
23192 ====== h_config_sending_filter =====
23193 <HTML>
23194 <HEAD>
23195 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23196 </HEAD>
23197 <BODY>
23198 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23199       
23200 This option defines a list of text-filtering commands (programs and
23201 scripts) that may be selectively invoked to process a message just before
23202 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23203 select which filter (or none) to apply to the message before it is sent. 
23204 For security reasons, the full path of the filter program must be
23205 specified.
23208 Command Modifying Tokens:
23210 <DL>
23211 <DT>_RECIPIENTS_</DT>
23212 <DD>When the command is executed, this token is replaced 
23213 with the space delimited list of recipients of the 
23214 message being sent. 
23215 </DD>
23216         
23217 <DT>_TMPFILE_</DT>
23218 <DD>
23219 When the command is executed, this token is 
23220 replaced with the path and name of the temporary 
23221 file containing the text to be filtered.  Alpine 
23222 expects the filter to replace this data with the 
23223 filter's result.
23226 NOTE: Use of this token implies that the text to 
23227 be filtered is not piped into standard input of the 
23228 executed command and its standard output is ignored. 
23229 Alpine restores the tty modes before invoking the
23230 filter in case the filter interacts with the user
23231 via its own standard input and output.  
23232 </DD>
23233                         
23234 <DT>_RESULTFILE_</DT>
23235 <DD>When the command is executed, this token is 
23236 replaced with the path and name of a temporary 
23237 file intended to contain a status message from the 
23238 filter.  Alpine displays this in the message status 
23239 field. 
23240 </DD>
23242 <DT>_DATAFILE_</DT>
23243 <DD>When the command is executed, this token is replaced 
23244 in the command line with the path and name of a 
23245 temporary file that Alpine creates once per session 
23246 and deletes upon exit.  The file is intended to be 
23247 used by the filter to store state information between 
23248 instances of the filter.
23249 </DD>
23250    
23251 <DT>_PREPENDKEY_</DT>
23252 <DD>When the command is executed, this token indicates 
23253 that a random number will be passed down the input 
23254 stream before the message text.  This number could 
23255 be used as a session key.  It is sent in this way 
23256 to improve security.  The number is unique to the 
23257 current Alpine session and is only generated once per 
23258 session. 
23259 </DD>
23261 <DT>_INCLUDEALLHDRS_</DT>
23262 <DD>When the command is executed, this token indicates 
23263 that the headers of the message will be passed down the input stream
23264 before the message text.
23265 </DD>
23267 <DT>_MIMETYPE_</DT>
23268 <DD>When the command is executed, this token is replaced in the
23269 command name with a temporary file name used to accept any new MIME
23270 Content-Type information necessitated by the output of the filter.
23271 Upon the filter's exit, if the file contains new MIME type
23272 information, Alpine verifies its format and replaces the outgoing
23273 message's MIME type information with that contained in the file. This
23274 is basically a cheap way of sending something other than Text/Plain.
23275 </DD>
23276 </DL>
23278 <P>   
23279 NOTE: Only the body text, which is visible in the Composer, is piped
23280 through this filter.  Attachments are not sent to the filter.
23281 <P>   
23282 Sending filters are not used if the feature
23283 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
23285 <UL>   
23286 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23287 </UL><P>
23288 &lt;End of help on this topic&gt;
23289 </BODY>
23290 </HTML>
23291 ====== h_config_keywords =====
23292 <HTML>
23293 <HEAD>
23294 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
23295 </HEAD>
23296 <BODY>
23297 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
23299 You may define your own set of keywords and optionally set them on a
23300 message by message basis.
23301 These are similar to the &quot;Important&quot; flag which the user
23302 may set using the Flag command.
23303 The difference is that the Important flag is always present for each folder.
23304 User-defined keywords are chosen by the user.
23305 You may set up the list of possible keywords here, or you may add keywords
23306 from the Flag Details screen that you
23307 can get to after typing the
23308 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
23309 command.
23310 After the keywords have been defined,
23311 then you use the <A HREF="h_common_flag">Flag command</A>
23312 to set or clear the keywords in each message.
23313 The behavior of the flag command may be modified by using the
23314 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
23315 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
23318 Keywords may be used when Selecting messages (Select Keyword).
23319 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
23320 Filter Rules may be used to set keywords automatically.
23321 Keywords may be displayed as part of the Subject of a message by using
23322 the SUBJKEY or SUBJKEYINIT tokens in the
23323 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
23324 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
23325 option may be used to modify the display of keywords using
23326 SUBJKEY and SUBJKEYINIT slightly.
23327 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
23328 screen by using the KEY or KEYINIT tokens.
23329 It is also possible to color keywords in the index using the
23330 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
23331 Keywords are not supported by all mail servers.
23334 You may give keywords nicknames if you wish.
23335 If the keyword definition you type in contains a SPACE character, then the
23336 actual value of the keyword is everything after the last SPACE and the
23337 nickname for that keyword is everything before the last SPACE.
23338 For example, suppose you are trying to interoperate with another email program
23339 that uses a particular keyword with an unpleasant name.
23340 Maybe it uses a keyword called
23342 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
23344 but for you that keyword means that the message is work-related.
23345 You could define a keyword to have the value
23347 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
23349 and then you would use the name &quot;Work&quot; when dealing with
23350 that keyword in Alpine.
23351 If you defined it as
23353 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
23355 the nickname would be everything before the last SPACE, that is the nickname
23356 would be &quot;My Work&quot;.
23358 Some commonly used keywords begin with dollar signs.
23359 This presents a slight complication, because the dollar sign is normally used
23360 to signify
23361 <A HREF="h_news_config">environment variable expansion</A>
23362 in the Alpine configuration.
23363 In order to specify a keyword that begins with a dollar sign you must
23364 precede the dollar sign with a second dollar sign to escape its special
23365 meaning.
23366 For example, if you want to include the keyword
23368 <CENTER><SAMP>$Label1</SAMP></CENTER>
23370 as one of your possible keywords, you must enter the text
23372 <CENTER><SAMP>$$Label1</SAMP></CENTER>
23375 instead.
23377 There are a couple limitations.
23378 First, not all servers support keywords.
23379 Second, some servers (including the IMAP server included with Alpine)
23380 have a per folder limit on the number of keywords that may be defined.
23381 This count commonly includes every keyword you have ever used in the
23382 folder, even if it is no longer being used.
23383 In other words, you can add keywords but you cannot remove them easily.
23384 If you have changed keywords over the life of a folder and find that
23385 you have reached such a limit, one possible solution might be to copy
23386 all of the messages to a newly created folder (using Alpine) and then
23387 delete the original and rename the new folder.
23388 The reason this might work is that only the keywords currently set in
23389 any of the messages will be used in the new folder, hopefully putting you
23390 under the limit.
23393 <UL>   
23394 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23395 </UL><P>
23396 &lt;End of help on this topic&gt;
23397 </BODY>
23398 </HTML>
23399 ====== h_config_alt_addresses =====
23400 <HTML>
23401 <HEAD>
23402 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
23403 </HEAD>
23404 <BODY>
23405 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
23407 This option provides a place for you to list alternate email addresses
23408 you may have.
23409 Each address in the list should be the actual email address part of an
23410 address, without the full name field or the angle brackets.
23411 For example:
23414 <CENTER><SAMP>user@example.com</SAMP></CENTER>
23417 The matching is case-insensitive, so this would match any of
23418 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
23419 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
23422 If set, the option affects the behavior of the Reply
23423 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
23424 a message has been addressed specifically to you.
23427 In the default INDEX display
23428 the personal name (or email address) of
23429 the person listed in the message's &quot;From:&quot; header
23430 field is usually displayed except when that address is yours or one of your
23431 alternate addresses.
23432 In that case you will usually see the name of
23433 the first person specified in the
23434 message's &quot;To:&quot; header field
23435 with the prefix &quot;To: &quot; prepended.
23438 With respect to Reply, the reply-to-all option will exclude addresses
23439 listed here.
23442 The feature
23443 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
23444 is somewhat related to this option.
23447 In addition to a list of actual addresses,
23448 you may use regular expressions (as used with egrep with the ignore case flag)
23449 to describe the addresses you want to match.
23450 Alpine will somewhat arbitrarily interpret your entry as a regular
23451 expression if it contains any of the characters
23452 *, |, +, ?, {, [, ^, $, or &#92;.
23453 Otherwise, it will be treated literally.
23454 The feature
23455 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
23456 may be used to turn off regular expression processing regardless of whether or not
23457 special characters appear in the entry.
23460 A description of how regular expressions work is beyond the
23461 scope of this help text, but some examples follow.
23464 The entry
23467 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
23470 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
23471 address with a domain name of <SAMP>example.com</SAMP> (such as
23472 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
23473 one of your alternate addresses.
23474 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
23475 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
23476 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
23477 Complicating things further, the dollar sign
23478 is special in the Alpine configuration (it signifies environment variable expansion)
23479 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
23480 Quotes around the whole expression will not escape the dollar sign successfully.
23481 So this example should look like
23484 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
23488 The entry
23491 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
23494 would match
23495 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
23496 as <SAMP>fred@example.com</SAMP>.
23499 You could match all addresses that look like
23500 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
23501 entry
23504 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
23507 Notice that you have to escape the plus sign with a backslash because plus
23508 is a special character in regular expressions.
23509 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
23510 the expression
23513 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
23516 would do it, but it would be easier to just add fred@example.com as a
23517 separate entry.
23520 One more example, a match of all first-level subdomains, is given by
23523 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
23527 Because the regular expression matching is based on an old library
23528 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
23529 but they should be close.
23532 <UL>   
23533 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23534 </UL><P>
23535 &lt;End of help on this topic&gt;
23536 </BODY>
23537 </HTML>
23538 ====== h_config_abook_formats =====
23539 <HTML>
23540 <HEAD>
23541 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
23542 </HEAD>
23543 <BODY>
23544 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
23546 This option specifies the format that address books are displayed in.
23547 Normally, address books are displayed with the nicknames in the first
23548 column, the fullnames in the second column, and addresses in the third
23549 column.  The system figures out reasonable defaults for the widths of
23550 the columns.  An address book may be given a different format by
23551 listing special tokens in the order you want them to display.  The
23552 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
23553 So, for example, to get the default behavior you could list
23556 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
23559 (You can also use the token DEFAULT to get the default behavior for
23560 an address book format.)
23563 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
23564 is a list, so if you have more than one address book you may have a
23565 separate format for each by putting its format at the corresponding
23566 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
23570 Listed first are the personal address books, then the global address
23571 books.  So, if you have two personal address books and one global
23572 address book, you may have up to three formats in the
23573 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
23574 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
23575 are address books, the last element is used repeatedly.
23579 Each of the tokens may also be optionally followed by parentheses with
23580 either a number or a percentage inside the parentheses.  For example,
23581 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
23582 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
23583 of the available space (the screen width minus the space for
23584 inter-column spaces) to the fullnames column, while plain
23585 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
23586 reasonable number of columns.
23589 There are always 2 spaces between every column, so if you use
23590 fixed column widths (like 13) you should remember to take that into
23591 account.
23594 <UL>   
23595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23596 </UL><P>
23597 &lt;End of help on this topic&gt;
23598 </BODY>
23599 </HTML>
23600 ====== h_config_set_index_format =====
23601 <HTML>
23602 <HEAD>
23603 <TITLE>Set Index Format</TITLE>
23604 </HEAD>
23605 <BODY>
23606 <H1>Set Index Format</H1>
23608 This option is used to customize the content of lines in the
23609 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
23610 This action works exactly like the regular
23611 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
23612 except that you can have a folder-specific value for it if you specify it here.
23613 Consult the help for
23614 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
23615 for more information.
23618 <UL>   
23619 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23620 </UL><P>
23621 &lt;End of help on this topic&gt;
23622 </BODY>
23623 </HTML>
23624 ====== h_config_index_format =====
23625 <HTML>
23626 <HEAD>
23627 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
23628 </HEAD>
23629 <BODY>
23630 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
23632 This option is used to customize the content of lines in the
23633 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
23634 to convey some amount of immediately relevant information about each 
23635 message in the current folder.
23638 Alpine provides a pre-defined set of informational fields with
23639 reasonable column widths automatically computed.  You can, however,
23640 replace this default set by listing special tokens in the order you
23641 want them displayed.
23644 The list of available tokens is
23645 <A HREF="h_index_tokens">here</A>.
23648 Spaces are used to separate listed tokens.  Additionally, you can
23649 specify how much of the screen's width the token's associated data
23650 should occupy on the index line by appending to the token a pair of
23651 parentheses enclosing either a number or percentage.  For example,
23652 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
23653 column, and &quot;SUBJECT(20%)&quot; means to
23654 allocate 20% of the available space
23655 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
23656 attempt to figure out a reasonable amount of space.
23659 There is always one space between every pair of columns, so if you use fixed
23660 column widths (like 13) you should remember to take that into account.
23661 Several of the fields are virtually fixed-width, so it doesn't make
23662 much sense to specify the width for them.  The fields STATUS,
23663 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
23664 and DESCRIPSIZE all fall into that category.
23665 You <EM>may</EM> specify widths for those if you wish, but
23666 you're probably better off letting the system pick those widths.  <P>
23669 The default is equivalent to:
23672 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
23675 This means that the four fields without percentages will be allocated
23676 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
23677 the from and subject fields.  If one of those two fields is specified
23678 as a percentage and the other is left for the system to choose, then
23679 the percentage is taken as an absolute percentage of the screen, not
23680 of the space remaining after allocating the first four columns.  It
23681 doesn't usually make sense to do it that way.  If you leave off all
23682 the widths, then the subject and from fields (if both are present) are
23683 allocated space in a 2 to 1 ratio, which is almost exactly the same as
23684 the default.
23687 What you are most likely to do with this configuration option is to
23688 specify which fields appear at all, which order they appear in, and the
23689 percentage of screen that is used for the from and subject fields if you
23690 don't like the 2 to 1 default.
23693 If you want to retain the default format that Pine 4.64 had, use
23696 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
23698 <EM>and</EM> set the feature
23699 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
23700 <UL>   
23701 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23702 </UL><P>
23703 &lt;End of help on this topic&gt;
23704 </BODY>
23705 </HTML>
23706 ====== h_config_reply_intro =====
23707 <HTML>
23708 <HEAD>
23709 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
23710 </HEAD>
23711 <BODY>
23712 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
23714 This option is used to customize the content of the introduction line
23715 that is included when replying to a message and including the original
23716 message in the reply.
23717 The normal default (what you will get if you delete this variable) looks
23718 something like:
23720 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
23722 where the day of the week is only included if it is available in the
23723 original message.
23724 You can replace this default with text of your own.
23725 The text may contain tokens that are replaced with text
23726 that depends on the message you are replying to.
23727 For example, the default is equivalent to:
23729 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
23732 Since this variable includes regular text mixed with special tokens
23733 the tokens have to be surrounded by underscore characters.
23734 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
23735 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
23736 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
23738 The list of available tokens is
23739 <A HREF="h_index_tokens">here</A>.
23742 By default, the text is all on a single line and is followed by a blank line.
23743 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
23744 than 80 characters when replying to a particular message, it is shortened.
23745 However, if you use the token
23747 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
23750 anywhere in the value, no end of line or blank line is appended, and no
23751 shortening is done.
23752 The _NEWLINE_ token may be used to get rid of the blank line following
23753 the text, to add more blank lines, or to form a multi-line
23754 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
23755 To clarify how _NEWLINE_ works recall that the default value is:
23757 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
23760 That is equivalent to
23762 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
23765 In the former case, two newlines are added automatically because
23766 no _NEWLINE_ token appears in the value of the option (for backwards
23767 compatibility). In the latter case, the newlines are explicit.
23768 If you want to remove the blank line that follows the
23769 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
23770 _NEWLINE_ token like
23772 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
23775 Because of the backwards compatibility problem, it is not possible to
23776 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
23777 and that will cause the automatic adding of two newlines!
23778 If you want, you may embed newlines in the middle of the text, as well,
23779 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
23782 By default, no attempt is made to localize the date.
23783 If you prefer a localized form you may find that one of the tokens
23784 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
23785 If you want more control one of the many other date tokens, such as _DATEISO_,
23786 might be better.
23789 For the adventurous, there is a way to conditionally include text based
23790 on whether or not a token would result in specific replacement text.
23791 For example, you could include some text based on whether or not
23792 the _NEWS_ token would result in any newsgroups if it was used.
23793 It's explained in detail
23794 <A HREF="h_reply_token_conditionals">here</A>.
23797 In the very unlikely event that you want to include a literal token
23798 in the introduction line you must precede it with a backslash character.
23799 For example,
23801 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
23803 would produce something like
23805 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
23807 It is not possible to have a literal backslash followed by an expanded token.
23809 <UL>   
23810 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23811 </UL><P>
23812 &lt;End of help on this topic&gt;
23813 </BODY>
23814 </HTML>
23815 ====== h_config_remote_abook_history =====
23816 <HTML>
23817 <HEAD>
23818 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
23819 </HEAD>
23820 <BODY>
23821 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
23823 Sets how many extra copies of
23824 remote address book
23825 data will be kept in each remote address book folder.
23826 The default is three.
23827 These extra copies are simply old versions of the data. Each time a change
23828 is made a new copy of the address book data is appended to the folder. Old
23829 copies are trimmed, if possible, when Alpine exits.
23830 An old copy can be put back into use by
23831 deleting and expunging newer versions of the data from the folder.
23832 Don't delete the first message from the folder. It is a special header
23833 message for the remote address book and it must be there.
23834 This is to prevent regular folders from being used as remote address book
23835 folders and having their data destroyed.
23837 This option is also used to determine how many extra copies of remote
23838 Alpine configuration files are kept.
23840 <UL>   
23841 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23842 </UL><P>
23843 &lt;End of help on this topic&gt;
23844 </BODY>
23845 </HTML>
23846 ====== h_config_remote_abook_validity =====
23847 <HTML>
23848 <HEAD>
23849 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
23850 </HEAD>
23851 <BODY>
23852 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
23854 Sets the minimum number of minutes that a
23855 remote address book will be considered up to date.
23856 Whenever an entry contained in a remote address book is used,
23857 if more than this many minutes have
23858 passed since the last check the remote server will be queried to see if the
23859 address book has changed.
23860 If it has changed, the local copy is updated.
23861 The default value is five minutes.
23862 The special value of -1 means never check.
23863 The special value of zero means only check when the address book is first
23864 opened.
23866 No matter what the value, the validity check is always done when the
23867 address book is about to be changed by the user.
23868 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
23869 while in the address book maintenance screen for the remote address book.
23871 <UL>   
23872 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23873 </UL><P>
23874 &lt;End of help on this topic&gt;
23875 </BODY>
23876 </HTML>
23877 ====== h_config_user_input_timeo =====
23878 <HTML>
23879 <HEAD>
23880 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
23881 </HEAD>
23882 <BODY>
23883 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
23885 If this is set to an integer greater than zero, then this is the number
23886 of <EM>hours</EM> to wait for user input before Alpine times out.
23887 If Alpine is
23888 in the midst of composing a message or is waiting for user response to
23889 a question, then it will not timeout.
23890 However, if Alpine is sitting idle waiting for
23891 the user to tell it what to do next and the user does not give any
23892 input for this many hours, Alpine will exit.
23893 No expunging or moving of read
23894 messages will take place.
23895 It will exit similarly to the way it would exit
23896 if it received a hangup signal.
23897 This may be useful for cleaning up unused Alpine sessions that have been
23898 forgotten by their owners.
23899 The Alpine developers envision system administrators
23900 setting this to a value of several hours (24?) so that it won't surprise
23901 a user who didn't want to be disconnected.
23903 <UL>   
23904 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23905 </UL><P>
23906 &lt;End of help on this topic&gt;
23907 </BODY>
23908 </HTML>
23909 ====== h_config_ssh_open_timeo =====
23910 <HTML>
23911 <HEAD>
23912 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
23913 </HEAD>
23914 <BODY>
23915 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
23917 Sets the time in seconds that Alpine will
23918 attempt to open a UNIX secure shell connection.
23919 The default is 15, the minimum non-zero value is 5,
23920 and the maximum is unlimited. If this is set to zero ssh connections
23921 will be completely disabled.
23923 <UL>   
23924 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23925 </UL><P>
23926 &lt;End of help on this topic&gt;
23927 </BODY>
23928 </HTML>
23929 ====== h_config_rsh_open_timeo =====
23930 <HTML>
23931 <HEAD>
23932 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
23933 </HEAD>
23934 <BODY>
23935 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
23937 Sets the time in seconds that Alpine will
23938 attempt to open a UNIX remote shell connection.
23939 The default is 15, the minimum non-zero value is 5,
23940 and the maximum is unlimited. If this is set to zero rsh connections
23941 will be completely disabled.
23942 This might be useful if rsh connections will never work in your environment
23943 but are causing delays due to firewalls or some other reason.
23945 <UL>   
23946 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23947 </UL><P>
23948 &lt;End of help on this topic&gt;
23949 </BODY>
23950 </HTML>
23951 ====== h_config_tcp_open_timeo =====
23952 <HTML>
23953 <HEAD>
23954 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
23955 </HEAD>
23956 <BODY>
23957 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
23959 Sets the time in seconds that Alpine will
23960 attempt to open a network connection. The default is 30, the minimum is 5,
23961 and the maximum is system defined (typically 75). If a connection has not
23962 completed within this many seconds Alpine will give up and consider it a
23963 failed connection.
23965 <UL>   
23966 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23967 </UL><P>
23968 &lt;End of help on this topic&gt;
23969 </BODY>
23970 </HTML>
23971 ====== h_config_tcp_readwarn_timeo =====
23972 <HTML>
23973 <HEAD>
23974 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
23975 </HEAD>
23976 <BODY>
23977 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
23979 Sets the time in seconds that Alpine will
23980 wait for a network read before warning you that things are moving slowly
23981 and possibly giving you the option to break the connection.
23982 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
23983 1000 seconds.
23985 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
23987 <UL>   
23988 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23989 </UL><P>
23990 &lt;End of help on this topic&gt;
23991 </BODY>
23992 </HTML>
23993 ====== h_config_tcp_writewarn_timeo =====
23994 <HTML>
23995 <HEAD>
23996 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
23997 </HEAD>
23998 <BODY>
23999 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24001 Sets the time in seconds that Alpine will
24002 wait for a network write before warning you that things are moving slowly
24003 and possibly giving you the option to break the connection.
24004 The default is 0 which means it is unset. If set to a non-zero value, the
24005 minimum is 5 and the maximum is 1000.
24007 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24009 <UL>   
24010 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24011 </UL><P>
24012 &lt;End of help on this topic&gt;
24013 </BODY>
24014 </HTML>
24015 ====== h_config_tcp_query_timeo =====
24016 <HTML>
24017 <HEAD>
24018 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24019 </HEAD>
24020 <BODY>
24021 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24023 When Alpine times out a network read or write it will normally just display
24024 a message saying &quot;Still waiting&quot;.
24025 However, if enough time has elapsed since it started waiting it will offer
24026 to let you break the connection.
24027 That amount of time is set by this option, which defaults to 60 seconds,
24028 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24030 <UL>   
24031 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24032 </UL><P>
24033 &lt;End of help on this topic&gt;
24034 </BODY>
24035 </HTML>
24036 ====== h_config_incoming_folders =====
24037 <HTML>
24038 <HEAD>
24039 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24040 </HEAD>
24041 <BODY>
24042 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24044 This is a list of one or more folders other than <EM>INBOX</EM> that
24045 may receive new messages.
24046 It is related to the
24047 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24048 feature.
24049 This variable is normally manipulated with the Add, Delete, and Rename
24050 commands in the FOLDER LIST for the Incoming Message Folders collection.
24052 <UL>   
24053 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24054 </UL><P>
24055 &lt;End of help on this topic&gt;
24056 </BODY>
24057 </HTML>
24058 ====== h_config_folder_spec =====
24059 <HTML>
24060 <HEAD>
24061 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24062 </HEAD>
24063 <BODY>
24064 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24066 This is a list of one or more collections where saved mail is stored. 
24067 The first collection in this list is the default
24068 collection for <EM>Save</EM>s,
24069 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24071 This variable is normally manipulated using the Setup/collectionList screen.
24073 <UL>   
24074 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24075 </UL><P>
24076 &lt;End of help on this topic&gt;
24077 </BODY>
24078 </HTML>
24079 ====== h_config_news_spec =====
24080 <HTML>
24081 <HEAD>
24082 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24083 </HEAD>
24084 <BODY>
24085 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24087 This is a list of collections where news folders are located.
24089 This variable is normally manipulated using the Setup/collectionList screen.
24091 <UL>   
24092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24093 </UL><P>
24094 &lt;End of help on this topic&gt;
24095 </BODY>
24096 </HTML>
24097 ====== h_config_address_book =====
24098 <HTML>
24099 <HEAD>
24100 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24101 </HEAD>
24102 <BODY>
24103 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24105 A list of personal address books.
24106 Each entry in the list is an
24107 optional nickname followed by a pathname or file name relative to the home
24108 directory.
24109 The nickname is separated from the rest of the line with whitespace.
24110 Instead of a local pathname or file name, a remote folder name can be given.
24111 This causes the address book to
24112 be a Remote address book.
24114 Use the Setup/AddressBook screen to modify this variable.
24116 <UL>   
24117 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24118 </UL><P>
24119 &lt;End of help on this topic&gt;
24120 </BODY>
24121 </HTML>
24122 ====== h_config_glob_addrbook =====
24123 <HTML>
24124 <HEAD>
24125 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24126 </HEAD>
24127 <BODY>
24128 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24130 A list of shared address books.  Each entry in the list is an
24131 optional nickname followed by a pathname or file name relative to the home
24132 directory.
24133 A SPACE character separates the nickname from the rest of the line.
24134 Instead of a local pathname or file name, a remote folder name can be given.
24135 This causes the address book to
24136 be a Remote address book.
24137 Global address books are
24138 defined to be ReadOnly.
24140 Use the Setup/AddressBook screen to modify this variable.
24142 <UL>   
24143 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24144 </UL><P>
24145 &lt;End of help on this topic&gt;
24146 </BODY>
24147 </HTML>
24148 ====== h_config_last_vers =====
24149 <HTML>
24150 <HEAD>
24151 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24152 </HEAD>
24153 <BODY>
24154 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24156 This is set automatically by Alpine. 
24157 It is used to keep track of the last version of Alpine that
24158 was run by the user.
24159 Whenever the version number increases, a new version message is printed out.
24160 This may not be set in the system-wide configuration files.
24162 <UL>   
24163 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24164 </UL><P>
24165 &lt;End of help on this topic&gt;
24166 </BODY>
24167 </HTML>
24168 ====== h_config_printer =====
24169 <HTML>
24170 <HEAD>
24171 <TITLE>OPTION: Printer</TITLE>
24172 </HEAD>
24173 <BODY>
24174 <H1>OPTION: Printer</H1>
24176 Your default printer selection.
24178 Use the Setup/Printer screen to modify this variable.
24180 <UL>   
24181 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24182 </UL><P>
24183 &lt;End of help on this topic&gt;
24184 </BODY>
24185 </HTML>
24186 ====== h_config_print_cat =====
24187 <HTML>
24188 <HEAD>
24189 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24190 </HEAD>
24191 <BODY>
24192 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24194 This is an internal Alpine variable.
24195 It will be equal to 1, 2, or 3 depending on whether the default printer is
24196 attached, standard, or a personal print command.
24198 Use the Setup/Printer screen to modify this variable.
24200 <UL>   
24201 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24202 </UL><P>
24203 &lt;End of help on this topic&gt;
24204 </BODY>
24205 </HTML>
24206 ====== h_config_print_command =====
24207 <HTML>
24208 <HEAD>
24209 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24210 </HEAD>
24211 <BODY>
24212 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24214 List of personal print commands.
24216 Use the Setup/Printer screen to modify this variable.
24218 <UL>   
24219 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24220 </UL><P>
24221 &lt;End of help on this topic&gt;
24222 </BODY>
24223 </HTML>
24224 ====== h_config_pat_old =====
24225 <HTML>
24226 <HEAD>
24227 <TITLE>OPTION: Patterns</TITLE>
24228 </HEAD>
24229 <BODY>
24230 <H1>OPTION: Patterns</H1>
24232 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24233 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24234 and Patterns-Other.
24235 Patterns-Scores and Patterns-Filters have been replaced since then by
24236 Patterns-Scores2 and Patterns-Filters2.
24238 Use the Setup/Rules screens to modify these variable.
24240 <UL>   
24241 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24242 </UL><P>
24243 &lt;End of help on this topic&gt;
24244 </BODY>
24245 </HTML>
24246 ====== h_config_pat_roles =====
24247 <HTML>
24248 <HEAD>
24249 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
24250 </HEAD>
24251 <BODY>
24252 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
24254 List of rules used for roles.
24255 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
24256 other options.
24258 Use the Setup/Rules/Roles screen to modify this variable.
24260 <UL>   
24261 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24262 </UL><P>
24263 &lt;End of help on this topic&gt;
24264 </BODY>
24265 </HTML>
24266 ====== h_config_pat_filts =====
24267 <HTML>
24268 <HEAD>
24269 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
24270 </HEAD>
24271 <BODY>
24272 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
24274 List of rules used for filters.
24276 Use the Setup/Rules/Filters screen to modify this variable.
24278 <UL>   
24279 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24280 </UL><P>
24281 &lt;End of help on this topic&gt;
24282 </BODY>
24283 </HTML>
24284 ====== h_config_pat_scores =====
24285 <HTML>
24286 <HEAD>
24287 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
24288 </HEAD>
24289 <BODY>
24290 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
24292 List of rules used for scoring.
24294 Use the Setup/Rules/SetScores screen to modify this variable.
24296 <UL>   
24297 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24298 </UL><P>
24299 &lt;End of help on this topic&gt;
24300 </BODY>
24301 </HTML>
24302 ====== h_config_pat_other =====
24303 <HTML>
24304 <HEAD>
24305 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
24306 </HEAD>
24307 <BODY>
24308 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
24310 List of rules used for miscellaneous configuration.
24312 Use the Setup/Rules/Other screen to modify this variable.
24314 <UL>   
24315 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24316 </UL><P>
24317 &lt;End of help on this topic&gt;
24318 </BODY>
24319 </HTML>
24320 ====== h_config_pat_incols =====
24321 <HTML>
24322 <HEAD>
24323 <TITLE>OPTION: patterns-indexcolors</TITLE>
24324 </HEAD>
24325 <BODY>
24326 <H1>OPTION: patterns-indexcolors</H1>
24328 List of rules used for coloring lines in the index.
24330 Use the Setup/Rules/Indexcolor screen to modify this variable.
24332 <UL>   
24333 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24334 </UL><P>
24335 &lt;End of help on this topic&gt;
24336 </BODY>
24337 </HTML>
24338 ====== h_config_pat_srch =====
24339 <HTML>
24340 <HEAD>
24341 <TITLE>OPTION: patterns-search</TITLE>
24342 </HEAD>
24343 <BODY>
24344 <H1>OPTION: patterns-search</H1>
24346 List of rules used only for searching with the Select command in the MESSAGE INDEX.
24348 Use the Setup/Rules/searCh screen to modify this variable.
24350 <UL>   
24351 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24352 </UL><P>
24353 &lt;End of help on this topic&gt;
24354 </BODY>
24355 </HTML>
24356 ====== h_config_font_name =====
24357 <HTML>
24358 <HEAD>
24359 <TITLE>OPTION: Font Name</TITLE>
24360 </HEAD>
24361 <BODY>
24362 <H1>OPTION: Font Name</H1>
24364 PC-Alpine only.
24366 Name of normal font.
24368 Use the pulldown Config menu to modify this variable.
24370 <UL>   
24371 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24372 </UL><P>
24373 &lt;End of help on this topic&gt;
24374 </BODY>
24375 </HTML>
24376 ====== h_config_font_size =====
24377 <HTML>
24378 <HEAD>
24379 <TITLE>OPTION: Font Size</TITLE>
24380 </HEAD>
24381 <BODY>
24382 <H1>OPTION: Font Size</H1>
24384 PC-Alpine only.
24386 Size of normal font.
24388 Use the pulldown Config menu to modify this variable.
24390 <UL>   
24391 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24392 </UL><P>
24393 &lt;End of help on this topic&gt;
24394 </BODY>
24395 </HTML>
24396 ====== h_config_font_style =====
24397 <HTML>
24398 <HEAD>
24399 <TITLE>OPTION: Font Style</TITLE>
24400 </HEAD>
24401 <BODY>
24402 <H1>OPTION: Font Style</H1>
24404 PC-Alpine only.
24406 Style of normal font.
24408 Use the pulldown Config menu to modify this variable.
24410 <UL>   
24411 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24412 </UL><P>
24413 &lt;End of help on this topic&gt;
24414 </BODY>
24415 </HTML>
24416 ====== h_config_font_char_set =====
24417 <HTML>
24418 <HEAD>
24419 <TITLE>OPTION: Font Character Set</TITLE>
24420 </HEAD>
24421 <BODY>
24422 <H1>OPTION: Font Character Set</H1>
24424 PC-Alpine only.
24426 Character set of normal font.
24428 Use the pulldown Config menu to modify this variable.
24430 <UL>   
24431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24432 </UL><P>
24433 &lt;End of help on this topic&gt;
24434 </BODY>
24435 </HTML>
24436 ====== h_config_print_font_name =====
24437 <HTML>
24438 <HEAD>
24439 <TITLE>OPTION: Print-Font-Name</TITLE>
24440 </HEAD>
24441 <BODY>
24442 <H1>OPTION: Print-Font-Name</H1>
24444 PC-Alpine only.
24446 Name of printer font.
24448 Use the pulldown Config menu to modify this variable.
24450 <UL>   
24451 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24452 </UL><P>
24453 &lt;End of help on this topic&gt;
24454 </BODY>
24455 </HTML>
24456 ====== h_config_print_font_size =====
24457 <HTML>
24458 <HEAD>
24459 <TITLE>OPTION: Print-Font-Size</TITLE>
24460 </HEAD>
24461 <BODY>
24462 <H1>OPTION: Print-Font-Size</H1>
24464 PC-Alpine only.
24466 Size of printer font.
24468 Use the pulldown Config menu to modify this variable.
24470 <UL>   
24471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24472 </UL><P>
24473 &lt;End of help on this topic&gt;
24474 </BODY>
24475 </HTML>
24476 ====== h_config_print_font_style =====
24477 <HTML>
24478 <HEAD>
24479 <TITLE>OPTION: Print-Font-Style</TITLE>
24480 </HEAD>
24481 <BODY>
24482 <H1>OPTION: Print-Font-Style</H1>
24484 PC-Alpine only.
24486 Style of printer font.
24488 Use the pulldown Config menu to modify this variable.
24490 <UL>   
24491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24492 </UL><P>
24493 &lt;End of help on this topic&gt;
24494 </BODY>
24495 </HTML>
24496 ====== h_config_print_font_char_set =====
24497 <HTML>
24498 <HEAD>
24499 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
24500 </HEAD>
24501 <BODY>
24502 <H1>OPTION: Print-Font-Char-Set</H1>
24504 PC-Alpine only.
24506 Character set of printer font.
24508 Use the pulldown Config menu to modify this variable.
24510 <UL>   
24511 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24512 </UL><P>
24513 &lt;End of help on this topic&gt;
24514 </BODY>
24515 </HTML>
24516 ====== h_config_window_position =====
24517 <HTML>
24518 <HEAD>
24519 <TITLE>OPTION: Window-Position</TITLE>
24520 </HEAD>
24521 <BODY>
24522 <H1>OPTION: Window-Position</H1>
24524 PC-Alpine only.
24526 Position on the screen of the Alpine window.
24528 Alpine normally maintains this variable itself, and it is set automatically. 
24529 This variable is provided to those who wish to use the same window position 
24530 across different machines from the same configuration.
24531 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
24532 must also be set for this setting to be used.
24534 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
24535 C is the number of columns, R is the number of rows, and X and Y specify the
24536 top left corner of the window.
24538 <UL>   
24539 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24540 </UL><P>
24541 &lt;End of help on this topic&gt;
24542 </BODY>
24543 </HTML>
24544 ====== h_config_cursor_style =====
24545 <HTML>
24546 <HEAD>
24547 <TITLE>OPTION: Cursor Style</TITLE>
24548 </HEAD>
24549 <BODY>
24550 <H1>OPTION: Cursor Style</H1>
24552 PC-Alpine only.
24554 Cursor style.
24556 Use the pulldown Config menu to modify this variable.
24558 <UL>   
24559 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24560 </UL><P>
24561 &lt;End of help on this topic&gt;
24562 </BODY>
24563 </HTML>
24564 ====== h_config_ldap_servers =====
24565 <HTML>
24566 <HEAD>
24567 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
24568 </HEAD>
24569 <BODY>
24570 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
24572 List of LDAP servers and associated data.
24574 Use the Setup/Directory screen to modify this variable.
24576 <UL>   
24577 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24578 </UL><P>
24579 &lt;End of help on this topic&gt;
24580 </BODY>
24581 </HTML>
24582 ====== h_config_sendmail_path =====
24583 <HTML>
24584 <HEAD>
24585 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
24586 </HEAD>
24587 <BODY>
24588 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
24590 This names the path to an
24591 alternative program, and any necessary arguments, to be used in posting
24592 mail messages. See the Technical notes for more information.
24594 <UL>   
24595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24596 </UL><P>
24597 &lt;End of help on this topic&gt;
24598 </BODY>
24599 </HTML>
24600 ====== h_config_oper_dir =====
24601 <HTML>
24602 <HEAD>
24603 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
24604 </HEAD>
24605 <BODY>
24606 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
24608 This names the root of the
24609 tree to which you are restricted when reading and writing folders and
24610 files. It is usually used in the system-wide,
24611 <EM>fixed</EM> configuration file.
24613 <UL>   
24614 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24615 </UL><P>
24616 &lt;End of help on this topic&gt;
24617 </BODY>
24618 </HTML>
24619 ====== h_config_rshpath =====
24620 <HTML>
24621 <HEAD>
24622 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
24623 </HEAD>
24624 <BODY>
24625 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
24627 Sets the name of the command used to open a UNIX remote shell
24628 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
24630 <UL>   
24631 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24632 </UL><P>
24633 &lt;End of help on this topic&gt;
24634 </BODY>
24635 </HTML>
24636 ====== h_config_rshcmd =====
24637 <HTML>
24638 <HEAD>
24639 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
24640 </HEAD>
24641 <BODY>
24642 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
24644 Sets the format of the command used to
24645 open a UNIX remote shell connection. The default is
24646 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
24647 provided command. The first is for the command's pathname, the second is
24648 for the host to connnect to, the third is for the user to connect as, and
24649 the fourth is for the connection method (typically <CODE>imap</CODE>).
24651 <UL>   
24652 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24653 </UL><P>
24654 &lt;End of help on this topic&gt;
24655 </BODY>
24656 </HTML>
24657 ====== h_config_sshpath =====
24658 <HTML>
24659 <HEAD>
24660 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
24661 </HEAD>
24662 <BODY>
24663 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
24665 Sets the name of the command used to open a UNIX secure shell
24666 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
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_sshcmd =====
24675 <HTML>
24676 <HEAD>
24677 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
24678 </HEAD>
24679 <BODY>
24680 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
24682 Sets the format of the command used to
24683 open a UNIX secure shell connection. The default is
24684 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
24685 provided command. The first is for the command's pathname, the second is
24686 for the host to connnect to, the third is for the user to connect as, and
24687 the fourth is for the connection method (typically <CODE>imap</CODE>).
24689 <UL>   
24690 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24691 </UL><P>
24692 &lt;End of help on this topic&gt;
24693 </BODY>
24694 </HTML>
24695 ====== h_config_new_ver_quell =====
24696 <HTML>
24697 <HEAD>
24698 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
24699 </HEAD>
24700 <BODY>
24701 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
24703 When a new version of Alpine is run for the first time it offers a
24704 special explanatory screen to the user upon startup.  This option
24705 helps control when and if that special screen appears for users that
24706 have previously run Alpine.  It takes as its value an Alpine version
24707 number.  Alpine versions less than the specified value will supress this
24708 special screen while versions equal to or greater than that specified
24709 will behave normally.
24711 <UL>   
24712 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24713 </UL><P>
24714 &lt;End of help on this topic&gt;
24715 </BODY>
24716 </HTML>
24717 ====== h_config_disable_drivers =====
24718 <HTML>
24719 <HEAD>
24720 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
24721 </HEAD>
24722 <BODY>
24723 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
24725 This variable is a list of mail drivers that will be disabled.
24726 The candidates for disabling are listed below.
24727 There may be more in the future if you compile Alpine with
24728 a newer version of the c-client library.
24731 <UL>
24732 <LI> mbox
24733 <LI> mbx
24734 <LI> mh
24735 <LI> mmdf
24736 <LI> mtx
24737 <LI> mx
24738 <LI> news
24739 <LI> phile
24740 <LI> tenex
24741 <LI> unix
24742 </UL>
24745 The <EM>mbox</EM> driver enables the following behavior: if there is a
24746 file called <CODE>mbox</CODE>
24747 in your home directory, and if that file is either empty or in Unix mailbox
24748 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
24749 will automatically transfer mail from the system mail spool directory into the
24750 <CODE>mbox</CODE> file and
24751 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
24752 this will not happen.
24755 It is not recommended to disable the driver that supports the system default
24756 mailbox format. On most non-SCO systems, that driver is the
24757 <EM>unix</EM> driver.
24758 On most SCO systems, it is the <EM>mmdf</EM> driver.
24759 The system default driver may be
24760 configured to something else on your system; check with your system manager
24761 for additional information.
24764 It is most likely not very useful for you to disable any of the drivers other
24765 than possibly <EM>mbox</EM>.
24766 You could disable some of the others if you know for
24767 certain that you don't need them but the performance gain in doing so
24768 is very modest.
24770 <UL>   
24771 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24772 </UL><P>
24773 &lt;End of help on this topic&gt;
24774 </BODY>
24775 </HTML>
24776 ====== h_config_disable_auths =====
24777 <HTML>
24778 <HEAD>
24779 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
24780 </HEAD>
24781 <BODY>
24782 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
24784 This variable is a list of SASL (Simple Authentication and Security
24785 Layer) authenticators that will be disabled.
24786 SASL is a mechanism for
24787 authenticating to IMAP, POP3, SMTP, and other network servers.
24790 Alpine matches its list of supported authenticators with the server to
24791 determine the most secure authenticator that is supported by both.
24792 If no matching authenticators are found, Alpine will revert to plaintext
24793 login (or, in the case of SMTP, will be unable to authenticate at all).
24795 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
24798 Normally, you will not disable any authenticators.
24799 There are two exceptions:
24801 <OL>
24802 <LI> You use a broken server that advertises an authenticator,
24803 but does not actually implement it.
24804 <LI> You have a Kerberos-capable version of Alpine and the server is
24805 also Kerberos-capable, but you can not obtain Kerberos
24806 credentials on the server machine, thus you desire to disable
24807 GSSAPI (which in turn disables Alpine's Kerberos support).
24808 </OL>
24810 It is never necessary to disable authenticators, since Alpine will try
24811 other authenticators before giving up.
24812 However, disabling the relevant authenticator avoids annoying error messages.
24814 <UL>   
24815 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24816 </UL><P>
24817 &lt;End of help on this topic&gt;
24818 </BODY>
24819 </HTML>
24820 ====== h_config_abook_metafile =====
24821 <HTML>
24822 <HEAD>
24823 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
24824 </HEAD>
24825 <BODY>
24826 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
24828 This is usually set by Alpine and is the name of a file
24829 that contains data about
24830 remote address books and remote configuration files.
24832 <UL>   
24833 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24834 </UL><P>
24835 &lt;End of help on this topic&gt;
24836 </BODY>
24837 </HTML>
24838 ====== h_config_composer_wrap_column =====
24839 <HTML>
24840 <HEAD>
24841 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
24842 </HEAD>
24843 <BODY>
24844 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
24847 This option specifies an aspect of Alpine's Composer.  This gives the
24848 maximum width that auto-wrapped lines will have.  It's also the maximum
24849 width of lines justified using the <A HREF="h_compose_justify">^J
24850 Justify</A> command.  The normal default
24851 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
24852 in order to
24853 prevent very long lines from being sent in outgoing mail.  When the mail
24854 is actually sent, trailing spaces will be stripped off of each line.
24857 <UL>   
24858 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24859 </UL><P>
24860 &lt;End of help on this topic&gt;
24861 </BODY>
24862 </HTML>
24863 ====== h_config_deadlets =====
24864 <HTML>
24865 <HEAD>
24866 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
24867 </HEAD>
24868 <BODY>
24869 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
24872 This option affects Alpine's behavior when you cancel a message being
24873 composed.  Alpine's usual behavior is to write the canceled message to
24874 a file named 
24875 <!--chtml if pinemode="os_windows"-->
24876 &quot;DEADLETR&quot;,
24877 <!--chtml else-->
24878 &quot;dead.letter&quot; in your home directory,
24879 <!--chtml endif-->
24880 overwriting any previous message.
24882 If you set this option to a value higher than one, then that many copies
24883 of dead letter files will be saved.
24884 For example, if you set this option to &quot;3&quot; then you may have
24885 files named
24886 <!--chtml if pinemode="os_windows"-->
24887 &quot;DEADLETR&quot;,
24888 &quot;DEADLETR2&quot;, and
24889 &quot;DEADLETR3&quot;.
24890 <!--chtml else-->
24891 &quot;dead.letter&quot;,
24892 &quot;dead.letter2&quot;, and
24893 &quot;dead.letter3&quot; in your home directory.
24894 <!--chtml endif-->
24895 In this example, the most recently cancelled message will be in
24896 <!--chtml if pinemode="os_windows"-->
24897 &quot;DEADLETR&quot;,
24898 <!--chtml else-->
24899 &quot;dead.letter&quot;,
24900 <!--chtml endif-->
24901 and the third most recently cancelled message will be in
24902 <!--chtml if pinemode="os_windows"-->
24903 &quot;DEADLETR3&quot;.
24904 <!--chtml else-->
24905 &quot;dead.letter3&quot;.
24906 <!--chtml endif-->
24907 The fourth most recently cancelled message will no longer be saved.
24910 If you set this option to zero, then NO record of canceled messages is
24911 maintained.
24913 If the feature
24914 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
24915 is set, that overrides whatever you set for this option.
24916 If this option had existed at the time, then the Quell feature would not
24917 have been added, but it is still there for backwards compatibility.
24918 So, in order for this option to have the desired effect, make sure the
24919 Quell feature is turned off.
24922 <UL>   
24923 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24924 </UL><P>
24925 &lt;End of help on this topic&gt;
24926 </BODY>
24927 </HTML>
24928 ====== h_config_maxremstream =====
24929 <HTML>
24930 <HEAD>
24931 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
24932 </HEAD>
24933 <BODY>
24934 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
24936 This option affects low-level behavior of Alpine.
24937 The default value for this option is <EM>3</EM>.
24938 If your INBOX is accessed using the IMAP protocol
24939 from an IMAP server, that connection is kept open throughout the
24940 duration of your Alpine session, independent of the value of this option.
24941 The same is true of any 
24942 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
24943 you have defined.
24944 This option controls Alpine's behavior when connecting to remote IMAP folders
24945 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
24946 It specifies the maximum number of remote IMAP connections (other than
24947 those mentioned above) that Alpine will use for accessing the rest of your
24948 folders.
24949 If you set this option to zero, you will turn off most remote connection
24950 re-use.
24951 It's difficult to understand exactly what this option does, and it is usually
24952 fine to leave it set to its default value.
24953 It is probably more likely that you will be interested in setting the
24954 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
24955 instead of changing the value of this option.
24956 A slightly longer explanation of what is going on with this option
24957 is given in the next paragraphs.
24960 There are some time costs involved in opening and closing remote IMAP 
24961 folders, the main costs being the time you have to wait for the connection
24962 to the server and the time for the folder to open.
24963 Opening a folder may involve not only the time the server takes to do its
24964 processing but time that Alpine uses to do filtering.
24965 These times can vary widely.
24966 They depend on how loaded the server is, how large
24967 the folder being opened is, and how you set up filtering, among other things.
24968 Once Alpine has opened a connection to a particular folder, it will attempt
24969 to keep that connection open in case you use it again.
24970 In order to do this,
24971 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
24972 this option) IMAP connections you have alloted for this purpose.
24974 For example, suppose the value of this option is set to &quot;2&quot;.
24975 If your INBOX is accessed on a remote server using the IMAP protocol, that
24976 doesn't count as one of the remote connections but it is always kept open.
24977 If you then open another IMAP folder, that would be your first
24978 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
24979 If you open a third folder the second will be left open, in case you
24980 return to it.
24981 You won't be able to tell it has been left open.
24982 It will appear to be closed when you leave the folder but the connection
24983 will remain in the background.
24984 Now suppose you go back to the second folder (the first folder after the
24985 INBOX).
24986 A connection to that folder is still open so you won't have to wait
24987 for the startup time to open it.
24988 Meanwhile, the connection to the third folder will be left behind.
24989 Now, if you open a fourth folder, you will bump into the
24990 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
24991 than INBOX and you have the option set to &quot;2&quot;.
24992 The connection that is being used for
24993 the third folder will be re-used for this new fourth folder.
24994 If you go back to the third folder after this, it is no longer already
24995 connected when you get there.
24996 You'll still save some time since Alpine will re-use the connection to the
24997 fourth folder and you have already logged in on that connection,
24998 but the folder will have to be re-opened from scratch.
25000 If a folder is large and the startup cost is dominated by the time it takes
25001 to open that folder or to run filters on it, then it will pay to make the
25002 value of this option large enough to keep it open.
25003 On the other hand, if you only revisit a handful of folders or if
25004 the folders are small, then it might
25005 make more sense to keep this number small so that the reconnect
25006 time (the time to start up a new connection and authenticate)
25007 is eliminated instead.
25009 You may also need to consider the impact on the server.
25010 On the surface, a larger number here may cause a larger impact on the
25011 server, since you will have more connections open to the server.
25012 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25013 associated with reopening a folder, but the <EM>server</EM> will be
25014 avoiding those costs as well.
25016 When twenty five minutes pass without any active use of an IMAP connection
25017 being saved for possible re-use, that connection will be shut down,
25020 <UL>   
25021 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25022 </UL><P>
25023 &lt;End of help on this topic&gt;
25024 </BODY>
25025 </HTML>
25026 ====== h_config_permlocked =====
25027 <HTML>
25028 <HEAD>
25029 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25030 </HEAD>
25031 <BODY>
25032 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25034 This option affects low-level behavior of Alpine.
25035 There is no default value for this option.
25036 It is related to the options
25037 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25038 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25039 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25042 Note: changes made to this list take effect the next time you open a
25043 folder in the list.
25046 This is a list of folders that will be permanently kept open once they
25047 are first opened.
25048 The names in this list may be either the nickname of an Incoming folder
25049 or the full technical specification of a folder.
25050 The folders in this list need not be remote IMAP folders, they could usefully
25051 be local folders, as well.
25052 If a folder in the list is a newsgroup or is not accessed either locally
25053 or via IMAP, then the entry will be ignored.
25054 For example, folders accessed via NNTP or POP3 will not be kept open, since
25055 the way that new mail is found with those protocols involves closing and
25056 reopening the connection.
25058 Once a Stay Open folder has been opened, new-mail checking will continue
25059 to happen on that folder for the rest of the Alpine session.
25060 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25061 need to be added explicitly.
25063 Another difference that you may notice between a Stay Open folder and a
25064 non-Stay Open folder is which message is selected as the current message
25065 when you enter the folder index.
25066 Normally, the starting position for an incoming folder (which most Stay Open
25067 folders will likely be) is controlled by the
25068 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25069 However, if a folder is a Stay Open folder, when you re-enter the folder
25070 after the first time the current message will be the same as it was when
25071 you left the folder.
25072 An exception is made if you use the TAB command to get to the folder.
25073 In that case, the message number will be incremented by one from what it
25074 was when you left the folder.
25076 The above special behavior is thought to be useful.
25077 However, it is special and different from what you might at first expect.
25078 The feature
25079 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25080 may be used to turn off this special treatment.
25082 If the message that was current when you left the folder no longer exists,
25083 then the regular startup rule will be used instead.
25086 <UL>   
25087 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25088 </UL><P>
25089 &lt;End of help on this topic&gt;
25090 </BODY>
25091 </HTML>
25092 ====== h_config_viewer_overlap =====
25093 <html>
25094 <header>
25095 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25096 </header>
25097 <body>
25098 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25100 This option specifies an aspect of Alpine's Message Viewing screen.  When
25101 the space bar is used to page forward in a message, the number of lines
25102 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25103 bottom of the screen.  That is, if this was set to two lines, then the
25104 bottom two lines of the screen would be repeated on the top of the next
25105 screen.  The normal default value is "2".<p>
25106 <UL>   
25107 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25108 </UL><P>
25109 &lt;End of help on this topic&gt;
25110 </body>
25111 </html>
25112 ====== h_config_scroll_margin =====
25113 <HTML>
25114 <HEAD>
25115 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25116 </HEAD>
25117 <BODY>
25118 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25120 This option controls when Alpine's line-by-line scrolling occurs.
25121 Typically, when a selected item is at the top or bottom screen edge
25122 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25123 displayed items are scrolled down or up by a single line.
25126 This option allows you to tell Alpine the number of lines from the top and
25127 bottom screen edge that line-by-line paging should occcur.  For example,
25128 setting this value to one (1) will cause Alpine to scroll the display
25129 vertically when you move to select an item on the display's top or
25130 bottom edge.
25133 By default, this variable is zero, indicating that scrolling happens
25134 when you move up or down to select an item immediately off the display's
25135 top or bottom edge.
25138 <UL>   
25139 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25140 </UL><P>
25141 &lt;End of help on this topic&gt;
25142 </BODY>
25143 </HTML>
25144 ====== h_config_wordseps =====
25145 <HTML>
25146 <HEAD>
25147 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25148 </HEAD>
25149 <BODY>
25150 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25152 This option affects how a &quot;word&quot; is defined in the composer.
25153 The definition of a word is used when using the Forward Word and Backward
25154 Word commands in the composer, as well as when using the spell checker.
25155 Whitespace is always considered a word separator.
25156 Punctuation (like question marks, periods, commas, and so on) is always
25157 a word separator if it comes at the end of a word.
25158 By default, a punctuation character that is in the middle of a word does
25159 not break up that word as long as the character before and the character
25160 after it are both alphanumeric.
25161 If you add a character to this option it will be considered a
25162 word separator even when it occurs in the middle of an alphanumeric word.
25163 For example, if you want to skip through each part of an address instead
25164 of skipping the whole address at once you might want to include &quot;@&quot;
25165 and &quot;.&quot; in this list.
25166 If you want the word-skipper to stop on each part of a UNIX filename you
25167 could add &quot;/&quot; to the list.
25168 The equal sign and dash are other possibilities you might find helpful.
25170 <UL>   
25171 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25172 </UL><P>
25173 &lt;End of help on this topic&gt;
25174 </BODY>
25175 </HTML>
25176 ====== h_config_reply_indent_string =====
25177 <HTML>
25178 <HEAD>
25179 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25180 </HEAD>
25181 <BODY>
25182 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25184 This option specifies an aspect of Alpine's Reply command.
25185 When a message is replied to and the text of the message is included, the
25186 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25187 to each line indicating it is quoted text.
25188 (In case you haven't seen this before, &quot;string&quot; is a technical term
25189 that means chunk of text.)
25192 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25193 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25194 use one of the standard values,
25195 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25198 This option specifies a different value for that string.
25199 If you wish to use a string that begins or ends with a space,
25200 enclose the string in double quotes.
25203 Besides simple text, the prepended string can be based
25204 on the message being replied to.
25205 The following tokens are substituted for the message's corresponding value:
25207 <DL>
25208 <DT>_FROM_</DT>
25209 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25210 If the name is longer than six characters, only the first six characters are
25211 used.
25212 </DD>
25214 <DT>_NICK_</DT>
25215 <DD>This token gets replaced with the nickname of the message sender's
25216 address as found in your addressbook.
25217 If no addressbook entry is found,
25218 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25219 If the nickname is longer than six characters, only the first six characters are
25220 used.
25221 </DD>
25223 <DT>_INIT_</DT>
25224 <DD>This token gets replaced with the initials of the sender of the message.
25225 </DD>
25227 </DL>
25229 NOTE: When the
25230 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25231 feature is enabled, you are given the opportunity to edit the string, whether 
25232 it is the default or one automatically generated using the above tokens.
25234 If you change your <!--#echo var="VAR_reply-indent-string"-->
25235 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25236 quoted text will not be flowed
25237 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
25238 when you reply.
25239 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
25240 set to the default value.
25242 <UL>   
25243 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25244 </UL><P>
25245 &lt;End of help on this topic&gt;
25246 </BODY>
25247 </HTML>
25248 ====== h_config_quote_replace_string =====
25249 <HTML>
25250 <HEAD>
25251 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
25252 </HEAD>
25253 <BODY>
25254 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
25256 This option specifies what string to use as a quote when <b>viewing</b> a
25257 message.  The standard way of quoting messages when replying is the string
25258 &quot;&gt;&nbsp;&quot; (quote space).
25259 With this variable set, viewing a message will
25260 replace occurrences of 
25261 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
25262 This setting works best when
25263 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
25264 or the equivalent setting in your correspondents' mail programs
25265 is set to the default
25266 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
25267 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
25269 By default, this setting will only work on messages that are flowed, which is
25270 the default way of sending messages for many mail clients including
25271 Alpine.  Enable the feature
25272 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
25273 to also have quote-replacement performed on non-flowed messages.
25276 Setting this option will replace  &quot;&gt;&quot; and 
25277 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
25278 spaces. To preserve those spaces enclose the full string in double quotes.
25280 No padding to separate the text of the message from the quote string is
25281 added. This means that if you do not add trailing spaces to the value of
25282 this variable, text will be displayed right next to the quote string,
25283 which may be undesirable. This can be avoided by adding a new string
25284 separated by a space from your selection of quote string replacement. This
25285 last string will be used for padding. For example, setting this variable to 
25286 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
25287 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
25288 a space from the last quote string to make it more readable.
25290 One possible setting for this variable could be
25291 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
25292 would have the effect of indenting each level of quoting four spaces and
25293 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
25294 more discernible by setting colors for quoted text.
25296 Replying to or forwarding the viewed message will preserve the original
25297 formatting of the message, so quote-replacement will not be performed on
25298 messages that are being composed.
25300 <UL>   
25301 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25302 </UL><P>
25303 &lt;End of help on this topic&gt;
25304 </BODY>
25305 </HTML>
25306 ====== h_config_empty_hdr_msg =====
25307 <HTML>
25308 <HEAD>
25309 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
25310 </HEAD>
25311 <BODY>
25312 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
25314 When sending, if both the To and Cc fields are empty and you
25315 are sending the message to a Bcc,
25316 Alpine will put a special address in the To line.  The default value is:
25319 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
25322 The reason for this is to avoid embarrassment caused by some Internet
25323 mail transfer software that interprets a &quot;missing&quot;
25324 <SAMP>To:</SAMP> header as an error and replaces it with an
25325 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
25326 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
25327 Bcc.  You may change the part of this message that comes before the
25328 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
25329 variable to something else.
25332 The normal default is &quot;undisclosed-recipients&quot;.
25335 <UL>   
25336 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25337 </UL><P>
25338 &lt;End of help on this topic&gt;
25339 </BODY>
25340 </HTML>
25341 ====== h_config_status_msg_delay =====
25342 <HTML>
25343 <HEAD>
25344 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
25345 </HEAD>
25346 <BODY>
25347 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
25349 This option has evolved over time, causing the possible values to be
25350 counter-intuitive.
25351 Read carefully before you set this option.
25352 First we explain what the option does, then there is a longer discussion
25353 following that.
25355 If this is set to zero, the default value, it has <EM>no</EM> effect.
25356 Positive and negative values serve two similar, but different purposes.
25358 If it is set to a positive number, it causes the cursor to move to the
25359 status line whenever a status message is printed and pause there for this
25360 many seconds.
25361 It will probably only be useful if the 
25362 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
25363 also turned on.
25364 Setting this option to a positive number can only be used to
25365 <EM>increase</EM> the status message delay.
25366 This may be useful for Braille displays, or other non-traditional displays.
25368 If it is set to a negative number the interpretation is a bit complicated.
25369 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
25370 allow you to read important status messages.
25371 Of course, this may cause you to miss some important messages.
25372 If you see a message flash by but miss what it says you can use the
25373 Journal command from the MAIN MENU to read it.
25374 If you set this option to a negative value, the delay will be
25375 no more than one second less than the absolute value
25376 of the value you set.
25377 So if you set it to -1, the delay will be no more than zero seconds, no
25378 delay at all.
25379 If you set it to -2, the delay will be no more than 1 second.
25380 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
25381 If the delay that Alpine would have used by default is less than this delay,
25382 then the smaller delay set by Alpine will be used.
25383 Setting this option to a negative value can only reduce the amount of
25384 delay, never increase it.
25386 Here is a more detailed explanation.
25387 Status messages are the messages that show up spontaneously in the
25388 status message line, usually the third line from the bottom of the screen.
25389 By default, Alpine assigns each status message it produces a minimum
25390 display time.
25391 Some status messages have a minimum display time of zero.
25392 You can see an example of such a message by paging up in this help text
25393 until you reach the top of the screen.
25394 If you try to page past the top you will see the message
25396 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
25398 in the status line.
25399 If there is another more important use of the status message line this message
25400 might be replaced quickly, or it even might not be shown at all.
25401 However, if there is no reason to get rid of the message, it might stay
25402 there for several seconds while you read the help.
25403 An example where it is replaced immediately happens when you page up in
25404 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
25405 command right after paging up.
25406 The message will disappear immediately without causing a delay (unless you
25407 have set this option to a positive value) to allow you to type input for
25408 the &quot;WhereIs&quot; command.
25409 Since it isn't a very important message, Alpine has set its minimum display
25410 time to zero seconds.
25412 Other messages have minimum display times of three or more seconds.
25413 These are usually error messages that Alpine thinks you ought to see.
25414 For example, it might be a message about a failed Save or a failed folder open.
25415 It is often the case that this minimum display time won't delay you in
25416 any way because the status message line is not needed for another reason.
25417 However, there are times when Alpine has to delay what it is doing in
25418 order to display a status message for the minimum display time.
25419 This happens when a message is being displayed and Alpine wants to ask
25420 for input from the keyboard.
25421 For example, when you Save a message you use the status message line.
25422 You get a prompt there asking for the name of the folder to save to.
25423 If there is a status message being displayed that has not
25424 yet displayed for its minimum
25425 time Alpine will display that status message surrounded with the characters
25426 &gt; and &lt; to show you that it is delaying.
25427 That might happen, for example, if you tried to save to a folder that
25428 caused an error, then followed that immediately with another Save command.
25429 You might find yourself waiting for a status message like
25431 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
25433 to finish displaying for three seconds.
25434 If that is something you find happening to you frequently, you may use
25435 negative values of this option to decrease or eliminate that delay, at
25436 the risk of missing the message.
25438 <UL>   
25439 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25440 </UL><P>
25441 &lt;End of help on this topic&gt;
25442 </BODY>
25443 </HTML>
25444 ====== h_config_active_msg_interval =====
25445 <HTML>
25446 <HEAD>
25447 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
25448 </HEAD>
25449 <BODY>
25450 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
25452 When Alpine is delayed for some reason it usually shows that
25453 something is happening with a small animated display in the status
25454 message line near the bottom of the screen.
25455 This option sets how frequently the characters (for example, a spinning bar)
25456 in the active status message lines are updated.
25457 At most, it can be set to be udpated 20 times per second. 
25460 Setting this value to zero will prevent display of the animations
25461 altogether.
25464 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
25465 can be used to remove the randomness from this animated display.
25468 <UL>   
25469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25470 </UL><P>
25471 &lt;End of help on this topic&gt;
25472 </BODY>
25473 </HTML>
25474 ====== h_config_mailchecknoncurr =====
25475 <HTML>
25476 <HEADER>
25477 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
25478 </HEADER>
25479 <BODY>
25480 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
25482 This option is closely related to the
25483 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25484 option, as well as the
25485 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
25486 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
25487 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
25488 new-mail checking is disabled and this option will have no effect.
25490 Normally this option is set to zero, which means that the value used will be
25491 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
25492 If you set this option to a value different from zero
25493 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
25494 then that is the check interval that will be used
25495 for folders that are not the currently open folder or the INBOX.
25496 You may not even have any folders that are noncurrent and not the INBOX.
25497 If you do, it is likely that they are due to
25498 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25499 you have configured.
25500 This option also affects the rate of mail checking done on cached
25501 connections to folders you previously had open but are no longer actively
25502 using.
25503 You aren't expected to understand that last sentence, but if you are interested
25504 take a look at
25505 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
25506 and the related options.
25508 <UL>   
25509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25510 </UL><P>
25511 &lt;End of help on this topic&gt;
25512 </BODY>
25513 </HTML>
25514 ====== h_config_fifopath =====
25515 <HTML>
25516 <HEADER>
25517 <TITLE>OPTION: NewMail FIFO Path</TITLE>
25518 </HEADER>
25519 <BODY>
25520 <H1>OPTION: NewMail FIFO Path</H1>
25522 This option is only available in UNIX Alpine.
25523 However, there is a very similar feature built in to PC-Alpine.
25524 In PC-Alpine's Config menu at the top of the screen
25525 is an option called &quot;New Mail Window&quot;.
25527 You may have Alpine create a FIFO special file (also called a named pipe) where
25528 it will send a one-line message each time a new message is received in
25529 the current folder, the INBOX, or any open
25530 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
25531 To protect against two different Alpines both writing to the same FIFO, Alpine
25532 will only create the FIFO and write to it if it doesn't already exist.
25534 A possible way to use this option would be to have a separate window
25535 on your screen running the command
25537 <CENTER><SAMP>cat filename</SAMP></CENTER>
25539 where &quot;filename&quot; is the name of the file given for this option.
25540 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
25541 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
25542 You may be tempted to use &quot;tail -f filename&quot; to view the new
25543 mail log.
25544 However, the common implementations of the tail command will not do what you
25545 are hoping.
25547 The width of the messages produced for the FIFO may be altered with the
25548 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
25550 On some systems, fifos may only be created in a local filesystem.
25551 In other words, they may not be in NFS filesystems.
25552 This requirement is not universal.
25553 If the system you are using supports it, it should work.
25554 (It is often the case that your home directory is in an NFS filesystem.
25555 If that is the case, you might try using a file in the &quot;/tmp&quot;
25556 filesystem, which is usually a local filesytem.)
25557 Even when it is possible to use an NFS-mounted filesystem as a place to name
25558 the fifo (for example, your home directory), it will still be the case that
25559 the reader (probably the &quot;cat&quot; command) and the
25560 writer (Alpine) of the fifo must be running on the same system.
25562 <UL>   
25563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25564 </UL><P>
25565 &lt;End of help on this topic&gt;
25566 </BODY>
25567 </HTML>
25568 ====== h_config_newmailwidth =====
25569 <HTML>
25570 <HEADER>
25571 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
25572 </HEADER>
25573 <BODY>
25574 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
25576 For UNIX Alpine, this option is only useful if you have turned on the
25577 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
25578 That option causes new mail messages to be sent to a fifo file.
25579 Those messages will be 80 characters wide by default.
25580 You can change the width of those messages by changing this option.
25581 For example, if you are reading those messages in another window you might
25582 want to set this width to the width of that other window.
25584 If you are using PC-Alpine, it has an option in the Config menu to turn
25585 on the &quot;New Mail Window&quot;.
25586 This present option also controls the width of that window.
25588 <UL>   
25589 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25590 </UL><P>
25591 &lt;End of help on this topic&gt;
25592 </BODY>
25593 </HTML>
25594 ====== h_config_mailcheck =====
25595 <HTML>
25596 <HEADER>
25597 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
25598 </HEADER>
25599 <BODY>
25600 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
25602 This option specifies, in seconds,
25603 how often Alpine will check for new mail.
25604 If set to zero, new-mail checking is disabled.
25605 (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
25606 current message is the last message of the folder.)
25607 There is a minimum value for this option, normally 15 seconds.
25608 The default value is normally 150 seconds.
25609 The higher you set this option, the easier it is on the server.
25611 There are some situations where automatic new-mail checking does not work.
25612 See the discussion about new-mail checking in
25613 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
25615 The new-mail checking will not happen exactly at the frequency that you specify.
25616 For example, Alpine may elect to defer a non-INBOX mail check if you
25617 are busy typing.
25618 Or, it may check more frequently than you have specified if that is
25619 thought to be necessary to keep the server from closing the connection
25620 to the folder due to inactivity.
25621 If Alpine checks for new mail as a side effect of another command, it will reset
25622 the timer, so that new-mail checking may seem to happen irregularly instead of
25623 every X seconds like clockwork.
25625 If you are anxious to know about new mail as soon as possible, set the check
25626 interval low, and you'll know about the new mail by approximately
25627 that amount of time after it arrives.
25628 If you aren't so worried about knowing right away, set this option to a
25629 higher value.
25630 That will save the server some processing time and may save you some of
25631 the time you spend waiting for new-mail checks to happen if you are
25632 dealing with a slow server or slow network connection.
25634 If you suspect that new-mail checking is causing slow downs for you,
25635 you may want to look into the options
25636 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
25637 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
25638 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
25639 which refine when mail checking is done.
25641 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
25642 there is a minimum time
25643 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
25644 between new-mail checks.
25645 Because of this minimum you may notice that new mail does not
25646 appear promptly when you expect it.
25647 The reason for this is to protect the server from over-zealous opening and
25648 closing of the Mail Drop folder, since that is a costly operation.
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_quell_checks_comp =====
25657 <HTML>
25658 <HEAD>
25659 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
25660 </HEAD>
25661 <BODY>
25662 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
25664 This option is closely related to the
25665 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25666 option, the
25667 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
25668 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
25670 If this option is set, then the normal new-mail checking that happens
25671 while you are composing will not happen for folders other than your
25672 INBOX (which depends on the setting
25673 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
25675 You might want to set this option if you are experiencing delays while
25676 composing that you think might be related to the speed of the new-mail
25677 checks.
25679 Even with this option turned on, an occasional new-mail check may be done
25680 in order to keep the server from killing the connection to the folder.
25681 For example, IMAP servers may remove a connection to a folder if there
25682 has been no activity on the connection for 30 minutes or more.
25683 Instead of letting that happen, Alpine will check for new mail before the
25684 30 minutes is up even though you have turned on this feature to quell
25685 those checks.
25687 Besides new-mail checks, checkpoint operations on the folders
25688 will also be quelled when you set this option.
25689 The purpose of checkpointing is to write the changes to a folder out to
25690 disk periodically in order to avoid losing those changes when system or
25691 software problems occur.
25692 New-mail checking and checkpointing while you are not composing are not
25693 affected by this option.
25696 &lt;End of help on this topic&gt;
25697 </BODY>
25698 </HTML>
25699 ====== h_config_quell_checks_comp_inbox =====
25700 <HTML>
25701 <HEAD>
25702 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
25703 </HEAD>
25704 <BODY>
25705 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
25707 This option is closely related to the
25708 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25709 option, the
25710 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
25711 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
25713 If this option is set, then the normal new-mail checking that happens
25714 while you are composing will not happen for your INBOX.
25715 Checking of other folders is controlled in a similar way with the
25716 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
25718 You might want to set this option if you are experiencing delays while
25719 composing that you think might be related to the speed of the new-mail
25720 checks.
25722 Even with this option turned on, an occasional new-mail check may be done
25723 in order to keep the server from killing the connection to the folder.
25724 For example, IMAP servers may remove a connection to a folder if there
25725 has been no activity on the connection for 30 minutes or more.
25726 Instead of letting that happen, Alpine will check for new mail before the
25727 30 minutes is up even though you have turned on this feature to quell
25728 those checks.
25730 Besides new-mail checks, checkpoint operations on the INBOX
25731 will also be quelled when you set this option.
25732 The purpose of checkpointing is to write the changes to a folder out to
25733 disk periodically in order to avoid losing those changes when system or
25734 software problems occur.
25735 New-mail checking and checkpointing while you are not composing are not
25736 affected by this option.
25738 &lt;End of help on this topic&gt;
25739 </BODY>
25740 </HTML>
25741 ====== h_config_maildropcheck =====
25742 <HTML>
25743 <HEADER>
25744 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
25745 </HEADER>
25746 <BODY>
25747 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
25749 New-mail checking for a
25750 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
25751 mail checking for a regular folder.
25752 One of the differences is that the connection to the Mail Drop is not
25753 kept open and so the cost of checking
25754 (delay for you and additional load for the server) may be significant.
25755 Because of this additional cost we set a minimum time that
25756 must pass between checks.
25757 This minimum only applies to the automatic checking done by Alpine.
25758 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
25759 at the end of a folder index, then the check is done right away.
25761 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
25762 new-mail checks.
25763 You may want to set this minimum high in order to avoid experiencing some
25764 of the delays associated with the checks.
25765 Note that the time between checks is still controlled by the regular
25766 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
25767 When Alpine is about to do an automatic check for new mail (because
25768 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
25769 new-mail check
25770 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
25771 the Mail Drop is checked for new mail as well.
25772 Therefore, it is only useful to set this option to a value that is higher
25773 than the <!--#echo var="VAR_mail-check-interval"-->.
25775 If this option is set to zero, automatic Mail Drop new-mail
25776 checking is disabled.
25777 There is a minimum value, normally 60 seconds.
25778 The default value is normally 60 seconds as well.
25779 This applies to the INBOX and to the currently open folder if that is
25780 different from the INBOX.
25783 <UL>   
25784 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25785 </UL><P>
25786 &lt;End of help on this topic&gt;
25787 </BODY>
25788 </HTML>
25789 ====== h_config_nntprange =====
25790 <HTML>
25791 <HEADER>
25792 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
25793 </HEADER>
25794 <BODY>
25795 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
25797 This option applies only to newsgroups accessed using the NNTP protocol.
25798 It does not, for example,
25799 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
25802 When you open a connection to a News server using the NNTP protocol, you
25803 normally have access to all of the articles in each newsgroup.
25804 If a server keeps a large backlog of messages it may speed performance
25805 some to restrict attention to only the newer messages in a group.
25806 This option allows you to set how many article numbers should be checked
25807 when opening a newsgroup.
25808 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
25809 of messages you ever want to see.
25810 For example, if you only ever wanted to look at the last 500 messages in each
25811 newsgroup you could set this option to 500.
25812 In actuality, it isn't quite that.
25813 Instead, for performance reasons, it specifies the range of article
25814 numbers to be checked, beginning
25815 with the highest numbered article and going backwards from there.
25816 If there are messages that have been canceled or deleted
25817 their article numbers are still counted as part of the range.
25819 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
25820 numbers
25821 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
25823 to be considered when reading a newsgroup.
25824 The number of messages that show up in your index will be less than or equal
25825 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
25828 The purpose of this option is simply to speed up access when reading news.
25829 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
25830 numbers, and can avoid downloading any information about the ignored articles.
25831 There is a cost you pay for this speedup.
25832 That cost is that there is no way for you to see those ignored articles.
25833 The articles that come before the range you specify are invisible to you and
25834 to Alpine, as if they did not exist at all.
25835 There is no way to see those messages using, for example, an unexclude command
25836 or something similar.
25837 The only way to see those articles is to set this option high enough (or
25838 set it to zero) and then to reopen the newsgroup.
25841 If this option is set to 0 (which is also the default),
25842 then the range is unlimited.
25843 This option applies globally to all NNTP servers and to all newsgroups
25844 on those servers.
25845 There is no way to set different values for different newsgroups or servers.
25848 <UL>   
25849 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25850 </UL><P>
25851 &lt;End of help on this topic&gt;
25852 </BODY>
25853 </HTML>
25854 ====== h_config_news_active =====
25855 <html>
25856 <header>
25857 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
25858 </header>
25859 <body>
25860 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
25862 This option tells Alpine where to look for the "active file" for newsgroups
25863 when accessing news locally, rather than via NNTP.  The default path is
25864 usually "/usr/lib/news/active".<p>
25865 <UL>   
25866 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25867 </UL><P>
25868 &lt;End of help on this topic&gt;
25869 </body>
25870 </html>
25871 ====== h_config_news_spool =====
25872 <html>
25873 <header>
25874 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
25875 </header>
25876 <body>
25877 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
25879 This option tells Alpine where to look for the "news spool" for newsgroups
25880 when accessing news locally, rather than via NNTP.  The default path is
25881 usually "/var/spool/news".<p>
25882 <UL>   
25883 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25884 </UL><P>
25885 &lt;End of help on this topic&gt;
25886 </body>
25887 </html>
25888 ====== h_config_image_viewer =====
25889 <html>
25890 <header>
25891 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
25892 </header>
25893 <body>
25894 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
25895 <body>
25896 This option specifies the program Alpine should call to view MIME
25897 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
25898 no longer needed, but remains for backward compatibility.  The more
25899 general method for associating external printing and viewing programs with
25900 specific MIME data types is to use the system's (or your personal)
25901 "mailcap" configuration file.<p>
25902 <UL>   
25903 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25904 </UL><P>
25905 &lt;End of help on this topic&gt;
25906 </body>
25907 </html>
25908 ====== h_config_domain_name =====
25909 <HTML>
25910 <HEAD>
25911 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
25912 </HEAD>
25913 <BODY>
25914 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
25916 This option is used only if the 
25917 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
25918 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
25919 strips the hostname from your return (&quot;From&quot;) address and when 
25920 completing unqualified addresses that you enter into the composer.
25922 If you set this, see also the <A HREF="h_config_quell_local_lookup">
25923 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
25926 <!--chtml if pinemode="os_windows"-->
25927 <P>This option is not applicable to PC-Alpine.
25928 <!--chtml else-->
25930 <!--chtml endif-->
25931 <UL>
25932 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25933 </UL>
25935 &lt;End of help on this topic&gt;
25936 </BODY>
25937 </HTML>
25938 ====== h_config_prune_date =====
25939 <HTML>
25940 <HEAD>
25941 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
25942 </HEAD>
25943 <BODY>
25944 <H1>OPTION: Last-Time-Prune Question</H1>
25946 This value records the last time you were asked about deleting old
25947 sent-mail.
25948 It is set automatically by Alpine at the beginning of each month.
25949 In the past, if you wished to suppress the monthly sent-mail
25950 pruning feature, you could set this to a date in the future.
25951 This value is relative to the year 1900, so 
25952 to set this, for example, to October 2005, use 105.10.
25954 You can still do that if you wish, or you can use the
25955 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
25956 a little more convenient to use.
25958 <UL>   
25959 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25960 </UL><P>
25961 &lt;End of help on this topic&gt;
25962 </BODY>
25963 </HTML>
25964 ====== h_config_goto_default =====
25965 <HTML>
25966 <HEAD>
25967 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
25968 </HEAD>
25969 <BODY>
25970 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
25972 This value affects Alpine's behavior when you use the Goto command.
25973 Alpine's usual behavior has two parts.  If your current folder is
25974 &quot;Inbox&quot;, Alpine will offer the last open folder as the
25975 default.  If the current folder is other than &quot;Inbox&quot;,
25976 &quot;Inbox&quot; is offered as the default.
25979 The available options include:
25981 <DL>
25983  <DT>folder-in-first-collection</DT>
25985  <DD> Alpine will offer the most recently visited folder in the default
25986 collection found in the &quot;Collection List&quot; screen as the default.
25987 </DD>
25989  <DT> inbox-or-folder-in-first-collection</DT>
25991  <DD> If the current folder is &quot;Inbox&quot;,
25992 Alpine will offer the most recently visited folder in the
25993 default collection found in the &quot;Collection List&quot; screen.
25994 If the current folder is other than &quot;Inbox&quot;,
25995 &quot;Inbox&quot; is offered as the default.
25996 </DD>
25998  <DT> inbox-or-folder-in-recent-collection</DT>
26000  <DD> This is Alpine's default behavior.
26001 If the current folder is &quot;Inbox&quot;,
26002 Alpine will offer the last open
26003 folder as the default.
26004 If the current folder is other than &quot;Inbox&quot;,
26005 &quot;Inbox&quot; is offered as the default.
26006 </DD>
26008  <DT> first-collection-with-inbox-default</DT>
26010  <DD> Instead of offering the most recently visited folder in the default
26011 collection, the default collection is offered but with &quot;Inbox&quot; as
26012 the default folder.
26013 If you type in a folder name it will be in the default collection.
26014 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26015 </DD>
26017  <DT> most-recent-folder</DT>
26019  <DD> The last accepted value simply causes the most recently opened
26020 folder to be offered as the default regardless of the currently opened
26021 folder.
26022 </DD>
26023 </DL>
26026 NOTE: The default while a newsgroup is open remains the same; the last
26027 open newsgroup.
26030 <UL>   
26031 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26032 </UL><P>
26033 &lt;End of help on this topic&gt;
26034 </BODY>
26035 </HTML>
26036 ====== h_config_thread_lastreply_char =====
26037 <HTML>
26038 <HEAD>
26039 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26040 </HEAD>
26041 <BODY>
26042 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26044 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26045 INDEX display when using a
26046 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26047 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26048 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26049 The value of this option is a single character.
26050 This character is used instead of the vertical line character when there are
26051 no more replies directly to the parent of the current message.
26052 It can be used to &quot;round-off&quot; the bottom of the vertical line
26053 by setting it to a character such as a backslash (&#92;) or
26054 a backquote (&#96;).
26055 The default value of this option is the backslash character (&#92;).
26056 This option may not be set to the Empty Value.
26057 In that case, the default will be used instead.
26060 <UL>   
26061 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26062 </UL><P>
26063 &lt;End of help on this topic&gt;
26064 </BODY>
26065 </HTML>
26066 ====== h_config_thread_indicator_char =====
26067 <HTML>
26068 <HEAD>
26069 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26070 </HEAD>
26071 <BODY>
26072 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26074 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26075 INDEX display when using a
26076 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26077 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26078 The value of this option is a single character.
26079 This character is used to indicate that part of a thread (a conversation) is
26080 hidden beneath a message.
26081 The message could be expanded
26082 if desired with the &quot;/&quot; Collapse/Expand command.
26083 By default, the value of this option is the greater than sign (&gt;).
26085 If this option is set to the Empty Value, then the column (and the following
26086 blank column) will be deleted from the display.
26089 This option is closely related to the
26090 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26091 Another similar option that affects the thread display is the
26092 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26095 <UL>   
26096 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26097 </UL><P>
26098 &lt;End of help on this topic&gt;
26099 </BODY>
26100 </HTML>
26101 ====== h_config_thread_exp_char =====
26102 <HTML>
26103 <HEAD>
26104 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26105 </HEAD>
26106 <BODY>
26107 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26109 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26110 INDEX display when using a
26111 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26112 than &quot;none&quot;.
26113 The value of this option is a single character.
26114 This character is used to indicate that part of a thread has been expanded
26115 and could be collapsed if desired with
26116 the &quot;/&quot; Collapse/Expand command.
26117 By default, the value of this option is a dot (.).
26119 If this option is set to the Empty Value, then the column (and the following
26120 blank column) will be deleted from the display.
26123 This option is closely related to the
26124 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26125 Another similar option that affects the thread display is the
26126 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26129 <UL>   
26130 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26131 </UL><P>
26132 &lt;End of help on this topic&gt;
26133 </BODY>
26134 </HTML>
26135 ====== h_config_thread_index_style =====
26136 <HTML>
26137 <HEAD>
26138 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26139 </HEAD>
26140 <BODY>
26141 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26143 When a folder is sorted by Threads or OrderedSubject,
26144 this option will affect the INDEX displays.
26147 The possible values for this option are:
26149 <DL>
26150 <DT>regular-index-with-expanded-threads</DT>
26151 <DD>This is the default display.
26152 If the configuration option
26153 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26154 is set to something other than &quot;none&quot;, then this setting
26155 will cause Alpine to start off with a MESSAGE INDEX with all of
26156 the threads expanded.
26157 That is, each message will have a line in the MESSAGE INDEX display.
26158 The Collapse/Expand command (/) may be used to manually collapse or
26159 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26161 This setting affects the display when the folder is first threaded.
26162 The collapsed state may also be re-initialized by re-sorting the folder manually
26163 using the SortIndex command ($).
26164 After re-sorting the threads will once again all be expanded, even if you
26165 have previously collapsed some of them.
26167 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26168 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26169 in a different order.
26170 </DD>
26172 <DT>regular-index-with-collapsed-threads</DT>
26173 <DD>If the configuration option
26174 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26175 is set to something other than &quot;none&quot;, then this setting
26176 will cause Alpine to start out with all of the threads collapsed instead of
26177 starting out with all of the threads expanded.
26178 The Collapse/Expand command (/) may be used to manually collapse or
26179 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26181 This setting affects the display when the folder is first threaded.
26182 The collapsed state may also be re-initialized by re-sorting the folder manually
26183 using the SortIndex command ($).
26184 After re-sorting the threads will once again all be collapsed, even if you
26185 have previously expanded some of them.
26186 </DD>
26188 <DT>separate-index-screen-always</DT>
26189 <DD>With this setting and the next, you will see an index of threads
26190 instead of an
26191 index of messages, provided you have sorted by Threads or OrderedSubject.
26193 The THREAD INDEX contains a '*' in the first column if any message in the thread
26194 is marked Important.
26195 If not, it contains a '+' if any message in the thread is to you.
26196 The second column is blank. The third column contains a 'D' if all of the
26197 messages in the thread are deleted.
26198 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26200 When you view a particular thread from the THREAD INDEX you will be
26201 in the MESSAGE INDEX display
26202 but the index will only contain messages from the thread you are viewing.
26203 </DD>
26205 <DT>separate-index-screen-except-for-single-messages</DT>
26206 <DD>This is very similar to the option above.
26207 When you are in the THREAD INDEX, one of the available commands
26208 is &quot;ViewThd&quot;.
26209 With the setting &quot;separate-index-screen-always&quot; (the option above)
26210 when you view a particular thread you will be in the
26211 MESSAGE INDEX display and the index will only contain messages from
26212 the thread you are viewing.
26213 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26214 will be an index with only one message in it.
26215 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26216 setting instead, then that index that contains a single message
26217 will be skipped and you will go directly from the THREAD INDEX into the
26218 MESSAGE TEXT screen.
26219 </DD>
26221 </DL>
26224 <UL>   
26225 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26226 </UL><P>
26227 &lt;End of help on this topic&gt;
26228 </BODY>
26229 </HTML>
26230 ====== h_config_thread_disp_style =====
26231 <HTML>
26232 <HEAD>
26233 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26234 </HEAD>
26235 <BODY>
26236 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
26238 When a folder is sorted by Threads or OrderedSubject,
26239 this option will affect the MESSAGE INDEX display.
26240 By default, Alpine will display the MESSAGE INDEX in the
26241 &quot;show-thread-structure&quot; style if a folder is sorted
26242 by Threads or OrderedSubject.
26245 The possible values for this option are:
26247 <DL>
26248 <DT>none</DT>
26249 <DD>Regular index display.
26250 The same index line as would be displayed without threading is used.
26251 The only difference will be in the order of the messages.
26252 </DD>
26254 <DT>show-thread-structure</DT>
26255 <DD>Threaded Subjects will be indented and vertical bars and horizontal
26256 lines will be added to make it easier to see the relationships among
26257 the messages in a thread (a conversation).
26258 </DD>
26260 <DT>mutt-like</DT>
26261 <DD>This is the same as the option above except that the Subject
26262 is suppressed (is blank) if it matches the previous Subject in the thread.
26263 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
26264 Here is an example of what a mutt-like index might look like.
26265 In this example, the first column represents the message number, the
26266 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
26267 is set to &quot;regular-index-with-expanded-threads&quot;, and the
26268 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
26269 is set to a backslash:
26270 <PRE>
26271 &nbsp;&nbsp;&nbsp;1    Some topic
26272 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
26273 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
26274 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
26275 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
26276 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
26277 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
26278 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
26279 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
26280 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
26281 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
26282 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
26283 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
26284 &nbsp;&nbsp;&nbsp;14    Next topic
26285 </PRE>
26286 </DD>
26288 <DT>indent-subject-1</DT>
26289 <DD>Threaded Subjects will be indented one space per level of the conversation.
26290 The bars and lines that show up in the show-thread-structure display will
26291 not be there with this style.
26292 </DD>
26294 <DT>indent-subject-2</DT>
26295 <DD>Same as above but indent two spaces per level instead of one space.
26296 </DD>
26298 <DT>indent-from-1</DT>
26299 <DD>Similar to indent-subject-1, except that instead of indenting the
26300 Subject field one space the From field of a thread will be indented one
26301 space per level of the conversation.
26302 </DD>
26304 <DT>indent-from-2</DT>
26305 <DD>Same as above but indent two spaces per level instead of one space.
26306 </DD>
26308 <DT>show-structure-in-from</DT>
26309 <DD>The structure of the thread is illustrated with indenting, vertical bars,
26310 and horizontal lines just like with the show-thread-structure option, but
26311 the From field is used to show the relationships instead of the Subject field. 
26312 </DD>
26314 </DL>
26317 <UL>   
26318 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26319 </UL><P>
26320 &lt;End of help on this topic&gt;
26321 </BODY>
26322 </HTML>
26323 ====== h_config_pruning_rule =====
26324 <HTML>
26325 <HEAD>
26326 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
26327 </HEAD>
26328 <BODY>
26329 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
26331 By default, Alpine will ask at the beginning of each month whether or not
26332 you want to rename your sent-mail folder to a name like sent-mail-month-year.
26333 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
26334 change the format of the folder to sent-mail-yyyy-mm.)
26335 It will also ask whether you would like to delete old sent-mail folders.
26336 If you have defined
26337 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
26339 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
26340 Alpine will also ask about pruning those folders.
26343 With this option you may provide an automatic answer to these questions.
26344 The default value is to ask you what you'd like to do.
26347 The six possible values for this option are:
26349 <DL>
26350 <DT>ask about rename, ask about deleting</DT>
26351 <DD>This is the default.
26352 Alpine will ask whether you want to rename the folders and whether you
26353 want to delete each of the old folders.
26354 </DD>
26356 <DT>ask about rename, don't delete</DT>
26357 <DD>Alpine will ask whether you want to rename the folders, but won't
26358 ask about or delete old folders.
26359 </DD>
26361 <DT>always rename, ask about deleting</DT>
26362 <DD>This means you want to always answer yes and have Alpine automatically
26363 rename the folder if possible.
26364 You will also be asked about deleting old folders.
26365 </DD>
26367 <DT>always rename, don't delete</DT>
26368 <DD>This means you want to always answer yes and have Alpine automatically
26369 rename the folder if possible.
26370 There will be no deleting of old folders.
26371 </DD>
26373 <DT>don't rename, ask about deleting</DT>
26374 <DD>This means you want to always answer no.
26375 Alpine will not rename the folder.
26376 You will be asked about deleting old folders.
26377 </DD>
26379 <DT>don't rename, don't delete</DT>
26380 <DD>This means you want to always answer no.
26381 Alpine will not rename the folder.
26382 There will be no deleting of old folders, either.
26383 </DD>
26384 </DL>
26387 <UL>   
26388 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26389 </UL><P>
26390 &lt;End of help on this topic&gt;
26391 </BODY>
26392 </HTML>
26393 ====== h_config_reopen_rule =====
26394 <HTML>
26395 <HEAD>
26396 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
26397 </HEAD>
26398 <BODY>
26399 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
26401 Alpine normally checks for new mail in the currently open folder
26402 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
26405 There are some situations where automatic new-mail checking does not work.
26406 For example, if a mail folder is opened using the POP protocol or a newsgroup
26407 is being read using the NNTP protocol, then new-mail checking is disabled.
26410 It may be possible to check for new mail in these cases by reopening the
26411 folder.
26412 Alpine does not do this for you automatically, but you may do the commands
26413 manually to cause this to happen.
26414 You reopen by going back to the folder list screen from the message
26415 index screen with the &quot;&lt;&quot; command,
26416 and then going back into the message index screen with
26417 the &quot;&gt;&quot; command.
26418 (Actually, any method you would normally use to open a folder will work the
26419 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
26420 For example, the GoTo Folder command will work, or you may use L to go to the
26421 Folder List screen and Carriage Return to reopen the folder.)
26424 There are some cases where Alpine knows that reopening the folder should
26425 be useful as a way to discover new mail.
26426 At the time of this writing, connections made using the POP protocol,
26427 news reading using the NNTP protocol, local news reading, and local
26428 ReadOnly folders that are in the traditional UNIX or the MMDF format all
26429 fall into this category.
26430 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
26431 has no way of knowing, so it might also just be an exercise in futility.
26432 All remote, ReadOnly folders other than those listed just above fall into this
26433 category.
26434 The setting of this option together with the type of folder
26435 controls how Alpine will react to the apparent attempt to reopen a folder.
26438 If you don't reopen, then you will just be back in
26439 the message index with no change.
26440 You left the index and came back, but the folder remained &quot;open&quot;
26441 the whole time.
26442 However, if you do reopen the folder, the folder is closed and then reopened.
26443 In this case, the current state of the open folder is lost.
26444 The New status, Important and Answered flags,
26445 selected state, Zoom state, collapsed or expanded state of threads,
26446 current message number,
26447 and any other temporary state is all lost when the reopen happens.
26448 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
26451 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
26452 several places.
26453 That really implies the case where Alpine knows it is a good way to discover
26454 new mail, which is more than just POP and NNTP, but POP and NNTP are
26455 the cases of most interest.
26456 This option probably has more possible values than it deserves. They are:
26458 <DL>
26459 <DT>Always reopen</DT>
26460 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
26461 whenever you type a command that implies a reopen, regardless of the
26462 access method.
26463 In other words, it is assumed you would always answer Yes if asked
26464 about reopening.
26465 </DD>
26467 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
26468 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26469 will ask you whether to reopen other remote folders,
26470 with a default answer of Yes.
26471 </DD>
26473 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
26474 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26475 will ask you whether to reopen other remote folders,
26476 with a default answer of No.
26477 </DD>
26479 <DT>Yes for POP/NNTP, No for other remote</DT>
26480 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
26481 will assume a No answer for all other remote folders.
26482 </DD>
26484 <DT>Always ask [Yes]</DT>
26485 <DD>Alpine will not differentiate based on access method.
26486 It will always ask for all remote folders, with a default answer of Yes.
26487 </DD>
26489 <DT>Always ask [No]</DT>
26490 <DD>Alpine will not differentiate based on access method.
26491 It will always ask for all remote folders, with a default answer of No.
26492 </DD>
26494 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
26495 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
26496 of Yes.
26497 It will never attempt to reopen other remote folders.
26498 </DD>
26500 <DT>Ask about POP/NNTP [No], No for other remote</DT>
26501 <DD>This is the default.
26502 Alpine will ask if the access method is POP or NNTP, with a default answer
26503 of No.
26504 It will never attempt to reopen other remote folders.
26505 </DD>
26507 <DT>Never reopen</DT>
26508 <DD>Alpine will never attempt to reopen already open folders.
26509 </DD>
26510 </DL>
26513 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
26514 any of the other situations where it is likely that reopening is a good way
26515 to discover new mail.
26518 There is an alternative that may be of useful in some situations.
26519 Instead of manually checking for new mail you can set up a
26520 <A HREF="h_maildrop">Mail Drop</A>
26521 and automatically check for new mail.
26524 <UL>   
26525 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26526 </UL><P>
26527 &lt;End of help on this topic&gt;
26528 </BODY>
26529 </HTML>
26530 ====== h_config_inc_startup =====
26531 <HTML>
26532 <HEAD>
26533 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
26534 </HEAD>
26535 <BODY>
26536 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
26538 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
26539 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
26540 It determines which message will be the <EM>current message</EM> when
26541 the folder is first opened.
26542 The default value is &quot;first-unseen&quot;.
26545 The seven possible values for this option are:
26547 <DL>
26548 <DT>first-unseen</DT>
26549 <DD>The current message is set to the first
26550 unseen message that has not been marked deleted, or the last message if
26551 all of the messages have been seen previously.
26552 Messages which have not been seen or which have been seen but re-marked
26553 as New are considered unseen messages.
26554 See the note at the bottom of this help about newsgroups.
26555 </DD>
26557 <DT>first-recent</DT>
26558 <DD>Similar to the default, but rather than starting on the first
26559 unseen message Alpine starts on the first <EM>recent</EM> message.
26560 A message is recent if it arrived since the last time the folder was
26561 open.  This value causes the current message to be set to the first
26562 recent message if there is one, otherwise to the last
26563 message in the folder.
26564 </DD>
26566 <DT>first-important</DT>
26567 <DD>This will result in the current message being set to the first
26568 message marked Important (but not Deleted).
26569 If no messages are marked Important, then it will be the last message.
26570 Messages are marked Important by <EM>you</EM>, not by the sender, using
26572 <A HREF="h_common_flag">Flag command</A>.
26573 Or they may be marked Important by an Alpine
26574 <A HREF="h_mainhelp_filtering">Filter</A>
26575 that you have set up.
26576 </DD>
26578 <DT>first-important-or-unseen</DT>
26579 <DD>This selects the first of the first unseen and the first important
26580 messages.
26581 </DD>
26583 <DT>first-important-or-recent</DT>
26584 <DD>This selects the first of the first recent and the first important
26585 messages.
26586 </DD>
26588 <DT>first</DT>
26589 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
26590 If all messages are deleted you start on the last message.
26591 </DD>
26593 <DT>last</DT>
26594 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
26595 If all messages are deleted you start on the last message.
26596 </DD>
26597 </DL>
26600 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
26601 &quot;first-recent&quot; are the same and are affected by whether or not the
26602 feature 
26603 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
26604 is turned on. 
26605 Also, there is no permanent storage in news for an Important flag.
26606 This means that no messages will be marked Important when a newsgroup is
26607 first opened.
26610 <UL>   
26611 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26612 </UL><P>
26613 &lt;End of help on this topic&gt;
26614 </BODY>
26615 </HTML>
26616 ====== h_config_browser =====
26617 <HTML>
26618 <HEAD>
26619 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
26620 </HEAD>
26621 <BODY>
26622 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
26623 <!--chtml if pinemode="os_windows"-->
26624 PC-Alpine users do not need to enter anything here, unless:<UL>
26625 <LI> they want to override, for use with Alpine, the application defined
26626 in the Windows operating system for handling URLs; or
26627 <LI> they are (planning on) using the same configuration file with 
26628 Unix Alpine.
26629 </UL>
26631 Note that if using a viewer that has a space in its path, you should
26632 use the DOS name for that directory or file. Example:
26633 <PRE>
26634 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
26635 </PRE>
26636 <HR><P>
26637 <!--chtml endif-->
26638 This option affects Alpine's handling of URLs that are found in 
26639 messages you read.  Normally, only URLs Alpine can handle directly
26640 are automatically offered for selection in the &quot;Message
26641 Text&quot; screen.  When one or more applications
26642 capable of deciphering URLs on their command line are added here, Alpine
26643 will choose the first available to display URLs it cannot handle directly.
26644 A viewer's availability is based on its being specified with a <B>full
26645 directory path</B> and the evaluation of any optionally supplied
26646 parameters described below.
26649 Additionally, to support various connection methods and applications, each
26650 entry in this list can optionally begin with one or more of
26651 the following special tokens.  The allowed tokens include:
26654 <DL>
26655 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
26656 <DD>
26657 The <VAR>test-string</VAR> is a shell command that Alpine will run to
26658 evaluate a viewer's availability.  The command specified by the test
26659 string is run and if its resulting exit status is non-zero, Alpine will
26660 not consider the associated viewer for use.
26661 </DD>
26663 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
26664 <DD>
26665 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
26666 URL schemes that are to be used with the associated viewer.  This is
26667 the way to configure Alpine to recognize URLs other than the built-in set.
26669 It can also be used to override Alpine's built-in handlers.
26670 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
26671 and Alpine would use (provided it passed all other criteria) the associated
26672 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
26674 </DD>
26675 </DL>
26678 By default, Alpine will simply append a space character followed by the
26679 selected URL prior to launching the command in your specified SHELL.  You can
26680 optionally specify where in the command the selected URL should appear
26681 by using the &quot;_URL_&quot; token.  All occurrences found in the command
26682 will be replaced with the selected URL before the command is handed
26683 to the shell.  If such replacement occurs, the default appending of the
26684 selected URL does not take place.
26687 NOTE: If the viewer you specify has any command-line arguments,
26688 including the &quot;_URL_&quot; token, you will need to add a
26689 double-quote character before the command path and after the last
26690 argument (see the &quot;lynx&quot; example below).
26693 So, here are some example entries:
26694 <PRE>
26695 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
26696               &quot;/usr/local/bin/lynx _URL_&quot;
26697               C:&#92;BIN&#92;NETSCAPE.BAT
26698 </PRE>
26700 This example shows that for the first viewer in the list to be used
26701 the environment variable &quot;DISPLAY&quot; must be defined.  If it
26702 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
26703 If neither condition is met,
26704 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
26705 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
26706 If the path to &quot;lynx&quot; is invalid,
26707 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
26708 Note that the last
26709 entry is a DOS/Windows path.  This is one way to support Alpine running
26710 on more than one architecture with the same configuration file.<P>
26712 <!--chtml if pinemode="os_windows"-->
26713 <!--chtml else-->
26714 Note that depending on the type of browser used and the method of 
26715 its invocation (such as whether it will open in a separate window) from
26716 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
26717 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
26718 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
26719 In other words, launching the browser from Alpine may make Alpine 
26720 &quot;disappear&quot; (although it is still &quot;running&quot;)
26721 until you close the browser again.<P>  
26722 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
26723 environment: for advanced users and  systems administrators</A>
26724 </UL>
26725 <!--chtml endif-->
26726 <P>If you are unsure what browsers are available on your system or how to 
26727 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
26728 local computing support staff.
26729 <P><UL>
26730 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26731 </UL>
26733 &lt;End of help on this topic&gt;
26734 </BODY>
26735 </HTML>
26736 ====== h_config_browser_xterm =====
26737 <HTML>
26738 <HEAD>
26739 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
26740 </HEAD>
26741 <BODY>
26742 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
26743 environment: for advanced users and  systems administrators</H1>
26744 If you are using Alpine with an X-terminal (emulator) and want to define an 
26745 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
26746 you may want to do so in a manner that causes any <B>already</B> 
26747 invoked viewer application to be used for viewing URLs you select from Alpine 
26748 messages, and a <B>new</B> URL-viewer process to be 
26749 started <B>only</B> if the same application has <B>not already</B> 
26750 been launched -- for one reason, to avoid file-locking contentions among 
26751 multiple invocations of the same URL-viewer application.  
26752 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
26753 option does not do this.)  A method of doing that would be:<OL>
26754 <LI> use 
26755 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
26756 check (using commands appropriate for your Unix shell
26757 in place of <VAR>test-string</VAR>) for the presence of a 
26758 lockfile created by the URL-viewer application -- which implies that the 
26759 application is already running, though this is not foolproof. 
26760 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
26761 application with its appropriate command line option(s) to 
26762 show the URL selected from the Alpine message in an already open window of 
26763 that application, or perhaps in a new window of that application.  
26765 <LI> In the 
26766 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
26767 application without those command line options, but this time using the 
26768 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
26769 is defined.
26770 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
26771 windows environment (for instance, using VT-100 terminal emulation), you 
26772 may wish to specify a non-X windows URL-viewer application such as Lynx
26773 as the last entry.
26774 </OL><BR>
26775 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
26776 the command shell, the URL-viewer application(s), and possibly the specific 
26777 version of the latter, you are using.  
26779 Relevant command 
26780 line options for the Netscape browser for showing URLs (selected from Alpine) 
26781 when Netscape is already running are discussed in the document
26782 &quot;Remote Control of UNIX Netscape&quot; 
26783 found at the URL (as of 12 Aug. 1998):
26786 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
26788 <P>(If the URL-viewer application is 
26789 <B>not</B> running on the same host as Alpine, but being launched from an 
26790 applications server, you may not be able to use the command line options for 
26791 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
26793 <!--chtml if this-method="shown-to-work"-->
26794 An example using the Korn shell and the Netscape browser (first entry wrapped 
26795 because of its length, but should all appear on one line):
26797 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
26799 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
26800               &quot;/usr/local/bin/lynx '_URL_'&quot;
26802 <!--chtml endif-->
26804 <UL>   
26805 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26806 </UL><P>
26807 &lt;End of help on this topic&gt;
26808 </BODY>
26809 </HTML>
26810 ====== h_config_enable_full_hdr =====
26811 <HTML>
26812 <HEAD>
26813 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
26814 </HEAD>
26815 <BODY>
26816 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
26818 This feature enables the &quot;H Full Headers&quot; command which toggles between
26819 the display of all headers in the message and the normal edited view of
26820 headers.  The Full Header command also controls which headers are included
26821 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
26822 Full Header mode will respect the
26823 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
26824 feature setting.)
26826 If Full Header mode is turned on and you Forward a message, you will
26827 be asked if you'd like to forward the message as an attachment, as opposed
26828 to including the text of the message in the body of your new message.
26830 If you have also turned on the
26831 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
26832 option then the Full Headers command actually rotates through three states
26833 instead of just two.
26834 The first is the normal view with long quotes suppressed.
26835 The second is the normal view but with the long quotes included.
26836 The last enables the display of all headers in the message.
26837 When using Export, Pipe, Print, Forward, or Reply the quotes are
26838 never suppressed, so the first two states are identical.
26840 Normally, the Header Mode will reset
26841 to the default behavior when moving to a new message.
26842 The mode can be made to persist from message to message by setting the feature
26843 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
26845 <UL>   
26846 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26847 </UL><P>
26848 &lt;End of help on this topic&gt;
26849 </BODY>
26850 </HTML>
26851 ====== h_config_enable_full_hdr_and_text =====
26852 <HTML>
26853 <HEAD>
26854 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
26855 </HEAD>
26856 <BODY>
26857 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
26859 This feature affects how the &quot;H Full Headers&quot; command displays
26860 message text.  If set, the raw message text will be displayed.  This
26861 especially affects MIME formatted email, where the entire MIME format
26862 will be displayed.  This feature similarly affects how messages are
26863 included for the Export, Pipe, Print, Forward, and Reply functions.
26865 When viewing a raw message that has attachments with this feature set,
26866 you will not be able to view attachments without first leaving full 
26867 headers mode.  This is because MIME parsing is not done on the raw message.
26869 <UL>   
26870 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26871 </UL><P>
26872 &lt;End of help on this topic&gt;
26873 </BODY>
26874 </HTML>
26875 ====== h_config_enable_pipe =====
26876 <HTML>
26877 <HEAD>
26878 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
26879 </HEAD>
26880 <BODY>
26881 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
26883 This feature enables the "| Pipe" command that sends the current message
26884 to the specified command for external processing.
26887 A short description of how the pipe command works is given
26888 <A HREF="h_pipe_command">here</A>.
26891 <UL>   
26892 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26893 </UL><P>
26894 &lt;End of help on this topic&gt;
26895 </BODY>
26896 </HTML>
26897 ====== h_config_quell_full_hdr_reset =====
26898 <HTML>
26899 <HEAD>
26900 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
26901 </HEAD>
26902 <BODY>
26903 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
26905 The <A HREF="h_common_hdrmode">HdrMode Command</A>
26906 normally resets to the default state when switching to a new message.
26907 For example, if you've used the &quot;H&quot; command to turn on Full
26908 Headers for a message you are viewing, and then you type the Next command
26909 to look at the next message, the full headers will no longer be shown.
26910 Setting this feature disables that reset.
26911 Instead, the Header Mode remains the same from message to message.
26914 The presence or absence of the HdrMode command is determined by the
26915 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
26916 Feature-List option.
26918 <UL>   
26919 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26920 </UL><P>
26921 &lt;End of help on this topic&gt;
26922 </BODY>
26923 </HTML>
26924 ====== h_config_enable_tab_complete =====
26925 <HTML>
26926 <HEAD>
26927 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
26928 </HEAD>
26929 <BODY>
26930 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
26932 This feature enables the TAB key when at a prompt for a filename. In this
26933 case, TAB will cause the partial name already entered to be automatically
26934 completed, provided the partial name is unambiguous.
26935 This feature is on by default.
26937 Similarly, this feature also enables TAB completion of address book
26938 nicknames when at a prompt for a nickname,
26939 or when typing in an address field in the composer.
26941 &lt;End of help on this topic&gt;
26942 </BODY>
26943 </HTML>
26944 ====== h_config_quit_wo_confirm =====
26945 <HTML>
26946 <HEAD>
26947 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
26948 </HEAD>
26949 <BODY>
26950 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
26952 This feature controls whether or not Alpine will ask for confirmation when a
26953 Quit command is received.
26955 &lt;End of help on this topic&gt;
26956 </BODY>
26957 </HTML>
26958 ====== h_config_quote_replace_noflow =====
26959 <HTML>
26960 <HEAD>
26961 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
26962 </HEAD>
26963 <BODY>
26964 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
26966 This feature, which is only active when
26967 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
26968 also set,
26969 enables quote-replacement on non-flowed messages.  It is off
26970 by default because a non-flowed message is more dependent on its format,
26971 and thus quote-replacement may cause less-than-pleasing results.
26972 Setting this feature will cause quote-replacement similar to that of flowed
26973 messages, but with the added possibility of long lines being wrapped
26974 into new lines if the Quote-Replacement-String is longer than the string
26975 it is replacing, which is &quot;&gt;&nbsp;&quot;.
26977 &lt;End of help on this topic&gt;
26978 </BODY>
26979 </HTML>
26980 ====== h_config_enable_jump =====
26981 <HTML>
26982 <HEAD>
26983 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
26984 </HEAD>
26985 <BODY>
26986 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
26988 When this feature is set you may enter a number (followed by RETURN)
26989 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
26990 screens.  In other words, it obviates the need for typing the "J" for the
26991 Jump command.
26993 &lt;End of help on this topic&gt;
26994 </BODY>
26995 </HTML>
26996 ====== h_config_enable_alt_ed =====
26997 <HTML>
26998 <HEAD>
26999 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27000 </HEAD>
27001 <BODY>
27002 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27004 If this feature is set (the default), and the 
27005 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27006 <B>is not</B> set, entering
27007 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27008 for the name of the editor you would like to use.
27010 If the environment variable $EDITOR is set, its value will be offered as
27011 a default.
27013 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27014 <B>is</B> set, the ^_ key will activate the specified
27015 editor without prompting, in which case it is not necessary to
27016 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
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_alt_ed_now =====
27025 <HTML>
27026 <HEAD>
27027 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27028 </HEAD>
27029 <BODY>
27030 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27032 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27033 variable are both set, Alpine will
27034 automatically activate the specified editor when the cursor is moved from
27035 the header of the message being composed into the message text.  For
27036 replies, the alternate editor will be activated immediately.  If this
27037 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27038 automatically ask for the name of an alternate editor when the cursor
27039 is moved out of the header being composed, or if a reply is being done.
27041 <P><UL>
27042 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27043 </UL>
27045 &lt;End of help on this topic&gt;
27046 </BODY>
27047 </HTML>
27048 ====== h_config_enable_bounce =====
27049 <HTML>
27050 <HEAD>
27051 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27052 </HEAD>
27053 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27054 <BODY>
27056 Setting this feature enables the "B Bounce" command, which will prompt
27057 for an address and *remail* the message to the new recipient.  This command
27058 is used to re-direct messages that you have received in error, or need to
27059 be redirected for some other reason (e.g. list moderation).  The final
27060 recipient will see a header indicating that you have Resent the msg, but
27061 the message's From: header will show the original author of the message,
27062 and replies to it will go back to that author, and not to you.
27064 &lt;End of help on this topic&gt;
27065 </BODY>
27066 </HTML>
27067 ====== h_config_enable_agg_ops =====
27068 <HTML>
27069 <HEAD>
27070 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27071 </HEAD>
27072 <BODY>
27073 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27075 When this feature is set you may use the commands and subcommands that relate to
27076 performing operations on more than one message at a time.  We call these
27077 &quot;aggregate operations&quot;.  In particular, the 
27078 <!--chtml if pinemode="function_key"-->&quot;F5
27079 <!--chtml else-->&quot;;
27080 <!--chtml endif--> Select&quot;, 
27082 <!--chtml if pinemode="function_key"-->
27083 &quot;F6
27084 <!--chtml else-->
27085 &quot;A 
27086 <!--chtml endif-->
27087 Apply&quot;, and 
27088 <!--chtml if pinemode="function_key"-->
27089 &quot;F4
27090 <!--chtml else-->
27091 &quot;Z 
27092 <!--chtml endif-->
27093 Zoom&quot; commands are enabled by this feature.  Select is used to
27094 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27095 then be used to apply any message command to all of the selected/tagged
27096 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27097 view between just those Selected and all messages in the folder.
27099 This feature also enables the 
27100 <!--chtml if pinemode="function_key"-->
27101 &quot;F7&quot; 
27102 <!--chtml else-->
27103 &quot;^X&quot; 
27104 <!--chtml endif-->
27106 subcommand in the MESSAGE INDEX 
27107 WhereIs command that causes all messages matching the WhereIs argument to 
27108 become selected; and the Select, Select Current, and ZoomMode commands in the
27109 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27111 Some related help topics are
27112 <UL>
27113 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27114 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27115 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27116 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27117 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27118 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27119 </UL>
27121 <UL>   
27122 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27123 </UL><P>
27124 &lt;End of help on this topic&gt;
27125 </BODY>
27126 </HTML>
27128 ====== h_config_enable_flag =====
27129 <HTML>
27130 <HEAD>
27131 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27132 </HEAD>
27133 <BODY>
27134 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27136 Setting this feature enables the
27137 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27138 command that allows you to
27139 manipulate the status flags associated with a message.  By default, Flag
27140 will set the "Important" flag, which results in an asterisk being
27141 displayed in column one of the MESSAGE INDEX for such messages.
27143 &lt;End of help on this topic&gt;
27144 </BODY>
27145 </HTML>
27146 ====== h_config_flag_screen_default =====
27147 <HTML>
27148 <HEAD>
27149 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27150 </HEAD>
27151 <BODY>
27152 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27154 The feature modifies the behavior of the
27155 <a href="h_common_flag">Flag</a>
27156 command (provided it too is
27157 <A HREF="h_config_enable_flag">enabled</A>).
27158 By default, when the "* Flag" command is selected,
27159 Alpine offers a prompt to set one of several flags and also offers the
27160 option of entering the detailed flag manipulation screen via the "^T"
27161 key. Enabling this feature causes Alpine to immediately enter the detailed
27162 flag screen rather than first offer the simple prompt.
27164 <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.
27166 &lt;End of help on this topic&gt;
27167 </BODY>
27168 </HTML>
27169 ====== h_config_flag_screen_kw_shortcut =====
27170 <HTML>
27171 <HEAD>
27172 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27173 </HEAD>
27174 <BODY>
27175 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27177 This feature modifies the behavior of the
27178 <a href="h_common_flag">Flag</a> command
27179 and the <A HREF="h_index_cmd_select">Select</A> command.
27180 This feature is set by default.
27181 When this feature is not set, when the "* Flag" command is selected,
27182 Alpine offers a prompt to set one of several flags and also offers the
27183 option of entering the detailed flag manipulation screen via the "^T"
27184 key.
27185 If you have
27186 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27187 defined, then enabling this feature adds a shortcut way to set or unset
27188 keywords.
27189 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27190 a keyword if you've given it a nickname) and that will set the keyword.
27192 An example is easier to understand than the explanation.
27193 The flag command can always be used to set the system flags.
27194 For example, to set the Answered flag you would type
27196 <CENTER><SAMP>* A</SAMP></CENTER>
27198 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27199 option in the Config screen.
27200 By default, to set a keyword like &quot;Work&quot; you would usually
27201 have to go to the Flag Details screen using
27202 the &quot;^T To Flag Details&quot; command.
27203 Instead, if you have enabled this feature, you may type
27205 <CENTER><SAMP>* W</SAMP></CENTER>
27207 to set the Work flag, or
27209 <CENTER><SAMP>* ! W</SAMP></CENTER>
27211 to unset it.
27212 Just like for the other flag setting commands, the case of the letter does
27213 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
27214 keyword.
27216 Notice that you can only use this trick for one keyword that begins
27217 with &quot;W&quot;.
27218 If you happen to have a &quot;Work&quot; keyword and another keyword that is
27219 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
27220 your list of keywords.
27221 Also, there are five letters that are reserved for system
27222 flags and the NOT command.
27223 If you type &quot;* A&quot; it will always set the Answered flag, not
27224 your &quot;Aardvark&quot; keyword.
27225 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
27226 the Flag Details screen.
27228 Because enabling the
27229 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
27230 option causes Alpine to skip directly to the Flag Details screen when the
27231 Flag command is used, 
27232 setting it will cause this feature to have no effect at all.
27234 Similarly, when Selecting by Keyword, setting this option will allow you
27235 to use Keyword initials instead of full keywords.
27237 &lt;End of help on this topic&gt;
27238 </BODY>
27239 </HTML>
27240 ====== h_config_can_suspend =====
27241 <HTML>
27242 <HEAD>
27243 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
27244 </HEAD>
27245 <BODY>
27246 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
27248 Setting this feature will allow you to type ^Z (Control Z) to 
27249 <!--chtml if pinemode="os_windows"-->
27250 minimize Alpine into its icon, bringing into focus whatever
27251 application is running behind the PC-Alpine window.
27252 <!--chtml else-->
27253 temporarily suspend Alpine.
27256 This does not exit Alpine, but puts it in the background to watch
27257 for new mail and such.  Normally, you type a command, such
27258 as &quot;fg&quot; at your system prompt to return to your Alpine session.
27261 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
27262 adjusts whether Alpine is placed into the background of the shell its 
27263 running in or starts a news shell.
27264 <!--chtml endif-->
27267 <UL>   
27268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27269 </UL><P>
27270 &lt;End of help on this topic&gt;
27271 </BODY>
27272 </HTML>
27273 ====== h_config_take_lastfirst ======
27274 <HTML>
27275 <HEAD>
27276 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
27277 </HEAD>
27278 <BODY>
27279 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
27281 Normally, when TakeAddr is used to copy an address from a message into
27282 an address book entry, Alpine will attempt to rewrite the full name of the
27283 address in the form
27286 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
27288 instead of<P>
27290 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
27293 It does this because many people find it useful to sort by Last name
27294 instead of First name.  If this feature is set, then the TakeAddr command
27295 will not attempt to reverse the name in this manner.
27297 &lt;End of help on this topic&gt;
27298 </BODY></HTML>
27299 ====== h_config_disable_regex ======
27300 <HTML>
27301 <HEAD>
27302 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
27303 </HEAD>
27304 <BODY>
27305 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
27307 Normally, the
27308 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
27309 option is interpreted as a regular expression.
27310 One type of address that might cause trouble is an address that
27311 contains a plus sign.
27312 If you want to have an address with a plus as one of your
27313 <!--#echo var="VAR_alt-addresses"-->
27314 and you don't want to use regular expressions, then setting this
27315 feature will cause Alpine to treat the addresses you list literally instead.
27317 &lt;End of help on this topic&gt;
27318 </BODY></HTML>
27319 ====== h_config_take_fullname ======
27320 <HTML>
27321 <HEAD>
27322 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
27323 </HEAD>
27324 <BODY>
27325 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
27327 Normally, when TakeAddr is used to copy an address or addresses
27328 from a message into an address book entry, Alpine will try to preserve
27329 the full name associated with each address in the list of addresses.
27330 The reason for this is so that if the entry is a list or later becomes a
27331 list, then information about the individual addresses in the list
27332 is preserved.
27333 If you would rather just have the simple addresses in the list of addresses,
27334 set this feature. For example, with the default setting you might
27335 see something like this in the ADDRESS BOOK editor after you type TakeAddr
27337 <PRE>
27338  Nickname  : nick
27339  Fullname  : Bedrock Elders
27340  Fcc       :
27341  Comment   :
27342  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
27343              Barney Rubble &lt;rubble@bedrock.org&gt;
27344 </PRE>
27346 but with this feature set it would look like
27348 <PRE>
27349  Nickname  : nick
27350  Fullname  : Bedrock Elders
27351  Fcc       :
27352  Comment   :
27353  Addresses : flint@bedrock.org,
27354              rubble@bedrock.org
27355 </PRE>
27357 instead. Note the difference in the Addresses field.
27359 &lt;End of help on this topic&gt;
27360 </BODY></HTML>
27361 ====== h_config_print_from ======
27362 <HTML>
27363 <HEAD>
27364 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
27365 </HEAD>
27366 <BODY>
27367 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
27369 If this feature is set, then the Berkeley-mail style From line is included
27370 at the start of each message that is printed.  This line looks something
27371 like the following, with the address replaced by the address from the
27372 From line of the message being printed:
27374 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
27375 14:11:06 1998
27377 &lt;End of help on this topic&gt;
27378 </BODY>
27379 </HTML>
27380 ====== h_config_expanded_distlists ======
27381 <HTML>
27382 <HEAD>
27383 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
27384 </HEAD>
27385 <BODY>
27386 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
27387 If this feature is set, then distribution lists in the address book
27388 screen will always be expanded automatically.
27390 &lt;End of help on this topic&gt;
27391 </BODY>
27392 </HTML>
27393 ====== h_config_compose_news_wo_conf ======
27394 <HTML>
27395 <HEAD>
27396 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
27397 </HEAD>
27398 <BODY>
27399 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
27400 This feature controls one aspect of Alpine's Composer.  If you enter the
27401 composer while reading a newsgroup, you will normally be prompted to
27402 determine whether you intend the new message to be posted to the current
27403 newsgroup or not.  If this feature is set, Alpine will not prompt you
27404 in this situation, and will assume that you do indeed wish to post
27405 to the newsgroup you are reading.
27407 &lt;End of help on this topic&gt;
27408 </BODY>
27409 </HTML>
27410 ====== h_config_compose_rejects_unqual ======
27411 <HTML>
27412 <HEAD>
27413 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
27414 </HEAD>
27415 <BODY>
27416 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
27418 This feature controls one aspect of the message composer; in particular,
27419 what happens when an unqualified name is entered into an address header.
27420 If set, unqualified names entered as addresses will be treated as errors
27421 unless they match an addressbook nickname.  Alpine will not attempt to turn
27422 them into complete addresses by adding your local domain.<P>
27424 A complete (fully qualified) address is one containing a username followed
27425 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
27426 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
27427 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
27429 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
27433 When you enter a fully qualified address, Alpine does not interpret or
27434 modify it, but simply passes it on to the mail-transport-agent (MTA) for
27435 your system.  Alpine conforms to the Internet standards governing message
27436 headers and will not send an unqualifed name to the MTA.  Therefore, when
27437 you enter an unqualified name, Alpine will normally attempt to turn it into
27438 a fully qualified address, first by checking to see if you have entered a
27439 matching nickname in your addressbook, or failing that, by simply adding
27440 your own domain to the name entered.  So if your address is
27441 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
27442 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
27443 that into &quot;fred@example.com&quot;.<P>
27445 There are situations where it is not desirable for Alpine to interpret such
27446 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
27447 turned out to be a typo (intended to be an addressbook nickname), but
27448 there actually was a &quot;fred&quot; in your local domain, the message might 
27449 be mis-delivered without your realizing it.  In order to reduce the likelihood
27450 of such accidents, setting this feature will cause Alpine to treat such
27451 addresses as errors, and require that you explicitly enter the full local
27452 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
27453 matches an address book nickname.<P>
27455 Consider this a safety feature against mis-directed mail.
27457 <UL>   
27458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27459 </UL><P>
27460 &lt;End of help on this topic&gt;
27461 </BODY>
27462 </HTML>
27463 ====== h_config_quell_local_lookup ======
27464 <HTML>
27465 <HEAD>
27466 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
27467 </HEAD>
27468 <BODY>
27469 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
27471 This feature controls an aspect of Alpine's Composer, and if needed, will
27472 usually be set by your system manager in Alpine's system-wide configuration
27473 file. Specifically, if this feature is set, Alpine will not attempt to look
27474 in the system password file to find a Full Name for the entered address.
27476 Normally, names you enter into address fields (e.g. To: or Cc:) are
27477 checked against your address book(s) to see if they match an address book
27478 nickname.  Failing that, (in Unix Alpine) the name is then checked against
27479 the Unix password file.  If the entered name matches a username in the
27480 system password file, Alpine extracts the corresponding Full Name information
27481 for that individual, and adds that to the address being entered.
27483 However, password file matching can have surprising (incorrect) results if
27484 other users of the system do not receive mail at the domain you are using.
27485 That is, if either the 
27486 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
27487 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
27488 option
27489 is set such that the administrative domain of other users on the system
27490 isn't accurately reflected, Alpine should be told that a passwd file match
27491 is coincidental, and Full Name info will be incorrect.  For example, a
27492 personal name from the password file could get falsely paired with the
27493 entered name as it is turned into an address in the configured domain.
27495 If you are seeing this behavior, enabling this feature will prevent Unix
27496 Alpine from looking up names in the password file to find the Full Name
27497 for incomplete addresses you enter.<P>
27498 <UL>
27499 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27500 </UL>
27502 &lt;End of help on this topic&gt;
27503 </BODY>
27504 </HTML>
27505 ====== h_config_tab_checks_recent ======
27506 <HTML>
27507 <HEAD>
27508 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
27509 </HEAD>
27510 <BODY>
27511 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
27513 In a FOLDER LIST screen, the TAB key usually just changes which
27514 folder is highlighted.
27515 If this feature is set, then the TAB key will cause the number of
27516 recent messages and the total number of messages in the highlighted folder
27517 to be displayed instead.
27520 &lt;End of help on this topic&gt;
27521 </BODY>
27522 </HTML>
27523 ====== h_config_maildrops_preserve_state ======
27524 <HTML>
27525 <HEAD>
27526 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
27527 </HEAD>
27528 <BODY>
27529 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
27531 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
27532 Normally, when mail is moved from a Mail Drop folder to a destination
27533 folder, it is delivered as new mail.
27534 Any Seen/New, Answered, Important/Flagged state that has changed will be
27535 ignored.
27536 All of the mail will be considered unSeen, unAnswered, and unImportant after
27537 it is moved.
27539 If this feature is set, then the state changes that have been made
27540 to the messages in the Mail Drop folder will be preserved.
27542 In any case, messages that are already marked Deleted when the
27543 mail is to be moved from the Mail Drop will be ignored.
27545 &lt;End of help on this topic&gt;
27546 </BODY>
27547 </HTML>
27548 ====== h_config_preopen_stayopens ======
27549 <HTML>
27550 <HEAD>
27551 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
27552 </HEAD>
27553 <BODY>
27554 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
27556 This feature is related to the option
27557 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
27558 Normally, Stay Open folders are only opened on demand, when the user
27559 asks to open them.
27560 From then on they are kept open for the duration of the session.
27561 However, if this feature is set, then the Stay Open folders will all be
27562 opened at startup, at the same time that the INBOX is opened.
27565 &lt;End of help on this topic&gt;
27566 </BODY>
27567 </HTML>
27568 ====== h_config_expunge_inbox ======
27569 <HTML>
27570 <HEAD>
27571 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
27572 </HEAD>
27573 <BODY>
27574 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
27576 The INBOX is normally treated differently from regular folders in several
27577 ways.
27578 One of the differences is that the normal &quot;close&quot; sequence of
27579 events is deferred until Alpine is exited, instead of happening when you
27580 leave the INBOX to view another folder.
27581 The &quot;close&quot; sequence normally includes the Expunging
27582 of deleted messages
27583 (either automatically or after a prompt, controlled by the features
27584 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
27585 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
27586 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
27587 handling of the
27588 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
27591 If this feature is set the &quot;close&quot; sequence handling will take
27592 place every time you leave the INBOX.
27593 The INBOX will still be kept open, but the offer to Expunge and the archiving
27594 to the <!--#echo var="VAR_read-message-folder"-->
27595 will take place each time you leave the INBOX instead of only once at the
27596 end of the session.
27599 &lt;End of help on this topic&gt;
27600 </BODY>
27601 </HTML>
27602 ====== h_config_expunge_stayopens ======
27603 <HTML>
27604 <HEAD>
27605 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
27606 </HEAD>
27607 <BODY>
27608 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
27610 This feature is related to the option
27611 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
27612 Stay Open folders are treated differently from regular folders in several
27613 ways.
27614 One of the differences is that the normal &quot;close&quot; sequence of
27615 events is deferred until Alpine is exited, instead of happening when you
27616 leave the folder to view another folder.
27617 The &quot;close&quot; sequence normally includes the Expunging
27618 of deleted messages
27619 (either automatically or after a prompt, controlled by the features
27620 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
27621 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
27622 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
27623 handling of
27624 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
27627 If this feature is set the &quot;close&quot; sequence handling will take
27628 place when you leave the Stay Open folder.
27629 The folder will still be kept open, but the offer to Expunge and the archiving
27630 will take place each time you leave the folder instead of only once at the
27631 end of the session.
27632 This feature does not affect the INBOX, which will still only be processed
27633 when you exit Alpine.
27634 However, there is a similar feature that affects only the INBOX called
27635 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
27638 &lt;End of help on this topic&gt;
27639 </BODY>
27640 </HTML>
27641 ====== h_config_preserve_start_stop ======
27642 <HTML>
27643 <HEAD>
27644 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
27645 </HEAD>
27646 <BODY>
27647 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
27649 This feature controls how special control key characters, typically
27650 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
27651 are known as the "stop" and "start" characters and are sometimes used in
27652 communications paths to control data flow between devices that operate at
27653 different speeds.
27657 By default, Alpine turns the system's handling of these special characters
27658 off except during printing.  However, if you see Alpine reporting input errors
27659 such as:
27661 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
27663 and, at the same time, see your display become garbled, then it is likely
27664 that setting this option will solve the problem.  Be aware, though, that
27665 enabling this feature will also cause Alpine to ostensibly "hang" 
27666 whenever the Ctrl-S key combination is entered as the system is now
27667 interpreting such input as a "stop output" command.  To "start
27668 output"  again, simply type Ctrl-Q. 
27670 &lt;End of help on this topic&gt;
27671 </BODY>
27672 </HTML>
27673 ====== h_config_enable_incoming ======
27674 <HTML>
27675 <HEAD>
27676 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
27677 </HEAD>
27678 <BODY>
27679 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
27681 Alpine's Incoming Message Folders collection
27682 provides a convenient way to access multiple incoming folders.
27683 It is also useful if you have accounts on multiple computers.
27686 If set, this feature defines a pseudo-folder collection called
27687 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
27688 in this collection will be your INBOX, which will no longer show up in
27689 your Default folder collection.
27692 You may add more folders to the Incoming Message Folders collection by
27693 using the
27694 <!--chtml if pinemode="function_key"-->
27695 &quot;F10
27696 <!--chtml else-->
27697 &quot;A
27698 <!--chtml endif-->
27699 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
27700 the host the folder is stored on (which defaults to the same host used
27701 for your INBOX), a nickname, and the actual folder name.  Once a set
27702 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
27703 or MESSAGE TEXT screens) may be used to scan the folders for those
27704 with Recent messages.  If you add more folders to
27705 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
27706 no effect.
27708 NOTE: Normally the software that actually delivers mail (the stuff that happens
27709 before Alpine is involved) is in a better position to do delivery filtering
27710 than is Alpine itself.
27711 If possible, you may want to look at programs such as
27712 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
27713 filtering programs.
27714 If you'd prefer to have Alpine do the filtering for you, you may set that
27716 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
27718 <UL>   
27719 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27720 </UL><P>
27721 &lt;End of help on this topic&gt;
27722 </BODY>
27723 </HTML>
27724 ====== h_config_enable_incoming_checking ======
27725 <HTML>
27726 <HEAD>
27727 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
27728 </HEAD>
27729 <BODY>
27730 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
27732 This feature is only operational if you have enabled the optional
27733 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
27734 If you do have Incoming Message Folders and you also set this feature,
27735 then the number of Unseen messages in each folder will be displayed
27736 in the FOLDER LIST screen for the Incoming Message Folders.
27737 The number of Unseen messages in a folder will be displayed in parentheses
27738 to the right of the name of each folder.
27739 If there are no Unseen messages in a folder then only the name
27740 is displayed, not a set of parentheses with zero inside them.
27741 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
27742 the Incoming Message Folders to cause an immediate update.
27744 If a check for Unseen messages fails for a particular folder then Alpine
27745 will no longer attempt to check that folder for the duration of the
27746 session and this will be indicated by a question mark inside the
27747 parentheses.
27749 The features
27750 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
27751 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
27752 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
27753 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
27754 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
27755 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
27756 all affect how this feature behaves.
27758 <UL>   
27759 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27760 </UL><P>
27761 &lt;End of help on this topic&gt;
27762 </BODY>
27763 </HTML>
27764 ====== h_config_incoming_checking_total ======
27765 <HTML>
27766 <HEAD>
27767 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
27768 </HEAD>
27769 <BODY>
27770 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
27772 This option has no effect unless the feature
27773 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
27774 is set, which in turn has no effect unless
27775 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
27776 is set.
27778 When incoming folder checking is turned on the default is to display
27779 the number of unseen messages in each folder.
27780 More precisely, it is the number of undeleted unseen messages.
27781 Using this option you may also display the total number of messages
27782 in each folder.
27783 Instead of a single number representing the number of unseen messages
27784 you will get two numbers separated by a slash character.
27785 The first is the number of unseen messages and the second is the
27786 total number of messages.
27788 You may also use the recent message count instead of the unseen message
27789 count by turning on the feature
27790 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
27792 <UL>   
27793 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27794 </UL><P>
27795 &lt;End of help on this topic&gt;
27796 </BODY>
27797 </HTML>
27798 ====== h_config_incoming_checking_recent ======
27799 <HTML>
27800 <HEAD>
27801 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
27802 </HEAD>
27803 <BODY>
27804 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
27806 This option has no effect unless the feature
27807 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
27808 is set, which in turn has no effect unless
27809 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
27810 is set.
27812 When incoming folder checking is turned on the default is to display
27813 the number of unseen messages in each folder.
27814 More precisely, it is the number of undeleted unseen messages.
27815 Using this option you may display the number of recent messages instead
27816 of the number of unseen messages.
27817 A message is only counted as recent if this is the first session to
27818 see it, so the recent count might be less than the unseen count.
27819 The difference between the two would be accounted for by the unseen messages
27820 in the folder which were there previously but have not been looked at yet.
27822 If you simultaneously run more than one email client at a time
27823 (for example, you run more than one Alpine in parallel) then turning
27824 this feature on can cause some confusion.
27825 The confusion stems from the fact that each message is only considered to be
27826 recent in one session.
27827 That means that the counts of new messages may be different in the two
27828 Alpines running side by side, because each incoming message will only be
27829 counted as recent in one of the two sessions.
27831 You may also display the total number of messages
27832 in each folder by using the
27833 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
27834 option.
27836 <UL>   
27837 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27838 </UL><P>
27839 &lt;End of help on this topic&gt;
27840 </BODY>
27841 </HTML>
27842 ====== h_config_attach_in_reply ======
27843 <HTML>
27844 <HEAD>
27845 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
27846 </HEAD>
27847 <BODY>
27848 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
27850 This feature controls an aspect of Alpine's Reply command. If set, any MIME
27851 attachments that were part of the original message will automatically be
27852 included in the Reply.
27854 &lt;End of help on this topic&gt;
27855 </BODY>
27856 </HTML>
27857 ====== h_config_include_header =====
27858 <HTML>
27859 <HEAD>
27860 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
27861 </HEAD>
27862 <BODY>
27863 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
27865 This feature controls an aspect of Alpine's Reply command. If set, and the
27866 original message is being included in the reply, then headers from that
27867 message will also be part of the reply.
27869 &lt;End of help on this topic&gt;
27870 </HEAD>
27871 </HTML>
27872 ====== h_config_sig_at_bottom =====
27873 <HTML>
27874 <HEAD>        
27875 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
27876 </HEAD>
27877 <BODY>
27878 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
27880 This feature controls an aspect of Alpine's Reply command.  If this feature
27881 is set, and the original message is being included in the reply, then the
27882 contents of your signature file (if any) will be inserted after the included
27883 message.
27885 This feature does not affect the results of a Forward command.
27887 &lt;End of help on this topic&gt;
27888 </BODY>
27889 </HTML>
27890 ====== h_config_sigdashes =====
27891 <HTML>
27892 <HEAD>
27893 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
27894 </HEAD>
27895 <BODY>
27896 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
27898 This feature enables support for the common USENET news convention 
27899 of preceding a message signature with the special line consisting of 
27900 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
27903 When enabled and a
27904 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
27905 Alpine will insert the special line before including the file's text (unless
27906 the special line already exists somewhere in the file's text).
27909 In addition, when you Reply or Followup to a message containing one of
27910 these special lines and choose to include its text, Alpine will observe
27911 the convention of not including text beyond the special line in your
27912 reply.
27913 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
27914 mode is enabled and turned on, then Alpine <EM>will</EM>
27915 include the text beyond the special line regardless of the setting of
27916 this feature.
27919 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
27920 for a related feature.
27923 <UL>   
27924 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27925 </UL><P>
27926 &lt;End of help on this topic&gt;
27927 </BODY>
27928 </HTML>
27929 ====== h_config_new_thread_blank_subject =====
27930 <HTML>
27931 <HEAD>
27932 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
27933 </HEAD>
27934 <BODY>
27935 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
27937 When this feature is enabled (the default) Alpine will create a new thread
27938 every time that the subject line becomes empty at any time during composition.
27941 This behavior is particularly useful in case you are replying to a message.
27942 Replying to a message causes the message to be in the same thread than the
27943 original message that is being replied to. However, many authors want to create
27944 a new message (in a different thread) while replying to a message, and they do
27945 this by changing the full subject, by first deleting the original subject and
27946 typing the new subject of the current message.
27949 Enabling this feature causes that any time that the subject is deleted, the 
27950 message being composed will be considered the first message of a new thread.
27953 <UL>   
27954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27955 </UL><P>
27956 &lt;End of help on this topic&gt;
27957 </BODY>
27958 </HTML>
27959 ====== h_config_strip_sigdashes =====
27960 <HTML>
27961 <HEAD>
27962 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
27963 </HEAD>
27964 <BODY>
27965 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
27967 This feature doesn't do anything if the feature
27968 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
27969 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
27970 then turning on this feature enables support for the convention
27971 of not including text beyond the sigdashes line when Replying or Following
27972 up to a message and including the text of that message.
27973 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
27974 mode is enabled and turned on, then Alpine <EM>will</EM>
27975 include the text beyond the special line regardless of the setting of
27976 this feature.
27978 In other words, this is a way to turn on the signature stripping behavior
27979 without also turning on the dashes-adding behavior.
27981 <UL>   
27982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27983 </UL><P>
27984 &lt;End of help on this topic&gt;
27985 </BODY>
27986 </HTML>
27987 ====== h_config_forward_as_attachment =====
27988 <HTML>
27989 <HEAD>
27990 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
27991 </HEAD>
27992 <BODY>
27993 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
27995 This feature affects the way forwarded message text is handled.  When set, rather than 
27996 include the text of the forwarded message below any additional text you provide in the
27997 composer, the forwarded message is attached in its entirety to the message you send.
27999 This is useful in that it keeps the text you provide in the composer distinct from the
28000 text of the forwarded message.  Similarly, it allows the recipient to 
28001 conveniently operate on the forwarded message.  For example, they might reply directly to
28002 the sender of the forwarded message, or process it as part of a spam report.
28003 <UL>   
28004 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28005 </UL><P>
28006 &lt;End of help on this topic&gt;
28007 </BODY>
28008 </HTML>
28009 ====== h_config_preserve_field =====
28010 <HTML>
28011 <HEAD>
28012 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28013 </HEAD>
28014 <BODY>
28015 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28017 This feature affects Alpine's behavior when one replies to a message. 
28018 When you receive a message, some or all of the recipients of the message 
28019 have been added to the To: and Cc: fields. If you reply to such message, 
28020 and this feature is disabled, then the original sender of the message is 
28021 added to the To: field, and all other recipients are added to the Cc: 
28022 field, while your address is added to the From: field.
28025 However, if this feature is enabled, then Alpine will preserve the 
28026 original fields as sent in the original message, so the Cc: and To: 
28027 fields will be preserved. The sender's address will be added to the To: 
28028 field, while your address is added to the From: field.
28031 The behavior of this feature is that replies to all messages will behave 
28032 in the way described above. If you only intend this to happen on a per 
28033 message basis, then keep this feature disabled, and when replying to a 
28034 message you will see a new option in the menu for the &quot;Reply to all 
28035 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28036 make Alpine toggle its question so you can preserve the To: and Cc: 
28037 fields for that message only.
28039 <UL>   
28040 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28041 </UL><P>
28042 &lt;End of help on this topic&gt;
28043 </BODY>
28044 </HTML>
28045 ====== h_config_sub_lists =====
28046 <HTML>
28047 <HEAD>
28048 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28049 </HEAD>
28050 <BODY>
28051 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28053 This feature affects the subcommands available when Saving, 
28054 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28055 available. This command allows you to type in a substring of the folder
28056 you are looking for and when you type ^X it will display all folders
28057 that contain that substring in their names.
28058 This feature is set by default.
28061 &lt;End of help on this topic&gt;
28062 </BODY>
28063 </HTML>
28064 ====== h_config_scramble_message_id =====
28065 <HTML>
28066 <HEAD>
28067 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28068 </HEAD>
28069 <BODY>
28070 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28072 Normally the Message-ID header that Alpine generates when sending a message
28073 contains the name of the computer from which the message is being sent.
28074 Some believe that this hostname could be used by spammers or could
28075 be used by others for nefarious purposes.
28076 If this feature is set, that name will be transformed with a simple
28077 Rot13 transformation.
28078 The result will still have the correct syntax for a Message-ID but the
28079 part of the MessageID that is often a domain name will not be an actual
28080 domain name because the letters will be scrambled.
28082 It is possible (but unlikely?) that some spam detection
28083 software will use that as a reason to reject the mail as spam.
28084 It has also been reported that some spam detection software uses the
28085 fact that there are no dots after the &quot;@&quot; as a reason to reject
28086 messages.
28087 If your PC-Alpine Message-ID is using a name without a dot that is because
28088 that is what Windows thinks is your &quot;Full computer name&quot;.
28089 The method used to set this varies from one type of Windows to another but
28090 check under Settings -> Control Panel -> System and
28091 look for Network Identification or Computer Name or something similar.
28092 How to set it is beyond the scope of Alpine.
28095 &lt;End of help on this topic&gt;
28096 </BODY>
28097 </HTML>
28098 ====== h_downgrade_multipart_to_text =====
28099 <HTML>
28100 <HEAD>
28101 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28102 </HEAD>
28103 <BODY>
28104 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28107 This feature affects Alpine's behavior when sending mail.  Internet
28108 standards require Alpine to translate all non-ASCII characters in
28109 messages that it sends using MIME encoding.  This encoding can be
28110 ostensibly broken for recipients if any agent between Alpine and the
28111 recipient, such as an email list expander, appends text to the
28112 message, such as list information or advertising.  When sending such
28113 messages Alpine attempts to protect such encoding by placing extra
28114 MIME boundaries around the message text.
28116 These extra boundaries are invisible to recipients that 
28117 use MIME-aware email programs (the vast majority).  However, if
28118 you correspond with users of email programs that are not MIME-aware,
28119 or do not handle the extra boundaries gracefully, you can
28120 use this feature to prevent Alpine from including the extra
28121 MIME information.  Of course, it will increase the likelihood
28122 that non-ASCII text you send may appear corrupt to the recipient.
28124 &lt;End of help on this topic&gt;
28125 </BODY>
28126 </HTML>
28127 ====== h_config_show_sort =====
28128 <HTML>
28129 <HEAD>
28130 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28131 </HEAD>
28132 <BODY>
28133 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28135 If this feature is set and there is sufficient space on the screen,
28136 a short indication of the current sort order will be
28137 added in the titlebar (the top line on the screen), before the name
28138 of the folder.
28139 For example, with the default Arrival sort in effect,
28140 the display would have the characters
28142 <P><CENTER>[A]</CENTER><P>
28144 added between the title of the screen and the folder name.
28145 The letters are the same as the letters you may type to manually
28146 sort a folder with the SortIndex command ($).
28147 The letters in the table below are the ones that may show
28148 up in the titlebar line.
28150 <TABLE>   
28151 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28152 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28153 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28154 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28155 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28156 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28157 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28158 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28159 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28160 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28161 </TABLE>
28163 If the sort order is Reversed, the letter above will be preceded by the letter
28164 &quot;R&quot;, for example
28166 <P><CENTER>[RS]</CENTER><P>
28168 means that a Reverse Subject sort is in effect.
28169 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28170 left out, and just an &quot;R&quot; is shown.
28172 <P><CENTER>[R]</CENTER>
28175 &lt;End of help on this topic&gt;
28176 </BODY>
28177 </HTML>
28178 ====== h_config_disable_reset_disp =====
28179 <HTML>
28180 <HEAD>
28181 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28182 </HEAD>
28183 <BODY>
28184 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28186 UNIX Alpine only.
28188 This feature affects Alpine's behavior when using
28189 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28190 Normally, before the display filter is run, the terminal mode is reset
28191 to what it was before you started Alpine.
28192 This may be necessary if the filter requires the use of the terminal.
28193 For example, it may need to interact with you.
28194 If you set this feature, then the terminal mode will not be reset.
28195 One thing that turning on this feature should fix is the coloring of
28196 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28197 breaks because the terminal reset resets the color state of the terminal.
28200 &lt;End of help on this topic&gt;
28201 </BODY>
28202 </HTML>
28203 ====== h_config_disable_sender =====
28204 <HTML>
28205 <HEAD>
28206 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28207 </HEAD>
28208 <BODY>
28209 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
28211 This feature affects Alpine's generation of the &quot;Sender:&quot; or
28212 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
28213 header fields.
28214 By default, Alpine will generate such a header in situations where the
28215 username or domain are not the same as
28216 the &quot;From:&quot; header on the message.
28217 With this feature set,
28218 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
28219 This may be desirable on a system that is virtually hosting many domains,
28220 and the sysadmin has other methods available for tracking a message to
28221 its originator.
28223 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
28226 &lt;End of help on this topic&gt;
28227 </BODY>
28228 </HTML>
28229 ====== h_config_use_sender_not_x =====
28230 <HTML>
28231 <HEAD>
28232 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
28233 </HEAD>
28234 <BODY>
28235 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
28237 Normally Alpine adds a header line
28238 labeled &quot;X-X-Sender&quot;, if the sender is
28239 different from the From: line.
28240 The standard specifies that this header
28241 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
28242 Setting this feature causes
28243 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
28245 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
28248 &lt;End of help on this topic&gt;
28249 </BODY>
28250 </HTML>
28251 ====== h_config_use_fk =====
28252 <HTML>
28253 <HEAD>
28254 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
28255 </HEAD>
28256 <BODY>
28257 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
28259 This feature specifies that Alpine will respond to function keys instead of
28260 the normal single-letter commands. In this mode, the key menus at the
28261 bottom of each screen will show function key designations instead of the
28262 normal mnemonic key.
28265 &lt;End of help on this topic&gt;
28266 </BODY>
28267 </HTML>
28268 ====== h_config_cancel_confirm =====
28269 <HTML>
28270 <HEAD>
28271 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
28272 </HEAD>
28273 <BODY>
28274 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
28276 This feature affects what happens when you type ^C to cancel a composition.
28277 By default, if you attempt to cancel a composition by typing ^C, you will be
28278 asked to confirm the cancellation by typing a &quot;C&quot;
28279 for <EM>C</EM>onfirm.
28280 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
28281 risky because the &quot;^C Y&quot; needed to cancel a message
28282 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
28284 If this feature is set the confirmation asked for
28285 will be a &quot;<EM>Y</EM>es&quot;
28286 instead of a &quot;<EM>C</EM>onfirm&quot; response.
28289 &lt;End of help on this topic&gt;
28290 </BODY>
28291 </HTML>
28292 ====== h_config_compose_maps_del =====
28293 <HTML>
28294 <HEAD>
28295 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
28296 </HEAD>
28297 <BODY>
28298 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
28300 This feature affects the behavior of the DELETE key.
28301 If set, Delete will be equivalent to ^D, and delete
28302 the current character.  Normally Alpine defines the Delete key
28303 to be equivalent to ^H, which deletes the <EM>previous</EM>
28304 character.
28307 &lt;End of help on this topic&gt;
28308 </BODY>
28309 </HTML>
28310 ====== h_config_compose_bg_post =====
28311 <HTML>
28312 <HEAD>
28313 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
28314 </HEAD>
28315 <BODY>
28316 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
28318 This feature affects the behavior of Alpine's mail sending.  If set, this
28319 feature enables a subcommand in the composer's "Send?" confirmation
28320 prompt.  The subcommand allows you to tell Alpine to handle the actual
28321 posting in the background.  While this feature usually allows posting
28322 to appear to happen very fast, it has no affect on the actual delivery
28323 time it takes a message to arrive at its destination.
28326 Please Note:
28327 <OL>
28328  <LI>This feature will have no effect if the feature
28329        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
28330        is set.
28331  <LI>This feature isn't supported on all systems.  All DOS and Windows,
28332        as well as several Unix ports, do not recognize this feature.
28333  <LI>Error handling is significantly different when this feature is
28334         enabled.  Any message posting failure results in the message
28335         being appended to your &quot;Interrupted&quot; mail folder.  When you
28336         type the <A HREF="h_common_compose">C</A>ompose command,
28337         Alpine will notice this folder and
28338         offer to extract any messages contained.  Upon continuing a 
28339         failed message, Alpine will display the nature of the failure 
28340         in the status message line.
28341  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
28342         for message data to
28343         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
28344         if you typically run close to any sort of disk-space limits or quotas.
28345 </OL>
28347 &lt;End of help on this topic&gt;
28348 </BODY>
28349 </HTML>
28350 ====== h_config_compose_dsn =====
28351 <HTML>
28352 <HEAD>
28353 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
28354 </HEAD>
28355 <BODY>
28356 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
28358 This feature affects the behavior of Alpine's mail sending.  If set, this
28359 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
28360 prompt.  The subcommand allows you to tell Alpine to request the type of
28361 Delivery Status Notification (DSN) that you would like.  Most users will
28362 be happy with the default, and need not enable this feature.
28364 If the feature
28365 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28366 then this feature has no effect and the type of DSN is not selectable.
28369 Turning on this feature and then turning on the DSNOpts from the send
28370 prompt reveals four on-off toggles at the bottom of the screen.
28371 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
28372 that no notification be returned to you, even if there is a delivery
28373 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
28374 server that you are willing (or not) to receive delay notifications, which
28375 happen when there is an unusual delay at some mail server (in that mail
28376 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
28377 Success requests that you be sent a DSN message when the message is
28378 successfully delivered to the recipients mailbox.  Setting NoErrRets will
28379 automatically turn off Delay and Success notification, and will flip the
28380 toggles to show that.  Similarly, turning on Delay and/or Success will
28381 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
28382 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
28383 the full message be returned in any failed DSN.  RetHdrs requests that
28384 only the headers be returned in any failed DSN.  Notice that this command
28385 applies only to failed delivery status reports.  For delay or success
28386 reports, the full message is never returned, only the headers are returned.
28389 If you don't enable the DSN feature or if you don't turn it on for a
28390 particular message, the default is that you will be notified about failures,
28391 you might be notified about delays, and you won't be notified about
28392 successes.  You will usually receive the full message back when there is
28393 a failure.
28396 If you turn on the DSNOpts the default is to return as much information as
28397 possible to you.  That is, by default, the Success and Delay options are
28398 turned on and the full message will be returned on failure.
28401 The sending prompt will display the current DSN request (if any) in a
28402 shorthand form.  It will be:
28404 <P><CENTER>[Never]</CENTER>
28407 if you have requested NoErrRets.  Otherwise, it will look something like:
28409 <P><CENTER>[FDS-Hdrs]</CENTER>
28412 The &quot;F&quot; will always be there, indicating that you will be notified
28413 of failures.  (Alpine doesn't provide a way to request no failure notification
28414 and at the same time request either success or delay notification.  The only
28415 way to request no failure notifications is to request no notifications at
28416 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
28417 requested Delay and/or Success notification.  If one of those is missing,
28418 that means you are requesting no notification of the corresponding type.
28419 After the dash it will say either Hdrs or Full.  Hdrs means to return only
28420 the headers and Full means to return the full message (applies to
28421 failure notifications only).
28424 NOTE: This feature relies on your system's mail transport agent or
28425 configured
28426 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
28427 having the negotiation mechanism introduced in
28428 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
28429 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
28430 are using doesn't support DSN, a short warning will be shown to you on
28431 the message line at the bottom of the screen after you send your message,
28432 but your message will have been sent anyway.
28435 Note that DSNs don't provide a mechanism to request read receipts.  That
28436 is, if you request notification on success you are notified when the
28437 message is delivered to the mailbox, not when the message is read.
28440 ESMTP allows for graceful migration to upgraded mail transfer agents, but
28441 it is possible that this feature might cause problems for some servers. 
28444 &lt;End of help on this topic&gt;
28445 </BODY>
28446 </HTML>
28447 ====== h_config_auto_zoom =====
28448 <HTML>
28449 <HEAD>
28450 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
28451 </HEAD>
28452 <BODY>
28453 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
28455 This feature affects the behavior of the Select command.
28456 If set, the select command will automatically perform a zoom
28457 after the select is complete.
28458 This feature is set by default.
28460 Some related help topics are
28461 <UL>
28462 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28463 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28464 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28465 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28466 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28467 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28468 </UL>
28471 &lt;End of help on this topic&gt;
28472 </BODY>
28473 </HTML>
28474 ====== h_config_auto_unzoom =====
28475 <HTML>
28476 <HEAD>
28477 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
28478 </HEAD>
28479 <BODY>
28480 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
28482 This feature affects the behavior of the Apply command.  If set, and if
28483 you are currently looking at a Zoomed Index view of selected messages,
28484 the Apply command will do the operation you specify, but then will
28485 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
28486 the normal Index view after the Apply. 
28487 This feature is set by default.
28490 Some related help topics are
28491 <UL>
28492 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28493 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28494 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28495 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28496 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28497 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28498 </UL>
28500 &lt;End of help on this topic&gt;
28501 </BODY>
28502 </HTML>
28503 ====== h_config_auto_unselect =====
28504 <HTML>
28505 <HEAD>
28506 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
28507 </HEAD>
28508 <BODY>
28509 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
28511 This feature affects the behavior of the Apply command.  If set,
28512 the Apply command will do the operation you specify, but then will
28513 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
28514 the normal Index view after the Apply. 
28517 Some related help topics are
28518 <UL>
28519 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28520 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28521 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28522 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28523 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28524 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28525 </UL>
28527 &lt;End of help on this topic&gt;
28528 </BODY>
28529 </HTML>
28530 ====== h_config_fast_recent =====
28531 <HTML>
28532 <HEAD>
28533 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
28534 </HEAD>
28535 <BODY>
28536 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
28538 This feature controls the behavior of the TAB key when traversing folders
28539 in the optional 
28540 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
28541 collection or in optional <!--#echo var="VAR_news-collections"-->.
28544 When the TAB
28545 (<A HREF="h_common_nextnew">NextNew</A>)
28546 key is pressed, the default behavior is to
28547 explicitly examine the status of the folder for the number of recent
28548 messages (messages delivered since the last time it was viewed).
28549 Depending on the size and number of messages in the folder, this test
28550 can be time consuming.
28553 Enabling this feature will cause Alpine to only test for the existence of
28554 any recent messages rather than to obtain the count.  This is much faster
28555 in many cases.  The downside is that you're not given the number of recent
28556 messages when prompted to view the next folder.
28557 If the feature
28558 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
28559 is turned on, then the present feature will have no effect.
28562 <UL>   
28563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28564 </UL><P>
28565 &lt;End of help on this topic&gt;
28566 </BODY>
28567 </HTML>
28568 ====== h_config_arrow_nav =====
28569 <HTML>
28570 <HEAD>
28571 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
28572 </HEAD>
28573 <BODY>
28574 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
28576 This feature controls the behavior of the left and right arrow keys.
28577 If set, the left and right arrow keys will operate like the usual
28578 navigation keys &lt; and &gt;.
28579 This feature is set by default.
28582 If you set this feature, and do not like the changed behavior of the up/down 
28583 arrow 
28584 keys when navigating through the FOLDER LIST screen -- 
28585 <B>first</B> from column to column, if more than one folder is 
28586 displayed per row, 
28587 and <B>then</B> from row to row -- you may either also wish to set the feature 
28588 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
28589 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
28590 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
28591 folders in each column.
28593 <UL>   
28594 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28595 </UL><P>
28596 &lt;End of help on this topic&gt;
28597 </BODY>
28598 </HTML>
28599 ====== h_config_relaxed_arrow_nav =====
28600 <HTML>
28601 <HEAD>
28602 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
28603 </HEAD>
28604 <BODY>
28605 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
28607 This feature controls the behavior of the left, right, up and down
28608 arrow keys in the FOLDER LIST screen when the &quot;<A
28609 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
28610 set.
28611 This feature is set by default.
28615 When this feature is set, the left and right
28616 arrow keys in the FOLDER LIST screen
28617 move the highlight bar to the left or right, and the up and
28618 down arrows move it up or down.
28621 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
28622 feature is not set;
28623 the left and right arrow keys in the Folder List screen strictly
28624 track the commands bound to the '&lt;' and '&gt;' keys, and the up
28625 and down arrow keys move the highlight bar to the previous and next
28626 folder or directory name.
28629 <UL>   
28630 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28631 </UL><P>
28632 &lt;End of help on this topic&gt;
28633 </BODY>
28634 </HTML>
28635 ====== h_config_alt_compose_menu =====
28636 <HTML>
28637 <HEAD>
28638 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
28639 </HEAD>
28640 <BODY>
28641 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
28643 This feature controls the menu that is displayed when Compose is selected.
28644 If set, a list of options will be presented, with each option representing
28645 the type of composition that could be used. This feature is most useful for
28646 users who want to avoid being prompted with each option separately, or who
28647 want to avoid the checking of remote postponed or form letter folders.
28648 The possible types of composition are:
28651 New, for starting a new composition. Note that if New is selected and roles
28652 are set, roles are checked for matches and applied according to the setting
28653 of the matching role.
28656 Interrupted, for continuing an interrupted composition. This option is only
28657 offered if an interrupted message folder is detected.
28660 Postponed, for continuing postponed compositions. This option is offered
28661 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
28662 the postponed folder actually exists. This option is especially handy
28663 for avoiding having to check for the existence of a remote postponed folder.
28666 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
28667 is set in the config, and is not checked for existence for reasons similar
28668 to those explained by the postponed option.
28671 setRole, for selecting a role to apply to a composition.
28674 &lt;End of help on this topic&gt;
28675 </BODY>
28676 </HTML>
28677 ====== h_config_alt_role_menu =====
28678 <HTML>
28679 <HEAD>
28680 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
28681 </HEAD>
28682 <BODY>
28683 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
28685 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
28686 a role and compose a new message using that role.
28687 When this feature is set, the role command will first ask whether you want to
28688 Compose a new message, Forward the current message, Reply to the
28689 current message, or Bounce the current message.
28690 If you are not in the MESSAGE INDEX and are not viewing a message,
28691 then there is no current message and the question will be skipped.
28692 After you have chosen to Compose, Forward, Reply, or Bounce you will
28693 then choose the role to be used.
28695 When Bouncing the &quot;Set From&quot; address is used for the
28696 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
28697 provided that the option
28698 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
28699 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
28700 set.
28701 Other actions of the role are ignored when Bouncing.
28704 &lt;End of help on this topic&gt;
28705 </BODY>
28706 </HTML>
28707 ====== h_config_always_spell_check =====
28708 <HTML>
28709 <HEAD>
28710 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
28711 </HEAD>
28712 <BODY>
28713 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
28715 When this feature is set, every composed message will be spell-checked before
28716 being sent.
28718 &lt;End of help on this topic&gt;
28719 </BODY>
28720 </HTML>
28721 ====== h_config_quell_asterisks =====
28722 <HTML>
28723 <HEAD>
28724 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
28725 </HEAD>
28726 <BODY>
28727 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
28729 When you are running Alpine you will sometimes be asked for a password
28730 in a prompt on the third line from the bottom of the screen.
28731 Normally each password character you type will cause an asterisk to echo
28732 on the screen. That gives you some feedback to know that your typing is
28733 being recognized.
28734 There is a very slight security risk in doing it this way because someone
28735 watching over your shoulder might be able to see how many characters there
28736 are in your password.
28737 If you'd like to suppress the echoing of the asterisks set this feature.
28739 &lt;End of help on this topic&gt;
28740 </BODY>
28741 </HTML>
28742 ====== h_config_quell_flowed_text =====
28743 <HTML>
28744 <HEAD>
28745 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
28746 </HEAD>
28747 <BODY>
28748 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
28750 Alpine generates flowed text where possible.
28751 The method for generating flowed text is defined by
28752 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
28753 the benefit of doing so is
28754 to send message text that can properly be viewed both on normal width displays
28755 and on displays with smaller or larger than normal screen widths.
28756 With flowed text, a space at the end of a line tells the receiving mail
28757 client that the following line belongs to the same paragraph.
28758 Quoted text will also be affected, with only the innermost
28759 level of &quot;&gt;&quot; quoting being followed by a space.
28760 However, if you have changed the
28761 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
28762 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
28763 quoted text will not be flowed.
28764 For this reason, we recommend that you leave your
28765 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
28767 This feature turns off the generation of flowed text, as it might be
28768 desired to more tightly control how a message is displayed on the receiving end.
28770 If this feature is <EM>not</EM> set, you can control on a message by message
28771 basis whether or not flowed text is generated.
28772 You do this by typing ^V at the Send confirmation prompt that you get
28773 after typing ^X to send a message.
28774 ^V is a toggle that turns flowing off and back on if typed again.
28775 If for some reason flowing cannot be done on a particular message, then the
28776 ^V command will not be available.
28777 This would be the case, for example, if this feature was set, or if your
28778 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
28779 If the feature
28780 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28781 then the opportunity to control on a message by message basis
28782 whether or not flowed text is generated is lost.
28784 When this feature is not set and you have typed ^V to turn off flowing,
28785 the Send confirmation prompt will change to look like
28787 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
28789 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
28790 also turn off the sending of flowed text messages, but it differs in that
28791 it also trims all trailing white space from a message before sending it.
28793 If alternate editors are used extensively, be aware that a message will still
28794 be sent flowed if this feature is unset.  In most cases this will be fine,
28795 but if the editor has a &quot;flowed text&quot; mode, it would be best to
28796 use that.
28798 &lt;End of help on this topic&gt;
28799 </BODY>
28800 </HTML>
28801 ====== h_config_strip_ws_before_send =====
28802 <HTML>
28803 <HEAD>
28804 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
28805 </HEAD>
28806 <BODY>
28807 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
28809 By default, trailing whitespace is not stripped from
28810 a message before sending.  Trailing whitespace should have no effect on an
28811 email message, and in flowed text can aid in delimiting paragraphs.
28812 However, the old behavior of stripping trailing whitespace was in place
28813 to better deal with older clients that couldn't handle certain types of
28814 text encodings.  This feature restores the old behavior
28816 Trailing whitespace is of aid to flowed-text-formatted messages, which are
28817 generated by default but can be turned off via the
28818 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
28819 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
28820 of flowed text.
28822 &lt;End of help on this topic&gt;
28823 </BODY>
28824 </HTML>
28825 ====== h_config_del_from_dot =====
28826 <HTML>
28827 <HEAD>
28828 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
28829 </HEAD>
28830 <BODY>
28831 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
28833 This feature controls the behavior of the Ctrl-K command in the composer.
28834 If set, ^K will cut from the current cursor position to the end of the line,
28835 rather than cutting the entire line.
28838 &lt;End of help on this topic&gt;
28839 </BODY>
28840 </HTML>
28841 ====== h_config_print_index =====
28842 <HTML>
28843 <HEAD>
28844 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
28845 </HEAD>
28846 <BODY>
28847 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
28849 This feature controls the behavior of the Print command when in the
28850 MESSAGE INDEX screen.  If set, the print command will give you a prompt
28851 asking if you wish to print the message index, or the currently highlighted
28852 message. If not set, the message will be printed.
28855 &lt;End of help on this topic&gt;
28856 </BODY>
28857 </HTML>
28858 ====== h_config_allow_talk =====
28859 <HTML>
28860 <HEAD>
28861 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
28862 </HEAD>
28863 <BODY>
28864 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
28866 UNIX Alpine only.
28868 By default, permission for others to &quot;talk&quot; to your terminal is turned
28869 off when you are running Alpine.  When this feature is set, permission is
28870 instead turned on.  If enabled, you may see unexpected messages in the
28871 middle of your Alpine screen from someone attempting to contact you via the
28872 &quot;talk&quot; program.
28875 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
28876 talk daemon on your system will attempt to print a message on your screen 
28877 when someone else is trying to contact you.  If you wish to see these
28878 messages while you are running Alpine, you should enable this feature.
28881 If you do enable this feature and see a &quot;talk&quot; message, you must 
28882 suspend or quit Alpine before you can respond.
28885 &lt;End of help on this topic&gt;
28886 </BODY>
28887 </HTML>
28888 ====== h_config_send_filter_dflt =====
28889 <HTML>
28890 <HEAD>
28891 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
28892 </HEAD>
28893 <BODY>
28894 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
28895 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
28896 configured, setting this feature will cause
28897 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
28898 instead of unfiltered, the usual default.
28900 <UL>   
28901 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28902 </UL><P>
28903 &lt;End of help on this topic&gt;
28904 </BODY>
28905 </HTML>
28906 ====== h_config_custom_print =====
28907 <HTML>
28908 <HEAD>
28909 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
28910 </HEAD>
28911 <BODY>
28912 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
28914 When this feature is set, the print command will have an additional
28915 subcommand called "C CustomPrint".  If selected, you will have
28916 the opportunity to enter any system print command --instead of being 
28917 restricted to using those that have been previously configured in the 
28918 printer setup menu.
28921 &lt;End of help on this topic&gt;
28922 </BODY>
28923 </HTML>
28924 ====== h_config_enable_dot_files =====
28925 <HTML>
28926 <HEAD>
28927 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
28928 </HEAD>
28929 <BODY>
28930 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
28932 When this feature is set, files beginning with dot (".") will be
28933 visible in the file browser.  For example, you'll be able to select them
28934 when using the browser to add an attachment to a message.
28936 &lt;End of help on this topic&gt;
28937 </BODY>
28938 </HTML>
28939 ====== h_config_enable_dot_folders =====
28940 <HTML>
28941 <HEAD>        
28942 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
28943 </HEAD>
28944 <BODY>
28945 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
28947 When this feature is set, folders beginning with dot (".") may be added
28948 and viewed.
28950 &lt;End of help on this topic&gt;
28951 </BODY>
28952 </HTML>
28953 ====== h_config_ff_between_msgs =====
28954 <HTML>
28955 <HEAD>
28956 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
28957 </HEAD>
28958 <BODY>
28959 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
28961 Setting this feature causes a formfeed to be printed between messages when
28962 printing multiple messages (with Apply Print command).
28964 &lt;End of help on this topic&gt;
28965 </BODY>
28966 </HTML>
28967 ====== h_config_blank_keymenu =====
28968 <HTML>
28969 <HEAD>
28970 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
28971 </HEAD>
28972 <BODY>
28973 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
28975 If this feature is set the command key menu that normally appears on the
28976 bottom two lines of the screen will not usually be there.  Asking for
28977 help with ^G or ? will cause the key menu to appear instead of causing
28978 the help message to come up.  If you want to actually see the help text,
28979 another ^G or ? will show it to you.  After the key menu has popped
28980 up with the help key it will remain there for an O for Other command but
28981 disappear if any other command is typed.
28983 &lt;End of help on this topic&gt;
28984 </BODY>
28985 </HTML>
28986 ====== h_config_enable_mouse =====
28987 <HTML>
28988 <HEAD>
28989 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
28990 </HEAD>
28991 <BODY>
28992 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
28994 This feature controls whether or not an X terminal mouse can be used with
28995 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
28996 being used, the left mouse button on the mouse can be used to select text
28997 or commands.
28998 Clicking on a command at the bottom of the screen will behave as if you had
28999 typed that command.
29000 Clicking on an index line will move the current message highlight to
29001 that line.
29002 Double-clicking on an index line will view the message.
29003 Double-clicking on a link will view the link.
29005 This type of mouse support will also work in some terminal emulators which are
29006 not actually X terminals, but which have extra code to support the xterm
29007 style mouse.
29008 For those emulators you not only need to turn this feature on but you also
29009 have to set the $DISPLAY environment variable even though it isn't needed
29010 for your terminal.
29011 That will cause Alpine to think that it is an xterm and to properly interpret the
29012 escape sequences sent by the mouse.
29014 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29015 also modified.  It is sometimes possible to hold the shift key down while clicking
29016 left or middle mouse buttons for the normal xterm cut/paste operations. 
29017 There is also an Alpine command to toggle this mode on or off.
29018 The command is Ctrl-&#92; (Control-backslash).
29020 &lt;End of help on this topic&gt;
29021 </BODY>
29022 </HTML>
29023 ====== h_config_enable_xterm_newmail =====
29024 <HTML>
29025 <HEAD>        
29026 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29027 </HEAD>
29028 <BODY>
29029 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29031 This feature controls whether or not Alpine will attempt to announce new
29032 mail arrival when it is running in an X terminal window and that window
29033 is iconified.  If set, and the $DISPLAY variable indicates that an X
29034 terminal is being used, Alpine will send appropriate escape sequences to
29035 the X terminal to modify the label on Alpine's icon to indicate that new
29036 mail has arrived. Alpine will also modify the Alpine window's title to
29037 indicate new mail.
29038 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29040 &lt;End of help on this topic&gt;
29041 </BODY></HTML>
29042 ====== h_config_enable_newmail_short_text =====
29043 <HTML>
29044 <HEAD>        
29045 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29046 </HEAD>
29047 <BODY>
29048 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29050 This feature controls the text to be displayed in an icon in the event
29051 of a new message arrival.  Normally, the message will
29052 be the one that is displayed on the screen.  This feature shortens the
29053 message to a count of the number of new messages in brackets.  This may be
29054 more useful for those who use the window's title bar in the task bar as a
29055 new mail indicator.  This feature is only useful if the
29056 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29057 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29058 feature, this feature is only relevant when run in an xterm environment.
29060 &lt;End of help on this topic&gt;
29061 </BODY></HTML>
29062 ====== h_config_copy_to_to_from =====
29063 <HTML>
29064 <HEAD>
29065 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29066 </HEAD>
29067 <BODY>
29068 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29070 This feature affects the From address used when Replying to a message.
29071 It is probably only useful if you have some
29072 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29073 defined.
29074 When enabled, it checks to see if any of the addresses in the To or Cc
29075 fields of the message you are replying to is one of your addresses.
29076 If it is, and there is only one of them, then that address is used as
29077 the From address in the message you are composing.
29078 In other words, you will be using a From address that is the same
29079 as the To address that was used to get the mail to you in the first place.
29082 If a role is being used and it has a From address defined, that From address will
29083 be used rather than the one derived from this feature.
29086 <UL>   
29087 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29088 </UL><P>
29089 &lt;End of help on this topic&gt;
29090 </BODY>
29091 </HTML>
29092 ====== h_config_prefix_editing =====
29093 <HTML>
29094 <HEAD>
29095 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29096 </HEAD>
29097 <BODY>
29098 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29100 This feature affects the Reply command's &quot;Include original message
29101 in Reply?&quot; prompt.  When enabled, it causes the
29102 &quot;Edit Indent String&quot; sub-command to appear which allows 
29103 you to edit the string Alpine would otherwise use to denote included 
29104 text from the message being replied to.<P>
29106 Thus, you can change Alpine's default message quote character (usually
29107 an angle bracket) on a per message basis. So you could change your quoted message to
29108 look, for example, like this:<p>
29110 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29112 John: I just wanted to say hello and to congratulate you
29113 John: on a job well done!</pre><p>
29115 The configuration option
29116 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29117 may be used to change what appears as the default string to be edited.
29119 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29120 currently being replied to.
29122 If you change your <!--#echo var="VAR_reply-indent-string"-->
29123 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29124 quoted text will not be flowed
29125 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29126 when you reply.
29127 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
29128 set to the default value.
29130 <UL>   
29131 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29132 </UL><P>
29133 &lt;End of help on this topic&gt;
29134 </BODY>
29135 </HTML>
29136 ====== h_config_enable_search_and_repl =====
29137 <HTML>
29138 <HEAD>
29139 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
29140 </HEAD>
29141 <BODY>
29142 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
29144 This feature modifies the behavior of Alpine's composer.  Setting this
29145 feature causes Alpine to offer the "^R Replace" subcommand, which
29146 allows you to search and replace text strings in a message you are composing, 
29147 inside the "^W Where is" command.  
29151 To search and replace text, first enter the text to be replaced at the 
29152 "Search: " prompt.  Then, rather than pressing Enter to just search for that
29153 text, press ^R, which turns the prompt into 
29157 Search (to replace): 
29161 and then press Enter.  The cursor will highlight the first occurrence 
29162 of the text string you entered, and the prompt will show: 
29166 Replace "<your text string>" with : 
29170 where <your text string> is what you entered at the previous prompt;
29171 here, enter the replacement text.  To only replace the highlighted 
29172 occurrence, simply press Enter now; to replace all occurrences in the 
29173 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
29174 each replacement.
29178 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
29179 ^X toggles between "Replace All" and "Replace One."
29183 If you previously searched for text in a message, it will be offered for 
29184 re-use as part of the prompt, shown in [ ] brackets.
29187 &lt;End of help on this topic&gt;
29188 </BODY>
29189 </HTML>
29190 ====== h_config_enable_view_attach =====
29191 <HTML>
29192 <HEAD>
29193 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
29194 </HEAD>
29195 <BODY>
29196 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
29198 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29199 Setting this feature causes Alpine to present attachments in boldface.
29200 The first available attachment is displayed in inverse.  This is the
29201 "selected" attachment.  Pressing RETURN will cause Alpine to display
29202 the selected attachment.  Use the arrow keys to change which of the
29203 attachments displayed in boldface is the current selection.
29207 Speaking of arrow keys, the Up and Down Arrows will select the next
29208 and previous attachments if one is available on the screen for selection.
29209 Otherwise, they will simply adjust the viewed text one line up or down.
29213 Similarly, when selectable items are present in a message, the Ctrl-F key
29214 can be used to select the next item in the message independent of which
29215 portion of the viewed message is currently displayed. The Ctrl-B key can
29216 be used to select the previous item in the same way. 
29217 <P> 
29218 &lt;End of help on this topic&gt;
29219 </BODY>
29220 </HTML>
29221 ====== h_config_enable_y_print =====
29222 <HTML>
29223 <HEAD>
29224 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
29225 </HEAD>
29226 <BODY>
29227 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
29229 This feature modifies the behavior of Alpine's Print command.
29231 By default, Alpine's print command is available by pressing the "%" key.  
29232 (This command is a substantial change from Pine versions before 4.00 -- 
29233 where the print command was "Y" -- based on numerous complaints about 
29234 printing being invoked inadvertently, since Y also means "Yes.")  
29238 This feature is supplied to mitigate any disruption or anxiety users 
29239 might feel as a result of this change.  
29243 Enabling this feature will cause Alpine to recognize both the old
29244 command, "Y" for Prynt, as well the new "%" method for invoking
29245 printing.  Note, key menu labels are not changed as a result of
29246 enabling this feature.
29250 &lt;End of help on this topic&gt;
29251 </BODY>
29252 </HTML>
29253 ====== h_config_enable_lessthan_exit =====
29254 <HTML>
29255 <HEAD>
29256 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
29257 </HEAD>
29258 <BODY>
29259 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
29261 If this feature is set, then on screens where there is an Exit command
29262 but no < command, the < key will perform the same function as the Exit
29263 command.
29264 This feature is set by default.
29266 &lt;End of help on this topic&gt;
29267 </BODY>
29268 </HTML>
29269 ====== h_config_enable_view_url =====
29270 <HTML>
29271 <HEAD>
29272 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
29273 </HEAD>
29274 <BODY>
29275 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
29276 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29277 When this feature is set (the default) Alpine will select possible URLs from the
29278 displayed text and display them in boldface for selection.
29280 The first available URL is displayed in inverse.  This is the
29281 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
29282 the selected URL via either built-in means as with mailto:, imap:,
29283 news:, and nntp:, or via an external application as defined
29284 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29285 variable.
29287 Use the arrow keys to change which of the URLs displayed in boldface
29288 is the current selection.
29290 Speaking of arrow keys, the Up and Down Arrows will select the next
29291 and previous URL if one is available on the screen for selection (unless 
29292 you have set the feature 
29293 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
29294 Otherwise, they will simply adjust the viewed text one line up or down.
29296 Similarly, when selectable items are present in a message, the Ctrl-F
29297 key can be used to select the next item in the message independent
29298 of which portion of the viewed message is currently displayed. The
29299 Ctrl-B key can be used to select the previous item in the same way.
29301 <UL>   
29302 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29303 </UL><P>
29304 &lt;End of help on this topic&gt;
29305 </BODY>
29306 </HTML>
29307 ====== h_config_enable_view_web_host =====
29308 <HTML>
29309 <HEAD>
29310 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
29311 </HEAD>
29312 <BODY>
29313 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
29315 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29316 When this feature is set (the default) Alpine will select possible web hostnames
29317 from the displayed text and display them in boldface for selection.  
29318 This can be useful when you receive messages referencing World Wide Web 
29319 sites without the use of complete URLs; for example, specifying only 
29320 &quot;www.washington.edu/alpine/&quot; (which will <B>not</B> become a 
29321 selectable 
29322 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
29323 rather than explicitly
29324 &quot;http://www.washington.edu/alpine/&quot;.  
29326 The first available hostname is displayed in inverse.  This is the
29327 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
29328 the selected hostname via an external application as defined
29329 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29330 variable.
29332 Use the arrow keys (unless you have set the feature 
29333 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29334 to change which of the hostnames displayed in
29335 boldface is the current selection.
29337 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29338 key can be used to select the next web hostname in the message independent
29339 of which portion of the viewed message is currently displayed. The
29340 Ctrl-B key can be used to select the previous web hostnames in the same way.
29342 <UL>   
29343 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29344 </UL><P>
29345 &lt;End of help on this topic&gt;
29346 </BODY>
29347 </HTML>
29348 ====== h_config_enable_view_addresses =====
29349 <HTML>
29350 <HEAD>
29351 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
29352 </HEAD>
29353 <BODY>
29354 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
29356 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29357 Setting this feature causes Alpine to select possible email addresses
29358 from the displayed text and display them in boldface for selection.  
29361 The first available email address is displayed in inverse.  This is the
29362 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
29363 the message composition screen with the To: field filled in with the
29364 selected address.
29366 Use the arrow keys (unless you have set the feature 
29367 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29368 to change which of the hostnames displayed in
29369 boldface is the current selection.
29371 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29372 key can be used to select the next web hostname in the message independent
29373 of which portion of the viewed message is currently displayed. The
29374 Ctrl-B key can be used to select the previous web hostnames in the same way.
29376 <UL>   
29377 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29378 </UL><P>
29379 &lt;End of help on this topic&gt;
29380 </BODY>
29381 </HTML>
29382 ====== h_config_enable_view_arrows =====
29383 <HTML>
29384 <HEAD>
29385 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
29386 </HEAD>
29387 <BODY>
29388 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
29390 This feature modifies Up and Down arrow key behavior in Alpine's
29391 MESSAGE TEXT screen when selectable Attachments, URL's, or
29392 web-hostnames are presented. Alpine's usual behavior is to move to
29393 the next or previous selectable item if currently displayed or
29394 simply to adjust the screen view by one line.
29398 Setting this feature causes the UP and Down arrow key to behave as
29399 if no selectable items were present in the message.
29403 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
29404 item) functionality is unchanged.
29407 &lt;End of help on this topic&gt;
29408 </BODY>
29409 <HTML>
29410 ====== h_config_quell_charset_warning =====
29411 <HTML>
29412 <HEAD>
29413 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
29414 </HEAD>
29415 <BODY>
29416 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
29418 By default, if the message you are viewing contains characters that are
29419 not representable in your
29420 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
29421 then Alpine will
29422 add a warning to the start of the displayed text.
29423 If this option is set, then that editorial message will be suppressed.
29425 Setting this feature also suppresses the comment about the character set
29426 in header lines.
29427 For example, when viewing a message you might see
29429 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
29431 in the From header if your Character-Set is something other than ISO-8859-2.
29432 If you set this feature, the comment about the character set will
29433 no longer be there.
29435 &lt;End of help on this topic&gt;
29436 </BODY>
29437 </HTML>
29438 ====== h_config_quell_host_after_url =====
29439 <HTML>
29440 <HEAD>
29441 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
29442 </HEAD>
29443 <BODY>
29444 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
29446 By default, links in HTML text are displayed with the host the link
29447 references appended, within square brackets, to the link text.  Alpine
29448 does this to help indicate where a link will take you, particularly when
29449 the link text might suggest a different destination.
29452 Setting this feature will prevent the server name from being appended
29453 to the displayed text.
29456 &lt;End of help on this topic&gt;
29457 </BODY>
29458 </HTML>
29459 ====== h_config_prefer_plain_text =====
29460 <HTML>
29461 <HEAD>
29462 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
29463 </HEAD>
29464 <BODY>
29465 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
29467 A message being viewed may contain alternate versions of the same content.
29468 Those alternate versions are supposed to be ordered by the sending software such that the
29469 first alternative is the least preferred and the last alternative is the
29470 most preferred. Alpine will normally display the most-preferred version that
29471 it knows how to display. This is most often encountered where the two
29472 alternate versions are a plain text version and an HTML version, with the
29473 HTML version listed last as the most preferred.
29475 If this option is set, then any plain text version will be preferred to
29476 all other versions.
29478 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
29479 which will temporarily change the sense of this option.
29480 If this option is set you will first see the plain text version of a
29481 message.
29482 If you then type the &quot;A&quot; command, you will see the most preferred version,
29483 most likely HTML, instead.
29484 Typing the &quot;A&quot; command a second time will switch it back.
29485 Alternatively, if the present option is not set you will originally see
29486 the most preferred version of the message and typing &quot;A&quot; will switch to
29487 the plain text version.
29489 &lt;End of help on this topic&gt;
29490 </BODY>
29491 </HTML>
29492 ====== h_config_pass_control =====
29493 <HTML>
29494 <HEAD>
29495 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
29496 </HEAD>
29497 <BODY>
29498 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
29500 It is probably not useful to set this option.
29501 This is a legacy option left behind &quot;just in case&quot;.
29502 Multi-byte characters that have an octet that has the same
29503 value as a control character are permitted through whether or not
29504 this option is turned on.
29506 This feature controls how certain characters contained in messages are
29507 displayed.
29508 If set, all characters in a message will be sent to the
29509 screen. Normally, control characters are displayed as shown below to
29510 avoid a garbled screen and to 
29511 avoid inadvertently changing terminal setup parameters.
29512 Control characters are usually displayed as two character sequences like
29513 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
29514 for Control-C,
29515 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
29516 for ESCAPE,
29517 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
29518 for DELETE, and
29519 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
29520 for the character with value 133 (0x85).
29521 (The DEL character is displayed as ^?, regular control characters are displayed
29522 as the character ^ followed by the character obtained by adding the
29523 five low-order bits of the character to 0x40, and the C1
29524 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
29525 character obtained by adding the
29526 five low-order bits of the character to 0x40.)
29527 Sometimes, in cases where changing a single control character into a
29528 two-character sequence would confuse Alpine's display routines,
29529 a question mark is substituted for the control character.
29531 If you wish to filter out regular control characters but pass the
29532 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29533 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.
29535 &lt;End of help on this topic&gt;
29536 </BODY>
29537 </HTML>
29538 ====== h_config_pass_c1_control =====
29539 <HTML>
29540 <HEAD>
29541 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
29542 </HEAD>
29543 <BODY>
29544 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
29546 It is probably not useful to set this option.
29547 This is a legacy option left behind &quot;just in case&quot;.
29548 Multi-byte characters that have an octet that has the same
29549 value as a control character are permitted through whether or not
29550 this option is turned on.
29552 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29553 is set, then this feature has no effect.
29554 However, if you wish to filter out regular control characters but pass the
29555 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29556 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29557 unset and set this feature.
29559 &lt;End of help on this topic&gt;
29560 </BODY>
29561 </HTML>
29562 ====== h_config_fcc_on_bounce =====
29563 <HTML>
29564 <HEAD>
29565 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
29566 </HEAD>
29567 <BODY>
29568 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
29570 This feature controls an aspect of Alpine's behavior when bouncing a
29571 message. If set, normal FCC ("File Carbon Copy") processing will be
29572 done, just as if you had composed a message to the address you are
29573 bouncing to.  If not set, no FCC of the message will be saved. 
29575 &lt;End of help on this topic&gt;
29576 </BODY>
29577 </HTML>
29578 ====== h_config_show_cursor =====
29579 <HTML>
29580 <HEAD>
29581 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
29582 </HEAD>
29583 <BODY>
29584 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
29586 This feature controls an aspect of Alpine's displays.  If set, the system
29587 cursor will move to convenient locations in the displays.  For example,
29588 to the beginning of the status field of the highlighted index line, or
29589 to the highlighted word after a successful WhereIs command.  It is intended
29590 to draw your attention to an "interesting" spot on the screen.
29592 &lt;End of help on this topic&gt;
29593 </BODY>
29594 </HTML>
29595 ====== h_config_sort_fcc_alpha =====
29596 <HTML>
29597 <HEAD>
29598 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
29599 </HEAD>
29600 <BODY>
29601 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
29603 This feature controls an aspect of Alpine's FOLDER LIST screen.
29604 If set, the default Fcc folder will be sorted alphabetically with the other
29605 folders instead of appearing right after the INBOX.
29607 &lt;End of help on this topic&gt;
29608 </BODY>
29609 </HTML>
29610 ====== h_config_sort_save_alpha =====
29611 <HTML>
29612 <HEAD>
29613 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
29614 </HEAD>
29615 <BODY>
29616 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
29618 This feature controls an aspect of Alpine's FOLDER LIST screen.
29619 If set, the default save folder will be sorted alphabetically with the other
29620 folders instead of appearing right after the INBOX (and default FCC folder).
29622 &lt;End of help on this topic&gt;
29623 </BODY>
29624 </HTML>
29625 ====== h_config_single_list =====
29626 <HTML>
29627 <HEAD>
29628 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
29629 </HEAD>
29630 <BODY>
29631 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
29633 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
29634 the folders will be listed one per line instead of several per line
29635 in the FOLDER LIST display.
29637 &lt;End of help on this topic&gt;
29638 </BODY>
29639 </HTML>
29640 ====== h_config_vertical_list =====
29641 <HTML>
29642 <HEAD>
29643 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
29644 </HEAD>
29645 <BODY>
29646 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
29648 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
29649 the folders will be listed alphabetically down the columns rather
29650 than across the columns as is the default.
29652 &lt;End of help on this topic&gt;
29653 </BODY>
29654 </HTML>
29655 ====== h_config_verbose_post =====
29656 <HTML>
29657 <HEAD>
29658 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
29659 </HEAD>
29660 <BODY>
29661 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
29662 This feature controls an aspect of Alpine's message sending.  When enabled,
29663 Alpine will send a VERB (i.e., VERBose) command early in the posting process
29664 intended to cause the SMTP server to provide a more detailed account of
29665 the transaction.  This feature is typically only useful to system
29666 administrators and other support personel as an aid in troublshooting
29667 problems.
29669 Note, this feature relies on a specific capability of the system's mail
29670 transport agent or configured 
29671 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
29672 It is possible that this
29673 feature will cause problems for some tranport agents, and may result in
29674 sending failure.  In addition, as the verbose output comes from the mail
29675 transport agent, it is likely to vary from one system to another. 
29676 <P><UL>
29677 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29678 </UL><P>
29679 &lt;End of help on this topic&gt;
29680 </BODY>
29681 </HTML>
29682 ====== h_config_auto_reply_to =====
29683 <HTML>
29684 <HEAD>
29685 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
29686 </HEAD>
29687 <BODY>
29688 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
29690 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
29691 will not prompt when a message being replied to contains a "Reply-To:"
29692 header value, but will simply use its value (as opposed to using the
29693 "From:" field's value).
29697 Note: Using the "Reply-To:" address is usually the preferred behavior,
29698 however, some mailing list managers choose to place the list's address in
29699 the "Reply-To:" field of any message sent out to the list.  In such
29700 cases, this feature makes it all too easy for personal replies to be
29701 inadvertently sent to the entire mail list, so be careful! 
29703 &lt;End of help on this topic&gt;
29704 </BODY>
29705 </HTML>
29706 ====== h_config_del_skips_del =====
29707 <HTML>
29708 <HEAD>
29709 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
29710 </HEAD>
29711 <BODY>
29712 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
29714 This feature controls an aspect of Alpine's Delete command.  If set, this
29715 feature will cause the Delete command to advance past following messages that
29716 are marked deleted.  In other words, pressing "D" will both mark the
29717 current message deleted and advance to the next message that is not marked
29718 deleted.
29719 This feature is set by default.
29721 &lt;End of help on this topic&gt;
29722 </BODY></HTML>
29723 ====== h_config_expunge_manually =====
29724 <HTML>
29725 <HEAD>
29726 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
29727 </HEAD>
29728 <BODY>
29729 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
29731 Normally, when you close a folder that contains deleted messages you are
29732 asked if you want to expunge those messages from the folder permanently.
29733 If this feature is set, you won't be asked and the deleted messages will
29734 remain in the folder.
29735 If you choose to set this feature you will have to expunge the
29736 messages manually using the eXpunge command, which you can use while
29737 in the MESSAGE INDEX screen.
29738 If you do not expunge deleted messages the size of your
29739 folder will continue to increase until you are out of disk space.
29741 <UL>   
29742 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29743 </UL><P>
29744 &lt;End of help on this topic&gt;
29745 </BODY>
29746 </HTML>
29747 ====== h_config_auto_expunge =====
29748 <HTML>
29749 <HEAD>
29750 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
29751 </HEAD>
29752 <BODY>
29753 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
29755 This features controls an aspect of Alpine's eXpunge command.  If set, you
29756 will <B>not</B> be prompted to confirm your intent before the expunge takes 
29757 place.
29758 Actually, this is only true for the INBOX folder and for folders in the
29759 Incoming Folders collection. See the feature
29760 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
29762 <UL>   
29763 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29764 </UL><P>
29765 &lt;End of help on this topic&gt;
29766 </BODY>
29767 </HTML>
29768 ====== h_config_full_auto_expunge =====
29769 <HTML>
29770 <HEAD>
29771 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
29772 </HEAD>
29773 <BODY>
29774 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
29776 This features controls an aspect of Alpine's eXpunge command.  If set, you
29777 will <B>not</B> be prompted to confirm your intent before the expunge 
29778 takes place.  This feature sets this behavior for all folders, unlike the
29779 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
29780 feature that works only for incoming folders.
29782 <UL>   
29783 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29784 </UL><P>
29785 &lt;End of help on this topic&gt;
29786 </BODY>
29787 </HTML>
29788 ====== h_config_auto_read_msgs =====
29789 <HTML>
29790 <HEAD>
29791 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
29792 </HEAD>
29793 <BODY>
29794 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
29795 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
29796 and the 
29797 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
29798 option is also set, then Alpine will
29799 automatically transfer all read messages to the designated folder and mark
29800 them as deleted in the INBOX.  Messages in the INBOX marked with an 
29801 &quot;N&quot; (meaning New, or unseen) are not affected.
29803 <UL>   
29804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29805 </UL><P>
29806 &lt;End of help on this topic&gt;
29807 </BODY>
29808 </HTML>
29809 ====== h_config_auto_fcc_only =====
29810 <HTML>
29811 <HEAD>
29812 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
29813 </HEAD>
29814 <BODY>
29815 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
29816 This features controls an aspect of Alpine's composer.
29817 The only time this feature will be used is if you attempt to send mail
29818 that has no recipients but does have an Fcc.
29819 Normally, Alpine will ask if you really mean to copy the message only to
29820 the Fcc.
29821 That is, it asks if you really meant to have no recipients.
29822 If this feature is set, you
29823 will <B>not</B> be prompted to confirm your intent to make only a copy
29824 of a message with no recipients.
29826 This feature is closely related to
29827 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
29828 The difference between this feature and that feature is that this feature
29829 considers a Bcc to be a recipient while that feature will ask for confirmation
29830 even if there is a Bcc when there is no To, Cc, or Newsgroup.
29831 The default values also differ. This feature defaults to asking the question
29832 and you have to turn it off.
29833 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
29834 unless you turn it on.
29837 <UL>   
29838 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29839 </UL><P>
29840 &lt;End of help on this topic&gt;
29841 </BODY>
29842 </HTML>
29843 ====== h_config_mark_fcc_seen =====
29844 <HTML>
29845 <HEAD>
29846 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
29847 </HEAD>
29848 <BODY>
29849 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
29851 This features controls the way Fccs (File carbon copies) are
29852 made of the messages you send.
29855 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
29856 copy will be marked as Unseen.
29857 When you look at the folder it was saved in the message will appear to
29858 be a New message until you read it.
29859 When this feature is enabled, the message will be marked as having
29860 been Seen.
29863 <UL>   
29864 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29865 </UL><P>
29866 &lt;End of help on this topic&gt;
29867 </BODY>
29868 </HTML>
29869 ====== h_config_no_fcc_attach =====
29870 <HTML>
29871 <HEAD>
29872 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
29873 </HEAD>
29874 <BODY>
29875 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
29877 This features controls the way Fcc's (File carbon copies) are
29878 made of the messages you send.
29881 Normally, Alpine saves an exact copy of your message as it was sent.
29882 When this feature is enabled, the &quot;body&quot; of the message
29883 you send (the text you type in the composer) is preserved in the 
29884 copy as before, however all attachments are replaced with text
29885 explaining what had been sent rather than the attachments themselves.
29888 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
29889 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
29890 allows you to interactively set whether or not attachments are saved
29891 to the Fcc'd copy.
29894 <UL>   
29895 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29896 </UL><P>
29897 &lt;End of help on this topic&gt;
29898 </BODY>
29899 </HTML>
29900 ====== h_config_read_in_newsrc_order =====
29901 <HTML>
29902 <HEAD>
29903 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
29904 </HEAD>
29905 <BODY>
29906 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
29908 This feature controls the order in which newsgroups will be presented.  If
29909 set, they will be presented in the same order as they occur in your 
29910 <!--chtml if pinemode="os_windows"-->
29911 &quot;NEWSRC&quot;
29912 <!--chtml else-->
29913 &quot;.newsrc&quot;
29914 <!--chtml endif-->
29915 file (the default location of which can be changed with the 
29916 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
29918 If not set, the newsgroups will be presented in alphabetical order.
29920 <UL>   
29921 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29922 </UL><P>
29923 &lt;End of help on this topic&gt;
29924 </BODY>
29925 </HTML>
29926 ====== h_config_quell_tz_comment =====
29927 <HTML>
29928 <HEAD>
29929 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
29930 </HEAD>
29931 <BODY>
29932 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
29934 Normally, when Alpine generates a Date header for outgoing mail,
29935 it will try to include the symbolic timezone at the end of the
29936 header inside parentheses.
29937 The symbolic timezone is often three characters long, but on
29938 some operating systems, it may be longer.
29939 Apparently there are some SMTP servers in the world that will reject an
29940 incoming message if it has a Date header longer than about 80 characters.
29941 If this feature is set, the symbolic timezone normally generated by
29942 Alpine will not be included.
29943 You probably don't need to worry about this feature unless you run into
29944 the problem described above.
29947 &lt;End of help on this topic&gt;
29948 </BODY>
29949 </HTML>
29950 ====== h_config_post_wo_validation =====
29951 <HTML>
29952 <HEAD>
29953 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
29954 </HEAD>
29955 <BODY>
29956 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
29958 This feature controls whether the NNTP server is queried as newsgroups
29959 are entered for posting.  Validation over slow links (e.g. dialup using
29960 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
29962 &lt;End of help on this topic&gt;
29963 </BODY>
29964 </HTML>
29965 ====== h_config_send_wo_confirm =====
29966 <HTML>
29967 <HEAD>
29968 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
29969 </HEAD>
29970 <BODY>
29971 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
29973 By default, when you send or post a message you will be asked to confirm
29974 with a question that looks something like:
29977 <CENTER><SAMP>Send message?</SAMP></CENTER>
29980 If this feature is set, you
29981 will <B>not</B> be prompted to confirm your intent to send
29982 and your message will be sent.
29984 If this feature is set it disables some possibilities and renders some
29985 other features meaningless.
29986 You will not be able to use
29987 <A HREF="h_config_sending_filter">Sending Filters</A>,
29988 Verbose sending mode,
29989 <A HREF="h_config_compose_bg_post">Background Sending</A>,
29990 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
29991 or ^V to turn off the generation of flowed text for this message.
29992 These options are normally available as suboptions in the Send prompt, but
29993 with no Send prompt the options are gone.
29996 A somewhat related feature is
29997 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
29998 which may be used to eliminate the extra confirmation
29999 question when posting to a newsgroup.
30001 <UL>   
30002 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30003 </UL><P>
30004 &lt;End of help on this topic&gt;
30005 </BODY>
30006 </HTML>
30007 ====== h_config_quell_filtering_done_message =====
30008 <HTML>
30009 <HEAD>
30010 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30011 </HEAD>
30012 <BODY>
30013 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30015 If you use Filter Rules that move messages or set status of messages
30016 you sometimes see a message from Alpine that looks like
30019 <CENTER><SAMP>filtering done</SAMP></CENTER>
30022 If this feature is set, this message will be suppressed.
30023 If the feature
30024 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30025 is set then this message will be suppressed regardless.
30028 <UL>   
30029 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30030 </UL><P>
30031 &lt;End of help on this topic&gt;
30032 </BODY>
30033 </HTML>
30034 ====== h_config_quell_filtering_messages =====
30035 <HTML>
30036 <HEAD>
30037 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30038 </HEAD>
30039 <BODY>
30040 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30042 If you use Filter Rules that move messages or set status of messages
30043 you sometimes see messages from Alpine that look like
30046 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30052 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30058 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30061 If this feature is set, these messages will be suppressed.
30062 The feature
30063 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30064 is related.
30067 <UL>   
30068 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30069 </UL><P>
30070 &lt;End of help on this topic&gt;
30071 </BODY>
30072 </HTML>
30073 ====== h_config_quell_post_prompt =====
30074 <HTML>
30075 <HEAD>
30076 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30077 </HEAD>
30078 <BODY>
30079 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30081 By default, when you post a message to a newsgroup you are asked to confirm
30082 that you want to post with the question
30085 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30088 If this feature is set, you
30089 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30090 and your message will be posted.
30093 <UL>   
30094 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30095 </UL><P>
30096 &lt;End of help on this topic&gt;
30097 </BODY>
30098 </HTML>
30099 ====== h_config_check_mail_onquit =====
30100 <HTML>
30101 <HEAD>
30102 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30103 </HEAD>
30104 <BODY>
30105 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30107 If this feature is set, Alpine will check for new mail after you give the
30108 Quit command.
30109 If new mail has arrived since the previous check, you will be notified
30110 and given the choice of quitting or not quitting.
30112 <UL>   
30113 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30114 </UL><P>
30115 &lt;End of help on this topic&gt;
30116 </BODY>
30117 </HTML>
30118 ====== h_config_inbox_no_confirm =====
30119 <HTML>
30120 <HEAD>
30121 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30122 </HEAD>
30123 <BODY>
30124 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30126 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30127 command and there are no more folders or newsgroups to visit, you are asked
30128 if you want to return to the INBOX.
30129 If this feature is set you will not be asked.
30130 It will be assumed that you do want to return to the INBOX.
30132 <UL>   
30133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30134 </UL><P>
30135 &lt;End of help on this topic&gt;
30136 </BODY>
30137 </HTML>
30138 ====== h_config_dates_to_local =====
30139 <HTML>
30140 <HEAD>
30141 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
30142 </HEAD>
30143 <BODY>
30144 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
30146 Normally, the message dates that you see in the
30147 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
30148 For example, if a message was sent to you from a few timezones to the east
30149 it might appear that it was sent from the future;
30150 or if it was sent from somewhere to the west it might appear
30151 as if it is from yesterday even though it was sent only a few minutes ago.
30152 If this feature is set an attempt will be made to convert the dates
30153 to your local timezone to be displayed.
30155 Note that this does not affect the results of Select by Date or of
30156 anything else other than these displayed dates.
30157 When viewing the message you may look at the original unconverted value of the Date
30158 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
30160 <UL>   
30161 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30162 </UL><P>
30163 &lt;End of help on this topic&gt;
30164 </BODY>
30165 </HTML>
30166 ====== h_config_tab_no_prompt =====
30167 <HTML>
30168 <HEAD>
30169 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
30170 </HEAD>
30171 <BODY>
30172 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
30174 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30175 command and there is a problem checking a folder, you are asked
30176 whether you want to continue with the search in the following folder or not.
30177 This question gives you a chance to stop the NextNew processing.
30178 (The checking problem might be caused by the fact that the folder does not
30179 exist, or by an authentication problem, or by a server problem
30180 of some sort.)
30183 If this feature is set you will not be asked.
30184 It will be assumed that you do want to continue.
30186 <UL>   
30187 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30188 </UL><P>
30189 &lt;End of help on this topic&gt;
30190 </BODY>
30191 </HTML>
30192 ====== h_config_input_history =====
30193 <HTML>
30194 <HEAD>
30195 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
30196 </HEAD>
30197 <BODY>
30198 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
30200 Many of the prompts that ask for input in the status line near the
30201 bottom of the screen will respond to Up Arrow and Down Arrow
30202 with the history of previous entries.
30203 For example, in the MESSAGE INDEX screen when you use the WhereIs
30204 command the text you entered will be remembered and can be recalled
30205 by using the Up Arrow key.
30206 Another example, when saving a message the folders saved to will
30207 be remembered and can be recalled using the arrow keys.
30209 In the Save prompt, some users prefer that the Up and Down arrow keys
30210 be used for the Previous Collection and Next Collection commands
30211 instead of for a history of previous saves.
30212 If this option is set the Up and Down arrow keys will become synonyms for the
30213 Previous Collection and Next Collection (^P and ^N) commands in the
30214 prompt for the name of a folder to Save to or in the prompt for the
30215 name of a folder to GoTo.
30216 When this feature is not set (the default), ^P and ^N will change the
30217 collection and the arrow keys will show the history.
30219 <UL>   
30220 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30221 </UL><P>
30222 &lt;End of help on this topic&gt;
30223 </BODY>
30224 </HTML>
30225 ====== h_config_confirm_role =====
30226 <HTML>
30227 <HEAD>
30228 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
30229 </HEAD>
30230 <BODY>
30231 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
30233 If you have roles, when you Reply to or Forward a message, or Compose
30234 a new message, Alpine
30235 will search through your roles for one that matches.
30236 Normally, if no matches are found you will be placed into the composer
30237 with no opportunity to select a role.
30238 If this feature is set, then you will be asked to confirm that you don't
30239 want a role.
30240 This will give you the opportunity to select a role (with the ^T command).
30241 If you confirm no role with a Return, you will be placed in
30242 the composer with no role.
30243 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
30244 These behave the same as if you pressed the Return.
30245 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
30246 match what you might type if there was a role match.)
30248 If you are using the alternate form of the Compose command called
30249 &quot;Role&quot;, then all of your roles will be available to you,
30250 independent of the value of this feauture and of the values set for all of
30251 Reply Use, Forward Use, and Compose Use.
30253 <UL>   
30254 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30255 </UL><P>
30256 &lt;End of help on this topic&gt;
30257 </BODY>
30258 </HTML>
30259 ====== h_config_news_cross_deletes =====
30260 <HTML>
30261 <HEAD>
30262 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
30263 </HEAD>
30264 <BODY>
30265 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
30267 This feature controls what Alpine does when you delete a message in a
30268 newsgroup that appears in more than one newsgroup.  Such a message
30269 is sometimes termed a &quot;crossposting&quot; in that it was posted
30270 across several newsgroups.
30273 Alpine's default behavior when you delete such a message is to remove
30274 only the copy in the current newsgroup from view when you use the
30275 &quot;Exclude&quot; command or the next time you visit the newsgroup.
30278 Enabling this feature causes Alpine to remove every occurrence of the
30279 message from all newsgroups it appears in and to which you are
30280 subscribed.
30283 NOTE: As currently implemented, enabling this feature may increase the
30284 time it takes the Expunge command and newsgroup closing to complete.
30287 <UL>   
30288 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30289 </UL><P>
30290 &lt;End of help on this topic&gt;
30291 </BODY>
30292 </HTML>
30293 ====== h_config_news_catchup =====
30294 <HTML>
30295 <HEAD>
30296 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
30297 </HEAD>
30298 <BODY>
30299 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
30301 This feature controls what Alpine does as it closes a newsgroup.
30302 When set, Alpine will offer to delete all messages from the newsgroup
30303 as you are quitting Alpine or opening a new folder.
30306 This feature is useful if you typically read all the interesting messages
30307 in a newsgroup each time you open it.  This feature saves you from
30308 having to delete each message in a newsgroup as you read it or from
30309 selecting all the messages and doing an
30310 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
30311 move on to the next folder or newsgroup.
30314 <UL>   
30315 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30316 </UL><P>
30317 &lt;End of help on this topic&gt;
30318 </BODY>
30319 </HTML>
30320 ====== h_config_next_thrd_wo_confirm =====
30321 <HTML>
30322 <HEAD>
30323 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
30324 </HEAD>
30325 <BODY>
30326 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
30328 This feature controls an aspect of Alpine's Next and Prev commands in
30329 the case where you are using one of the
30330 &quot;separate-index-screen&quot; styles for the configuration option
30331 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
30332 and currently have the folder sorted by a Threaded or OrderedSubject sort.
30333 When you are Viewing a particular thread you have a
30334 MESSAGE INDEX of only the messages in that thread.
30335 If you press the Next command with the last message in the thread highlighted
30336 you will normally be asked if you want to &quot;View next thread?&quot;,
30337 assuming there is a next thread to view.
30338 If this feature is set it will be assumed that you always want to view the
30339 next thread and you won't be asked to confirm that.
30340 Similarly, if the first message of the thread is highlighted and you
30341 press the Prev command, this feature will prevent the question
30342 &quot;View previous thread&quot;.
30344 This feature only has an effect in the MESSAGE INDEX screen.
30345 If you then view a particular message from that screen and press the
30346 Next command, you will be sent to the next thread without being asked,
30347 independent of the setting of this feature.
30349 The feature
30350 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
30352 &lt;End of help on this topic&gt;
30353 </BODY>
30354 </HTML>
30355 ====== h_config_kw_braces =====
30356 <HTML>
30357 <HEAD>
30358 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
30359 </HEAD>
30360 <BODY>
30361 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
30363 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
30364 TEXT screens.
30365 If you have modified the
30366 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
30367 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
30368 are used to display keywords or their initials along with the Subject; then
30369 this option may be used to modify the resulting display slightly.
30370 By default, the keywords or initials displayed for these tokens will be
30371 surrounded with curly braces ({ and }) and a trailing space.
30372 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
30373 a message, the &quot;SUBJKEY&quot; token will normally look like
30375 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
30377 and the SUBJKEYINIT token would look like
30379 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
30381 The default character before the keywords is the left brace ({) and the
30382 default after the keywords is the right brace followed by a space (} ).
30384 This option allows you to change that.
30385 You should set it to two values separated by a space.
30386 The values may be quoted if they include space characters.
30387 So, for example, the default value could be specified explicitly by setting this
30388 option to
30390 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
30392 The first part wouldn't need to be quoted (but it doesn't hurt).
30393 The second part does need the quotes because it includes a space character.
30394 If you wanted to change the braces to brackets you could use
30396 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
30398 Inside the quotes you can use backslash quote to mean quote, so
30400 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
30402 would produce
30404 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
30406 It is also possible to color keywords in the index using the
30407 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
30409 It is not possible to change the fact that a space character is used to
30410 separate the keywords if more than one keyword is set for a message.
30411 It is also not possible to change the fact that there are no separators
30412 between the keyword initials if more than one keyword is set.
30414 &lt;End of help on this topic&gt;
30415 </BODY>
30416 </HTML>
30417 ====== h_config_opening_sep =====
30418 <HTML>
30419 <HEAD>
30420 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
30421 </HEAD>
30422 <BODY>
30423 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
30425 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
30426 With some setups the text of the subject is followed
30427 by the opening text of the message if there is any room available in the index line.
30428 If you have configured your
30429 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
30430 to include one of the Subject tokens that causes this behavior
30431 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
30432 to modify what is displayed slightly.
30433 By default, the Subject is separated from the opening text of the message by
30434 the three characters space dash space;
30436 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
30438 Use this option to set it to something different.
30439 The value must be quoted if it includes any space characters.
30440 For example, the default value could be specified explicitly by setting this
30441 option to
30443 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
30445 &lt;End of help on this topic&gt;
30446 </BODY>
30447 </HTML>
30448 ====== h_config_select_wo_confirm =====
30449 <HTML>
30450 <HEAD>
30451 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
30452 </HEAD>
30453 <BODY>
30454 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
30456 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
30457 These commands all take text input to specify the name of the folder or
30458 file to be used, but allow you to press ^T for a list of possible names.
30459 If set, the selected name will be used immediately, without further
30460 opportunity to confirm or edit the name.
30462 Some related help topics are
30463 <UL>
30464 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30465 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30466 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30467 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
30468 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
30469 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
30470 </UL>
30472 &lt;End of help on this topic&gt;
30473 </BODY>
30474 </HTML>
30475 ====== h_config_save_part_wo_confirm =====
30476 <HTML>
30477 <HEAD>
30478 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
30479 </HEAD>
30480 <BODY>
30481 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
30483 This feature controls an aspect of Alpine's Save command.
30484 By default, when you Save a message that has some deleted parts, you will
30485 be asked to confirm that you want to Save with a prompt that looks like:
30487 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
30489 If this feature is set, you will not be asked.
30491 &lt;End of help on this topic&gt;
30492 </BODY>
30493 </HTML>
30494 ====== h_config_use_resentto =====
30495 <HTML>
30496 <HEAD>
30497 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
30498 </HEAD>
30499 <BODY>
30500 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
30502 This feature is turned off by default because turning it on causes problems
30503 with some deficient IMAP servers.
30504 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
30505 <A HREF="h_rule_patterns">Pattern</A>
30506 contains a To header pattern and this feature is turned on,
30507 then a check is made in the message to see
30508 if a Resent-To header is present, and that is used instead of the To header.
30509 If this feature is not turned on, then the regular To header will always
30510 be used.
30513 &lt;End of help on this topic&gt;
30514 </BODY>
30515 </HTML>
30516 ====== h_config_use_reg_start_for_stayopen =====
30517 <HTML>
30518 <HEAD>
30519 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
30520 </HEAD>
30521 <BODY>
30522 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
30524 This feature affects which message is selected as the current message
30525 when you enter a
30526 <A HREF="h_config_permlocked">Stay Open</A> folder.
30528 Normally, the starting position for an incoming folder (which most Stay Open
30529 folders will likely be) is controlled by the
30530 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
30531 However, if a folder is a Stay Open folder, when you re-enter the folder
30532 after the first time the current message will be the same as it was when
30533 you left the folder.
30534 An exception is made if you use the TAB command to get to the folder.
30535 In that case, the message number will be incremented by one from what it
30536 was when you left the folder.
30538 The above special behavior is thought to be useful.
30539 However, it is special and different from what you might at first expect.
30540 If this feature is set, then Stay Open folders will not be treated specially
30541 as far as the startup rule is concerned.
30544 &lt;End of help on this topic&gt;
30545 </BODY>
30546 </HTML>
30547 ====== h_config_use_current_dir =====
30548 <HTML>
30549 <HEAD>
30550 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
30551 </HEAD>
30552 <BODY>
30553 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
30555 This feature controls an aspect of several commands. 
30556 If set, your &quot;current working directory&quot; 
30557 <!--chtml if pinemode="running"-->
30558 (which, at least for your current Alpine &quot;session,&quot; 
30559 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
30560 <!--chtml endif-->
30561 will be used instead of your home directory 
30562 <!--chtml if pinemode="running"-->
30563 (which, in the present configuration of your system, is
30564  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
30565 <!--chtml endif-->
30566 for all of the following operations:<UL>
30567     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
30568     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
30569     <LI> <!--chtml if pinemode="function_key"-->F4
30570          <!--chtml else-->Ctrl-R
30571          <!--chtml endif--> file inclusion in the COMPOSER
30572     <LI> <!--chtml if pinemode="function_key"-->F5
30573          <!--chtml else-->Ctrl-J
30574          <!--chtml endif--> file attachment in the COMPOSER
30575 </UL>
30576 <!--chtml if pinemode="os_windows"-->
30578 If you are starting PC-Alpine from a desktop icon or the Start menu, 
30579 you can set the &quot;current drive&quot; 
30580 by specifying it in the &quot;Start in:&quot; 
30581 box found in the Shortcut tab of the Properties.  
30582 <!--chtml endif-->
30584 <UL>   
30585 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30586 </UL>
30589 &lt;End of help on this topic&gt;
30590 </BODY>
30591 </HTML>
30592 ====== h_config_save_wont_delete =====
30593 <HTML>
30594 <HEAD>
30595 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
30596 </HEAD>
30597 <BODY>
30598 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
30600 This feature controls one aspect of the Save command.  If set, Save will
30601 not mark the message &quot;deleted&quot; (its default behavior) after
30602 it has been copied to the designated folder.
30605 &lt;End of help on this topic&gt;
30606 </BODY>
30607 </HTML>
30608 ====== h_config_use_boring_spinner =====
30609 <HTML>
30610 <HEAD>
30611 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
30612 </HEAD>
30613 <BODY>
30614 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
30616 When Alpine is delayed for some reason it usually shows that
30617 something is happening with a small animated display in the status
30618 message line near the bottom of the screen.
30619 Setting this feature will cause that animation to be the same
30620 each time instead of having Alpine choose a random animation.
30621 You may turn the animation off altogether by setting the
30622 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
30623 option to zero.
30626 &lt;End of help on this topic&gt;
30627 </BODY>
30628 </HTML>
30629 ====== h_config_unsel_wont_advance =====
30630 <HTML>
30631 <HEAD>
30632 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
30633 </HEAD>
30634 <BODY>
30635 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
30637 This feature controls one aspect of the Unselect Current message command.
30638 Normally, when the Unselect current message command (:) is typed when the
30639 current message is selected, the message will be unselected and the next
30640 message will become the current message.
30641 If this feature is set, the cursor will not advance to the next message.
30642 Instead, the current message will remain the current message after
30643 unselecting.
30646 &lt;End of help on this topic&gt;
30647 </BODY>
30648 </HTML>
30649 ====== h_config_prune_uses_iso =====
30650 <HTML>
30651 <HEAD>
30652 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
30653 </HEAD>
30654 <BODY>
30655 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
30657 By default, Alpine asks monthly whether or not you would like to rename
30658 some folders to a new name containing the date.
30659 It also asks whether or not you would like to delete some old folders.
30660 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
30661 explanation.
30664 By default, the name used when renaming a folder looks like
30666 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
30668 For example, the first time you run Alpine in May of 2004,
30669 the folder &quot;sent-mail&quot; might be renamed to
30671 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
30673 If this feature is set, the name used will be of the form
30675 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
30677 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
30678 month (01, 02, ..., 12).
30679 For the April, 2004 example above, it would instead be
30681 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
30683 because April is the 4th month of the year.
30684 A reason you might want to set this feature is so that the folders
30685 will sort in chronological order.
30688 &lt;End of help on this topic&gt;
30689 </BODY>
30690 </HTML>
30691 ====== h_config_save_advances =====
30692 <HTML>
30693 <HEAD>
30694 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
30695 </HEAD>
30696 <BODY>
30697 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
30699 This feature controls one aspect of the Save command.  If set, Save will
30700 (in addition to copying the current message to the designated folder) also
30701 advance to the next message.
30704 &lt;End of help on this topic&gt;
30705 </BODY>
30706 </HTML>
30707 ====== h_config_force_arrow =====
30708 <HTML>
30709 <HEAD>
30710 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
30711 </HEAD>
30712 <BODY>
30713 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
30715 This feature affects Alpine's MESSAGE INDEX display routine.
30716 If set, the normal inverse-video cursor will be
30717 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
30718 second column of the index display.
30720 This is the same index cursor you get if you turn on
30721 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
30722 line coloring will still be present if this feature is turned on and
30723 <!--#echo var="FEAT_assume-slow-link"--> is off.
30725 An alternative version of the Arrow cursor is available by including the
30726 <A HREF="h_config_index_arrow_color">ARROW</A>
30727 token in the
30728 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
30730 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
30731 but that is not implemented.
30734 &lt;End of help on this topic&gt;
30735 </BODY>
30736 </HTML>
30737 ====== h_config_force_low_speed =====
30738 <HTML>
30739 <HEAD>
30740 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
30741 </HEAD>
30742 <BODY>
30743 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
30745 UNIX Alpine only.
30747 This feature affects Alpine's display routines.  If set, the normal
30748 inverse-video cursor (used to highlight the current item in a list) will be
30749 replaced by an &quot;arrow&quot; cursor and other
30750 screen update optimizations for
30751 low-speed links (e.g. 2400 bps dialup connections) will be activated.
30752 One of the optimizations is that colored index lines (set up with Indexcolor
30753 Rules) will not be colored.
30754 If you are just turning this feature on because you like using
30755 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
30756 coloring by turning this feature off and the
30757 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
30760 &lt;End of help on this topic&gt;
30761 </BODY>
30762 </HTML>
30763 ====== h_config_show_delay_cue =====
30764 <HTML>
30765 <HEAD>
30766 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
30767 </HEAD>
30768 <BODY>
30769 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
30771 If set, this feature will cause an asterisk to appear in the upper
30772 left-hand corner of the screen whenever Alpine checks for new mail.
30773 Two asterisks whenever Alpine saves (checkpoints) the state of the current
30774 mailbox to disk.
30776 <!--chtml if pinemode="os_windows"-->
30778 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
30779 it is trying to open a network connection (e.g, to open your INBOX
30780 on an IMAP
30781 server) or read from the network connection.  A greater-than symbol,
30782 will be displayed when PC-Alpine is trying to write to the network
30783 connection (e.g, sending a command to your IMAP server).
30784 <!--chtml endif-->
30787 &lt;End of help on this topic&gt;
30788 </BODY>
30789 </HTML>
30790 ====== h_config_color_style =====
30791 <HTML>
30792 <HEAD>
30793 <TITLE>OPTION: Color Style</TITLE>
30794 </HEAD>
30795 <BODY>
30796 <H1>OPTION: Color Style</H1>
30798 UNIX Alpine only.
30800 If the terminal or terminal emulator you are using is capable of displaying
30801 colors, this option controls whether or not color will be used in Alpine.
30802 If you turn color on and things are set up correctly,
30803 you should see color appear on the screen immmediately.
30804 Modern terminal emulators are usually capable of displaying colors.
30806 The available options include:
30809 <DL>
30810 <DT>no-color</DT>
30811 <DD>Don't use color.
30812 </DD>
30814 <DT>use-termdef</DT>
30815 <DD>In order to decide if your terminal is capable of color, Alpine looks in
30816 the terminal capabilities database, TERMINFO or TERMCAP, depending on
30817 how Alpine was compiled.
30818 This is a good option to choose if you switch between a color and a non-color
30819 terminal with the same Alpine configuration.
30820 Alpine will know to use color on the color terminal because it is described
30821 in the termcap entry, and Alpine will know to use black and white on the
30822 non-color terminal.
30823 The Alpine Technical Notes
30824 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
30825 have more information on configuring a TERMCAP or TERMINFO
30826 entry for color Alpine.
30827 This is usually something a system administrator does.
30828 </DD>
30830 <DT>force-ansi-8color</DT>
30831 <DD>This is probably the setting that most people should use.
30832 Because setting up a termcap entry is confusing and because the
30833 terminal capabilities database is often not correctly configured for color,
30834 this choice and the next may be easier for you to use.
30835 If your terminal emulator responds to ANSI color escape sequences, which
30836 many do, this option will cause Alpine to believe your terminal will respond
30837 to the escape sequences that produce eight different foreground and background
30838 colors.
30839 The escape sequences used to set the foreground colors are
30841   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
30843 where the color_number is an ASCII digit between 0 and 7.
30844 The numbers 0 through 7 should correspond to the colors black, red, green,
30845 yellow, blue, magenta, cyan, and white.
30846 Some terminal emulators use a pre-ANSI scheme that swaps
30847 the colors blue and red and the colors yellow and cyan.
30848 This will cause the default colors to be different, but other than that
30849 things should work fine.
30850 There is also a 9th color available, the last one shown, which is the default
30851 color from the terminal emulator.
30852 When used as a background color some people refer to this color as
30853 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
30854 shown in the color swatch of the SETUP COLOR screen.
30855 The foreground transparent color is shown as
30856 the color of the &quot;TRAN&quot; text.
30857 (The transparent color will not work correctly in a PC-Alpine configuration.)
30858 The escape sequences used to set the background colors are the same
30859 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
30860 The escape sequences for foreground and background default colors (transparent)
30861 are 39m and 49m.
30863 Note: With the Tera Term terminal emulator this setting works well.
30864 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
30865 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
30866 menu, in the &quot;Window&quot; submenu.
30867 </DD>
30869 <DT>force-ansi-16color</DT>
30870 <DD>Many terminal emulators know about the same eight colors above
30871 plus eight more.
30872 This option attempts to use all 16 colors.
30873 The same escape sequences as for the eight-color terminal are used
30874 for the first eight colors.
30875 The escape sequences used to set foreground colors 8-15 are the same as
30876 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
30877 The background color sequences for colors 8-15 are the same as for 0-7
30878 except the &quot;4&quot; is replaced with &quot;10&quot;.
30879 You can tell if the 16 colors are working by turning on this option
30880 and then going into one of the color configuration screens, for example,
30881 the configuration screen for Normal Color.
30882 If you see 16 different colors to select from (plus a 17th for
30883 the transparent color), it's working.
30884 </DD>
30886 <DT>force-xterm-256color</DT>
30887 <DD>Some versions of xterm (and some other terminal emulators)
30888 have support for 256 colors.
30889 The escape sequences used to set the foreground colors are
30891   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
30893 where the color_number is an ASCII digit between 0 and 255.
30894 Background colors are the same with the 38 replaced with a 48.
30895 The numbers 0 through 15 are probably similar to the 16 color version
30896 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
30897 The terminal default (transparent) color is the 257th color at the bottom.
30898 Some terminal emulators will misinterpret these escape sequences causing
30899 the terminal to blink or overstrike characters or to do something else
30900 undesirable.
30902 The PuTTY terminal emulator has an option called &quot;Allow terminal to
30903 use xterm 256-colour mode&quot; which allows PuTTY to work well with
30904 this 256-color setting.
30906 </DD>
30907 </DL>
30910 The normal default is &quot;no-color&quot;.
30913 Once you've turned on color you may set the
30914 colors of many objects on the screen individually.
30915 For example, you may add colors to the status letters on the MESSAGE
30916 INDEX page.
30917 Most categories of color that Alpine supports are configurable here.
30918 For example, &quot;Normal Color&quot;
30919 is the color used to display most of the text in Alpine, and
30920 &quot;Reverse Color&quot; is used to display highlighted text, such as the
30921 current message in the MESSAGE INDEX.
30923 Lines in the MESSAGE INDEX may also be colored.
30924 Use Setup Rules to get to the Indexcolor configuration screen.
30927 <UL>   
30928 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30929 </UL><P>
30930 &lt;End of help on this topic&gt;
30931 </BODY>
30932 </HTML>
30933 ====== h_config_disable_index_locale_dates =====
30934 <HTML>
30935 <HEAD>
30936 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
30937 </HEAD>
30938 <BODY>
30939 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
30941 This feature affects the display of dates in the MESSAGE INDEX.
30942 Normally an attempt is made to localize the dates
30943 used in the MESSAGE INDEX display to your locale.
30944 This is controlled with the
30945 LC_TIME locale setting on a UNIX system.
30946 On Windows the Regional Options control panel may be used to set the date format.
30947 At the programming level, Alpine is using the strftime routine
30948 to print the parts of a date.
30950 If this feature is set, dates are displayed in English and
30951 with the conventions of the United States.
30954 <UL>   
30955 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30956 </UL><P>
30957 &lt;End of help on this topic&gt;
30958 </BODY>
30959 </HTML>
30960 ====== h_config_auto_open_unread =====
30961 <HTML>
30962 <HEAD>
30963 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
30964 </HEAD>
30965 <BODY>
30966 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
30968 This feature controls the behavior of the TAB key when traversing folders
30969 in the optional 
30970 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
30971 collection or in optional <!--#echo var="VAR_news-collections"-->.
30973 When the TAB
30974 (<A HREF="h_common_nextnew">NextNew</A>)
30975 key is pressed, and there
30976 are no more unseen messages in the current (incoming message or news)
30977 folder, Alpine will search the list of folders in the current collection for
30978 one containing New or Recent (new since the last time the folder was
30979 opened) messages.
30980 This behavior may be modified slightly with the
30981 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
30982 feature that causes Alpine to look for Unseen messages instead of Recent
30983 messages.
30984 Normally, when such a folder is found, Alpine will ask
30985 whether you wish to open the folder.  If this feature is set, Alpine will
30986 automatically open the folder without prompting.
30988 This feature also affects some other similar situations.
30989 If you have a
30990 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
30991 that is equal to one of the &quot;separate-&quot; values, and you are
30992 viewing a thread; then when you type the NextNew command and are at the
30993 end of the current thread you will automatically go to the next thread
30994 if this feature is set.
30995 By default, you would be asked if you want to view the next thread.
30996 You will also be asked at times whether or not you want to view the next
30997 thread after you delete the last message in the thread.
30998 Setting this feature will also cause that question to be skipped.
31001 <UL>   
31002 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31003 </UL><P>
31004 &lt;End of help on this topic&gt;
31005 </BODY>
31006 </HTML>
31007 ====== h_config_auto_include_reply =====
31008 <HTML>
31009 <HEAD>
31010 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31011 </HEAD>
31012 <BODY>
31013 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31015 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31016 will ask whether you wish to include the original message in your reply.
31017 If this feature is set and the feature
31018 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31019 is <EM>not</EM> set, then the original message will be included in the reply
31020 automatically, without prompting.
31022 &lt;End of help on this topic&gt;
31023 </BODY>
31024 </HTML>
31025 ====== h_config_select_in_bold =====
31026 <HTML>
31027 <HEAD>
31028 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31029 </HEAD>
31030 <BODY>
31031 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31033 This feature controls an aspect of Alpine's 
31034 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31035 commands; in
31036 particular, the Select and WhereIs commands. Select and WhereIs (with the
31037 ^X subcommand) will search the current folder for messages meeting a
31038 specified criteria, and &quot;tag&quot; the resulting messages with an 
31039 &quot;X&quot; in the
31040 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31041 is set, instead of using the &quot;X&quot; to denote a selected message, 
31042 Alpine will
31043 attempt to display those index lines in boldface. Whether this is
31044 preferable to the &quot;X&quot; will depend on personal taste and the type of
31045 terminal being used.
31047 <UL>   
31048 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31049 </UL><P>
31050 &lt;End of help on this topic&gt;
31051 </BODY>
31052 </HTML>
31053 ====== h_config_alt_auth =====
31054 <HTML>
31055 <HEAD>
31056 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31057 </HEAD>
31058 <BODY>
31059 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31061 This feature affects how Alpine connects to IMAP servers.
31062 It's utility has largely been overtaken by events,
31063 but it may still be useful in some circumstances.
31064 If you only connect to modern IMAP servers that support
31065 &quot;TLS&quot; you can ignore this feature.
31068 Details:
31071 By default, Alpine will attempt to connect to an IMAP server on the
31072 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31073 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31074 then a secure (encrypted) session will be negotiated.
31077 With this feature enabled, before connecting on the normal IMAP port, Alpine
31078 will first attempt to connect to an alternate IMAP service port (993) used
31079 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31080 (SSL) method.
31081 If the SSL attempt fails, Alpine will then try the default
31082 behavior described in the previous paragraph.
31085 TLS negotiation on the normal port is preferred, and supersedes the use of
31086 SSL on port 993, but older servers may not provide TLS support.
31087 This feature may be convenient when accessing IMAP servers that do not support
31088 TLS, but do support SSL connections on port 993.
31089 However, it is important to understand that with this feature enabled,
31090 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
31091 but it will proceed to make an insecure connection if that is the only
31092 option offered by the server, or if the Alpine in question has been built
31093 without encryption capability.
31096 Note that this feature specifies a per-user (or system-wide) default
31097 behavior, but host/folder specification flags may be used to control the
31098 behavior of any specific connection.
31099 This feature interacts with some of
31100 the possible host/folder path specification flags as follows:
31103 The <SAMP>/tls</SAMP> host flag, for example,
31106 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
31108 will over-ride this feature for the specified host by bypassing the
31109 SSL connection attempt.
31110 Moreover, with <SAMP>/tls</SAMP> specified,
31111 the connection attempt will fail if the
31112 service on port 143 does not offer TLS support.
31115 The <SAMP>/ssl</SAMP> host flag, for example,
31118 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
31120 will insist on an SSL connection for the specified host,
31121 and will fail if the SSL service on port 993 is not available.
31122 Alpine will not subsequently retry a connection
31123 on port 143 if <SAMP>/ssl</SAMP> is specified.
31126 <UL>   
31127 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31128 </UL><P>
31129 &lt;End of help on this topic&gt;
31130 </BODY>
31131 </HTML>
31132 ====== h_config_file_dir ======
31133 <HTML>
31134 <HEAD>
31135 <TITLE>OPTION: File Directory</TITLE>
31136 </HEAD>
31137 <BODY>
31138 <H1>OPTION: File Directory</H1>
31140 PC-Alpine only.
31142 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
31143 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
31144 Message Index's &quot;E&nbsp;Export&quot; command.
31147 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
31148 component, Alpine assumes the file exists in the user's home directory.
31149 Under Windows operating systems, this definition isn't always clear.  This 
31150 feature allows you to explictly set where Alpine should look for files
31151 without a leading path.
31154 NOTE: this feature's value is ignored if either 
31155 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
31156 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
31159 <UL>   
31160 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31161 </UL><P>
31162 &lt;End of help on this topic&gt;
31163 </BODY>
31164 </HTML>
31165 ====== h_config_quote_all_froms =====
31166 <HTML>
31167 <HEAD>
31168 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
31169 </HEAD>
31170 <BODY>
31171 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
31173 This feature controls an aspect of the Save command (and also the way
31174 outgoing messages are saved to an FCC folder).  If set, Alpine will add
31175 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
31176 when they are saved to another folder, including lines syntactically
31177 distinguishable from the type of message separator line commonly used on
31178 Unix systems.
31181 The default behavior is that a &quot;>&quot; will be prepended only to lines
31182 beginning with &quot;From &quot; that might otherwise be confused with a message
31183 separator line on Unix systems.  If pine is the only mail program you use,
31184 this default is reasonable.  If another program you use has trouble
31185 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
31186 enable this feature.  This feature only applies to the common Unix mailbox
31187 format that uses message separator lines beginning with &quot;From &quot;.  If
31188 Alpine has been configured to use a different mailbox format (possibly
31189 incompatible with other mail programs), then this issue does not arise,
31190 and the feature is irrelevant.
31193 &lt;End of help on this topic&gt;
31194 </BODY>
31195 </HTML>
31196 ====== h_config_normal_color =====
31197 <HTML>
31198 <HEAD>
31199 <TITLE>OPTION: Normal Color</TITLE>
31200 </HEAD>
31201 <BODY>
31202 <H1>OPTION: Normal Color</H1>
31204 Sets the color Alpine normally uses.
31205 The foreground color is the color of the actual character and the
31206 background color is the color of the area behind the character.
31207 By default this color is black characters on a white background.
31209 <A HREF="h_color_setup">Descriptions of the available commands</A>
31211 Look <A HREF="h_edit_nav_cmds">here</A>
31212 to see the available Editing and Navigation commands.
31214 &lt;End of help on this topic&gt;
31215 </BODY>
31216 </HTML>
31217 ====== h_config_reverse_color =====
31218 <HTML>
31219 <HEAD>
31220 <TITLE>OPTION: Reverse Color</TITLE>
31221 </HEAD>
31222 <BODY>
31223 <H1>OPTION: Reverse Color</H1>
31225 Sets the color Alpine uses for reverse video characters.
31226 The foreground color is the color of the actual character and the
31227 background color is the color of the area behind the character.
31229 <A HREF="h_color_setup">Descriptions of the available commands</A>
31231 Look <A HREF="h_edit_nav_cmds">here</A>
31232 to see the available Editing and Navigation commands.
31234 &lt;End of help on this topic&gt;
31235 </BODY>
31236 </HTML>
31237 ====== h_config_title_color =====
31238 <HTML>
31239 <HEAD>
31240 <TITLE>OPTION: Title Color</TITLE>
31241 </HEAD>
31242 <BODY>
31243 <H1>OPTION: Title Color</H1>
31245 Sets the color Alpine uses for the titlebar (the top line on the screen).
31246 The foreground color is the color of the actual character and the
31247 background color is the color of the area behind the character.
31248 By default, the Title Color is black characters on a yellow background.
31250 The actual titlebar color may be different from the Title Color if
31251 the option
31252 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
31253 is set to some value other than the default.
31254 It may also be different if the current folder is closed and the
31255 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
31256 color is set to something different from the Title Color.
31258 <A HREF="h_color_setup">Descriptions of the available commands</A>
31260 Look <A HREF="h_edit_nav_cmds">here</A>
31261 to see the available Editing and Navigation commands.
31263 &lt;End of help on this topic&gt;
31264 </BODY>
31265 </HTML>
31266 ====== h_config_titleclosed_color =====
31267 <HTML>
31268 <HEAD>
31269 <TITLE>OPTION: Title Closed Color</TITLE>
31270 </HEAD>
31271 <BODY>
31272 <H1>OPTION: Title Closed Color</H1>
31274 Sets the color Alpine uses for the titlebar (the top line on the screen)
31275 when the current folder is closed.
31276 The foreground color is the color of the actual character and the
31277 background color is the color of the area behind the character.
31278 By default, the Title Color Closed Color is white characters on a red background.
31280 By setting this color to something noticeable you will be alerted to the
31281 fact that the current folder is closed, perhaps unexpectedly.
31283 &lt;End of help on this topic&gt;
31284 </BODY>
31285 </HTML>
31286 ====== h_config_status_color =====
31287 <HTML>
31288 <HEAD>
31289 <TITLE>OPTION: Status Color</TITLE>
31290 </HEAD>
31291 <BODY>
31292 <H1>OPTION: Status Color</H1>
31294 Sets the color Alpine uses for status messages written to the message
31295 line near the bottom of the screen.
31296 The foreground color is the color of the actual character and the
31297 background color is the color of the area behind the character.
31298 By default, the Status Color is the same as the Reverse Color.
31300 <A HREF="h_color_setup">Descriptions of the available commands</A>
31302 Look <A HREF="h_edit_nav_cmds">here</A>
31303 to see the available Editing and Navigation commands.
31305 &lt;End of help on this topic&gt;
31306 </BODY>
31307 </HTML>
31308 ====== h_config_index_opening_color =====
31309 <HTML>
31310 <HEAD>
31311 <TITLE>OPTION: Index Opening Color</TITLE>
31312 </HEAD>
31313 <BODY>
31314 <H1>OPTION: Index Opening Color</H1>
31316 With some setups the text of the subject is followed
31317 by the opening text of the message if there is any room available in the index line.
31318 If you have configured your
31319 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31320 to include one of the Subject tokens that causes this behavior
31321 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
31322 this opening text with this option.
31323 This coloring takes place for all but the current index line, and the Opening
31324 Color appears to be in front of any color from an Index Color Rule.
31326 By default the Index Opening Color is gray characters on a white background.
31329 <A HREF="h_color_setup">Descriptions of the available commands</A>
31331 Look <A HREF="h_edit_nav_cmds">here</A>
31332 to see the available Editing and Navigation commands.
31334 &lt;End of help on this topic&gt;
31335 </BODY>
31336 </HTML>
31337 ====== h_config_index_pri_color =====
31338 <HTML>
31339 <HEAD>
31340 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
31341 </HEAD>
31342 <BODY>
31343 <H1>OPTION: Index Priority Symbol Colors</H1>
31345 The X-Priority header is a non-standard header that is used in a
31346 somewhat standard way by many mail programs.
31347 Alpine expects the value of this header to be a digit with a value
31348 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
31349 Alpine can be made to display an indication of this priority in
31350 messages by use of one of the tokens
31351 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
31352 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
31353 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31356 You may set the color used to draw these tokens by use of the colors
31357 Index High Priority Symbol Color and Index Low Priority Symbol Color.
31358 This coloring takes place for all but the current index line, and the Priority
31359 Color appears to be in front of any color from an Index Color Rule.
31360 If the priority has a value of 1 or 2 the High Priority color will be
31361 used,
31362 and if the value is 4 or 5 the Low Priority color will be used.
31364 If you don't set these colors the index line will be colored in the same color as
31365 the bulk of the index line.
31368 <A HREF="h_color_setup">Descriptions of the available commands</A>
31370 Look <A HREF="h_edit_nav_cmds">here</A>
31371 to see the available Editing and Navigation commands.
31373 &lt;End of help on this topic&gt;
31374 </BODY>
31375 </HTML>
31376 ====== h_config_index_subject_color =====
31377 <HTML>
31378 <HEAD>
31379 <TITLE>OPTION: Index Subject Color</TITLE>
31380 </HEAD>
31381 <BODY>
31382 <H1>OPTION: Index Subject Color</H1>
31384 You may set the color used to draw the Subject part of the index line.
31385 This coloring takes place for all but the current index line, and the Subject
31386 Color appears to be in front of any color from an Index Color Rule.
31388 If you don't set this color it will be colored in the same color as
31389 the bulk of the index line.
31392 <A HREF="h_color_setup">Descriptions of the available commands</A>
31394 Look <A HREF="h_edit_nav_cmds">here</A>
31395 to see the available Editing and Navigation commands.
31397 &lt;End of help on this topic&gt;
31398 </BODY>
31399 </HTML>
31400 ====== h_config_index_from_color =====
31401 <HTML>
31402 <HEAD>
31403 <TITLE>OPTION: Index From Color</TITLE>
31404 </HEAD>
31405 <BODY>
31406 <H1>OPTION: Index From Color</H1>
31408 You may set the color used to draw the From part of the index line.
31409 This coloring takes place for all but the current index line, and the From
31410 Color appears to be in front of any color from an Index Color Rule.
31412 If you don't set this color it will be colored in the same color as
31413 the bulk of the index line.
31416 <A HREF="h_color_setup">Descriptions of the available commands</A>
31418 Look <A HREF="h_edit_nav_cmds">here</A>
31419 to see the available Editing and Navigation commands.
31421 &lt;End of help on this topic&gt;
31422 </BODY>
31423 </HTML>
31424 ====== h_config_index_arrow_color =====
31425 <HTML>
31426 <HEAD>
31427 <TITLE>OPTION: Index Arrow Color</TITLE>
31428 </HEAD>
31429 <BODY>
31430 <H1>OPTION: Index Arrow Color</H1>
31432 If you have configured your
31433 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31434 to include the &quot;ARROW&quot; token, you may set the color of
31435 the arrow displayed with this option.
31436 If you don't set the color it will be colored in the same color as
31437 the bulk of the index line.
31440 <A HREF="h_color_setup">Descriptions of the available commands</A>
31442 Look <A HREF="h_edit_nav_cmds">here</A>
31443 to see the available Editing and Navigation commands.
31445 &lt;End of help on this topic&gt;
31446 </BODY>
31447 </HTML>
31448 ====== h_config_index_color =====
31449 <HTML>
31450 <HEAD>
31451 <TITLE>OPTION: Index Colors</TITLE>
31452 </HEAD>
31453 <BODY>
31454 <H1>OPTION: Index Colors</H1>
31456 You may add color to the single character symbols that give the status
31457 of each message in the MESSAGE INDEX.
31458 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
31459 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
31460 screen depending on whether the message is addressed to you, and whether
31461 the message is marked Important, is Deleted, is Answered, or is New.
31462 The color for each of those characters may be specified by setting the
31463 &quot;Index-to-me&quot; Symbol Color,
31464 the &quot;Index-important&quot; Symbol Color,
31465 the &quot;Index-deleted&quot; Symbol Color,
31466 the &quot;Index-answered&quot; Symbol Color,
31467 and the &quot;Index-new&quot; Symbol Color.
31468 There are also two other symbol colors called &quot;Index-recent&quot;
31469 and &quot;Index-unseen&quot;.
31470 These two colors will only be used if you have configured your
31471 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31472 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
31474 The default colors for these symbols are:
31475 <TABLE>
31476 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
31477 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
31478 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31479 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
31480 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
31481 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31482 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31483 </TABLE>
31485 Besides coloring the message status symbols, you may also color the
31486 entire index line.
31487 This is done by using the
31488 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
31489 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
31490 When the entire line is colored that color will be &quot;behind&quot; the
31491 status symbol colors talked about in the paragraph above.
31493 You may also color
31494 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
31495 in the index using the
31496 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
31497 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
31498 the Subject using
31499 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
31500 the From field using
31501 <A HREF="h_config_index_from_color">Index From Color</A>;
31502 and the
31503 <A HREF="h_config_index_opening_color">Index Opening</A> text.
31505 <A HREF="h_color_setup">Descriptions of the available commands</A>
31507 Look <A HREF="h_edit_nav_cmds">here</A>
31508 to see the available Editing and Navigation commands.
31510 &lt;End of help on this topic&gt;
31511 </BODY>
31512 </HTML>
31513 ====== h_config_metamsg_color =====
31514 <HTML>
31515 <HEAD>
31516 <TITLE>OPTION: Meta-Message Color</TITLE>
31517 </HEAD>
31518 <BODY>
31519 <H1>OPTION: Meta-Message Color</H1>
31521 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
31522 that aren't part of the message itself.
31523 For example, an attachment that isn't shown might produce a meta
31524 message something like:
31526 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
31528 If you set the
31529 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
31530 option you might see
31532 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
31534 Warnings about suspicious looking URLs in HTML will also be colored
31535 with this color.
31537 The foreground color is the color of the actual character and the
31538 background color is the color of the area behind the character.
31539 By default, the Meta-Message Color is black characters on a yellow background.
31541 <A HREF="h_color_setup">Descriptions of the available commands</A>
31543 Look <A HREF="h_edit_nav_cmds">here</A>
31544 to see the available Editing and Navigation commands.
31546 &lt;End of help on this topic&gt;
31547 </BODY>
31548 </HTML>
31549 ====== h_config_keylabel_color =====
31550 <HTML>
31551 <HEAD>
31552 <TITLE>OPTION: KeyLabel Color</TITLE>
31553 </HEAD>
31554 <BODY>
31555 <H1>OPTION: KeyLabel Color</H1>
31557 Sets the color Alpine uses for the labels of the keys in the two-line
31558 menu at the bottom of the screen.
31559 For example, some of the screens have a &quot;P PrevMsg&quot; command.
31560 This option sets the color used when displaying &quot;PrevMsg&quot;.
31561 The foreground color is the color of the actual character and the
31562 background color is the color of the area behind the character.
31563 By default, the KeyLabel Color is the same as the Normal Color.
31565 WARNING: Some terminal emulators have the property that the screen will scroll
31566 down one line whenever a character is written to the character cell in the
31567 lower right corner of the screen.
31568 Alpine can usually avoid writing a character in that corner of the screen.
31569 However, if you have defined a KeyLabel Color then Alpine does have to write
31570 a character in that cell in order to color the cell correctly.
31571 If you find that your display sometimes scrolls up a line this could be
31572 the problem.
31573 The most obvious symptom is probably that the titlebar at the top of the
31574 screen scrolls off the screen.
31575 Try setting KeyLabel Color to Default to see if that fixes the problem.
31577 <A HREF="h_color_setup">Descriptions of the available commands</A>
31579 Look <A HREF="h_edit_nav_cmds">here</A>
31580 to see the available Editing and Navigation commands.
31582 &lt;End of help on this topic&gt;
31583 </BODY>
31584 </HTML>
31585 ====== h_config_keyname_color =====
31586 <HTML>
31587 <HEAD>
31588 <TITLE>OPTION: KeyName Color</TITLE>
31589 </HEAD>
31590 <BODY>
31591 <H1>OPTION: KeyName Color</H1>
31593 Sets the color Alpine uses for the names of the keys in the two-line
31594 menu at the bottom of the screen.
31595 For example, some of the screens have a &quot;P PrevMsg&quot; command.
31596 This option sets the color used when displaying the &quot;P&quot;.
31597 The foreground color is the color of the actual character and the
31598 background color is the color of the area behind the character.
31599 By default, the KeyName Color is the same as the Reverse Color.
31601 <A HREF="h_color_setup">Descriptions of the available commands</A>
31603 Look <A HREF="h_edit_nav_cmds">here</A>
31604 to see the available Editing and Navigation commands.
31606 &lt;End of help on this topic&gt;
31607 </BODY>
31608 </HTML>
31609 ====== h_config_slctbl_color =====
31610 <HTML>
31611 <HEAD>
31612 <TITLE>OPTION: Selectable Item Color</TITLE>
31613 </HEAD>
31614 <BODY>
31615 <H1>OPTION: Selectable Item Color</H1>
31617 Sets the color Alpine uses for selectable items, such as URLs.
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, the Selectable Item Color is the same as the Normal Color,
31621 except that it is bold.
31623 <A HREF="h_color_setup">Descriptions of the available commands</A>
31625 Look <A HREF="h_edit_nav_cmds">here</A>
31626 to see the available Editing and Navigation commands.
31628 &lt;End of help on this topic&gt;
31629 </BODY>
31630 </HTML>
31631 ====== h_config_quote_color =====
31632 <HTML>
31633 <HEAD>
31634 <TITLE>OPTION: Quote Colors</TITLE>
31635 </HEAD>
31636 <BODY>
31637 <H1>OPTION: Quote Colors</H1>
31639 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
31640 screen.
31641 If a line begins with a &gt; character (or space followed by &gt;)
31642 it is considered a quote.
31643 That line will be given the Quote1 Color (first level quote).
31644 If there is a second level of quoting then the Quote2 Color will be used.
31645 Alpine considers there to be a second level of quoting if that first &gt; is
31646 followed by another &gt; (or space followed by &gt;).
31647 If there are characters other than whitespace and &gt; signs, then it isn't
31648 considered another level of quoting.
31649 Similarly, if there is a third level of quoting the Quote3 Color will be
31650 used.
31651 If there are more levels after that the Quote Colors are re-used.
31652 If you define all three colors then it would repeat like Color1, Color2, Color3,
31653 Color1, Color2, Color3, ...
31654 If you only define the first two it would be
31655 Color1, Color2, Color1, Color2, ...
31656 If you define only the Quote1 Color, then the entire quote would be that
31657 color regardless of the quoting levels.
31658 By default, the Quote1 Color is black characters on a greenish-blue background;
31659 the Quote2 Color is black characters on a dull yellow background; and
31660 the Quote3 Color is black characters on a green background.
31662 <A HREF="h_color_setup">Descriptions of the available commands</A>
31664 Look <A HREF="h_edit_nav_cmds">here</A>
31665 to see the available Editing and Navigation commands.
31667 &lt;End of help on this topic&gt;
31668 </BODY>
31669 </HTML>
31670 ====== h_config_folder_color =====
31671 <HTML>
31672 <HEAD>
31673 <TITLE>OPTION: Folder Color</TITLE>
31674 </HEAD>
31675 <BODY>
31676 <H1>OPTION: Folder Color</H1>
31678 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
31679 screen. By default, the Folder Color is the normal text color.
31682 If you set a color for this feature, other than the normal color
31683 (the default), or a color for
31684 <A HREF="h_config_directory_color">Directory Color</A>, then directories
31685 will be colored according to the color specified in the
31686 <A HREF="h_config_directory_color">Directory Color</A> option. In this
31687 case, the color will be the only indication that the colored name
31688 refers to a directory. The normal behavior is that Alpine
31689 indicates that a name refers to a directory by appending a
31690 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
31691 the folder.
31694 If a folder is a directory, then the folder name will be painted
31695 according to the color defined by this variable, and a separator
31696 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
31697 to the name. That
31698 indicator will be painted according to the color defined in the
31699 <A HREF="h_config_directory_color">Directory Color</A> option.
31702 &lt;End of help on this topic&gt;
31703 </BODY>
31704 </HTML>
31705 ====== h_config_directory_color =====
31706 <HTML>
31707 <HEAD>
31708 <TITLE>OPTION: Directory Color</TITLE>
31709 </HEAD>
31710 <BODY>
31711 <H1>OPTION: Directory Color</H1>
31713 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
31714 screen. By default, the Folder Color is the normal text color.
31716 If you set a color for this feature, other than the normal color
31717 (the default), or a color for
31718 <A HREF="h_config_folder_color">Folder Color</A>, then folders
31719 will be colored according to the color specified in the
31720 <A HREF="h_config_folder_color">Folder Color</A> option. In this
31721 case, the color will be the only indication that the colored name
31722 refers to a directory. The normal behavior is that Alpine
31723 indicates that a name refers to a directory by appending a
31724 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
31725 the folder.
31727 If a folder is a directory, then the folder name will be painted
31728 according to the color defined by the option
31729 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
31730 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
31731 after the name. That
31732 indicator will be painted according to the color defined in this
31733 option.
31735 &lt;End of help on this topic&gt;
31736 </BODY>
31737 </HTML>
31738 ====== h_config_folder_list_color =====
31739 <HTML>
31740 <HEAD>
31741 <TITLE>OPTION: Folder-List Color</TITLE>
31742 </HEAD>
31743 <BODY>
31744 <H1>OPTION: Folder-List Color</H1>
31746 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
31747 screen. By default, the Folder-List Color is the normal text color.
31749 This text refers to the informative text that Alpine displays so you
31750 can recognize each collection. The color of the content of each collection
31751 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
31752 and <A HREF="h_config_directory_color">Directory Color</A>.
31754 Unlike the options
31755 <A HREF="h_config_folder_color">Folder Color</A>
31756 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
31757 this option does not affect the way that Alpine reports folders,
31758 directories and folders that are directories.
31760 &lt;End of help on this topic&gt;
31761 </BODY>
31762 </HTML>
31763 ====== h_config_incunseen_color =====
31764 <HTML>
31765 <HEAD>
31766 <TITLE>OPTION: Incoming Unseen Color</TITLE>
31767 </HEAD>
31768 <BODY>
31769 <H1>OPTION: Incoming Unseen Color</H1>
31771 If the option
31772 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
31773 is turned on it is possible to highlight the folders that contain
31774 unseen messages by coloring them with this color.
31775 By default, this is the same as the Normal Color and no highlighting is done.
31777 Usually the &quot;current&quot; folder (the folder the cursor is on)
31778 is highlighted using reverse video.
31779 If the current folder is colored because it contains unseen messages then
31780 the color used to show that it is also the current folder is controlled
31781 by the
31782 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
31783 feature at the top of the SETUP COLOR screen.
31785 <A HREF="h_color_setup">Descriptions of the available commands</A>
31787 Look <A HREF="h_edit_nav_cmds">here</A>
31788 to see the available Editing and Navigation commands.
31790 &lt;End of help on this topic&gt;
31791 </BODY>
31792 </HTML>
31793 ====== h_config_signature_color =====
31794 <HTML>
31795 <HEAD>
31796 <TITLE>OPTION: Signature Color</TITLE>
31797 </HEAD>
31798 <BODY>
31799 <H1>OPTION: Signature Color</H1>
31801 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
31802 screen. According to USENET conventions, the signature is defined as the
31803 paragraph following the &quot;sigdashes&quot;, that is, the special line
31804 consisting of the three characters
31805 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
31806 empty line right after the sigdashes to be considered as part of the
31807 signature.
31808 By default, the Signature Color is blue characters on a white background.
31810 <A HREF="h_color_setup">Descriptions of the available commands</A>
31812 Look <A HREF="h_edit_nav_cmds">here</A>
31813 to see the available Editing and Navigation commands.
31815 &lt;End of help on this topic&gt;
31816 </BODY>
31817 </HTML>
31818 ====== h_config_prompt_color =====
31819 <HTML>
31820 <HEAD>
31821 <TITLE>OPTION: Prompt Color</TITLE>
31822 </HEAD>
31823 <BODY>
31824 <H1>OPTION: Prompt Color</H1>
31826 Sets the color Alpine uses for confirmation prompts and questions that
31827 appear in the status line near the bottom of the screen.
31828 The foreground color is the color of the actual character and the
31829 background color is the color of the area behind the character.
31830 By default, the Prompt Color is the same as the Reverse Color.
31832 <A HREF="h_color_setup">Descriptions of the available commands</A>
31834 Look <A HREF="h_edit_nav_cmds">here</A>
31835 to see the available Editing and Navigation commands.
31837 &lt;End of help on this topic&gt;
31838 </BODY>
31839 </HTML>
31840 ====== h_config_header_general_color =====
31841 <HTML>
31842 <HEAD>
31843 <TITLE>OPTION: Header General Color</TITLE>
31844 </HEAD>
31845 <BODY>
31846 <H1>OPTION: Header General Color</H1>
31848 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
31849 screen.
31850 The foreground color is the color of the actual character and the
31851 background color is the color of the area behind the character.
31852 By default, this is the same as the Normal Color.
31854 It is also possible to set the colors for specific header fields, for
31855 example the Subject, using
31856 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
31857 If both a Header General Color and a specific Viewer Header Color are set
31858 the specific color will override the general color, as you would expect.
31860 <A HREF="h_color_setup">Descriptions of the available commands</A>
31862 Look <A HREF="h_edit_nav_cmds">here</A>
31863 to see the available Editing and Navigation commands.
31865 &lt;End of help on this topic&gt;
31866 </BODY>
31867 </HTML>
31868 ====== h_config_incol =====
31869 <HTML>
31870 <HEAD>
31871 <TITLE>Index Line Color</TITLE>
31872 </HEAD>
31873 <BODY>
31874 <H1>Index Line Color</H1>
31876 This option is used to set the color of a line in the index when the
31877 message for that line matches the Pattern.
31878 This colors the whole index line, except possibly the status letters,
31879 which may be colored separately using the
31880 <A HREF="h_color_setup">Setup Kolor</A> screen.
31881 The foreground color is the color of the actual characters and the
31882 background color is the color of the area behind the characters.
31884 <A HREF="h_color_setup">Descriptions of the available commands</A>
31886 Look <A HREF="h_edit_nav_cmds">here</A>
31887 to see the available Editing and Navigation commands.
31889 &lt;End of help on this topic&gt;
31890 </BODY>
31891 </HTML>
31892 ====== h_config_usetransparent_color =====
31893 <HTML>
31894 <HEAD>
31895 <TITLE>OPTION: Use Transparent Color</TITLE>
31896 </HEAD>
31897 <BODY>
31898 <H1>OPTION: Use Transparent Color</H1>
31900 This is a special color supported by some terminal emulators.
31901 It is intended to result in the default foreground or background color
31902 from the terminal emulator.
31903 This is the color the terminal was displaying characters in before you started Alpine.
31904 The reason it is called Transparent is because you could set the foreground color
31905 to some specific color, like Red, and then set the background color to the
31906 Transparent Color. If it works as expected, the background color from the terminal
31907 window in which Alpine is running will show through but with the Red characters
31908 in the foreground.
31910 <A HREF="h_color_setup">Descriptions of the available commands</A>
31912 Look <A HREF="h_edit_nav_cmds">here</A>
31913 to see the available Editing and Navigation commands.
31915 &lt;End of help on this topic&gt;
31916 </BODY>
31917 </HTML>
31918 ====== h_config_usenormal_color =====
31919 <HTML>
31920 <HEAD>
31921 <TITLE>OPTION: Use Normal Color</TITLE>
31922 </HEAD>
31923 <BODY>
31924 <H1>OPTION: Use Normal Color</H1>
31926 When you use this color value, the actual color used will be the same
31927 as the corresponding Normal Color.
31928 For example if your Normal Color is black on white and you set both
31929 the foreground and background colors here to use the Normal Color, you'll
31930 get black on white. If you later change the Normal Color to red on blue
31931 this color will also change to red on blue.
31933 <A HREF="h_color_setup">Descriptions of the available commands</A>
31935 Look <A HREF="h_edit_nav_cmds">here</A>
31936 to see the available Editing and Navigation commands.
31938 &lt;End of help on this topic&gt;
31939 </BODY>
31940 </HTML>
31941 ====== h_config_usenone_color =====
31942 <HTML>
31943 <HEAD>
31944 <TITLE>OPTION: Use None Color</TITLE>
31945 </HEAD>
31946 <BODY>
31947 <H1>OPTION: Use None Color</H1>
31949 This is a special color that simply means to leave the color alone.
31950 It is useful for Index symbols and for Keyword Colors used in the Subject
31951 field of an index line.
31952 The most likely use is to set an explicit foreground color and then set
31953 the background color to the None Color.
31954 That will cause the symbol or keyword to be drawn in the foreground color
31955 with a background equal to whatever color the rest of the index line is already
31956 drawn in.
31957 You will see no visible effect unless you have assigned Indexcolor Rules to
31958 color index lines or you have set an actual color for the Reverse Color.
31960 <A HREF="h_color_setup">Descriptions of the available commands</A>
31962 Look <A HREF="h_edit_nav_cmds">here</A>
31963 to see the available Editing and Navigation commands.
31965 &lt;End of help on this topic&gt;
31966 </BODY>
31967 </HTML>
31968 ====== h_config_dflt_color =====
31969 <HTML>
31970 <HEAD>
31971 <TITLE>OPTION: Default Color</TITLE>
31972 </HEAD>
31973 <BODY>
31974 <H1>OPTION: Default Color</H1>
31976 Setting default will cause the color to be the default color.
31977 Unsetting default is normally done by choosing a color, but in some cases
31978 you may want to declare the current default color to be your non-default
31979 choice.
31980 For example, the default Keyname Color is the same as the Reverse Color.
31981 Whenever the Reverse Color changes the Keyname Color will also change, unless
31982 you've changed it or unset the default box.
31984 <A HREF="h_color_setup">Descriptions of the available commands</A>
31986 Look <A HREF="h_edit_nav_cmds">here</A>
31987 to see the available Editing and Navigation commands.
31989 &lt;End of help on this topic&gt;
31990 </BODY>
31991 </HTML>
31992 ====== h_config_bold_slctbl =====
31993 <HTML>
31994 <HEAD>
31995 <TITLE>OPTION: Bold</TITLE>
31996 </HEAD>
31997 <BODY>
31998 <H1>OPTION: Bold</H1>
32000 The color for this particular section may have the Bold attribute turned
32001 on or off.
32002 Setting bold will cause the characters to be bold.
32004 <A HREF="h_color_setup">Descriptions of the available commands</A>
32006 Look <A HREF="h_edit_nav_cmds">here</A>
32007 to see the available Editing and Navigation commands.
32009 &lt;End of help on this topic&gt;
32010 </BODY>
32011 </HTML>
32012 ====== h_config_kw_color =====
32013 <HTML>
32014 <HEAD>
32015 <TITLE>OPTION: Keyword Colors</TITLE>
32016 </HEAD>
32017 <BODY>
32018 <H1>OPTION: Keyword Colors</H1>
32020 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32021 Keywords are displayed as part of the Subject by default.
32022 They are also displayed as part of the Subject if the tokens
32023 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32024 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32025 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32026 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32028 For example, you might have set up a Keyword
32029 &quot;Work&quot; using the
32030 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32031 You could cause that Keyword to show up as a special color
32032 by setting up the Keyword Color using this option, and then including it
32033 in the MESSAGE INDEX screen using one of the tokens listed above in the
32034 <!--#echo var="VAR_index-format"-->.
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_customhdr_color =====
32045 <HTML>
32046 <HEAD>
32047 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32048 </HEAD>
32049 <BODY>
32050 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32052 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32053 For example, you may set the color of the Subject header or the From header.
32054 The foreground color is the color of the actual character and the
32055 background color is the color of the area behind the character.
32057 In addition to setting the colors for particular headers (like the Subject)
32058 you may also set a color to be used for all headers unless overridden by a
32059 more specific Viewer Header Color.
32060 To do this use the
32061 <A HREF="h_config_header_general_color">Header General Color</A>.
32063 For Header Colors,
32064 there is an additional line on the
32065 screen labeled &quot;Pattern to match&quot;.
32066 If you leave that blank, then the whole field for that header will
32067 be colored.
32068 However, if you give a pattern to match, the coloring will only take place
32069 if there is a match for that pattern in the value of the field.
32070 For example, if you are working on a color for the Subject header and
32071 you fill in a pattern of &quot;important&quot;, then only Subjects that
32072 contain the word &quot;important&quot; will be colored.
32074 If the pattern you enter is a comma-separated list of patterns, then coloring
32075 happens if any of those patterns matches.
32077 <A HREF="h_color_setup">Descriptions of the available commands</A>
32079 Look <A HREF="h_edit_nav_cmds">here</A>
32080 to see the available Editing and Navigation commands.
32082 &lt;End of help on this topic&gt;
32083 </BODY>
32084 </HTML>
32085 ====== h_config_indextoken_color =====
32086 <HTML>
32087 <HEAD>
32088 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
32089 </HEAD>
32090 <BODY>
32091 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
32093 This option allows you to set up the color in which any token, not specified by the
32094 previous options, will be colored in the MESSAGE INDEX screen. 
32096 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
32097 a token that can be used in the index format. 
32098 The list of available tokens is <A HREF="h_index_tokens">here</A>.
32100 If you fail to enter a valid token your entry will be ignored, and you will be asked to
32101 enter a new one. Once you have entered a valid token, a line will be added to the
32102 configuration screen that you can use to set up the colors in which that token will
32103 be painted. This is done in the same way that you configure colors for other
32104 variables.
32106 <A HREF="h_color_setup">Descriptions of the available commands</A>
32108 Look <A HREF="h_edit_nav_cmds">here</A>
32109 to see the available Editing and Navigation commands.
32111 &lt;End of help on this topic&gt;
32112 </BODY>
32113 </HTML>
32114 ====== h_config_customhdr_pattern =====
32115 <HTML>
32116 <HEAD>
32117 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
32118 </HEAD>
32119 <BODY>
32120 <H1>OPTION: Viewer Header Color Pattern</H1>
32122 If you leave this blank, then the whole field for the header will
32123 be colored.
32124 If you give a pattern to match, the coloring will only take place
32125 if there is a match for that pattern in the value of the field.
32126 For example, if you are working on a color for the Subject header and
32127 you fill in a pattern of &quot;important&quot;, then only Subjects that
32128 contain the word &quot;important&quot; will be colored.
32130 For address headers (like From and To) and for the Newsgroups header,
32131 a pattern match will cause only the matched addresses or newsgroups to be
32132 colored.
32133 If there is no pattern to match, then all of the addresses or newsgroups
32134 in the relevant header will be colored.
32136 The matching pattern may be a comma-separated list of patterns to match
32137 instead of a single pattern.
32138 For example, you could use the pattern &quot;important,urgent&quot; which would
32139 cause a match if either the word &quot;important&quot; or the word
32140 &quot;urgent&quot; appeared in the value of the header.
32141 You could list several comma-separated email addresses in the Header
32142 From Color pattern so that those addresses will be colored when any of
32143 them appear in the From header.
32145 To add a new matching pattern or change the existing pattern use the 
32146 <!--chtml if pinemode="function_key"-->
32147 &quot;F4&quot;
32148 <!--chtml else-->
32149 &quot;C&quot;
32150 <!--chtml endif-->
32151 &quot;Change&quot; command that is available when the &quot;Pattern to
32152 match&quot; line is highlighted.
32154 <!--chtml if pinemode="function_key"-->
32155 &quot;F10&quot;
32156 <!--chtml else-->
32157 &quot;D&quot;
32158 <!--chtml endif-->
32159 &quot;Delete&quot; command may be used to quickly remove all patterns
32160 for a particular header.
32162 &lt;End of help on this topic&gt;
32163 </BODY>
32164 </HTML>
32165 ====== h_color_setup =====
32166 <HTML>
32167 <HEAD>
32168 <TITLE>SETUP COLOR COMMANDS</TITLE>
32169 </HEAD>
32170 <BODY>
32171 <H1>SETUP COLOR COMMANDS</H1>
32172 <!--chtml if pinemode="function_key"-->
32173 <PRE>
32174 Available Commands -- Group 1
32175 -------------------------------
32176 F1  Display this help text
32177 F2  Show other available commands
32178 F3  Exit to MAIN MENU
32179 F4  Select the highlighted foreground or background color
32180 F5  Move to previous line
32181 F6  Move to next line
32182 F7  Previous page
32183 F8  Next page
32184 F9  Add a config section for a header field
32185 F10 Restore all default colors (for all sections)
32186 F11 Print color configuration screen
32187 F12 Whereis (search for word)
32189 Available Commands -- Group 2
32190 -------------------------------
32191 F1  Display this help text
32192 F2  Show other available commands
32193 F5  Delete config section for highlighted header field
32194 F6  Shuffle the order of Header Color sections
32195 </PRE>
32196 <!--chtml else-->
32197 <PRE>
32198 General commands
32199 -------------------------------------------------
32200  ?  Display this help text     E  Exit back to MAIN MENU
32201  P  Previous Line              N  Next Line
32202  -  Previous page             Spc (space bar) Next page
32203  W  WhereIs (search for word)  %  Print color configuration screen
32205 Color Setup Commands
32206 ------------------------------------------------
32207  *  Select the highlighted foreground or background color
32208  A  Add a config section for a header field
32209  D  Delete config section for highlighted header field
32210  R  Restore all default colors (for all sections)
32211  $  Shuffle the order of Header Color sections
32212 </PRE>
32213 <!--chtml endif-->
32215 <H2>Description of the Setup Color Screen</H2>
32217 From this screen you may turn on color and set the colors of
32218 various parts of the Alpine display.
32219 For help on turning on color move your cursor into the Color Style section
32220 at the top of the Setup Color screen and ask for help.
32223 There are several sections in the Setup Color Screen.
32224 At the top are some settings that handle the style of color used
32225 with your terminal emulator (UNIX only), and some settings that
32226 control how the current indexline and the titlebar are colored.
32227 After that comes a long section called GENERAL COLORS that allows
32228 you to set the color of many elements in the Alpine screens.
32229 For example, the color of the titlebar, status messages,
32230 selectable links, quotes and signatures in messages, and so on.
32231 After that is a section called INDEX COLORS that allows you to
32232 set the colors of various pieces of the displayed index lines in
32233 the MESSAGE INDEX screen.
32234 The next section is HEADER COLORS. This is for coloring headers of
32235 messages in the MESSAGE TEXT screen in just about any way you would like.
32236 Finally, the KEYWORD COLORS section allows you to highlight
32237 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32238 in the MESSAGE INDEX screen.
32241 To change a color, highlight the color you want to change (for example,
32242 the Status Color) by moving
32243 the cursor into it.
32244 You may want to read the help text for the color to see a brief desription
32245 of what you are coloring.
32246 Then press &quot;C&quot; for Change to set the color to something new.
32247 That will put you into a screen with two columns of colors, one for
32248 the foreground color and one for the background color.
32249 The foreground color is just the color you want the actual characters
32250 to be and the background color is the color of the rest of the rectangle
32251 behind the characters.
32252 Select the foreground and background colors desired by using the Next and
32253 Prev keys to highlight the color, and the * command to select it.
32255 To set a color to its default value, set the X in the Default line at
32256 the bottom of the list of colors.
32259 The HEADER COLORS section is a little bit different from the others.
32260 Besides coloring the specific fields that Alpine knows about, you may also
32261 color specific header fields when viewing a message in the MESSAGE TEXT
32262 screen.
32263 For example, you may color the Subject header a particular color.
32264 There are a few commands for use with headers.
32265 The &quot;AddHeader&quot; command adds a section to the color
32266 configuration screen that allows you to set the color for that header.
32267 You'll be asked for the name of the header field you want to color.
32268 If you wanted to color the Subject, you would answer
32269 with the word &quot;subject&quot;.
32270 Once you've added a header field, the color setting works just like the
32271 other color fields, except that there is an additional line on the
32272 configuration screen labeled &quot;Pattern to match&quot;.
32273 If you leave that blank, then the whole field for that header will always
32274 be colored.
32275 However, if you give a pattern to match, the coloring will only take place
32276 if there is a match for that pattern in the value of the field.
32277 For example, if you are working on a color for the Subject header and
32278 you fill in a pattern of &quot;important&quot;, then only Subjects that
32279 contain the word &quot;important&quot; will be colored.
32281 The &quot;DeleteHdr&quot; command removes a header section from the
32282 configuration altogether.
32283 The &quot;Shuffle&quot; command changes the order of header sections.
32284 This is only necessary if you use header sections with pattern fields.
32285 For example, if you have two Subject sections, one with one pattern and
32286 another with another pattern, and the subject for a particular message
32287 happens to match both, then the color from the first match is used.
32290 The command &quot;RestoreDefs&quot; will restore all of the default colors.
32291 Each section will change to the default value used for that section when
32292 color is first enabled.
32293 When you restore all default colors the color settings for the Header Colors
32294 will be unset (since that's the default), but the header fields you've
32295 added will remain so that you may easily reset them.
32296 In order to get rid of them completely you'd have to use
32297 the &quot;DeleteHdr&quot; command.
32300 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
32301 may be set with matching rules and that is configured separately from
32302 the rest of the color settings described here.
32303 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
32304 instead of in the Setup/Kolor section.
32306 <P><UL>
32307 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32308 </UL><P>
32309 &lt;End of help on this topic&gt;
32310 </BODY>
32311 </HTML>
32312 ====== h_config_news_uses_recent ======
32313 <HTML>
32314 <HEAD>
32315 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
32316 </HEAD>
32317 <BODY>
32318 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
32320 This feature causes certain messages to be marked as "New" in the
32321 MESSAGE INDEX of newsgroups.
32322 This feature is set by default.
32326 When opening a newsgroup, Alpine will consult your "newsrc" file and
32327 determine the last message you have previously disposed of via the "D"
32328 key.  If this feature is set, any subsequent messages will be shown in the
32329 Index with an "N", and the first of these messages will be highlighted.
32330 Although this is only an approximation of true "New" or "Unseen"
32331 status, it provides a useful cue to distinguish more-or-less recent
32332 messages from those you have seen previously, but are not yet ready to
32333 mark deleted.
32337 Background: your "newsrc" file (used to store message status information
32338 for newsgroups) is only capable of storing a single flag, and Alpine uses
32339 this to record whether or not you are "done with" a message, as
32340 indicated by marking the message as "Deleted".  Unfortunately, this
32341 means that Alpine has no way to record exactly which messages you have
32342 previously seen, so it normally does not show the "N" status flag for
32343 any messages in a newsgroup. This feature enables a starting
32344 *approximation* of seen/unseen status that may be useful.
32346 &lt;End of help on this topic&gt;
32347 </BODY>
32348 </HTML>
32349 ====== h_config_expose_hidden_config =====
32350 <HTML>
32351 <HEAD>
32352 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
32353 </HEAD>
32354 <BODY>
32355 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
32357 If set, this causes configuration options and features that are normally
32358 hidden from view to be editable in the Setup/Config screen.
32361 The purpose of this feature is to allow you to change configuration
32362 features and variables that are normally hidden.
32363 This is particularly useful if you are using a remote configuration,
32364 where it is difficult to edit the contents manually, but it may also be used
32365 on a local pinerc configuration file.
32367 If set, several configuration variables and features that are normally
32368 hidden from view will show up in the Setup/Configuration screen.
32369 They will be at the bottom of the configuration screen.
32370 You can find them by searching for the words &quot;hidden configuration&quot;.
32373 Note that this is an advanced feature that should be used with care.
32374 The reason that this part of the configuration is normally hidden is because
32375 there is a significant potential for causing problems if you change these
32376 variables.
32377 If something breaks after a change try changing it back to see if that is
32378 what is causing the problem.
32379 There are also some variables that are normally hidden because they are
32380 manipulated through Alpine in other ways.
32381 For example, colors are normally set using the Setup/Kolors screen and
32382 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
32383 the Setup/AddressBooks screen, so there is little reason to edit these directly.
32384 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
32385 the Add, Delete, and Rename commands in the FOLDER LIST screen,
32386 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
32387 internally by Alpine and not set directly by the user.
32389 <UL>   
32390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32391 </UL><P>
32392 &lt;End of help on this topic&gt;
32393 </BODY>
32394 </HTML>
32395 ====== h_config_disable_signature_edit =====
32396 <HTML>
32397 <HEAD>
32398 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
32399 </HEAD>
32400 <BODY>
32401 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
32403 If set, this disables the editing of signature files from within
32404 the Setup/Config screen.
32406 <UL>   
32407 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32408 </UL><P>
32409 &lt;End of help on this topic&gt;
32410 </BODY>
32411 </HTML>
32412 ====== h_config_disable_roles_templateedit =====
32413 <HTML>
32414 <HEAD>
32415 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
32416 </HEAD>
32417 <BODY>
32418 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
32420 If set, this disables the editing of template files within the
32421 Role setup screen.
32423 <UL>   
32424 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32425 </UL><P>
32426 &lt;End of help on this topic&gt;
32427 </BODY>
32428 </HTML>
32429 ====== h_config_disable_roles_sigedit =====
32430 <HTML>
32431 <HEAD>
32432 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
32433 </HEAD>
32434 <BODY>
32435 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
32437 If set, this disables the editing of signature files within the
32438 Role setup screen.
32440 <UL>   
32441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32442 </UL><P>
32443 &lt;End of help on this topic&gt;
32444 </BODY>
32445 </HTML>
32446 ====== h_config_disable_roles_setup =====
32447 <HTML>
32448 <HEAD>
32449 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
32450 </HEAD>
32451 <BODY>
32452 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
32454 If set, this disables the Setup/Rules/Roles command.
32456 <UL>   
32457 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32458 </UL><P>
32459 &lt;End of help on this topic&gt;
32460 </BODY>
32461 </HTML>
32462 ====== h_config_disable_pipes_in_templates =====
32463 <HTML>
32464 <HEAD>
32465 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
32466 </HEAD>
32467 <BODY>
32468 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
32470 By default, if a template file name is followed by a vertical bar (|) then
32471 that causes the file to be executed to produce the text for the template.
32472 If this feature is set, then this is not allowed.
32474 <UL>   
32475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32476 </UL><P>
32477 &lt;End of help on this topic&gt;
32478 </BODY>
32479 </HTML>
32480 ====== h_config_disable_pipes_in_sigs =====
32481 <HTML>
32482 <HEAD>
32483 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
32484 </HEAD>
32485 <BODY>
32486 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
32488 By default, if a signature file name is followed by a vertical bar (|) then
32489 that causes the file to be executed to produce the text for the signature.
32490 If this feature is set, then this is not allowed.
32492 <UL>   
32493 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32494 </UL><P>
32495 &lt;End of help on this topic&gt;
32496 </BODY>
32497 </HTML>
32498 ====== h_config_disable_password_cmd =====
32499 <HTML>
32500 <HEAD>
32501 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
32502 </HEAD>
32503 <BODY>
32504 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
32506 If set, then the Setup/Newpassword command is disabled.
32508 <UL>   
32509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32510 </UL><P>
32511 &lt;End of help on this topic&gt;
32512 </BODY>
32513 </HTML>
32514 ====== h_config_disable_password_caching =====
32515 <HTML>
32516 <HEAD>
32517 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
32518 </HEAD>
32519 <BODY>
32520 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
32522 Normally, loginname/password combinations are cached in Alpine so that
32523 you do not have to enter the same password more than once in a session.
32524 A disadvantage to this approach is that the password must be stored in
32525 the memory image of the running Alpine in order that it can be re-used.
32526 In the event that Alpine crashes and produces a core dump, and that core
32527 dump is readable by others, the loginname and password could be read
32528 from the core dump.
32530 If this feature is set, then the passwords will not be cached and you
32531 will have to retype the password whenever Alpine needs it.
32532 Even with this feature set there is still some chance that the core
32533 file will contain a password, so care should be taken to make the
32534 core files unreadable.
32536 NOTE: If PASSFILE caching is enabled, this does not disable it.
32537 That is a separate and independent feature.
32538 <UL>   
32539 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32540 </UL><P>
32541 &lt;End of help on this topic&gt;
32542 </BODY>
32543 </HTML>
32544 ====== h_config_disable_kb_lock =====
32545 <HTML>
32546 <HEAD>
32547 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
32548 </HEAD>
32549 <BODY>
32550 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
32552 If set, then the Keyboard Lock command is removed from the MAIN MENU.
32554 <UL>   
32555 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32556 </UL><P>
32557 &lt;End of help on this topic&gt;
32558 </BODY>
32559 </HTML>
32560 ====== h_config_disable_config_cmd =====
32561 <HTML>
32562 <HEAD>
32563 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
32564 </HEAD>
32565 <BODY>
32566 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
32568 If set, then the Setup/Config screen is disabled.
32570 <UL>   
32571 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32572 </UL><P>
32573 &lt;End of help on this topic&gt;
32574 </BODY>
32575 </HTML>
32576 ====== h_config_allow_chg_from =====
32577 <HTML>
32578 <HEAD>
32579 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
32580 </HEAD>
32581 <BODY>
32582 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
32584 This feature affects Alpine's handling of the &quot;From:&quot; header field
32585 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
32586 option.
32588 If this feature is set then the From line can be changed just like
32589 all the other header fields that can be changed.
32590 This feature defaults to <EM>ON</EM>.
32592 Even with this feature turned ON (the default) you will not be able 
32593 to change the From header unless you add it to your list of
32594 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
32595 You may also want to change the
32596 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
32597 if you want the From header to always show up in the composer without
32598 having to type the Rich Headers command first.
32600 Note that many sites restrict the use of this feature in order to
32601 reduce the chance of falsified addresses and misdirected mail.
32602 If you want to change the value of what gets included in the From header
32603 in messages you send
32604 look <A HREF="h_config_change_your_from">here</A> for a description.
32606 <UL>   
32607 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32608 </UL><P>
32609 &lt;End of help on this topic&gt;
32610 </BODY>
32611 </HTML>
32612 ====== h_config_disable_collate =====
32613 <HTML>
32614 <HEAD>
32615 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
32616 </HEAD>
32617 <BODY>
32618 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
32620 This is a hard to understand feature that should only be used in rare cases.
32621 Normally, the C function call
32623 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
32625 is used by Alpine.
32626 If you want to try turning it off,
32627 setting this feature will turn it off.
32628 This part of the locale has to do with the sort order
32629 of characters in your locale.
32631 <UL>   
32632 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32633 </UL><P>
32634 &lt;End of help on this topic&gt;
32635 </BODY>
32636 </HTML>
32637 ====== h_config_quell_attach_extra_prompt =====
32638 <HTML>
32639 <HEAD>
32640 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
32641 </HEAD>
32642 <BODY>
32643 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
32645 By default, when you attempt to view an attachment externally
32646 from the &quot;Attachment View&quot; screen, you are asked if you
32647 really want to view the selected attachment.
32650 If this feature is set, you will <B>not</B> be prompted to confirm
32651 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
32652 prompt. This feature was added for those wanting to preserve that
32653 behavior (along with 
32654 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
32657 <UL>   
32658 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32659 </UL><P>
32660 &lt;End of help on this topic&gt;
32661 </BODY>
32662 </HTML>
32663 ====== h_config_quell_attach_ext_warn =====
32664 <HTML>
32665 <HEAD>
32666 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
32667 </HEAD>
32668 <BODY>
32669 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
32672 This feature suppresses the extra warning you can get when trying
32673 to view an attachment for which there is no mime-type match.  Turning
32674 on this feature will just run the program according to extension
32675 instead of first warning the user that it will run according to the
32676 file's extension.
32678 This feature can be used along side 
32679 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
32680 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
32682 <UL>   
32683 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32684 </UL><P>
32685 &lt;End of help on this topic&gt;
32686 </BODY>
32687 </HTML>
32688 ====== h_config_mailcap_params =====
32689 <HTML>
32690 <HEAD>
32691 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
32692 </HEAD>
32693 <BODY>
32694 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
32696 If set, this will allow mailcap named parameter substitution to occur
32697 in mailcap entries.
32698 By default, this is turned off to prevent security problems that may occur
32699 with some incorrect mailcap configurations.
32700 For more information, see RFC1524 and look for "named parameters" in the
32701 text of the RFC.
32703 <UL>   
32704 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32705 </UL><P>
32706 &lt;End of help on this topic&gt;
32707 </BODY>
32708 </HTML>
32709 ====== h_config_disable_shared =====
32710 <HTML>
32711 <HEAD>
32712 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
32713 </HEAD>
32714 <BODY>
32715 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
32717 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
32718 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
32719 will be disabled.
32720 The reason this feature exists is because there are some implementations
32721 of system password lookup routines that are very slow when presented with
32722 a long loginname that does not exist.
32723 This feature could be set to prevent the delay at startup time when the
32724 names above are searched for in the password file.
32726 <UL>   
32727 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32728 </UL><P>
32729 &lt;End of help on this topic&gt;
32730 </BODY>
32731 </HTML>
32732 ====== h_config_hide_nntp_path =====
32733 <HTML>
32734 <HEAD>
32735 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
32736 </HEAD>
32737 <BODY>
32738 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
32740 Normally the Path header that Alpine generates when posting to a newsgroup
32741 contains the name of the computer from which the message is being sent and
32742 the user name.
32743 Some believe that this information is used by spammers.
32744 If this feature is set, that information will be replaced with the text
32746 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
32748 instead.
32750 It should be noted that many servers being connected to will still reveal
32751 the information that this feature attempts to protect.
32753 <UL>   
32754 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32755 </UL><P>
32756 &lt;End of help on this topic&gt;
32757 </BODY>
32758 </HTML>
32759 ====== h_config_no_bezerk_zone =====
32760 <HTML>
32761 <HEAD>
32762 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
32763 </HEAD>
32764 <BODY>
32765 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
32767 POSIX mandates a timezone in UNIX mailbox format folder delimiters
32768 (the line that begins with From <SPACE>).
32769 Some versions of Berkeley mail have trouble with this, and don't recognize
32770 the line as a message delimiter.
32771 If this feature is set, the timezone will be left off the delimiter line.
32773 <UL>   
32774 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32775 </UL><P>
32776 &lt;End of help on this topic&gt;
32777 </BODY>
32778 </HTML>
32779 ====== h_config_quell_domain_warn =====
32780 <HTML>
32781 <HEAD>
32782 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
32783 </HEAD>
32784 <BODY>
32785 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
32787 When your configuration is set up so that your domain name contains no dots,
32788 it is usually a configuration error.
32789 By default, Alpine will warn you about this when you start it up.
32790 You will see a warning message that looks like
32793 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
32796 If this feature is set, the warning is turned off.
32798 <UL>   
32799 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32800 </UL><P>
32801 &lt;End of help on this topic&gt;
32802 </BODY>
32803 </HTML>
32804 ====== h_config_quell_imap_env =====
32805 <HTML>
32806 <HEAD>
32807 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
32808 </HEAD>
32809 <BODY>
32810 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
32812 In the MESSAGE INDEX screen, if the open folder is being accessed
32813 using IMAP, Alpine normally tries to paint the index lines on the screen
32814 as soon as the information arrives from the IMAP server.
32815 This means that the index information makes it onto the screen more quickly
32816 than it otherwise would.
32817 This sometimes results in behavior that bothers some users.
32818 For example, when paging to a new page of the index, it may be possible for
32819 the lines to be painted on the screen in a random order, rather than from
32820 top to bottom.
32823 Setting this feature causes Alpine to wait for all of the information
32824 to be gathered before it paints the index screen.
32825 Once it collects all of the information, the screen will be painted quickly
32826 from top to bottom.
32828 <UL>   
32829 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32830 </UL><P>
32831 &lt;End of help on this topic&gt;
32832 </BODY>
32833 </HTML>
32834 ====== h_config_quell_news_env =====
32835 <HTML>
32836 <HEAD>
32837 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
32838 </HEAD>
32839 <BODY>
32840 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
32842 In the MESSAGE INDEX screen, if the open folder is being accessed
32843 using NNTP (News), Alpine normally tries to paint the index lines on the screen
32844 as soon as the information arrives from the NNTP server.
32845 This means that the index information makes it onto the screen more quickly
32846 than it otherwise would.
32847 This sometimes results in behavior that bothers some users.
32848 For example, when paging to a new page of the index, it may be possible for
32849 the lines to be painted on the screen in a random order, rather than from
32850 top to bottom.
32853 Setting this feature causes Alpine to wait for all of the information
32854 to be gathered before it paints the index screen.
32855 Once it collects all of the information, the screen will be painted quickly
32856 from top to bottom.
32858 <UL>   
32859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32860 </UL><P>
32861 &lt;End of help on this topic&gt;
32862 </BODY>
32863 </HTML>
32864 ====== h_config_quell_content_id =====
32865 <HTML>
32866 <HEAD>
32867 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
32868 </HEAD>
32869 <BODY>
32870 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
32872 This feature changes the behavior of Alpine when sending messages.
32873 It is intended to work around a bug in Microsoft's Outlook XP mail user
32874 agent.
32875 As of this writing, Microsoft has acknowledged the bug but
32876 has not added it to the Knowledge Base.
32877 We have been told that there will be a post-SP1 hotfix for Outlook XP.
32878 This particular bug has bug fix number OfficeQFE:4781.
32879 The nature of the bug is that messages with attachments that
32880 contain a Content-ID header (which standard Alpine attachments do)
32881 do not show the attachment indicator (a paperclip) when viewed with
32882 Outlook XP.
32883 So the user has no indication that the message contains an attachment.
32886 If this feature is set then Alpine will remove most Content-ID headers
32887 before sending a message.
32888 If an attachment is of type MESSAGE, then the existing Content-ID headers
32889 inside the message will be left intact.
32890 This would only happen with Alpine if a message was forwarded as an attachment
32891 or if a message with a message attached was forwarded.
32892 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
32893 the Content-ID headers of the alternative parts will not be removed.
32896 Because the Content-ID header is a standard part of MIME it is possible
32897 that setting this feature will break something.
32898 For example, if an attachment has a Content-ID header that is necessary
32899 for the correct functioning of that attachment, it is possible that Alpine
32900 may remove that header when the attachment is forwarded.
32901 However, it seems fairly safe at this time.
32904 <UL>   
32905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32906 </UL><P>
32907 &lt;End of help on this topic&gt;
32908 </BODY>
32909 </HTML>
32910 ====== h_config_winpos_in_config =====
32911 <HTML>
32912 <HEAD>
32913 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
32914 </HEAD>
32915 <BODY>
32916 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
32918 PC-Alpine only.
32921 Normally, PC-Alpine will store its window size and position in the
32922 Windows Registry.
32923 This is convenient if you want to use the same remote
32924 configuration from more than one PC.
32925 If you use multiple configuration files to start PC-Alpine, you may want
32926 to store the window size and position in the configuration file instead
32927 of in the Registry.
32928 Setting this feature causes the value to be stored in 
32929 <A HREF="h_config_window_position">Window-Position</A>.
32932 <UL>   
32933 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32934 </UL><P>
32935 &lt;End of help on this topic&gt;
32936 </BODY>
32937 </HTML>
32938 ====== h_config_quell_ssl_largeblocks =====
32939 <HTML>
32940 <HEAD>
32941 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
32942 </HEAD>
32943 <BODY>
32944 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
32946 PC-Alpine only.
32948 This feature changes the behavior of fetching messages
32949 and attachments so that the message data is fetched in chunks no larger
32950 than 12K bytes.
32951 This works around a bug in Microsoft's SSL/TLS support.
32952 Some versions of Microsoft SSL are not able to read full-sized (16K)
32953 SSL/TLS packets.
32954 Some servers will send such packets and this will
32955 cause PC-Alpine to crash with the error
32958 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
32961 Microsoft is aware of the problem and has developed a hotfix for it, it is
32962 discussed in article 300562 in the Microsoft Knowledge Base.
32964 <UL>   
32965 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32966 </UL><P>
32967 &lt;End of help on this topic&gt;
32968 </BODY>
32969 </HTML>
32970 ====== h_config_quell_partial =====
32971 <HTML>
32972 <HEAD>
32973 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
32974 </HEAD>
32975 <BODY>
32976 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
32978 Partial fetching is a feature of the IMAP protocol.
32979 By default, Alpine
32980 will use partial fetching when copying the contents of a message or attachment
32981 from the IMAP server to Alpine.
32982 This means that the fetch will be done in many
32983 small chunks instead of one big chunk. The main benefit of this approach is
32984 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
32985 to stop the fetch early. In some cases partial fetching may cause a performance
32986 problem so that the fetching of data takes significantly longer when partial
32987 fetching is used. Turning on this feature will turn off partial fetching.
32989 <UL>   
32990 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32991 </UL><P>
32992 &lt;End of help on this topic&gt;
32993 </BODY>
32994 </HTML>
32995 ====== h_config_quell_personal_name_prompt =====
32996 <HTML>
32997 <HEAD>
32998 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
32999 </HEAD>
33000 <BODY>
33001 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33003 PC-Alpine only.  This feature quells the prompting for a 
33004 <A HREF="h_config_pers_name">personal name</A>.  This
33005 prompt normally happens before composing a message, and only happens when
33006 there is no personal name already set.
33008 <UL>   
33009 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33010 </UL><P>
33011 &lt;End of help on this topic&gt;
33012 </BODY>
33013 </HTML>
33014 ====== h_config_quell_user_id_prompt =====
33015 <HTML>
33016 <HEAD>
33017 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33018 </HEAD>
33019 <BODY>
33020 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33022 PC-Alpine only.  This feature quells the prompting for a 
33023 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33024 if the information can be obtained from the login name used
33025 to open the INBOX.  Normally, this prompt happens before composing
33026 a message, and only happens when there is no user-id already set
33027 in the configuration.
33029 With this feature set, composing a message is only possible after
33030 establishing a connection to the INBOX.
33032 <UL>   
33033 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33034 </UL><P>
33035 &lt;End of help on this topic&gt;
33036 </BODY>
33037 </HTML>
33038 ====== h_config_save_aggregates =====
33039 <HTML>
33040 <HEAD>
33041 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33042 </HEAD>
33043 <BODY>
33044 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
33046 This feature will optimize an aggregate copy operation, if
33047 possible, by issuing a single IMAP <EM>COPY</EM> command with a
33048 list of the messages to be copied.
33049 This feature is set by default.
33050 This may reduce network traffic and elapsed time for the Save.
33051 <EM>However, many IMAP servers (including the UW IMAP server) do
33052 not preserve the order of messages when this optimization is applied.</EM>
33053 If this feature is not set, 
33054 Alpine will copy each message individually and the order of the messages
33055 will be preserved.
33057 <UL>   
33058 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33059 </UL><P>
33060 &lt;End of help on this topic&gt;
33061 </BODY>
33062 </HTML>
33063 ====== h_config_use_system_translation =====
33064 <HTML>
33065 <HEAD>
33066 <TITLE>FEATURE: Use System Translation</TITLE>
33067 </HEAD>
33068 <BODY>
33069 <H1>FEATURE: Use System Translation</H1>
33071 UNIX Alpine only.
33073 Alpine normally uses its own internal software to convert between the multi-byte
33074 representation of characters and the Unicode representation of those
33075 same characters.
33076 It converts from the multi-byte characters your keyboard produces to Unicode,
33077 and from Unicode to the multi-byte characters your display expects.
33078 Alpine also uses its own internal software to decide how much space on
33079 the screen a particular Unicode character will occupy.
33082 Setting this feature tells Alpine to use the system-supplied routines to
33083 perform these tasks instead.
33084 In particular there are three tasks and three system routines that will
33085 be used for these tasks.
33088 To convert from multi-byte to Unicode the routine
33091 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
33094 is used.
33095 To convert from Unicode to multi-byte the routine
33098 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
33101 is used.
33102 And to find the screen width a particular Unicode character will
33103 occupy the routine used is
33106 <CENTER><SAMP>wcwidth</SAMP></CENTER>
33109 This feature has been only lightly tested.
33110 The internal routines should normally be used unless you run into
33111 a problem that you think may be solved by using the system routines.
33112 Note that your environment needs to be set up for these
33113 routines to work correctly.
33114 In particular, the LANG or LC_CTYPE variable in your environment will
33115 need to be set.
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_suspend_spawns =====
33125 <HTML>
33126 <HEAD>
33127 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
33128 </HEAD>
33129 <BODY>
33130 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
33132 This feature affects Alpine's behavior when process suspension is enabled
33133 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
33134 temporarily interact with the operating system command &quot;shell&quot; 
33135 without
33136 quitting Alpine, and then subsequently resume the still-active Alpine session.
33139 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
33140 is set and subsequently the Ctrl-Z key
33141 is pressed, Alpine will normally suspend itself and return temporary control
33142 to Alpine's parent shell process.  However, if this feature is set, Alpine
33143 will instead create an inferior subshell process.  This is useful when the
33144 parent process is not intended to be used interactively.  Examples include
33145 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
33146 or via a menu system.<P>
33148 Note that one typically resumes a suspended Alpine by entering the Unix
33149 &quot;fg&quot; command, but if this feature is set, it will be necessary to
33150 enter the &quot;exit&quot; command instead.
33152 <UL>   
33153 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33154 </UL><P>
33155 &lt;End of help on this topic&gt;
33156 </BODY>
33157 </HTML>
33158 ====== h_config_8bit_smtp =====
33159 <HTML>
33160 <HEAD>
33161 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
33162 </HEAD>
33163 <BODY>
33164 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
33166 This feature affects Alpine's behavior when sending mail.
33167 By default, this feature is set.
33168 Internet standards
33169 require that all electronic mail messages traversing the global Internet
33170 consist of 7bit ASCII characters unless a pair of cooperating mail 
33171 transfer agents explicitly agree to allow 8bit messages.  In general, 
33172 then, exchanging messages in non-ASCII characters requires MIME encoding.
33174 However, there are now Internet standards that allow for unencoded 8bit
33175 exchange of messages between cooperating systems.  When this feature is set
33176 Alpine will try to negotiate unencoded 8bit transmission during the
33177 sending process.  Should the negotiation fail, Alpine will fall back to its
33178 ordinary encoding rules. 
33180 Note, this feature relies on your system's mail transport agent or
33181 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
33182 having the negotiation mechanism introduced in
33183 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
33184 &quot;8BITMIME&quot;. 
33186 ESMTP allows for graceful migration to upgraded mail transfer agents, but
33187 it is possible that this feature might cause problems for some servers. 
33188 <P><UL>
33189 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33190 </UL>
33191 <P>&lt;End of help on this topic&gt;
33192 </BODY>
33193 </HTML>
33194 ====== h_config_8bit_nntp =====
33195 <HTML>
33196 <HEAD>
33197 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
33198 </HEAD>
33199 <BODY>
33200 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
33202 This feature affects Alpine's behavior when posting news.  
33206 The Internet standard for exchanging USENET news messages (RFC-1036)
33207 specifies that USENET messages should conform to Internet mail standards
33208 and contain only 7bit characters, but much of the news transport software
33209 in use today is capable of successfully sending messages containing 8bit
33210 characters.  Hence, many people believe that it is appropriate to send 8bit
33211 news messages without any MIME encoding.
33215 Moreover, there is no Internet standard for explicitly negotiating 8bit
33216 transfer, as there is for Internet email.  Therefore, Alpine provides the
33217 option of posting unencoded 8bit news messages, though not as the default.
33218 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
33219 postings that contain 8bit characters. 
33223 Note, articles may cross a path or pass through news transport software
33224 that is unsafe or even hostile to 8bit characters.  At best this will only
33225 cause the posting to become garbled.  The safest way to transmit 8bit
33226 characters is to leave Alpine's MIME encoding turned on, but recipients
33227 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
33228 messages.
33230 &lt;End of help on this topic&gt;
33231 </BODY>
33232 </HTML>
33233 ====== h_config_mark_for_cc =====
33234 <HTML>
33235 <HEAD>
33236 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
33237 </HEAD>
33238 <BODY>
33239 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
33241 This feature affects Alpine's MESSAGE INDEX display.
33242 By default, a '+' is displayed in the first column if the
33243 message is addressed directly to you.
33244 When this feature is set and the message is not addressed to you, then a
33245 '-' character is displayed if the message is instead Cc'd directly
33246 to you.
33249 <UL>   
33250 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33251 </UL><P>
33252 &lt;End of help on this topic&gt;
33253 </BODY>
33254 </HTML>
33255 ====== h_config_tab_uses_unseen =====
33256 <HTML>
33257 <HEAD>
33258 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
33259 </HEAD>
33260 <BODY>
33261 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
33263 This feature affects Alpine's behavior when using the TAB
33264 <A HREF="h_common_nextnew">NextNew Command</A>
33265 to move from one folder to the next.
33266 Alpine's usual behavior is to search for folders
33267 with <EM>Recent</EM> messages in them.
33268 Recent messages are messages that have arrived since the last time the
33269 folder was opened.
33272 Setting this feature causes Alpine to search for <EM>Unseen</EM>
33273 messages instead of Recent messages.
33274 Unseen messages remain Unseen until you view them (or flag then as Seen with
33275 the <A HREF="h_common_flag">Flag Command</A>).
33276 Setting this feature allows you to locate messages you have not read
33277 instead of only recently received messages.
33278 When this feature is set, the feature
33279 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
33280 will have no effect, so the checking may be slower.
33283 Another reason why you might want to use this feature is that Alpine sometimes
33284 opens folders implicitly behind the scenes, and this clears the
33285 Recent status of all messages in the folder.
33286 One example where this happens is when Saving or filtering a
33287 message to another folder.
33288 If that message has some <A HREF="h_config_keywords">keywords</A>
33289 set, then because of some shortcomings
33290 in the IMAP specification, the best way to ensure that those keywords are
33291 still set in the saved copy of the message is to open the folder and
33292 set the keywords explicitly.
33293 Because this clears the Recent status of all messages in that folder the
33294 folder will not be found by the NextNew command unless this feature is set.
33297 &lt;End of help on this topic&gt;
33298 </BODY>
33299 </HTML>
33300 ====== h_config_tab_new_only =====
33301 <HTML>
33302 <HEAD>
33303 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
33304 </HEAD>
33305 <BODY>
33306 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
33308 This feature affects Alpine's behavior when using the TAB key to move from
33309 one message to the next.  Alpine's usual behavior is to select the next
33310 unread message or message flagged as "Important".
33314 Setting this feature causes Alpine to skip the messages flagged as important,
33315 and select unread messages exclusively.  Tab behavior when there are no
33316 new messages left to select remains unchanged.
33318 &lt;End of help on this topic&gt;
33319 </BODY>
33320 </HTML>
33321 ====== h_config_warn_if_subj_blank =====
33322 <HTML>
33323 <HEAD>
33324 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
33325 </HEAD>
33326 <BODY>
33327 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
33329 This feature affects Alpine's behavior when you send a message being
33330 composed.
33331 If this option is set, Alpine will check to see if the message about to be sent
33332 has a subject or not.
33333 If not, you will be asked if you want to send the message anyway.
33336 <UL>   
33337 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33338 </UL><P>
33339 &lt;End of help on this topic&gt;
33340 </BODY>
33341 </HTML>
33342 ====== h_config_warn_if_fcc_blank =====
33343 <HTML>
33344 <HEAD>
33345 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
33346 </HEAD>
33347 <BODY>
33348 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
33350 This feature affects Alpine's behavior when you send a message being
33351 composed.
33352 If this option is set, Alpine will check to see if the message about to be sent
33353 has an Fcc or not.
33354 If not, you will be asked if you want to send the message anyway.
33357 <UL>   
33358 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33359 </UL><P>
33360 &lt;End of help on this topic&gt;
33361 </BODY>
33362 </HTML>
33363 ====== h_config_warn_if_no_to_or_cc =====
33364 <HTML>
33365 <HEAD>
33366 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
33367 </HEAD>
33368 <BODY>
33369 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
33371 This feature affects Alpine's behavior when you send a message being
33372 composed.
33373 If this option is set, Alpine will check to see if the message about to be sent
33374 has either a To address, a Cc address, or a Newsgroup.
33375 If none of these is set,
33376 you will be asked if you want to send the message anyway.
33379 This feature is closely related to
33380 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
33381 Alpine will normally ask if you want to copy a message only to the Fcc.
33382 This feature also applies to cases where there is a Bcc but still no To, Cc,
33383 or Newsgroup.
33384 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
33385 message with only an Fcc, then you won't be asked about sending with
33386 a blank To and Cc and Newsgroups header even if this feature is set.
33387 Similarly, if you have already been asked if you want to send to the Fcc
33388 only and you have answered Yes, then you won't be asked again about sending with
33389 blank To, Cc, and Newsgroups headers even if this feature is set.
33392 <UL>   
33393 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33394 </UL><P>
33395 &lt;End of help on this topic&gt;
33396 </BODY>
33397 </HTML>
33398 ====== h_config_quell_dead_letter =====
33399 <HTML>
33400 <HEAD>
33401 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
33402 </HEAD>
33403 <BODY>
33404 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
33406 This feature affects Alpine's behavior when you cancel a message being
33407 composed.  Alpine's usual behavior is to write the canceled message to
33408 a file named 
33409 <!--chtml if pinemode="os_windows"-->
33410 &quot;DEADLETR&quot;,
33411 <!--chtml else-->
33412 &quot;dead.letter&quot; in your home directory,
33413 <!--chtml endif-->
33414 overwriting any previous message. Under
33415 some conditions (some routine), this can introduce a noticeable delay.
33416 Setting this feature will cause Alpine NOT to write canceled compositions
33417 into the file.
33419 NOTE: Enabling this feature means NO record of canceled messages is
33420 maintained.
33422 This feature affects the newer option
33423 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
33424 number of dead letter files to keep around.
33425 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
33427 <UL>   
33428 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33429 </UL><P>
33430 &lt;End of help on this topic&gt;
33431 </BODY>
33432 </HTML>
33433 ====== h_config_quell_beeps =====
33434 <HTML>
33435 <HEAD>
33436 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
33437 </HEAD>
33438 <BODY>
33439 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
33441 This feature affects Alpine's behavior when it displays status message
33442 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
33443 will not affect the display of such messages, but will cause those that
33444 emit a beep to become silent.
33447 <UL>   
33448 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33449 </UL><P>
33450 &lt;End of help on this topic&gt;
33451 </BODY>
33452 </HTML>
33453 ====== h_config_suppress_user_agent =====
33454 <HTML>
33455 <HEAD>
33456 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
33457 </HEAD>
33458 <BODY>
33459 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
33461 If this feature is set then Alpine will not generate a
33462 <CODE>User-Agent</CODE> header in outgoing messages.
33464 <UL>   
33465 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33466 </UL><P>
33467 &lt;End of help on this topic&gt;
33468 </BODY>
33469 </HTML>
33470 ====== h_config_quell_lock_failure_warnings =====
33471 <HTML>
33472 <HEAD>
33473 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
33474 </HEAD>
33475 <BODY>
33476 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
33478 This feature affects Alpine's behavior when it encounters a problem
33479 acquiring a mail folder lock.  Typically, a secondary file associated
33480 with the mail folder being opened is created as part of the locking
33481 process.  On some systems, such file creation has been administratively
33482 precluded by the system configuration.
33484 Alpine issues a warning when such failures occur, which can become bothersome
33485 if the system is configured to disallow such actions.  Setting this
33486 feature causes Alpine to remain silent when this part of lock creation fails.
33488 WARNING: systems that have been configured in a way that precludes locking
33489 introduce some risk of mail folder corruption when more than one program
33490 attempts to modify the mail folder.  This is most likely to occur to one's
33491 INBOX or other incoming message folder. 
33493 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
33495 <UL>   
33496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33497 </UL><P>
33498 &lt;End of help on this topic&gt;
33499 </BODY>
33500 </HTML>
33501 ====== h_config_enable_role_take ======
33502 <HTML>
33503 <HEAD>
33504 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
33505 </HEAD>
33506 <BODY>
33507 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
33509 Normally, the Take command takes addresses from a message and helps you
33510 put them into your Address Book.
33511 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
33512 you may find it useful
33513 to be able to Take information from a message's headers and put it into
33514 a new Rule.
33515 When this feature is set, you will be given an extra prompt that gives
33516 you the choice to Take into the Address Book or Take into a rule.
33517 <P><UL>
33518 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33519 </UL>
33521 &lt;End of help on this topic&gt;
33522 </BODY>
33523 </HTML>
33524 ====== h_config_enable_take_export ======
33525 <HTML>
33526 <HEAD>
33527 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
33528 </HEAD>
33529 <BODY>
33530 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
33532 Normally, the Take command takes addresses from a message and helps you
33533 put them into your Address Book.
33534 When this feature is set, you will be given an extra prompt that gives you
33535 the choice to Take addresses into a file instead of your Address
33536 Book.
33537 Only the user@domain_name part of the address is put in the file.
33538 <P><UL>
33539 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33540 </UL>
33542 &lt;End of help on this topic&gt;
33543 </BODY>
33544 </HTML>
33545 ====== h_config_quell_folder_internal_msg ======
33546 <HTML>
33547 <HEAD>
33548 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
33549 </HEAD>
33550 <BODY>
33551 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
33553 This feature determines whether or not Alpine will create 
33554 &quot;pseudo messages&quot; in folders that are in standard Unix or 
33555 MMDF format. <P> 
33557 Alpine will normally create these pseudo messages when they are not already
33558 present in a standard Unix or MMDF folder.  Their purpose is to record
33559 certain mailbox state data needed for correct IMAP and POP server
33560 operation, and also for Alpine to be able to mark messages as Answered when
33561 the Reply has been postponed.<P>
33563 Sites that do not use IMAP/POP for remote mail access, and that need to
33564 support mail tools that are adversely affected by the presence of the
33565 pseudo-messages (e.g. some mail notification tools) may enable this
33566 feature to tell Alpine not to create them.  Note that Alpine's 
33567 &quot;Answered&quot; flag
33568 capability will be adversely affected if this is done.<P>
33570 Note too that, even if this feature is enabled, Alpine will not remove
33571 pseudo-messages when it encounters them (e.g. those created by UW's imapd
33572 or ipopd servers.) This feature has no effect on folders that are not in
33573 standard Unix or MMDF format, as pseudo-messages are not needed in the
33574 other formats to record mailbox state information.
33575 <P><UL>
33576 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33577 </UL>
33579 &lt;End of help on this topic&gt;
33580 </BODY>
33581 </HTML>
33582 ====== h_config_mulnews_as_typed ======
33583 <HTML>
33584 <HEAD>
33585 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
33586 </HEAD>
33587 <BODY>
33588 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
33590 This feature will be of little use to most users.
33591 It has no effect unless the feature
33592 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
33593 is set.
33595 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
33596 then the setting of this feature may have an effect on the names of the
33597 newsrc files used.
33598 Normally, the name of the news server will be canonicalized before it is
33599 used in the newsrc file name.
33600 For example, if you type the news server name
33603 <CENTER><SAMP>servername</SAMP></CENTER>
33606 it is likely that the canonical name will be something like
33609 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
33612 Or it may be the case that
33615 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
33618 is really an alias (a DNS CNAME) for
33621 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
33624 If this feature is not set, then the canonicalized names will be used.
33625 If this feature is set, then the name you typed in (or put in your
33626 configuration) will be used.
33628 <P><UL>
33629 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33630 </UL>
33632 &lt;End of help on this topic&gt;
33633 </BODY>
33634 </HTML>
33635 ====== h_config_quell_empty_dirs ======
33636 <HTML>
33637 <HEAD>
33638 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
33639 </HEAD>
33640 <BODY>
33641 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
33643 This feature causes Alpine to remove from the display any directories
33644 that do not contain at least one file or directory.  This can be useful
33645 to prevent overly cluttered folder lists when a collection is stored on
33646 a server that treats all names as both a folder and a directory.
33649 Note, enabling this feature can cause surprising behavior!  For example,
33650 you can still use Add to create a directory, but unless you immediately
33651 enter that directory and create a folder, that newly created directory
33652 may not be displayed next time you enter the folder list.
33655 The description above is not quite correct.
33656 Only directories which potentially may hold messages are hidden if empty.
33657 That is, a directory which is really just a directory and is not selectable
33658 as a folder will not be hidden.
33659 Such directories can occur on servers that treat most names as both a folder
33660 and a directory.
33661 These directories are typically created implicitly when a folder is created
33662 inside a directory that does not yet exist.
33665 <UL>   
33666 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33667 </UL><P>
33668 &lt;End of help on this topic&gt;
33669 </BODY>
33670 </HTML>
33671 ====== h_config_termcap_wins =====
33672 <HTML>
33673 <HEAD>
33674 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
33675 </HEAD>
33676 <BODY>
33677 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
33679 This feature may affect Alpine's low-level input routines.  Termcap (or
33680 terminfo, depending on how your copy of Alpine was compiled and linked)
33681 is the name of the database that describes terminal capabilities.  In
33682 particular, it describes the sequences of characters that various keys
33683 will emit.
33686 An example would be the Up Arrow key on the keyboard.  Up
33687 Arrow is not a distinct character on most Unix systems.  When you press
33688 the Up Arrow key a short sequence of characters are produced.  This
33689 sequence is supposed to be described in the termcap database by the
33690 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
33691 are using terminfo instead of termcap).
33694 By default, Alpine defines some terminal
33695 escape sequences that are commonly used.  For example, the sequence
33696 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
33697 &quot;ESC&nbsp;[&nbsp;A&quot;
33698 is also recognized as an Up Arrow key.  These are chosen because common
33699 terminals like VT100's or ANSI standard terminals produce these
33700 sequences when you press the Up Arrow key.
33703 If your system's termcap
33704 (terminfo) database assigns some other function to the sequence
33705 &quot;ESC&nbsp;O&nbsp;A&quot;
33706 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
33707 database assigns a sequence that doesn't begin with an escape
33708 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
33709 This usually works fine
33710 because most terminals emit the escape sequences that Alpine has defined
33711 by default.  We have also found that it is usually better to have these
33712 defaults take precedence over the definitions contained in the database
33713 because the defaults are more likely to be correct than the database.
33716 There are some terminals where this breaks down.  If you want Alpine to
33717 believe the definitions given in your termcap (terminfo) database in
33718 preference to the defaults the Alpine itself sets up, then you may turn
33719 this feature on.  Then, sequences of characters that are defined in
33720 both termcap (terminfo) and in Alpine's set of defaults will be
33721 interpreted the way that termcap (terminfo) says they should be
33722 interpreted.  Also, if your terminal capabilities database assigns a
33723 sequence that doesn't begin with escape, it will not be ignored.
33726 <UL>   
33727 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33728 </UL><P>
33729 &lt;End of help on this topic&gt;
33730 </BODY>
33731 </HTML>
33732 ====== h_config_cruise_mode =====
33733 <HTML>
33734 <HEAD>
33735 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
33736 </HEAD>
33737 <BODY>
33738 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
33740 This feature affects Alpine's behavior when you hit the
33741 &quot;Space&nbsp;Bar&quot; at
33742 the end of a displayed message.  Typically, Alpine complains that the end
33743 of the text has already been reached.  Setting this feature causes such
33744 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
33745 taking you to the next &quot;interesting&quot; message,
33746 or scanning ahead to the 
33747 next incoming folder with &quot;interesting&quot; messages.
33750 <UL>   
33751 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33752 </UL><P>
33753 &lt;End of help on this topic&gt;
33754 </BODY>
33755 </HTML>
33756 ====== h_config_cruise_mode_delete =====
33757 <HTML>
33758 <HEAD>
33759 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
33760 </HEAD>
33761 <BODY>
33762 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
33764 This feature modifies the behavior of Alpine's 
33765 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
33766 Setting this feature causes Alpine to implicitly delete read
33767 messages when it moves on to display the next &quot;interesting&quot; message.
33769 NOTE: Beware when enabling this feature AND the 
33770 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
33771 feature.
33773 <UL>   
33774 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33775 </UL><P>
33776 &lt;End of help on this topic&gt;
33777 </BODY>
33778 </HTML>
33779 ====== h_config_slash_coll_entire =====
33780 <HTML>
33781 <HEAD>
33782 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
33783 </HEAD>
33784 <BODY>
33785 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
33787 The slash (/) command is available from the MESSAGE INDEX screen when
33788 the folder is sorted by either Threads or OrderedSubject, and the
33789 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
33790 is set to something other than &quot;none&quot;.
33791 Normally, the slash command Collapses or Expands the subthread that
33792 starts at the currently highlighted message, if any.
33793 If this option is set, then the slash command Collapses or Expands the
33794 <EM>entire</EM> current thread instead of just the subthread.
33795 The current thread is simply the top-level thread that contains the
33796 current message.
33799 <UL>   
33800 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33801 </UL><P>
33802 &lt;End of help on this topic&gt;
33803 </BODY>
33804 </HTML>
33805 ====== h_config_color_thrd_import =====
33806 <HTML>
33807 <HEAD>
33808 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
33809 </HEAD>
33810 <BODY>
33811 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
33813 This option affects only the THREAD INDEX screen.
33814 Whether or not you ever see a THREAD INDEX screen depends on the setting
33815 of the configuration option
33816 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
33817 and on the sort order of the index.
33820 If a message within a thread is flagged as Important
33821 and this option is set, then
33822 the entire line in the THREAD INDEX will be colored the color of the
33823 Index-important Symbol, which can be set using the
33824 <A HREF="h_color_setup">Setup Kolor</A> screen.
33827 <UL>   
33828 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33829 </UL><P>
33830 &lt;End of help on this topic&gt;
33831 </BODY>
33832 </HTML>
33833 ====== h_config_allow_goto =====
33834 <HTML>
33835 <HEAD>        
33836 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
33837 </HEAD>
33838 <BODY>
33839 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
33841 This feature modifies the behavior of Alpine's file browser.  Setting this
33842 feature causes Alpine to offer the "G Goto" command in the file browser.
33843 That is the default.
33847 The Goto command allows you to explicitly type in the desired directory.
33849 &lt;End of help on this topic&gt;
33850 </BODY></HTML>
33851 ====== h_config_add_ldap =====
33852 <HTML>
33853 <HEAD>
33854 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
33855 </HEAD>
33856 <BODY>
33857 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
33859 If both the Directory option
33860 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
33861 and this feature are set,
33862 then when an implicit directory lookup is done from the
33863 composer you will automatically be prompted to add the result of the
33864 directory lookup to your address book.
33866 <UL>   
33867 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33868 </UL><P>
33869 &lt;End of help on this topic&gt;
33870 </BODY>
33871 </HTML>
33872 ===== h_patterns_compat_behavior =====
33873 <HTML>
33874 <HEAD>
33875 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
33876 </HEAD>
33877 <BODY>
33878 <H1>Rules Behavior Changes in Pine 4.50</H1>
33880 In Alpine, Rules that contain unrecognized elements
33881 are ignored.
33882 In most cases, the unrecognized elements will be something that was
33883 added as a new Rules feature in a later version of Alpine.
33884 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
33885 ignore rules that contained unrecognized elements.
33886 For example, a new element of Rules that was added in Pine 4.50 is
33887 Age interval.
33888 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
33889 all messages older than a week red.
33890 Now, if you run Pine 4.44 using that same configuration file, it will not
33891 recognize the Age interval and so will just ignore it.
33892 That means that all messages will match that rule so all messages will
33893 be colored red when using Pine version 4.44.
33896 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
33897 However, since the behavior still exists in versions prior to Pine 4.50 and
33898 since Filtering is a potentially destructive operation, another measure
33899 was taken to attempt to avoid unintentional Filtering of messages.
33900 The first time that you run Alpine or a Pine that is version 4.50 or greater,
33901 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
33902 will be copied to a new Filters configuration variable
33903 with a different name (&quot;Patterns-Filters2&quot;).
33904 From then on, Alpine will continue to use the new
33905 variable.
33906 Of course, Pine version 4.44 or lower will continue to use the old
33907 variable.
33908 That means that if you are using Alpine
33909 and also using a version of Pine that is older than 4.50, they will not
33910 share the configuration information about Filters.
33911 If you make a change in one version you won't see it in the other version.
33914 Since Scoring can be used to trigger Filtering, the same thing has been
33915 done for Score rules.
33916 The old configuration variable name is (&quot;Patterns-Scores&quot;)
33917 and the new name is (&quot;Patterns-Scores2&quot;).
33918 The same is not true of Role, Indexcolor, and Other rules that are
33919 thought to be less harmful when a mistake is made.
33922 &lt;End of help on this topic&gt;
33923 </BODY>
33924 </HTML>
33925 ======= h_config_filt_opts_sentdate =======
33926 <HTML>
33927 <HEAD>
33928 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
33929 </HEAD>
33930 <BODY>
33931 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
33933 By default, the Age interval of a Pattern uses a message's time of
33934 arrival to compute the age of the message.
33935 If this feature is set, the date in the message's Date header will
33936 be used instead.
33938 &lt;End of help on this topic&gt;
33939 </BODY>
33940 </HTML>
33941 ======= h_config_filt_opts_notdel =======
33942 <HTML>
33943 <HEAD>
33944 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
33945 </HEAD>
33946 <BODY>
33947 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
33949 If this option is set then a message will be moved into the
33950 specified folder only if it is not marked for deletion.
33951 This is useful if you have multiple Alpine sessions running
33952 simultaneously and you don't want messages to be filtered into a
33953 folder more than once.
33954 It is also useful if you want to filter
33955 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
33956 This method is not foolproof.
33957 There may be cases where a message
33958 gets marked deleted and so it is never filtered into the folder.
33959 For example, if you deleted it in another Alpine session or another mail
33960 program that didn't use the filtering rule.
33962 This option has no effect if the Filter Action is not set to Move.
33964 &lt;End of help on this topic&gt;
33965 </BODY>
33966 </HTML>
33967 ======= h_config_filt_opts_nonterm =======
33968 <HTML>
33969 <HEAD>
33970 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
33971 </HEAD>
33972 <BODY>
33973 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
33975 If this option is set then this is a non-terminating rule.
33976 Usually, for each message, Alpine searches through the Filter Rules until
33977 a match is found and then it performs the action associated with that rule.
33978 Rules following the match are not considered.
33979 If this option is set then the search for matches will continue at the next
33980 rule.
33982 If a non-terminating rule matches then the actions associated with
33983 that rule, except for any implied deletion of the message, are performed
33984 before the match for the next rule is checked.
33985 For example, if the non-terminating rule sets the Important status, then that
33986 status will be set when the next rule is considered.
33987 However, if the non-terminating rule Moves the message, the message will
33988 actually be copied instead of copied and deleted so that it is still there
33989 for the next rule.
33990 A moved message is deleted after all the relevant rules have been checked.
33991 The name of the &quot;Move&quot; action is confusing in this case because
33992 a single message can be moved to more than one folder.
33993 It turns the Move into a Copy instead, but it is still followed by a deletion
33994 at the end.
33996 This option may be useful if you want to have a single message filtered to
33997 two different folders because it matches two different Patterns.
33998 For example, suppose you normally filter messages to a particular mailing
33999 list into one folder, and messages addressed directly to you into a second
34000 folder.
34001 If a message is sent to both you and the list (and you can tell that by
34002 looking at the headers of the message) this option may give you a convenient
34003 way to capture a copy to each folder.
34004 (It may also cause you to capture two copies to each folder,
34005 depending on whether your mail system delivers one or two copies of the
34006 message to you and on how the list works.)
34008 &lt;End of help on this topic&gt;
34009 </BODY>
34010 </HTML>
34011 ===== h_mainhelp_smime ======
34012 <HTML>
34013 <HEAD>
34014 <TITLE>S/MIME Overview</TITLE>
34015 </HEAD>
34016 <BODY>
34017 <H1>S/MIME Overview</H1>
34019 S/MIME is a standard for the public key encryption and signing of email.
34020 UNIX Alpine contains a basic implementation of S/MIME based on
34021 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries.
34022 To check if this version of Alpine supports S/MIME look at
34023 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34024 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34026 Some limitations:
34027 <UL>
34028    <LI> There is no PC-Alpine implementation.
34029    <LI> There is no provision for checking for CRLs
34030         (Certificate Revocation Lists) in Alpine.
34031    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34032    <LI> There is no mechanism available for feeding either an entire incoming
34033         or an entire outgoing message to an external
34034         filter and using that external filter to do S/MIME or PGP processing.
34035    <LI> Because the implementation currently uses OpenSSL, there is only a very
34036         limited integration with the Mac OS Keychain (the storing and access of
34037         public certificates).
34038    <LI> There is no way to view or manipulate the lists of certificates from
34039         within Alpine.
34040 </UL>
34042 The S/MIME configuration screen is reached by going to the Main Menu and typing
34043 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
34046 <H2>S/MIME BASICS</H2>
34048 In order to digitally sign messages you send you must have a public/private key-pair.
34049 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
34050 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
34051 users or a company which provides certificates for its workers.
34052 These certificates are bound to an email address, so the identity being verified is the
34053 email address not a person's name.
34055 Mail is signed by using the sender's private key, which only the owner of the private key
34056 has access to.
34057 The signature is verified using the signer's public key, which anyone can
34058 have access to.
34059 With Alpine, the first time you receive a signed message the public key of the
34060 sender will be stored for future use.
34063 Mail is encrypted using the recipient's public key and decrypted by
34064 the recipient with their private key.
34067 You need a key of your own in order to sign outgoing messages and to have others
34068 encrypt messages sent to you.
34069 You do not need a key of your own to verify signed messages sent by others or to
34070 encrypt messages sent to others.
34072 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
34074 By default UNIX Alpine stores the certificates it uses in a directory in your
34075 home directory.
34076 The directory name is
34078 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
34080 Within that directory are three subdirectories.
34081 Each of the three subdirectories contains files with PEM-encoded contents,
34082 the default format for OpenSSL.
34083 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
34084 The files within that directory have names that are email addresses with the
34085 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
34086 An example filename is
34088 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34090 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
34091 your private key.
34092 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
34093 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
34094 Authorities that you want to trust but that aren't contained in the set of system CAs.
34095 Those files may have arbitrary names as long as they end with the
34096 suffix &quot;<SAMP>.crt</SAMP>&quot;.
34098 <H2>HOW TO SIGN AND ENCRYPT</H2>
34100 If you have a certificate you may sign outgoing messages.
34101 After typing the Ctrl-X command to send a message you will see the prompt
34103 <CENTER><SAMP>Send message?</SAMP></CENTER>
34105 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
34106 Typing the &quot;G&quot; command will change the prompt to
34108 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
34110 Typing the &quot;E&quot; command will change the prompt to
34112 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
34114 You may even type both to get
34116 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
34119 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
34121 The reading of a signed message should not require any special action on
34122 your part.
34123 There should be an editorial addition at the start of the message which
34124 says either
34126 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
34130 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
34132 If an encrypted message is sent to you the encrypted text will not
34133 be shown.
34134 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
34135 you are viewing the message) and supply your passphrase when asked.
34137 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
34138 which gives you some information about the certificate used to sign or encrypt the message.
34140 <H2>MISCELLANEOUS</H2>
34142 You may have access to a private certificate in the PKCS12 format,
34143 which would sometimes be in a file with a &quot;.p12&quot; suffix.
34144 The UNIX shell command
34146 <CENTER><SAMP>openssl pkcs12 -in file.p12 -out file.pem</SAMP></CENTER>
34148 may work to convert that from the PKCS12 format to the PEM format.
34149 Then that file could be placed in the &quot;<SAMP>private</SAMP>&quot;
34150 directory with a filename of your email address followed by the
34151 suffix &quot;<SAMP>.key</SAMP>&quot;.
34154 &lt;End of help on this topic&gt;
34155 </BODY>
34156 </HTML>
34157 ====== h_config_smime_pubcertdir =====
34158 <HTML>
34159 <HEAD>
34160 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
34161 </HEAD>
34162 <BODY>
34163 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
34165 UNIX Alpine only.
34167 If the option
34168 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34169 is set then this option will have no effect.
34171 Normally, Public Certificates for use with S/MIME will be stored in the directory
34172 which is the value of this option.
34173 Those certificates will be stored in PEM format, one certificate per file.
34174 The name of the file for the certificate corresponding to
34176 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34178 should be
34180 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
34182 For example, a file for user@example.com would be in the file
34184 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34186 in this directory.
34188 Use the Setup/SMIME screen to modify this variable.
34190 Typically, the public certificates that you have will come from S/MIME signed
34191 messages that are sent to you.
34192 Alpine will extract the public certificate from the signed message and store
34193 it in the certificates directory.
34194 These PEM format public certificates look something like:
34195 <PRE>
34196 -----BEGIN CERTIFICATE-----
34197 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
34198 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
34199 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
34201 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
34202 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
34203 -----END CERTIFICATE-----
34204 </PRE>
34206 <UL>   
34207 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34208 </UL><P>
34210 <UL>   
34211 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34212 </UL><P>
34213 &lt;End of help on this topic&gt;
34214 </BODY>
34215 </HTML>
34216 ====== h_config_smime_pubcertcon =====
34217 <HTML>
34218 <HEAD>
34219 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
34220 </HEAD>
34221 <BODY>
34222 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
34224 UNIX Alpine only.
34226 If this option is set it will be used instead of
34227 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34229 This option gives you a way to store certificates remotely on an IMAP server
34230 instead of storing the certificates one per file locally.
34231 In order to do that you just give this option a remote folder name for a folder
34232 which does not yet exist.
34233 The name is similar to the name you might use for a remote configuration file.
34234 A remote folder name might look something like:
34236 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
34239 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34240 about the syntax of folder names.
34242 Use the Setup/SMIME screen to modify this variable.
34244 <UL>   
34245 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34246 </UL><P>
34248 <UL>   
34249 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34250 </UL><P>
34251 &lt;End of help on this topic&gt;
34252 </BODY>
34253 </HTML>
34254 ====== h_config_smime_privkeydir =====
34255 <HTML>
34256 <HEAD>
34257 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
34258 </HEAD>
34259 <BODY>
34260 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
34262 UNIX Alpine only.
34264 In order to sign outgoing S/MIME messages you will need a
34265 personal digital ID certificate.
34266 You will usually get such a certificate from a certificate authority such as
34267 Thawte or CAcert.
34268 (In order to encrypt outgoing messages you don't need a personal digital ID, you
34269 need the public certificate of the recipient instead.)
34270 If the option
34271 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
34272 is set then this option will have no effect.
34274 Normally, Private Keys for use with S/MIME will be stored in the directory
34275 which is the value of this option.
34276 Those certificates will be stored in PEM format, one certificate per file.
34277 The name of the file for the certificate corresponding to your
34279 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34281 should be
34283 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
34285 For example, if your address is user@example.com the name of the file would be
34287 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
34289 in this directory.
34291 Use the Setup/SMIME screen to modify this variable.
34293 Typically, the private key that you have will come from a Certificate
34294 Authority.
34295 The private key should be stored in a PEM format file that
34296 looks something like:
34297 <PRE>
34298 -----BEGIN RSA PRIVATE KEY-----
34299 Proc-Type: 4,ENCRYPTED
34300 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
34302 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
34303 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
34304 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
34306 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
34307 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
34308 -----END RSA PRIVATE KEY-----
34309 </PRE>
34311 <UL>   
34312 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34313 </UL><P>
34315 <UL>   
34316 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34317 </UL><P>
34318 &lt;End of help on this topic&gt;
34319 </BODY>
34320 </HTML>
34321 ====== h_config_smime_privkeycon =====
34322 <HTML>
34323 <HEAD>
34324 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
34325 </HEAD>
34326 <BODY>
34327 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
34329 UNIX Alpine only.
34331 If this option is set it will be used instead of
34332 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34334 This option gives you a way to store keys remotely on an IMAP server
34335 instead of storing the keys one per file locally.
34336 In order to do that you just give this option a remote folder name for a folder
34337 which does not yet exist.
34338 The name is similar to the name you might use for a remote configuration file.
34339 A remote folder name might look something like:
34341 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
34344 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34345 about the syntax of folder names.
34347 Use the Setup/SMIME screen to modify this variable.
34349 <UL>   
34350 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34351 </UL><P>
34353 <UL>   
34354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34355 </UL><P>
34356 &lt;End of help on this topic&gt;
34357 </BODY>
34358 </HTML>
34359 ====== h_config_smime_cacertdir =====
34360 <HTML>
34361 <HEAD>
34362 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
34363 </HEAD>
34364 <BODY>
34365 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
34367 UNIX Alpine only.
34369 If the option
34370 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
34371 is set then this option will have no effect.
34373 CACert is a shorthand name for certification authority certificate.
34374 Normally Alpine will use the CACerts that are located in the standard system
34375 location for CACerts.
34376 It may be the case that one of your correspondents has a Digital ID which has
34377 been signed by a certificate authority that is not in the regular set of system certificate
34378 authorities.
34379 You may supplement the system list by adding further certificates of your own.
34380 These should  be stored in the directory
34381 which is the value of this option.
34382 The certificates will be stored in PEM format, one certificate per file.
34383 The names of the files can be anything ending in &quot;.crt&quot;.
34385 Use the Setup/SMIME screen to modify this variable.
34387 These PEM format CA certificates look very similar to your public
34388 certificates for particular email addresses
34389 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
34391 <UL>   
34392 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34393 </UL><P>
34395 <UL>   
34396 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34397 </UL><P>
34398 &lt;End of help on this topic&gt;
34399 </BODY>
34400 </HTML>
34401 ====== h_config_smime_cacertcon =====
34402 <HTML>
34403 <HEAD>
34404 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
34405 </HEAD>
34406 <BODY>
34407 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
34409 UNIX Alpine only.
34411 If this option is set it will be used instead of
34412 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34414 This option gives you a way to store certificates remotely on an IMAP server
34415 instead of storing the certificates one per file locally.
34416 In order to do that you just give this option a remote folder name for a folder
34417 which does not yet exist.
34418 The name is similar to the name you might use for a remote configuration file.
34419 A remote folder name might look something like:
34421 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
34424 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34425 about the syntax of folder names.
34427 Use the Setup/SMIME screen to modify this variable.
34429 <UL>   
34430 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34431 </UL><P>
34433 <UL>   
34434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34435 </UL><P>
34436 &lt;End of help on this topic&gt;
34437 </BODY>
34438 </HTML>
34439 ========== h_config_smime_sign_by_default ==========
34440 <HTML>
34441 <HEAD>
34442 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
34443 </HEAD>
34444 <BODY>
34445 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
34447 UNIX Alpine only.
34449 This feature only has an effect if your version of Alpine includes
34450 support for S/MIME.
34451 It affects Alpine's behavior when you send a message.
34452 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
34454 Only the default value is affected.
34455 In any case, you may still toggle the Signing option on or off before sending
34456 with the &quot;G Sign&quot; command (provided you have a personal digital ID
34457 certificate).
34459 <UL>   
34460 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34461 </UL><P>
34464 <UL>   
34465 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34466 </UL><P>
34467 &lt;End of help on this topic&gt;
34468 </BODY>
34469 </HTML>
34470 ========== h_config_smime_pubcerts_in_keychain ==========
34471 <HTML>
34472 <HEAD>
34473 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
34474 </HEAD>
34475 <BODY>
34476 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
34478 UNIX Alpine only.
34480 If this feature is set the Mac OS X default keychain will be used as the place
34481 to store public certificates instead of a
34482 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
34483 or a
34484 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
34486 <UL>   
34487 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34488 </UL><P>
34490 <UL>   
34491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34492 </UL><P>
34493 &lt;End of help on this topic&gt;
34494 </BODY>
34495 </HTML>
34496 ========== h_config_smime_dont_do_smime ==========
34497 <HTML>
34498 <HEAD>
34499 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
34500 </HEAD>
34501 <BODY>
34502 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
34504 UNIX Alpine only.
34506 Setting this feature turns off all of Alpine's S/MIME support.
34507 You might want to set this if you are having trouble due to the S/MIME support.
34509 <UL>   
34510 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34511 </UL><P>
34514 <UL>   
34515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34516 </UL><P>
34517 &lt;End of help on this topic&gt;
34518 </BODY>
34519 </HTML>
34520 ========== h_config_smime_encrypt_by_default ==========
34521 <HTML>
34522 <HEAD>
34523 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
34524 </HEAD>
34525 <BODY>
34526 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
34528 UNIX Alpine only.
34530 This feature only has an effect if your version of Alpine includes
34531 support for S/MIME.
34532 It affects Alpine's behavior when you send a message.
34533 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
34535 Only the default value is affected.
34536 In any case, you may still toggle the Encrypt option on or off before sending
34537 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
34538 for the recipient).
34540 <UL>   
34541 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34542 </UL><P>
34545 <UL>   
34546 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34547 </UL><P>
34548 &lt;End of help on this topic&gt;
34549 </BODY>
34550 </HTML>
34551 ========== h_config_smime_remember_passphrase ==========
34552 <HTML>
34553 <HEAD>
34554 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
34555 </HEAD>
34556 <BODY>
34557 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
34559 UNIX Alpine only.
34561 This feature only has an effect if your version of Alpine includes
34562 support for S/MIME.
34563 If this option is set, you will only have to enter your passphrase for your private key
34564 once during an Alpine session.
34566 <UL>   
34567 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34568 </UL><P>
34571 <UL>   
34572 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34573 </UL><P>
34574 &lt;End of help on this topic&gt;
34575 </BODY>
34576 </HTML>
34577 ====== h_config_smime_transfer_pub_to_con =====
34578 <HTML>
34579 <HEAD>
34580 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
34581 </HEAD>
34582 <BODY>
34583 <H1>S/MIME: Transfer Public Certs to Container</H1>
34585 UNIX Alpine only.
34587 The Transfer command will copy the public certificates in your configured
34588 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
34589 to the container in your configured
34590 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
34591 This might be useful if you decide to switch from using a cert directory to a cert
34592 container.
34594 Warning: Any previous contents in the container will be lost.
34596 <UL>   
34597 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34598 </UL><P>
34600 <UL>   
34601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34602 </UL><P>
34603 &lt;End of help on this topic&gt;
34604 </BODY>
34605 </HTML>
34606 ====== h_config_smime_transfer_pub_to_dir =====
34607 <HTML>
34608 <HEAD>
34609 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
34610 </HEAD>
34611 <BODY>
34612 <H1>S/MIME: Transfer Public Certs to Directory</H1>
34614 UNIX Alpine only.
34616 The Transfer command will copy the public certificates in your configured
34617 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34618 to the directory in your configured
34619 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34620 This might be useful if you decide to switch from using a cert container to a cert
34621 directory.
34623 <UL>   
34624 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34625 </UL><P>
34627 <UL>   
34628 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34629 </UL><P>
34630 &lt;End of help on this topic&gt;
34631 </BODY>
34632 </HTML>
34633 ====== h_config_smime_transfer_priv_to_con =====
34634 <HTML>
34635 <HEAD>
34636 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
34637 </HEAD>
34638 <BODY>
34639 <H1>S/MIME: Transfer Private Keys to Container</H1>
34641 UNIX Alpine only.
34643 The Transfer command will copy the private keys in your configured
34644 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34645 to the container in your configured
34646 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
34647 This might be useful if you decide to switch from using a key directory to a key
34648 container.
34650 Warning: Any previous contents in the container will be lost.
34652 <UL>   
34653 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34654 </UL><P>
34656 <UL>   
34657 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34658 </UL><P>
34659 &lt;End of help on this topic&gt;
34660 </BODY>
34661 </HTML>
34662 ====== h_config_smime_transfer_priv_to_dir =====
34663 <HTML>
34664 <HEAD>
34665 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
34666 </HEAD>
34667 <BODY>
34668 <H1>S/MIME: Transfer Private Keys to Directory</H1>
34670 UNIX Alpine only.
34672 The Transfer command will copy the private keys in your configured
34673 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
34674 to the directory in your configured
34675 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34676 This might be useful if you decide to switch from using a key container to a key
34677 directory.
34679 <UL>   
34680 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34681 </UL><P>
34683 <UL>   
34684 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34685 </UL><P>
34686 &lt;End of help on this topic&gt;
34687 </BODY>
34688 </HTML>
34689 ====== h_config_smime_transfer_cacert_to_con =====
34690 <HTML>
34691 <HEAD>
34692 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
34693 </HEAD>
34694 <BODY>
34695 <H1>S/MIME: Transfer CA Certs to Container</H1>
34697 UNIX Alpine only.
34699 The Transfer command will copy the CA certificates in your configured
34700 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
34701 to the container in your configured
34702 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
34703 This might be useful if you decide to switch from using a CA cert directory to a CA cert
34704 container.
34706 Warning: Any previous contents in the container will be lost.
34708 <UL>   
34709 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34710 </UL><P>
34712 <UL>   
34713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34714 </UL><P>
34715 &lt;End of help on this topic&gt;
34716 </BODY>
34717 </HTML>
34718 ====== h_config_smime_transfer_cacert_to_dir =====
34719 <HTML>
34720 <HEAD>
34721 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
34722 </HEAD>
34723 <BODY>
34724 <H1>S/MIME: Transfer CA Certs to Directory</H1>
34726 UNIX Alpine only.
34728 The Transfer command will copy the CA certificates in your configured
34729 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
34730 to the directory in your configured
34731 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34732 This might be useful if you decide to switch from using a CA cert container to a CA cert
34733 directory.
34735 <UL>   
34736 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34737 </UL><P>
34739 <UL>   
34740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34741 </UL><P>
34742 &lt;End of help on this topic&gt;
34743 </BODY>
34744 </HTML>
34745 ====== h_config_smime_transfer_pubcon_to_key =====
34746 <HTML>
34747 <HEAD>
34748 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
34749 </HEAD>
34750 <BODY>
34751 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
34753 Mac OS X Alpine only.
34755 The Transfer command will copy the public certificates in your configured
34756 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34757 to your default Mac OS X Keychain.
34758 This might be useful if you decide to switch from using a cert container to using
34759 the Keychain to store your public certs, which you may do by using the
34760 feature
34761 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
34763 <UL>   
34764 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34765 </UL><P>
34767 <UL>   
34768 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34769 </UL><P>
34770 &lt;End of help on this topic&gt;
34771 </BODY>
34772 </HTML>
34773 ====== h_config_smime_transfer_pubkey_to_con =====
34774 <HTML>
34775 <HEAD>
34776 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
34777 </HEAD>
34778 <BODY>
34779 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
34781 UNIX Alpine only.
34783 The Transfer command will copy the public certificates in your configured
34784 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34785 to your default Mac OS X Keychain.
34786 This might be useful if you decide to switch from using a cert container to using
34787 the Keychain to store your public certs.
34789 <UL>   
34790 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34791 </UL><P>
34793 <UL>   
34794 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34795 </UL><P>
34796 &lt;End of help on this topic&gt;
34797 </BODY>
34798 </HTML>
34799 ====== h_config_lame_list_mode =====
34800 <HTML>
34801 <HEAD>
34802 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
34803 </HEAD>
34804 <BODY>
34805 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
34807 This feature modifies the method Alpine uses to ask your IMAP
34808 server for folder names to display in the FOLDER LIST screen.
34809 It is intended to compensate for a small set of IMAP servers that
34810 are programmed to ignore a part of the request, and thus respond
34811 to Alpine's query with nonsensical results.
34814 If you find that Alpine is erroneously displaying blank folder lists,
34815 try enabling this feature.
34818 NOTE: Enabling this feature has consequences for the Goto and Save
34819 commands.  Many servers allow access to folders outside the area
34820 reserved for your personal folders via some reserved character,
34821 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
34822 allows, at the Goto and Save prompts, quick access to folders
34823 outside your personal folder collection without requiring a specific
34824 collection definition.  This behavior will generally not be available
34825 when this feature is enabled.
34828 <UL>   
34829 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34830 </UL><P>
34831 &lt;End of help on this topic&gt;
34832 </BODY>
34833 </HTML>
34834 ====== h_config_enable_mulnewsrcs =====
34835 <HTML>
34836 <HEAD>
34837 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
34838 </HEAD>
34839 <BODY>
34840 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
34842 This feature makes it so Alpine can use multiple newsrcs based on
34843 the news server being connected to, which allows for separate lists
34844 of subscribed-to newsgroups. When this feature is not set, there is only
34845 one list of newsgroups.
34847 Under this feature, the name of a newsrc is based on the news server.
34848 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
34849 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
34850 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
34851 Setting this feature for the first time will allow for the option of using
34852 your old newsrc the next time you read news.
34854 If this feature is set, then the feature
34855 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
34856 also may affect the name of the newsrc file that is used.
34858 <UL>   
34859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34860 </UL><P>
34861 &lt;End of help on this topic&gt;
34862 </BODY>
34863 </HTML>
34864 ======= h_ab_export_vcard =======
34865 <HTML>
34866 <HEAD>
34867 <TITLE>Address Book Export Format</TITLE>
34868 </HEAD>
34869 <BODY>
34870 <H1>Address Book Export Format</H1>
34872 You are exporting address book data from Alpine to a file outside of Alpine.
34873 You are being asked to choose the format of the export.
34874 Here are the choices:
34876 <DL>
34877 <DT><EM>A</EM>ddress List</DT>
34878 <DD>
34879 The addresses from the address book entries you are saving
34880 from will be saved one address per line.
34881 Address book lists (those with more than one address) will have
34882 all of their addresses saved separately.
34883 </DD>
34885 <DT><EM>V</EM>Card</DT>
34886 <DD>
34887 The entries will be saved in
34888 <A HREF="h_whatis_vcard">vCard</A> format.
34889 </DD>
34891 <DT><EM>T</EM>ab Separated</DT>
34892 <DD>
34893 The entries will be saved in tab-separated columns.
34894 There will be just 4 columns of data that correspond to Alpine's
34895 Nickname field, Full Name field, Address field, and Comment field.
34896 It might prove useful to Select only the Simple, non-List address book
34897 entries before Saving.
34898 </DD>
34900 <DT><EM>^C</EM> Cancel</DT>
34901 <DD>
34902 Cancel out of the Save.
34903 </DD>
34905 </DL>
34909 &lt;End of help on this topic&gt;
34910 </BODY>
34911 </HTML>
34912 ====== h_config_predict_nntp_server =====
34913 <HTML>
34914 <HEAD>
34915 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
34916 </HEAD>
34917 <BODY>
34918 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
34920 This feature allows Alpine to assume that the open NNTP server at the
34921 time of composition is the NNTP server to which the message should be
34922 posted.  This is especially recommended when there are multiple News
34923 collections.  If this feature is not set, Alpine will try to post to the first server in
34924 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
34925 this feature also negates the need to add News collection servers to
34926 the <!--#echo var="VAR_nntp-server"--> variable.
34928 This feature can be especially handy when used in conjunction with
34929 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
34931 <UL>   
34932 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34933 </UL><P>
34934 &lt;End of help on this topic&gt;
34935 </BODY>
34936 </HTML>
34937 ====== h_config_nntp_search_uses_overview =====
34938 <HTML>
34939 <HEAD>
34940 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
34941 </HEAD>
34942 <BODY>
34943 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
34945 This feature should probably be turned on unless it causes trouble.
34946 The results of the NNTP overview command (XOVER) may be used to help
34947 with some searches in news groups.
34948 It should result in quicker response time.
34949 Turning this feature on apparently causes search results which are
34950 different from what you would get with the feature turned off on some
34951 servers.
34953 <UL>   
34954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34955 </UL><P>
34956 &lt;End of help on this topic&gt;
34957 </BODY>
34958 </HTML>
34959 ====== h_config_thread_sorts_by_arrival =====
34960 <HTML>
34961 <HEAD>
34962 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
34963 </HEAD>
34964 <BODY>
34965 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
34967 This feature affects how a threading sort arranges threads.  The default way
34968 to arrange threads is by the date of the earliest message in the thread.
34969 This feature arranges threads by the last message to arrive in a thread.
34971 This feature causes old threads that get recent messages to sort to the bottom,
34972 where previously a message arrival to a thread would not rearrange the order of
34973 that thread.
34975 <UL>   
34976 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34977 </UL><P>
34978 &lt;End of help on this topic&gt;
34979 </BODY>
34980 </HTML>
34981 ====== h_config_textplain_int =====
34982 <HTML>
34983 <HEAD>
34984 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
34985 </HEAD>
34986 <BODY>
34987 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
34989 This feature modifies the method Alpine uses to display Text/Plain
34990 MIME attachments from the Attachment Index screen.  Normally, the
34991 &quot;View&quot; command searches for any externally defined (usually
34992 via the
34993 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
34994 and displays the selected text within that viewer.
34997 Enabling this feature causes Alpine to ignore any external viewer
34998 settings and always display text with Alpine's internal viewer.
35001 <UL>   
35002 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35003 </UL><P>
35004 &lt;End of help on this topic&gt;
35005 </BODY>
35006 </HTML>
35007 ====== h_config_wp_columns =====
35008 <HTML>
35009 <HEAD>
35010 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
35011 </HEAD>
35012 <BODY>
35013 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
35015 Web Alpine only.
35017 This configuration setting specifies the number of horizontal characters
35018 used to format various WebAlpine pages.  Smaller values will tend to reduce
35019 the amount of horizontal scrolling required to view pages within narrow
35020 browsers, such as those found on PDAs, and larger values will tend to 
35021 spread more information across the page.
35024 The Message List page uses the width to determine how many characters
35025 to assign each field.  Note, a smaller value may result in a disproportionate
35026 amount of blank space between fields on each line.  Similarly, a large
35027 value may result in cramped fields or horizontal scrolling.
35030 The Message View page uses this value to determine when to wrap lines
35031 in displayed message text.  Note, a smaller value may result in jagged
35032 right margins or confusing quoting.  A larger value may cause lines of text to
35033 run beyond the browser's right edge, requiring horizontal scrolling.
35036 <UL>   
35037 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35038 </UL><P>
35039 &lt;End of help on this topic&gt;
35040 </BODY>
35041 </HTML>
35042 ====== h_config_wp_state =====
35043 <HTML>
35044 <HEAD>
35045 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
35046 </HEAD>
35047 <BODY>
35048 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
35050 Web Alpine only.
35052 Various aspects of cross-session state.
35055 <UL>   
35056 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35057 </UL><P>
35058 &lt;End of help on this topic&gt;
35059 </BODY>
35060 </HTML>
35061 ====== h_config_wp_aggstate =====
35062 <HTML>
35063 <HEAD>
35064 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
35065 </HEAD>
35066 <BODY>
35067 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
35069 Web Alpine only.
35071 Aggregate operations tab state.
35074 <UL>   
35075 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35076 </UL><P>
35077 &lt;End of help on this topic&gt;
35078 </BODY>
35079 </HTML>
35080 ====== h_config_wp_indexlines =====
35081 <HTML>
35082 <HEAD>
35083 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
35084 </HEAD>
35085 <BODY>
35086 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
35088 Web Alpine only.
35090 Number of index lines in table.
35093 <UL>   
35094 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35095 </UL><P>
35096 &lt;End of help on this topic&gt;
35097 </BODY>
35098 </HTML>
35099 ====== h_config_wp_indexheight =====
35100 <HTML>
35101 <HEAD>
35102 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
35103 </HEAD>
35104 <BODY>
35105 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
35107 Web Alpine only.
35109 Index table row height.
35112 <UL>   
35113 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35114 </UL><P>
35115 &lt;End of help on this topic&gt;
35116 </BODY>
35117 </HTML>
35118 ====== h_config_rss_news =====
35119 <HTML>
35120 <HEAD>
35121 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
35122 </HEAD>
35123 <BODY>
35124 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
35126 Web Alpine only.
35128 RSS News feed.
35131 <UL>   
35132 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35133 </UL><P>
35134 &lt;End of help on this topic&gt;
35135 </BODY>
35136 </HTML>
35137 ====== h_config_rss_weather =====
35138 <HTML>
35139 <HEAD>
35140 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
35141 </HEAD>
35142 <BODY>
35143 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
35145 Web Alpine only.
35147 RSS Weather feed.
35150 <UL>   
35151 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35152 </UL><P>
35153 &lt;End of help on this topic&gt;
35154 </BODY>
35155 </HTML>
35156 ====== h_config_send_confirms_only_expanded =====
35157 <HTML>
35158 <HEAD>
35159 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
35160 </HEAD>
35161 <BODY>
35162 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
35164 This Web Alpine option specifies whether or not a Send confirmations
35165 happens when a composed message is readied for sending or not.  The
35166 default behavior is to not confirm that the nicknames were expanded to
35167 the intended addresses.
35170 <UL>   
35171 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35172 </UL><P>
35173 &lt;End of help on this topic&gt;
35174 </BODY>
35175 </HTML>
35176 ====== h_config_enable_jump_command =====
35177 <HTML>
35178 <HEAD>
35179 <TITLE>FEATURE: enable-jump-command</TITLE>
35180 </HEAD>
35181 <BODY>
35182 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
35184 This Web Alpine option specifies whether or not a Jump command is
35185 offered in the Message List and Message View pages.  The command is
35186 implemented as an input field in the left column of the List and View
35187 screens. 
35190 When enabled and a number is entered in the input field while the
35191 Message List is displayed, the Message List is reframed with the
35192 specified message.  While viewing a message, the message associated
35193 with the specified message number is displayed.
35196 <UL>   
35197 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35198 </UL><P>
35199 &lt;End of help on this topic&gt;
35200 </BODY>
35201 </HTML>
35202 ====== h_config_enable_newmail_sound =====
35203 <HTML>
35204 <HEAD>
35205 <TITLE>FEATURE: enable-newmail-sound</TITLE>
35206 </HEAD>
35207 <BODY>
35208 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
35210 This Web Alpine option specifies whether or not a sound file is sent
35211 to the web browser along with the newmail notification message.
35215 <UL>   
35216 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35217 </UL><P>
35218 &lt;End of help on this topic&gt;
35219 </BODY>
35220 </HTML>
35221 ====== h_config_render_html_internally =====
35222 <HTML>
35223 <HEAD>
35224 <TITLE>FEATURE: render-html-internally</TITLE>
35225 </HEAD>
35226 <BODY>
35227 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
35229 By default, Web Alpine will pass cleansed HTML text you receive in messages 
35230 to the browser for display (rendering).  This feature causes Web Alpine to convert 
35231 the HTML text into plain text in the same way Unix and PC-Alpine do.
35235 <UL>   
35236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35237 </UL><P>
35238 &lt;End of help on this topic&gt;
35239 </BODY>
35240 </HTML>
35241 ====== h_config_role_undo =====
35242 Yes, remember changes and exit back to list of roles; No, discard changes
35243 made in this screen; ^C, cancel exit and stay in this config screen.
35244 ====== h_exit_editor =====
35245 S, save changes and exit from the editor; D, do not save changes but
35246 do exit from the editor; or ^C, cancel exit and stay in the editor.
35247 ====== h_config_undo =====
35248 Yes, save changes and exit; No, exit without saving any changes made since
35249 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
35250 ====== h_os_index_whereis =====
35251 Enter ^V or ^Y to go immediately to the last or first message in the index.
35252 Or, enter the match string followed by RETURN.
35253 ====== h_os_index_whereis_agg =====
35254 Enter ^V or ^Y to go immediately to the last or first message in the index,
35255 Or, enter the match string followed by RETURN (or ^X to select all matches).
35256 =========== h_oe_add_full ==================
35257 Type the full name of the person being added and press the RETURN key.
35258 Press ^C to cancel addition.
35259 =========== h_oe_add_nick ==================
35260 Type a short nickname and press RETURN.  A nickname is a short easy-to-
35261 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
35262 ========== h_oe_add_addr ================
35263 Type the e-mail address and press RETURN.
35264 Press ^C to cancel addition.
35265 ========== h_oe_crlst_full ==============
35266 Type a long name or description for the list that you are creating and
35267 press RETURN.  Press ^C to cancel creation of list.
35268 =========== h_oe_crlst_nick =============
35269 Type a nickname (short, easy-to-remember name or single word) for the list
35270 you are creating and press RETURN.  Press ^C to cancel.
35271 ========== h_oe_crlst_addr ==============
35272 Type an e-mail address, or a nickname already in the address book that you
35273 want to be part of this list and press RETURN.
35274 ========== h_oe_adlst_addr =============
35275 Type an e-mail address or a nickname already in the address book that you
35276 want to add to this list and press RETURN.
35277 ========== h_oe_editab_nick ============
35278 Change the nickname using the arrow keys and delete key.  Press RETURN
35279 when done.  Press ^C to cancel editing and leave the nickname as it was.
35280 ========== h_oe_editab_full ============
35281 Change the full name using the arrow keys and delete key.  Press RETURN
35282 when done.  Press ^C to cancel editing and leave the full name as it was.
35283 ========== h_oe_editab_addr ============
35284 Change the address using the arrow keys and delete key.  Press RETURN
35285 when done.  Press ^C to cancel editing and leave the address as it was.
35286 ========== h_oe_editab_fcc ============
35287 Change the fcc using the arrow keys and delete key.  Press RETURN when
35288 done.  Press ^C to cancel editing and leave the fcc as it was.
35289 ========== h_oe_editab_comment ============
35290 Change the comment field using the arrow keys and delete key.  Press RETURN
35291 when done.  Press ^C to cancel editing and leave the comment as it was.
35292 ====== h_ab_forward =====
35293 Yes, expand nicknames and qualify local names with your current domain name;
35294 No, leave nicknames and local names as is;  ^C, cancel.
35295 ========== h_ab_export ==========
35296 Type the name of a file to write the addresses into and
35297 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
35298 ========== h_ab_edit_a_field ==========
35299 Edit any of the fields of the currently selected entry by typing one of the
35300 letters at the bottom of the screen.  Press ^C to cancel edit.
35301 ====== h_ab_del_data_revert =====
35302 Press B to completely delete addrbook and revert to default, C to delete config
35303 and revert while leaving data, or D to only delete data (make it empty).
35304 ====== h_ab_del_data_modify =====
35305 Press B to completely delete addrbook, C to delete configuration while leaving
35306 data, or D to delete data (make it empty) but leave config. ^C to cancel.
35307 ====== h_ab_del_config_modify =====
35308 Yes, remove this address book from my configuration.
35309 No, make no changes now.
35310 ====== h_ab_del_config_revert =====
35311 Yes, remove this address book from my config and revert to default.
35312 No, make no changes now.
35313 ====== h_ab_del_default =====
35314 Yes, remove this default address book from my configuration.
35315 No, make no changes now.
35316 ====== h_ab_really_delete =====
35317 Yes, delete the actual contents of the address book, not just the 
35318 configuration.  No, don't delete the data after all, cancel and start over.
35319 ====== h_ab_del_ignore =====
35320 Press I to ignore all the default address books for this category.  Press R to
35321 remove this one address book and add the others to your personal list.
35322 ====== h_ab_del_dir_ignore =====
35323 Press I to ignore all the default directory servers for this category.
35324 Press R to remove this one server and add the others to your personal list.
35325 ====== h_ab_copy_dups =====
35326 Yes, overwrite the existing entry.
35327 No, skip duplicates but save the rest. Press ^C to cancel.
35328 ====== h_confirm_cancel =====
35329 Type C to Confirm that you want to abandon the message you are composing.
35330 Type N or ^C to cancel out of the cancel and keep composing.
35331 ====== h_ab_text_or_vcard =====
35332 Text, start composer with displayed text already included.
35333 VCard, start composer with address book entry attached as a vCard. ^C cancels.
35334 ====== h_ab_backup_or_ldap =====
35335 Backup, copy email address from entry and allow editing of it.
35336 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
35337 ====== h_ldap_text_or_vcard =====
35338 Text: export displayed text for selected entry. Address: export only the
35339 email address. VCard: export entry in vCard format. ^C cancels.
35340 ====== h_ab_save_exp =====
35341 Save, save entry or entries to an address book.
35342 Export, save to file outside of pine. ^C cancels save.
35343 ====== h_ab_add =====
35344 A, add a brand new entry to this address book.
35345 E, edit the entry that is currently highlighted. ^C to cancel.
35346 ====== h_ab_shuf =====
35347 U, swap order of highlighted address book and the one above it.
35348 D, swap order of highlighted address book and the one below it. ^C to cancel.
35349 ====== h_ab_shuf_up =====
35350 U, swap order of highlighted address book and the one above it.
35351 Press ^C to cancel.
35352 ====== h_ab_shuf_down =====
35353 D, swap order of highlighted address book and the one below it.
35354 Press ^C to cancel.
35355 ====== h_folder_prop =====
35356 Count is # of messages in the folder, Unseen means messages that have not
35357 been read, New means messages that were Recently added to the folder.
35358 ====== h_role_shuf =====
35359 U, swap order of highlighted rule and the one above it.
35360 D, swap order of highlighted rule and the one below it. ^C to cancel.
35361 ====== h_role_shuf_up =====
35362 U, swap order of highlighted rule and the one above it.
35363 Press ^C to cancel.
35364 ====== h_role_shuf_down =====
35365 D, swap order of highlighted rule and the one below it.
35366 Press ^C to cancel.
35367 ====== h_incoming_shuf =====
35368 B, swap order of highlighted directory and the one before it.
35369 F, swap order of highlighted directory and the one after it. ^C to cancel.
35370 ====== h_incoming_shuf_up =====
35371 B, swap order of highlighted directory and the one before it.
35372 Press ^C to cancel.
35373 ====== h_incoming_shuf_down =====
35374 F, swap order of highlighted directory and the one after it.
35375 Press ^C to cancel.
35376 ====== h_dir_shuf =====
35377 U, swap order of highlighted directory and the one above it.
35378 D, swap order of highlighted directory and the one below it. ^C to cancel.
35379 ====== h_dir_shuf_up =====
35380 U, swap order of highlighted directory and the one above it.
35381 Press ^C to cancel.
35382 ====== h_dir_shuf_down =====
35383 D, swap order of highlighted directory and the one below it.
35384 Press ^C to cancel.
35385 ====== h_hdrcolor_shuf =====
35386 U, swap order of highlighted Header Color and the one above it.
35387 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
35388 ====== h_hdrcolor_shuf_up =====
35389 U, swap order of highlighted Header Color and the one above it.
35390 Press ^C to cancel.
35391 ====== h_hdrcolor_shuf_down =====
35392 D, swap order of highlighted Header Color and the one below it.
35393 Press ^C to cancel.
35394 ========== h_oe_editab_al ============
35395 Change the address using the arrow keys and delete key.  Press RETURN
35396 when done.  Press ^C to cancel editing and leave the address as it was.
35397 ========== h_dir_comp_search ===============
35398 Type a string to look for just like you would in the composer. Your configured
35399 rules for the servers with the implicit flag set will be used.
35400 ========== h_oe_searchab ===============
35401 Type the word or name you want to search for and press RETURN.  If you press
35402 RETURN without entering anything the word in [] will be searched for.
35403 ========== h_oe_chooseabook ==========
35404 Choose the address book you want to save the new entry in.
35405 Use ^N or ^P to change address books.  ^C to cancel.
35406 ========== h_oe_takeaddr ==========
35407 Edit the e-mail address using the arrow and delete keys.  Press RETURN
35408 when done.  Press ^C to cancel adding this entry to the address book.
35409 ========== h_oe_take_replace ==========
35410 Press R to replace the old entry with this new data.  You will still have
35411 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
35412 ========== h_oe_take_replace_or_add ==========
35413 Press R to replace the old entry.  Press A to add the selected addresses to
35414 the old existing list.  N to enter another nickname. ^C to cancel now.
35415 ========== h_oe_takename ==========
35416 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
35417 when done.  Press ^C to cancel adding this entry to the address book.
35418 ========== h_oe_takenick ==========
35419 Type a nickname (short easy-to-remember name, initials or single word) for this
35420 entry in the address book and press RETURN.  Press ^C to cancel addition.
35421 ========== h_oe_jump ==========
35422 Type the message number you want to jump to and press RETURN.  The word "end"
35423 represents the last message. Press ^C to cancel jumping to another message.
35424 ========== h_oe_jump_thd ==========
35425 Type the thread number you want to jump to and press RETURN.  The word "end"
35426 represents the last thread. Press ^C to cancel jumping to another thread.
35427 ========== h_oe_debuglevel ==========
35428 Higher number shows more debugging details.
35429 Press ^C if you want to cancel the change.
35430 ========== h_oe_broach ==========
35431 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
35432 to go to the previous/next collections in the list.  Press ^C to cancel goto.
35433 ========== h_oe_foldsearch ==========
35434 Type the text you want to search for in foldernames and press RETURN.  If you
35435 press RETURN without entering anything, any text in [] will be searched for.
35436 ========== h_oe_foldrename ==========
35437 Change the old name of the folder to the new name using the arrow and
35438 delete keys and press RETURN.  Press ^C to cancel rename.
35439 ========== h_oe_login ==========
35440 Enter your login name for the host you are opening the mailbox on.  Just press
35441 RETURN to use your login from this host as is, or edit it with delete key.
35442 ========== h_oe_passwd ==========
35443 Type your password for the host and login shown as part of the prompt.
35444 Press ^C to cancel opening folder.
35445 ========== h_oe_choosep ==========
35446 Enter the number associated with the printer you want to select.  Press ^C to
35447 cancel the printer selection.  The current selection is highlighted.
35448 ========== h_oe_customp ==========
35449 Type the name of the Unix print command and press RETURN.  Press ^C to
35450 cancel the printer selection.
35451 ========== h_oe_searchview ==========
35452 Type the word or name you want to search for and press RETURN.  If you press
35453 RETURN without entering anything the word in [] will be searched for.
35454 ========== h_oe_keylock ==========
35455 The keyboard is in use and locked by another user.  Only that user can
35456 unlock this keyboard by typing the password.
35457 ========== h_wt_expire ==========
35458 At the beginning of each month Alpine offers to rename your current sent-mail
35459 folder to one named for the month so you have a sent-mail folder for each month
35460 ========== h_wt_delete_old ==========
35461 It is the beginning of the month, and we need to conserve disk
35462 space.  Please delete any sent-mail that you do not need.
35463 ========== h_select_sort ==========
35464 Select the order for sorting the index by typing the capitalized letter.
35465 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
35466 ========== h_no_F_arg ============
35467 Enter name of file to be opened.
35469 ========== h_sticky_personal_name ==========
35470 Type in your name as you want it to appear on outgoing email.  This entry
35471 will be saved into your Alpine configuration file.
35472 ========== h_sticky_inbox ============
35473 INBOX syntax is usually {complete.machine.name}INBOX
35474 This entry will be saved in your Alpine configuration file.
35475 ========== h_sticky_smtp ============
35476 The name of the computer on your campus that relays your outgoing email
35477 to the Internet.  This entry will be saved in your Alpine configuration file.
35478 ========== h_sticky_user_id ==========
35479 The username or login-id part of your email address.  This entry will be
35480 saved in your Alpine configuration file.
35481 ========== h_sticky_domain ==========
35482 The domain part of your email address, NOT the name of your PC.  This
35483 entry will be saved in your Alpine configuration file.
35484 ========== h_bounce =========
35485 Enter the address or nickname of the intended recipient.  Alpine will resend
35486 the message, which will retain the original author's From: address.
35487 ========== h_incoming_add_folder_nickname =========
35488 Enter an (optional) nickname that will be used in lieu of the actual
35489 host and folder names in the FOLDER LIST display.
35490 ========== h_anon_forward ==========
35491 Enter the address of your intended recipient, or ^C to cancel.
35492 Example: jsmith@somewhere.edu
35493 ========== h_news_subscribe ==========
35494 Enter the name of the newsgroup to which you wish to subscribe,
35495 or ^C to cancel.  Example: comp.mail.pine
35496 ========== h_pipe_msg ==========
35497 Enter the name of the Unix command to which you wish to send this
35498 message, or ^C to cancel.
35499 ========== h_pipe_attach ==========
35500 Enter the name of the Unix command to which you wish to send this
35501 attachment, or ^C to cancel.
35502 ========== h_select_by_num ==========
35503 Enter a list of message numbers (or number ranges), or ^C to cancel.  The word
35504 "end" represents the last message. Example: 2-5,7-9,11,19,35-end
35505 ========== h_select_by_thrdnum ==========
35506 Enter a list of thread numbers (or number ranges), or ^C to cancel.  The word
35507 "end" represents the last thread. Example: 2-5,7-9,11,19,35-end
35508 ========== h_select_txt_from ==========
35509 Messages with From: headers containing the entered string will be selected.
35510 ^C to cancel. ^G again to see original options.
35511 ========== h_select_txt_not_from ==========
35512 Messages without From: headers containing the entered string will be selected.
35513 ^C to cancel. ^G again to see original options.
35514 ========== h_select_txt_to ==========
35515 Messages with To: headers containing the entered string will be selected.
35516 ^C to cancel. ^G again to see original options.
35517 ========== h_select_txt_not_to ==========
35518 Messages without To: headers containing the entered string will be selected.
35519 ^C to cancel. ^G again to see original options.
35520 ========== h_select_txt_cc ==========
35521 Messages with Cc: headers containing the entered string will be selected.
35522 ^C to cancel. ^G again to see original options.
35523 ========== h_select_txt_not_cc ==========
35524 Messages without Cc: headers containing the entered string will be selected.
35525 ^C to cancel. ^G again to see original options.
35526 ========== h_select_txt_subj ==========
35527 Messages with Subject: headers containing the entered string will be selected.
35528 ^C to cancel.  ^X enters Subject: line of current message.
35529 ========== h_select_txt_not_subj ==========
35530 Messages without Subject headers containing the entered string will be selected.
35531 ^C to cancel.  ^X enters Subject: line of current message.
35532 ========== h_select_txt_all ==========
35533 All messages containing the entered string will be selected.  Headers and body,
35534 but not encoded attachments, will be compared.  Enter ^C to cancel.
35535 ========== h_select_txt_not_all ==========
35536 All messages that don't contain the entered string will be selected.  Headers
35537 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
35538 ========== h_select_txt_body ==========
35539 All messages containing the entered string will be selected. Body text, but
35540 not headers or encoded attachments, will be compared. ^C to cancel.
35541 ========== h_select_txt_not_body ==========
35542 All messages that don't contain the entered string will be selected. Body
35543 text, but not headers or encoded attachments, will be compared. ^C to cancel.
35544 ========== h_select_txt_recip ==========
35545 Messages with Cc: or To: headers containing the entered string will be selected.
35546 ^C to cancel. ^G again to see original options.
35547 ========== h_select_txt_not_recip ==========
35548 Messages without Cc: or To: headers containing the string will be selected.
35549 ^C to cancel. ^G again to see original options.
35550 ========== h_select_txt_partic ==========
35551 Messages with Cc, To, or From headers containing the string will be selected.
35552 ^C to cancel. ^G again to see original options.
35553 ========== h_select_txt_not_partic ==========
35554 Messages without Cc, To, or From headers containing the string will be selected.
35555 ^C to cancel. ^G again to see original options.
35556 ========== h_select_date ==========
35557 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
35558 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
35559 ========== h_attach_index_whereis ==========
35560 Enter some text that appears in the Attachment Index entry for the desired
35561 attachment.  The first attachment containing that text will be highlighted.
35562 ========== h_kb_lock ==========
35563 Keystrokes entered here (up to a RETURN) comprise a password that must
35564 be entered again later in order to unlock the keyboard.
35565 ========== h_compose_default ==========
35566 N, compose a new message. R, set a role.
35567 ^C to cancel.
35568 ========== h_untranslatable ==========
35569 Send using UTF-8 character set; Send but replace untranslatable characters
35570 with question marks; return to the composer; or cancel message altogether.
35571 ========== h_compose_intrptd ==========
35572 N, compose a new msg. I, continue interrupted msg. R, set a role.
35573 ^C to cancel.
35574 ========== h_compose_postponed ==========
35575 N, compose a new message. P, continue postponed msg. R, set a role.
35576 ^C to cancel.
35577 ========== h_compose_intrptd_postponed ==========
35578 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
35579 R, set a role. ^C to cancel.
35580 ========== h_compose_form ==========
35581 N, compose a new message. F, use form letter. R, set a role.
35582 ^C to cancel.
35583 ========== h_compose_intrptd_form ==========
35584 N, compose a new msg. I, continue interrupted msg. F, use form letter.
35585 R, set a role. ^C to cancel.
35586 ========== h_compose_postponed_form ==========
35587 N, compose a new message. P, continue postponed msg. F, use form letter.
35588 R, set a role. ^C to cancel.
35589 ========== h_compose_intrptd_postponed_form ==========
35590 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
35591 F, use form letter. R, set a role. ^C to cancel.
35592 ========== h_config_context_del_except ==========
35593 If you delete the last exceptional collection you can only add it back by
35594 manually editing the exceptions config file.
35595 ========== h_config_whereis ==========
35596 To move quickly to a particular line, enter a search string or
35597 ^C to cancel.
35598 ========== h_config_edit_scorei ==========
35599 Enter interval in the form (min,max). -INF and INF may be used to represent
35600 -infinity and infinity. ^C to cancel change. RETURN to accept change.
35601 ========== h_config_add ==========
35602 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
35603 pressing RETURN sets the Empty Value (this turns off any global default).
35604 ========== h_config_add_custom_color ==========
35605 Enter a header fieldname. For example, "subject" or "from".
35607 ========== h_config_add_pat_hdr ==========
35608 Enter a header fieldname. For example, "reply-to" or "organization" or
35609 any fieldname you want that isn't included already.
35610 ========== h_config_print_opt_choice ==========
35611 You may edit either the initialization string (characters printed before
35612 printing starts) or the trailer string.  Choose one or ^C to cancel.
35613 ========== h_config_print_init ==========
35614 Enter a C-style string for this.  You may use common backslash escapes like
35615 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
35616 ========== h_config_change ==========
35617 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
35618 delete current (highlighted) character, etc.  Enter ^C to cancel change.
35619 ========== h_config_replace_add ==========
35620 Replace ignores the current default, Add places the current default in your
35621 editing buffer as if you had typed it in.
35622 ========== h_config_insert_after ==========
35623 Enter a nickname for this print command.  (InsertBefore puts the new item
35624 before the current line, InsertAfter puts it after the current line.)
35625 ========== h_config_print_cmd ==========
35626 Enter command to be executed for the printer.  Use normal editing keys
35627 to modify, ^C to cancel, carriage return to accept current value.
35628 ========== h_config_role_del ==========
35629 Answering Yes will remove this rule completely from your rules list.
35630 ========== h_config_role_addfile ==========
35631 Type the name of a file to add to your configuration. You don't need to
35632 use a file, you may add rules directly (with Add) without using a file.
35633 ========== h_config_role_delfile ==========
35634 Answering Yes will remove this rule file completely from your rules list.
35635 The rules data file itself will not be removed.
35636 ========== h_config_print_del ==========
35637 Answering Yes will remove this printer completely from your printer list.
35638 ========== h_config_print_name_cmd ==========
35639 You may edit the Nickname of this printer, the Command to be executed when
35640 printing, or change the Options associated with this printer.
35641 ========== h_send_check_fcc ==========
35642 Yes, send message without an Fcc.
35643 No, return to composer.
35644 ========== h_send_check_subj ==========
35645 Yes, send message without a Subject.
35646 No, return to composer.
35647 ========== h_send_check_to_cc ==========
35648 Yes, send message without a To address, or a Cc address, or a Newsgroup.
35649 No, return to composer.
35650 ========== h_send_fcc_only ==========
35651 Yes, copy message to Fcc only and send to NO recipients.
35652 No, return to composer.
35653 ========== h_send_prompt ==========
35654 Yes, send the message.
35655 No or ^C, return to composer.
35656 ========== h_send_prompt_flowed ==========
35657 Yes, send the message.  No or ^C, return to composer.
35658 What's Flowed? See Do Not Send Flowed Text in config screen.
35659 ========== h_send_prompt_dsn ==========
35660 Yes, send the message.  No or ^C, return to composer.
35661 What's DSNOpts? See Enable Delivery Status Notification in config screen.
35662 ========== h_send_prompt_dsn_flowed ==========
35663 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
35664 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
35665 ========== h_role_confirm ==========
35666 Yes, use displayed role. No, compose without a role.
35667 ^C, cancel the message. ^T, select a role from your other eligible roles.
35668 ========== h_norole_confirm ==========
35669 Return, compose without a role.
35670 ^C, cancel the message. ^T, select a role from your eligible roles.
35671 ========== h_custom_print ==========
35672 Enter a Unix command that accepts its data on standard input.
35673 Alpine will display any information the command sends to standard output.
35674 ========== h_convert_abooks_and_sigs ==========
35675 You will be given the opportunity to convert address books and signature files
35676 to remote configurations.
35677 ========== h_convert_abooks ==========
35678 You will be given the opportunity to convert address books to remote
35679 configurations.
35680 ========== h_flag_keyword ==========
35681 Enter the name of the keyword you want to add for this folder.
35682 No spaces, parentheses, braces, percents or asterisks are allowed.
35683 ========== h_select_keyword ==========
35684 Enter the keyword you want to match, or use ^T to select a keyword from a list
35685 of possible keywords for this folder. Use ! to look for non-matches instead.
35686 ========== h_type_keyword ==========
35687 Enter the keyword you want to add. You may add a nickname in the next step.
35688 No spaces, parentheses, braces, percents or asterisks are allowed.
35689 ========== h_type_keyword_nickname ==========
35690 Enter an optional nickname for the keyword you want to add.
35691 Type Carriage return to use the keyword name instead of a nickname.
35692 ========== h_convert_sigs ==========
35693 You will be given the opportunity to convert signature files to remote
35694 configurations.
35695 ========== h_convert_abook ==========
35696 Yes is fairly safe. You will be ADDing a remote address book that is a copy
35697 of the current address book. The current abook won't be removed automatically.
35698 ========== h_convert_sig ==========
35699 Answering Yes copies the contents of the signature file into your Alpine
35700 configuration file. After that, the contents of the file will not be used.
35701 ========== h_save_addman ==========
35702 Enter the simple name of the folder you want to add. Carriage return to
35703 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
35704 ========== h_reopen_folder ==========
35705 Yes reopens the folder, as if you were starting over. This uncovers new mail.
35706 No leaves the folder index as it was without discovering new mail.
35707 ========== h_convert_pinerc_server ==========
35708 This is the name of the host (computer) where the remote Alpine configuration
35709 will be stored. This should be an IMAP server that you have permission to use.
35710 ========== h_convert_pinerc_folder ==========
35711 Enter the correct remote folder name. This folder is special and should
35712 contain only configuration data. It shouldn't contain other mail messages.
35713 ========== h_role_compose ==========
35714 Compose a New message, Reply to current message, Forward current message, or
35715 Bounce message. Then you will be asked to choose one of your Roles to be used.
35716 ========== h_save_size_changed ==========
35717 The reported size of a message is not the same as the actual size. Answer Yes
35718 to continue and hope for the best or No to Cancel the entire Save.
35719 ========== h_select_by_larger_size ==========
35720 Enter a number or ^C to cancel. All messages greater than this many characters
35721 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
35722 ========== h_select_by_smaller_size ==========
35723 Enter a number or ^C to cancel. All messages less than this many characters
35724 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
35725 ========== h_preserve_field ==========
35726 Use 'p' to toggle between preserving or not preserving the original To:
35727 and Cc: fields of the message. Enter ^C to cancel message.