* Set default ssl configuration for Homebrew in MAC OSX to
[alpine.git] / pith / pine.hlp
blobb5a86bf0741d42bd099a91669303bdfa4da3359b
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 55 2014-04-18 01:04:35
144 ============= h_news =================
145 <HTML>
146 <HEAD>
147 <TITLE>RELEASE NOTES for Alpine</TITLE>
148 </HEAD>
149 <BODY>                 
150 <H1>Alpine Release Notes</H1>
151 <DIV ALIGN=CENTER>
152 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
153 <BR>
154 <!--chtml if pinemode="running"-->
155 (built <!--#echo var=ALPINE_COMPILE_DATE-->)
156 <!--chtml endif-->
158 <BR>
159 <BR>Copyright 2013-2014 Eduardo Chappa
160 <BR>Copyright 2006-2008 University of Washington
161 </DIV>
164 Alpine is an &quot;Alternatively Licensed Program for Internet
165 News and Email&quot; produced until 2008 by the University of Washington.
166 It is intended to be an easy-to-use program for
167 sending, receiving, and filing Internet electronic mail messages and
168 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
169 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
170 is available as is a world wide web based version designed to run under the
171 Apache web server.
174 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
176 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
177 addresses bugs found in previous releases and has a few additions as well.
180 Additions include:
183 <UL>
184   <LI> Upgrade UW-IMAP to Panda IMAP from 
185        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
186   <LI> S/MIME: Add screen to manage certificates.
187   <LI> S/MIME: sign messages using intermediate certificates when needed and possible.
188   <LI> Add support to selective expunge through a subcommand of the 
189        select-apply commands. Read more in the <A 
190        HREF="h_index_cmd_expunge">help</A> for the expunge command.
191   <LI> Pico: New subcommand of the search command, allows to reverse the
192        direction of search.
193   <LI> If a password file is defined, and S/MIME is enabled, the key and
194        certificate used to encrypt the password file are saved in 
195        the ~/.alpine-smime/.pwd directory, or in the directory specified
196        by the -pwdcertdir command line option.
197   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
198        server to use different ways to connect using ssl, for 
199        example {server.com/tls1} will attempt to connect to 
200        server.com at the ssl imap port (port 993) and establish a 
201        connection using TLSv1. These flags can be used in 
202        conjunction with the /ssl flag, the ssl flag is redundant. 
203        Conversely, however, the /ssl flag does not imply any of 
204        these flags; the /ssl flag means SSLv3 or, if not available, 
205        SSLv2 in the SSL port.
206   <LI> Alpine does not attempt to automatically reopen a collection 
207        that was not opened due to cancellation by the user. 
208        Instead, the user must try to open it explicitly.
209   <LI> Alpine searches for a certificate that matches an email address in
210        all addresses in a certificate (instead of just the first 
211        one) but when it tries to unlock the certificate, it asks 
212        for the password for the first email address in that 
213        certificate.
214   <LI> Style tag in body of html message causes Alpine to not write its content
215        until a new &lt;/style&gt;
216   <LI> Experimental: Write the content-type of a message in 
217        lowercase, as some non-compliant servers do not understand 
218        uppercase content-type, such as those of GMX.de.
219   <LI> Opening a folder updates recent count in maildrops (this 
220        already works for other types of folders)
221   <LI> Automatically redraw screen after opening an attachment 
222        instead of simply clearing it.
223   <LI> Pico: Justification works without need of a predefined quote 
224        string. This allows justification of blocks of text that are 
225        indented with spaces.
226   <LI> Check bounds and tie strings off to improve security. Contributed 
227        by James Jerkins.
228   <LI> Replace tabs by spaces in From and Subject fields to control for
229        size in screen of these fields. Change only in index screen display.
230 </UL>
233 Bugs that have been addressed include:
234 <UL>
235   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
236        in personal names. Reported by Lev Gorenstein.
237   <LI> When writing the .pinerc file, lines were truncated if they were longer
238        than 10,000 characters. This could cause data corruption, so now lines
239        are allowed to be of any length.
240   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
241        remove attachments before they were open by a mailcap viewer. It 
242        requires that the user has an equivalent to a command such as "ps 
243        auxww" to list the list of processes, and check if there is any 
244        program using the attachment. The default is "/bin/ps auxww", but 
245        it can be changed at compile time with the option --with-ps-cmd. 
246        See the help of the variable 
247        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
248        for more information.
249   <LI> S/MIME: signed messages that contained an attachment would not validate.
250   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
251        validate. Thanks to Andreas Schamanek for testing, debugging and 
252        advising during the process of fixing this problem.
253   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
254        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
255        and Stefan Mueller.
256   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
257        home directory.
258   <LI> S/MIME: accessing the S/MIME configuration screen would deinitialize
259        SMIME making it not possible to sign or encrypt messages.
260   <LI> Crash when tcp connection to NNTP server was lost after connection
261        had been established, but lost immediately afterwards.
262   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
263   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
264   <LI> Save command did not warn of existence of a message with a deleted 
265        attachment in an aggregate save, unless cursor was positioned on a message 
266        with a deleted attachment. Reported by Florian Herzig.
267   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
268        in an IMAP server.
269   <LI> DATE tokens were not internally transformed to UTF-8, which made their
270        values not appear complete in the screen. Reported by Werner Scheinast.
271   <LI> Fixes to configure script so that it will not require PAM for every system.
272   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
273        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
274        during the build. Fix by Ulf-Dietrich Braumann.
275   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
276        needs to use tcl_getstringresult() instead. Reported by 
277        Ulf-Dietrich Braumann.
278   <LI> Quoted string in URL Viewers configuration variable were not 
279        unquoted before passing to viewer.
280   <LI> Fix in configure script to detect location of tcl library; add
281        /usr/local in FreeBSD and fix a bug in configure script that used 
282        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
283        by Werner Scheinast.
284   <LI> Move SSL configurations from UW-IMAP to configure script, and
285        update OpenSSL configuration for mac OSX.
286   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
287 </UL>
292 Version 2.11 addresses bugs found in previous releases and has a few 
293 additions as well.
296 Additions include:
299 <UL>
300    <LI> Alpine requires version 1.0.1c of Openssl to build.
301    <LI> Increase encryption of S/MIME encrypted messages.
302    <LI> Pico: Improvements in justification of paragraphs: lines that begin
303 with a quote string, followed by a space were considered individual paragraphs,
304 now they are considered part of a paragraph. Based on earlier joint work
305 with Jeff Franklin.
306    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
307    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
308 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
309    <LI> Added recognition of ws and wss URIs.
310    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
311  <A HREF="h_config_directory_color">directory names</A>,
312  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
313    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
314 used in the display of the INDEX SCREEN.
315    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
316 that adds the ability to preserve To: and Cc: fields when replying to a 
317 message, as specified by original sender.
318    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
319  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
320    <LI> Quota command includes subcommands for printing, forwarding, etc.
321 </UL>
324 Bugs that have been addressed include:
326 <UL>
327   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
328   <LI> Crash when resizing the screen in a configuration screen.
329   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
330   <LI> Do not use a shell to open a browser.
331   <LI> Configure script did not test for crypto or pam libraries.
332   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
333   <LI> Change Cygwin directory separator to &quot;/&quot;.
334   <LI> Alpine could set List- headers, contrary to RFC 2369.
335 </UL>
338 Version 2.10 addresses bugs found in previous releases and has a few 
339 additions as well.
342 Additions include:
345 <UL>
346    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
347    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
348    <LI> Foreign characters are decoded correctly in IMAP folders.
349    <LI> Question about breaking connection to slow servers includes their name.
350    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
351    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
352    <LI> Cygwin: Alpine builds without need of patch.
353    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
354    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
355    <LI> Add support for strong encryption of password file when S/MIME is built in.
356 </UL>
359 Bugs that have been addressed include:
362 <UL>
363    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
364    <LI> Double allocation of memory in Pico.
365    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
366    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
367    <LI> Not recognition of environment variables in some options.
368    <LI> Not display of login prompt during initial keystrokes.
369    <LI> justification of long urls breaks them.
370    <LI> Incorrect New Mail message when envelope is not available.
371    <LI> Inorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
372    <LI> Crash when resizing the screen after display of LDAP search.
373    <LI> Crash when redrawing screen while opening a remote folder collection.
374    <LI> Infinite loop in scrolltool function during notification of new mail.
375    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
376    <LI> No display of signed and encrypted S/MIME messages.
377    <LI> Alpine will not build with OpenSSL.
378    <LI> Crash for double locking in calls to c-client.
379    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
380    <LI> Ignore the references header when threading messages
381    <LI> No update of colors in index screen after update to addressbook.
382 </UL>
385 Version 2.01 addresses bugs found in previous releases and has a few 
386 additions as well.
389 Additions include:
392 <UL>
393    <LI> Fixed non-ASCII web alpine handling
394    <LI> Added web alpine help.
395    <LI> Allow web alpine inbox on second IMAP server.
396    <LI> Allow web alpine config reset after bad inbox-path gets set.
397    <LI> Added web alpine ability to create group contact from contact list members.
398    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
399    <LI> Tidied up web alpine script layout.
400    <LI> Fixed web alpine status message ordering
401    <LI> Added web alpine Fcc setting via Contacts in Compose
402    <LI> Fixed web alpine autodraft attachment issues
403    <LI> Fixed web alpine problems with recent count maintenance
404    <LI> Fixed web alpine newmail arrival display in message list
405    <LI> Added web alpine confirmation to folder create for Move/Copy
406    <LI> Added web alpine user-domain support
407    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
408 </UL>
411 Bugs that have been addressed include:
414 <UL>
415    <LI> In web alpine fixed delete all selected within a search result to reorient
416         correctly to whole-mailbox message list.
417    <LI> Fixed web alpine delete in view page to be sensitive to sort
418    <LI> Fixed web alpine open of folder within directory from folder manager page.
419    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
420    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
421    <LI> Fixed web alpine adding contacts from message list and view
422    <LI> Fixed web alpine create of non-existent fcc
423    <LI> Remove mistakenly left debugger statement in web alpine javascript.
424    <LI> Some UNIX alpine build problems fixed
425    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
426         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
427         by locale charmap call on some Solaris 8 systems.
428    <LI> MacOS Keychain logins were not working correctly with generic host names, like
429         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
430         new password requests when not needed
431    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
432         last folder in the list
433    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
434         looked for along with the email address
435    <LI> Changes to configure to get spellcheck options with work with arguments.
436    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
437         returned by gethostname (iPhone can do this)
438    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
439         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
440    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
441         Jake Scott of marganstanley.com.
442    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
443         is not used in alpine.
444    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
445         Apparently this causes RIM Blackberry BIS service problems. This is not
446         used in alpine.
447    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
448    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
449         Fix from Ludwig Nussel of SUSE and from Crispin.
450    <LI> Include whole filename in export filename history
451    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
452 </UL>
455 Version 2.00
456 addressed bugs found in previous releases and had a few additions as well.
458 Additions included:
461 <UL>
462    <LI> Redesigned Web Alpine interface
463    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
464         in UNIX versions of Alpine
465    <LI> Attempt to include the attachment filename as part of the name of the
466         temporary file used when viewing an attachment with an external program.
467         Add some randomness to that filename to make it hard to predict the filename.
468         Add a filename extension, usually derived from the type/subtype, to the
469         temporary filename. This was previously done only on Windows and MacOS X.
470    <LI> Enhance address completion in the composer (TAB command) so that it looks
471         through nicknames, fullnames, and addresses from the address book; addresses
472         from the message being viewed, if any; and the results from
473         <A HREF="h_direct_config">LDAP Directory Server</A>
474         lookups for all of the defined directory servers that have the
475         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
476         feature set.
477    <LI> Make the default character set setting more liberal in what it will accept
478         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
479    <LI> Remove the Alpine revision number from the titlebar in released versions
480         while leaving it there in snapshot versions
481    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
482         display of asterisks when you type a password for Alpine
483    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
484    <LI> When the
485         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
486         feature is turned on convert not only the dates in the index screen but also
487         the dates in the MESSAGE VIEW
488 </UL>
491 Bugs addressed in the 2.00 release included:
494 <UL>
495    <LI> Crash when using tab-completion for selecting a Save filename
496    <LI> Make Web Alpine help text images relative for more portability
497    <LI> Fixed attach save of html parts in Web Alpine
498    <LI> Viewing, printing, exporting, replying, and bouncing of message
499         digests was broken. Replying and bouncing should not have been
500         allowed at all for digests. It would be nice to have a more standard
501         index-like view of a message digest but that has not been addressed
502         with this minor bug fix.
503    <LI> Adjust wrapping of HTML messages so that the margins specified by
504         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
505         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
506         are observed correctly
507    <LI> Interrupt of WhereIs command in index was broken
508    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
509         option did not work correctly interpreting unknown characters in message headers
510    <LI> Long address lines could cause blank continuation lines
511    <LI> Save to a local default INBOX failed if the primary collection was also local,
512         which it is by default. The save went to  ~/mail/inbox instead.
513    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
514         inbox, not the inbox in the primary collection
515    <LI> Address book entries with lots of addresses would be truncated when
516         entered in the composer with a screen size wider than 270 or so charcters
517    <LI> Some fields in the index screen were truncated when the screen width was
518         wider than 256 characters
519    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
520         folder, and there is a more than 10 minute pause between typing the TAB
521         and typing the Yes
522 </UL>
525 Version 1.10(962)
526 addressed bugs found in previous releases and had a few additions as well.
528 Additions included:
531 <UL>
532    <LI> Add the possibility of setting a default role
533         (see <A HREF="h_role_select">Roles Screen</A>)
534         which may be convenient if your work flow involves acting in one
535         role for a while then switching to another role and staying in the
536         new role for another period of time
537    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
538         is encountered, ask the user if he or she wants to continue with the
539         risky Save anyway instead of aborting. This may be helpful if your
540         IMAP server is broken in this way but be aware that it is possible there
541         was a real error instead of just a broken server implementation.
542    <LI> Some configure adjustments for Kerberos detection and
543         for SCO OpenServer 5 support
544    <LI> Hide INBOX in a collection if it also appears as an
545         <A HREF="h_config_enable_incoming">Incoming Folder</A>
546    <LI> Show asterisks for feedback when the user is typing a password
547    <LI> Performance improvement for threading of large folders
548    <LI> Previously, the search used to find
549         Pattern matches containing To patterns searched for both To
550         and Resent-To headers. The relatively complicated search this
551         produces causes problems when using some deficient IMAP servers.
552         Now the default is to look only for To headers and ignore the
553         presence of Resent-To. The previous behavior may be restored
554         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
555    <LI> Add an
556         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
557         to help with reading malformed unlabeled messages
558    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
559    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
560    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
561 </UL>
564 Bugs addressed in the 1.10(962) release included:
567 <UL>
568    <LI> Crash when encountering certain errors from an SMTP server
569    <LI> Crash in composer caused by overflow in replace_pat()
570    <LI> Hang when authenticating to an SMTP server that fails with a
571         &quot;connection disconnected&quot; error
572    <LI> Bug in handling of trailing tab character in flowed text
573    <LI> Security enhancement for mailcap parameter substitution
574    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
575         did not work if the message being replied to was not flowed text
576         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
577         was not turned on
578    <LI> Don't allow printer to be changed through hidden config screen
579         if system administrator didn't want it to be allowed
580    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
581         should know that it won't work, causing error messages to appear
582    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
583         of double-quote double-quote didn't work right
584    <LI> Quoting wasn't being done to protect special characters from the
585         MacOS X shell when
586         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
587         was not defined
588    <LI> On MacOS X message attachments should be shown internally instead of
589         being shown using the Mail application
590    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
591         sometimes set the outgoing charset to X-UNKNOWN, making the result
592         unreadable
593    <LI> When the sending of a message failed lines with leading spaces had one
594         additional space inserted in each of those lines when the user
595         was returned to the composer
596    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
597         that contained non-ascii characters because it was truncating the
598         line being searched so that it was shorter than what was visible on
599         the screen
600    <LI> When composing, an attachment with a long name that causes wrapping in
601         just the wrong place would generate an error and cause the send
602         of the attachment to fail
603    <LI> After calling the file browser to attach a file in the composer, a resize
604         of the window when back in the composer would redraw the last screen that
605         had been shown in the browser instead of the current composer screen
606    <LI> Possible crash in index screen when encountering unparseable addresses
607         or when using one of the PRIORITY tokens or the HEADER token in the
608         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
609    <LI> Problems with Header Color editing if the configuration option
610         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
611         was inadvertently changed to the Empty Value in the hidden config screen
612    <LI> When resuming the final postponed message from an Exchange server the user
613         could get a certificate validation failure because alpine was trying
614         to validate the canonical name of the folder instead of the name the
615         user used
616    <LI> Windows line endings in a mimetypes file on a Unix system cause a
617         failure to find a match
618    <LI> Make matching of extension names case independent in mimetypes files
619    <LI> Windows dialog boxes for entering text were not working correctly
620    <LI> Replying to or Forwarding multipart/alternative messages which had a
621         single text/html part did not work well
622    <LI> Printing the print confirmation page caused a crash
623    <LI> A To line with a long, quoted personal name could display incorrectly
624         if it was close to the same width as the screen
625    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
626         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
627         are turned on hide (0/0) when the folder is empty
628    <LI> Folder completion while Saving didn't work if the collection being
629         saved to was the local home directory
630 </UL>
633 Version 1.00
634 was an evolutionary release based on
635 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
636 developed at the University of Washington.
637 It is upwards-compatible for existing Pine users.
640 Changes included:
642 <UL>
643    <LI> Ground-up reorganization of source code around addition
644         of "pith/" core routine library.
645    <LI> Fundamental improvement in Alpine's internal text handling, which
646         is now based exclusively on Unicode. This allows displaying incoming
647         messages and producing outgoing messages in many different languages.
648    <LI> Ground-up reorganization of build and install procedures
649         based on GNU Build System's autotools. NOTE, the included IMAP library
650         build is not based on autotools, so some features will not work. However,
651         it should get built automatically during the Alpine build process.
652    <LI> Web-based version included built on TCL designed to run under
653         a suitable CGI-supporting web server such as Apache.
654 </UL>
658 Details on changes in previous (prerelease) versions of Alpine
659 may be found at the following URL:
661 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP></CENTER>
664 <HR WIDTH="75%"><P>
666 <H2>Getting Help</H2>
667 <DL>
668 <DT>Online Help</DT>
669 <DD>
670 Every Alpine screen and command has associated help text
671 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
672 </DD>
674 <DT>Web Help</DT>
675 <DD>
676 The most current source of information about Alpine,
677 including new version availability, is the web page at
679 <CENTER><SAMP><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></SAMP></CENTER>
680 </DD>
681 </DL>
683 Frequently Asked Questions (and answers) may be found at the following
684 URL:
686 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
689 <HR WIDTH="75%"><P>
691 <H2>Additional Information</H2>
693 General Alpine configuration information can be found
694 <A HREF="h_news_config">here</A>.
696 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
697 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
698 access is provided by the IMAP Toolkit Environment (c-client library)
699 version <!--#echo var="C_CLIENT_VERSION"-->.
700 <P> 
701 Alpine was developed until 2009 by the Office of Computing 
702 &amp; Communications at the University of Washington in Seattle.  
703 Since then, the effort of developing Alpine has been continued by
704 a community of volunteers who make a good software even better!
707 Alpine Copyright 2013-2014 Eduardo Chappa, 
708 <BR> Copyright 2006-2008 University of Washington.
711 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
712 or instead you can find the Apache License, version 2.0 at the web URL:
715 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
718 &lt;End of Release Notes&gt;
719 </BODY>
720 </HTML>
721 ====== h_tls_failure_details ======
722 <HTML>
723 <HEAD>
724 <TITLE>Certificate Validation Details</TITLE>
725 </HEAD>
726 <BODY>
727 <H1>Certificate Validation Details</H1>
729 This screen gives details as to why the certificate validation failed: the
730 name of the desired server system; the reason for failure; and the name on
731 the certificate.  This is primarily of interest to experts.
734 &lt;End of help&gt;
735 </BODY>
736 </HTML>
737 ====== h_tls_failure ======
738 <HTML>
739 <HEAD>
740 <TITLE>TLS or SSL Failure</TITLE>
741 </HEAD>
742 <BODY>
743 <H1>TLS or SSL Failure</H1>
745 An attempt was made to establish a secure, encrypted connection to the
746 server system using either Transport Layer Security (TLS) or the older
747 Secure Sockets Layer (SSL).  This attempt failed.
750 You should contact your server system management for more assistance.
751 The problem is probably at the server system and not in Alpine or your local
752 system.  The text in this screen may be helpful for the server system
753 management in debugging the problem,
756 &lt;End of help&gt;
757 </BODY>
758 </HTML>
759 ====== h_tls_validation_failure ======
760 <HTML>
761 <HEAD>
762 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
763 </HEAD>
764 <BODY>
765 <H1>TLS and SSL Certificate Validation Failures</H1>
767 An attempt was made to establish a secure, encrypted connection to the
768 server system using either Transport Layer Security (TLS) or the older
769 Secure Sockets Layer (SSL).
772 An important part of this procedure is server certificate validation.  A
773 server certificate is an &quot;electronic identification card&quot; for the server
774 system that is signed by a well-known certificate authority (CA).  Alpine
775 compares the server system identity in the server certificate with the
776 name of the server system to which it is trying to connect.  Alpine also
777 verifies that the CA signature is authentic.
780 Some common failure conditions are:
783 <UL>
784   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
785 signed its own certificate.  This does not necessarily indicate anything
786 bad; the server operators may simply have elected to not purchase a
787 signed certificate from a certificate authority.
789   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
790 the signature on the server system is from an unknown certificate authority.
791 It can also mean that no certificate authority certificates have been
792 installed on the local UNIX system.
794   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
795 the same as either of the above two conditions in UNIX Alpine.  Note that
796 Windows systems typically have a full set of certificate authority
797 certificates installed, so it is more likely to be a self-signed
798 certificate than an unknown certificate authority.
800   <LI> Server name does not match certificate.  This means that the server
801 presented a proper signed certificate for a name other than the desired
802 name.
803 </UL>
806 Any of these conditions can indicate that you are being attacked and have
807 been directed to an imposter server that will record your password and
808 your private mail messages.  It can also mean something innocuous.
811 If you are certain that the problem is innocuous, you can append the
812 option
815 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
818 to the server system name where it appears in your configuration (e.g. the
819 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
820 a folder-collection, or a news or SMTP server).  This will
821 disable certificate validation.  On the other hand, if you are attacked,
822 you will get no warning if you do this.
825 &lt;End of Cert Validation Failures help&gt;
826 </BODY>
827 </HTML>
828 ====== h_release_tlscerts ======
829 <HTML>
830 <HEAD>
831 <TITLE>TLS and SSL usage note</TITLE>
832 </HEAD>
833 <BODY>
834 <H1>TLS and SSL usage note</H1>
837 When using Alpine from Unix or Windows 2000,
838 server certificates must be signed by a trusted certificate authority.
839 You may relax this requirement (at the cost of some security) by using
841 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
842 modifier in the mailbox name.
845 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
848 The fully-qualified host name of the server should be used
849 so that it matches the host name in the server certificate.
851 Here is an example of a host specification that directs Alpine to use
852 the SSL port (993) and an encrypted data stream.
854 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
856 &lt;End of TLS usage help&gt;
857 </BODY>
858 </HTML>
859 ====== h_news_config ======
860 <HTML>
861 <HEAD>
862 <TITLE>Alpine Configuration</TITLE>
863 </HEAD>
864 <BODY>
865 <H1>Alpine Configuration</H1>
867 <H2>Using Environment Variables</H2>
869 The values of Alpine configuration options may include environment variables
870 that are replaced by the value of the variable at the time Alpine is run
871 (and also at the time the config option is changed).
872 The syntax to use environment variables is a subset of the common Unix
873 shell dollar-syntax.
874 For example, if
876 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
878 appears in the value of an Alpine configuration option it is looked up in the
879 environent (using getenv(&quot;VAR&quot;)) and its
880 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
881 To include a literal dollar sign you may precede the dollar sign with another
882 dollar sign.
883 In other words, if the text
885 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
887 is the value of a configuration option, it will be expanded to
889 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
891 and no environment lookup will be done.
892 For Unix Alpine it will also work to use a backslash character to
893 escape the special meaning of the dollar sign, but $$ is preferable since
894 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
895 to be in a shared configuration file.
898 This all sounds more complicated than it actually is.
899 An example may make it clearer.
900 Unfortunately, the way in which environment variables are set is OS-dependent 
901 and command shell-dependent.
902 In some Unix command shells you may use
904 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
905    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
907 Now, if you use Alpine's Setup/Config screen to set
909 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
911 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
912 so that this would be equivalent to
914 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
916 Note, environment variable substitution happens after configuration
917 options that are lists are split into the separate elements of the list,
918 so a single environment variable can't contain a list of values.
921 The environment variable doesn't have to be the only thing
922 after the equal sign.
923 However, if the name of the variable is not at the end of the line or
924 followed by a space (so that you can tell where the variable name ends),
925 it must be enclosed in curly braces like
927 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
929 It is always ok to use the braces even if you don't need to.
931 It is also possible to set a default value for an environment variable.
932 This default value will be used if the environment variable is not
933 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
934 The syntax used to set a default value is
936 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
938 If the config file contains
940 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
942 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
943 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
944 the value that <SAMP>VAR</SAMP> was set to, otherwise,
945 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
946 the default value.
947 (Note that the variable is called &quot;personal-name&quot; in the config
948 file but is displayed in the config screen as
949 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
950 In general, the value that goes into a config file is never exactly the
951 same as the value you see on the screen.)
954 An example where an environment variable might be useful is the
955 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
956 Suppose most users used the server
958 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
960 but that there were some exceptions who used
962 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
964 In this case, the system manager might include the following line in
965 the systemwide default Alpine configuration file
967 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
969 For the exceptional users adding
971 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
973 to their environment should work.
975 Another example might be the case where a user has to use a different
976 SMTP server from work and from home.
977 The setup might be something as simple as
979 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
981 or perhaps a default value could be given.
982 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
983 a list of SMTP servers.
986 <H2>Configuration precedence</H2>
988 There are several levels of Alpine configuration.  Configuration values at
989 a given level override corresponding values at lower levels.  In order of
990 increasing precedence:
992 <UL>
993  <LI> built-in defaults
994  <LI> system-wide
995 <!--chtml if pinemode="os_windows"-->
996       config file from command line or provided
997       by "PINECONF" environment variable
998 <!--chtml else-->
999       pine.conf file
1000 <!--chtml endif-->
1001  <LI> personal configuration file
1002  <LI> personal exceptions configuration file
1003  <LI> command-line options
1004  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1005  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1006 </UL>
1008 The values in both the personal configuration file and the
1009 <A HREF="h_config_exceptions">exceptions</A>
1010 configuration file may be set using the Setup command.
1011 Setup/Config is the command to change most of the personal configuration
1012 options.
1013 The other Setup subcommands are also used to change the configuration,
1014 for example, Setup/AddressBook, Setup/Rules, and so on.
1015 Changing the personal exceptions configuration is very similar.
1016 To change a value in the Config screen you would use the command
1017 Setup/eXceptions/Config.
1018 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1020 There are a couple exceptions to the rule that configuration values are replaced
1021 by the value of the same option in a higher-precedence file.
1022 The Feature-List variable has values that are additive, but can be
1023 negated by prepending &quot;no-&quot; in front of an individual feature name.
1024 So for features, each individual feature's value is replaced by the value
1025 of the same feature in a higher-precedence file.
1026 Note that this is done automatically for you when you change these values via
1027 the Setup/Config command.
1028 The other exception to the <EM>replace</EM> semantics happens when you
1029 use <A HREF="h_config_inheritance">configuration inheritance</A>
1030 for option lists.
1033 <H2>File name defaults</H2>
1035 Notes:<P>
1037 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1038 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1039 <BR> # = default file name is overridable in pinerc.
1040 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1041 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1042 <BR> + between the mailcap paths implies that the two files are combined.
1043 <BR> ; between other default paths implies that the first one found is used.
1044 </P>
1045 Alpine looks for most support files in the same directory it finds its
1046 personal configuration file (pinerc).  The -p command-line flag may be
1047 used to specify a particular path name for the pinerc file.  If a
1048 pinerc file does not exist, it will be created (if directory permissions
1049 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1050 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1051 file does not exist in either one, it will create one in the first of those
1052 two directories that is writable.  In detail:
1053 <PRE>
1055 PC-Alpine:
1057  executable     &lt;DOS search path&gt;&#92;pine.exe
1058  help index     &lt;exe dir&gt;&#92;pine.ndx
1059  help text      &lt;exe dir&gt;&#92;pine.hlp
1061  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1062  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1063  global cfg     $PINECONF
1065  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1066  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1067  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1068  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1069  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1070  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1071  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1072  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1073  postponed#     $HOME&#92;mail&#92;postpond.mtx
1074  interrupted    $HOME&#92;mail&#92;intruptd
1076 Unix Alpine:
1078  executable     &lt;Unix search path&gt;/pine
1079  persnl cfg     ~/.pinerc
1080  except cfg     ~/.pinercex
1081  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1082  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1083  local help     <!--#echo var="PINE_INFO_PATH"-->
1085  interrupted    ~/.pine-interrupted-mail
1086  debug          ~/.pine-debugN
1087  crash          ~/.pine-crash
1088  newsrc#        ~/.newsrc
1089  signature#     &lt;pinerc dir&gt;/.signature
1090  addressbook#   &lt;pinerc dir&gt;/.addressbook
1091  postponed#     ~/mail/postponed-msgs
1092  sentmail#      ~/mail/sent-mail
1093  mailcap#       ~/.mailcap + /etc/mailcap
1094                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1095  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1097  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1098  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1099  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1100  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1101  password       /etc/passwd
1103 Unix Alpine and PC-Alpine:
1105  .ab*           remote addressbook support files
1106  a[1-9]*        temporary (while Alpine is running) addressbook files
1108 </PRE>
1111 <H2>Mailcap files</H2>
1113 Alpine honors the mailcap configuration system for specifying external
1114 programs for handling attachments.  The mailcap file maps MIME attachment
1115 types to the external programs loaded on your system that can display
1116 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1117 distribution.  It includes comments that explain the syntax you need to
1118 use for mailcap.  With the mailcap file, any program (mail readers,
1119 newsreaders, WWW clients) can use the same configuration for handling
1120 MIME-encoded data.
1123 <H2>MIME-Types files</H2>
1125 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1126 what Content-Type to use for labeling an attached file, based on
1127 the file extension.  That is, this file provides a mapping between
1128 filename extensions and MIME content-types.
1131 <H2>Environment variables</H2>
1133 PC-Alpine uses the following environment variables:
1134 <DL>
1135 <DT>PINERC</DT>
1136 <DD>Optional path to pinerc file.</DD>
1137 <DT>PINERCEX</DT>
1138 <DD>Optional path to personal exceptions configuration file.</DD>
1139 <DT>PINECONF</DT>
1140 <DD>Optional path to global pine config file.</DD>
1141 <DT>HOME</DT>
1142 <DT>TMPDIR, TMP, or TEMP</DT>
1143 <DT>COMSPEC</DT>
1144 <DT>MAILCAPS</DT>
1145 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1146 <DT>USER_DICTIONARY</DT>
1147 <DD>Used to specify the file to contain the user's spell check
1148 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1149 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1150 </DL>
1152 Unix Alpine uses the following environment variables:
1153 <DL>
1154 <DT>TERM</DT>
1155 <DD>Tells Alpine what kind of terminal is being used.</DD>
1156 <DT>DISPLAY</DT>
1157 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1158 <DT>SHELL</DT>
1159 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1160 <DT>TMPDIR, TMP, or TEMP</DT>
1161 <DT>MAILCAPS</DT>
1162 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1163 </DL>
1164 <!--chtml if pinemode="os_windows"-->
1166 <H2>Common PC-Alpine Configuration Problems</H2>
1168 <H3>Configuration settings aren't being saved</H3>
1170 <P>This problem can happen if you run pine from one directory and
1171 then decide to move your pine directory to another location.  PC-Alpine
1172 stores certain variables, including the configuration location, in the
1173 Windows Registry (which you shouldn't ever need to manually edit).  There
1174 are a couple of ways to go about removing or resetting the values in the
1175 registry.
1178 1) Run PC-Alpine's registry value deletion command.  This can be done by
1179 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1180 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1181 value to the above command.
1184 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1185 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1186 option, you can tell PC-Alpine the location of your pinerc.  An example of
1187 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;.
1188 Again, you can use the DOS prompt or the shortcut method explained in (1).
1191 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1192 set registry values to the current setting, and is therefore useful with
1193 the &quot;-p&nbsp;PINERC&quot; option.
1195 <!--chtml endif-->
1197 &lt;End of Configuration Notes&gt;
1198 </BODY>
1199 </HTML>
1200 ====== h_news_legal ======
1201 <html>
1202 <head>
1203 <TITLE>Alpine Legal Notices</TITLE>
1204 </head>
1205 <body>
1207 <H1>Alpine Legal Notices</H1>
1209 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1213 &lt;End of Alpine Legal Notices&gt;
1214 </BODY>
1215 </HTML>
1216 ===== h_info_on_mbox =====
1217 <HTML>
1218 <HEAD>
1219 <TITLE>Information on mbox driver</TITLE>
1220 </HEAD>
1221 <BODY>
1222 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1224 Beginning with Pine 4.00 (Pine came before Alpine)
1225 a new INBOX access method is
1226 available as part of the standard configuration.  It is called the
1227 &quot;mbox&quot; driver and it works like this:<P>
1230 <BLOCKQUOTE>
1231 If the file &quot;mbox&quot; exists in the user's home directory, and
1232 is in Unix mailbox format, then when INBOX is opened this file will be
1233 selected as INBOX instead of the mail spool file.  Messages will be
1234 automatically transferred from the mail spool file into the mbox
1235 file.
1236 </BLOCKQUOTE>
1239 The advantage of this method is that, after new mail has been copied
1240 from the system mail spool, all subsequent access is confined to the
1241 user's home directory, which is desirable on some systems.  However, a
1242 possible disadvantage is that mail tools other than those from the
1243 University of Washington will not know to look for mail in the user's
1244 mbox file.  For example, POP or IMAP servers other than those from the
1245 University of Washington, and many &quot;new mail notification&quot;
1246 programs may not work as expected with this driver enabled.<P>
1248 To disable this behavior, either remove/rename the &quot;mbox&quot;
1249 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1250 option in Setup/Config
1251 and add &quot;mbox&quot; to it:
1253 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1255 &lt;End of help on this topic&gt;
1256 </BODY>
1257 </HTML>
1258 ===== h_info_on_locking =====
1259 <HTML>
1260 <HEAD>
1261 <TITLE>FAQs on Alpine Locking</TITLE>
1262 </HEAD>
1263 <BODY>
1264 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1266 There is an extensive section on locking in the Alpine technical notes;
1267 this information is intended to provide answers to some common questions:<P>
1268 <OL>
1269 <LI> Why did locking change in Pine 4.00?<BR>
1270 The actual locking mechanisms did not change in 4.00.
1271 What changed is that when one particular locking mechanism used by Alpine 
1272 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1273 failure would occur, but no warning was issued.<P>
1275 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1276 Yes.  It means that Alpine was unable to create a lockfile in the
1277 spool directory, generally because of overly restrictive protections on the
1278 spool directory.  The correct permissions on the spool directory for
1279 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1280 with the sticky-bit set, so only owners of a file can delete them.<P>
1282 <LI> Why does Alpine require that the mail spool directory have 1777
1283    protections?<BR>
1284 Alpine was designed to run without special privileges.  This means that in
1285 order to create a lockfile in the spool directory, it is necessary to have
1286 the spool directory permissions be world-writable.<P>
1288 <LI> Can't you create the lockfile somewhere else?<BR>
1289 No.  The lockfile in question must be in the mail spool directory, because
1290 that's where the mail delivery program expects to find it, and the purpose
1291 of the file is to coordinate access between the mail client (Alpine) and the
1292 mail delivery program.<P>
1294 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1295 No.  Remember that the individual mail files in the spool directory are
1296 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1297 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1298 -- means that only the owner of the file (or root) can delete files in the 
1299 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1300 anyone could
1301 create a random file in the spool directory.  If the spool directory is
1302 under quota control along with home directories, there is little incentive
1303 for anyone to do this, and even without quotas a periodic scan for
1304 non-mail files usually takes care of the problem.  <P>
1306 <LI> Why not run Alpine as setgid mail?<BR>
1307 Alpine was never designed to run with privileges, and to do so introduces a
1308 significant security vulnerability.  For example, if a user suspends Alpine,
1309 the resulting shell will have group privileges.  This is one example of
1310 why we strongly recommend against running Alpine as a privileged program.
1311 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1312 users
1313 could not test Alpine versions or other mailers that had not been installed
1314 by the system administrators.<P>
1317 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1318 There are, but they all have different sets of tradeoffs, and not all will
1319 work on all systems.  Some examples:<UL>
1320  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1321    spool is local.   Doesn't work reliably if NFS is used.
1322    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1323    use the same calls.
1324  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1325    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1326 mail tools that always look in the spool directory for the mail.
1327 </UL><P>
1329 <LI> Are these spool directory lock files the only kinds of locks used by
1330    Alpine?<BR>
1331 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1332 mailbox format folders, these are used to coordinate access between
1333 multiple Alpine sessions.  <P>
1335 <LI> What about the 
1336 <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>
1337 This is for people who are content to live dangerously, or who have
1338 specific knowledge that the spool directory lockfiles are superfluous on
1339 their system (because both Alpine and the mail delivery program are using 
1340 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1342 <LI> Where can I find more details on how Alpine locking works?<BR>
1343 See the Alpine Technical Notes.<P>
1345 </OL>
1347 &lt;End of help on this topic&gt;
1348 </BODY>
1349 </HTML>
1350 ===== h_finding_help ====
1351 <HTML>
1352 <HEAD>
1353 <TITLE>Finding more information and requesting help</TITLE>
1354 </HEAD>
1355 <BODY>
1356 <H1>Places to Look for More Answers</H1>
1357 If you have questions about or problems with Alpine that you cannot resolve 
1358 after consulting the program's internal, context-sensitive help screens, here 
1359 are additional information resources that you may find helpful:
1361 <UL>
1362   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1364   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1366   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1367 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1368   since the last version, which may be useful for you to be aware of, 
1369 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1370 a change in the way an aspect of Alpine works.  There, you will also find notes 
1371 on Alpine configuration.<P>
1373   <LI> The main site for Alpine contains information on configuring and solving problems
1374        with Alpine, it can be found at
1376 <CENTER><A HREF="http://patches.freeiz.com/alpine/">http://patches.freeiz.com/alpine/</A></CENTER>  
1378   <LI> The Alpine Information Center (maintained by the University of
1379            Washington) World Wide Web site contains, among other things
1380            <UL>
1381            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
1382            <LI>an overview of the basics for beginning Alpine users
1383            <LI>Technical Notes for systems administrators
1384            <LI>archives (including a searchable index) of the alpine-info 
1385 mailing list, on which matters of interest to systems/email administrators,
1386 developers, trainers, user support personnel, and others involved with Alpine 
1387 messaging on a &quot;technical&quot; level are discussed.
1388 </UL>
1389         The Alpine Information Center can be accessed with a WWW browser at:<P>
1390             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
1391 </UL>
1392 <P><HR WIDTH="75%">
1393 <H1>Requesting help</H1>
1394 If the internal help, the Release Notes, the Alpine Information Center, and your 
1395 local online and print resources do not help you resolve a problem, please
1396 start by contacting your local computer support staff and asking for help.
1398 This is especially true if:
1399 <ul>
1400   <li>You suddenly have trouble sending or receiving mail.
1401   <li>You receive a "disk quota exceeded" message.
1402   <li>You have forgotten your password.
1403   <li>You think your account may have been compromised.
1404   <li>You need help viewing an attachment.
1405   <li>You need to know how to configure your:
1406       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
1407       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
1408       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
1409       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
1410   <li>You want to know what alternative editors or spellcheckers you may be able to use.
1411   <li>You want to block email from a particular person.
1412   <li>You're going on vacation and need to autorespond to incoming mail.
1413   <li>You want to automatically file or filter incoming messages.
1414 </ul>
1416 In all of these cases,
1417 you should contact <B>your</B> support staff, because <B>only they</B> 
1418 will be able to assist you effectively. Your support staff may be, depending on who 
1419 provides you with the email account you use Alpine with, for example:<UL>
1420 <LI> the computing help desk of (a department of) your university, school, 
1421 employer, ... ; or
1422 <LI> the customer service center of your Internet Service Provider; or
1423 <LI> the friendly volunteer helpers of your Freenet; or
1424 <LI> the person who setup your computer and internet connection.
1425 </UL>
1427 Due to the large number of Alpine installations worldwide, and because we
1428 receive no funding for it, the Alpine development team <B>cannot provide 
1429 individual support services outside the University of Washington</B>.
1431 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
1432 newsgroup can be a valuable source of information and assistance for Alpine 
1433 user issues.
1435 For systems/email administrators, developers, trainers, user support
1436 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
1437 level, the mailing list alpine-info is available; for information on
1438 subscribing and posting to it, see
1440 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
1443 Regardless of whom you are asking for help with Alpine, remember 
1444 to provide as much detail as you can about the
1445 nature of any problem you are encountering, such as
1446 <UL>
1447 <LI>when it first occurred;
1448 <LI>what, if anything, happened that might have brought it about;
1449 <LI>whether it still persists;
1450 <LI>whether it is reproducible, and if so, how;
1451 <LI>what, if anything, you already tried to solve it.
1452 </UL> 
1453 It may also be helpful if you specify what version of Alpine you are using 
1454 <!--chtml if pinemode="running"-->
1455 -- this is <!--#echo var="ALPINE_VERSION"--> --
1456 <!--chtml endif-->
1457 and on what system, and when the copy of Alpine you are using was created
1458 <!--chtml if pinemode="running"-->
1459 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
1460 <!--chtml endif-->
1462 <!--chtml if pinemode="running"-->
1463 <P>   
1464 When the Alpine program you are currently using was installed, a support
1465 contact email address may have been set up; in that case, you can simply select
1466 this link now to send a message to it:<BR>
1467 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
1468 <!--chtml endif-->
1469 <!--chtml if [ -r PINE_INFO_PATH ]-->
1470 <HR WIDTH="75%">Local Support Contacts:<P>
1471 <!--#include file="PINE_INFO_PATH"-->
1472 <HR WIDTH="75%">
1473 <!--chtml endif-->
1474 <P> 
1475 &lt;End of help on this topic&gt;
1476 </BODY>
1477 </HTML>
1478 ===== new_user_greeting ======
1479 <HTML>
1480 <HEAD>
1481 <TITLE>NEW USER GREETING</TITLE>
1482 </HEAD>
1483 <BODY>
1484 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1485 <BR>
1486 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1487 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
1488 select Setup/Config to see many of the options available to you. Also note
1489 that all screens have context-sensitive help text available.<P>
1490 <!--chtml if pinemode="phone_home"-->
1491 SPECIAL REQUEST:
1492 This software is made available as a public service of the
1493 University of Washington in Seattle. We are no longer actively developing
1494 the software, but it is still helpful to us to have an idea of how many
1495 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1496 <A HREF="X-Alpine-Phone-Home:">Return</A>
1497 will send an anonymous (meaning, your real email address will not be revealed) 
1498 message to the Alpine team at the University of Washington for purposes of tallying.
1500 <!--To Exit this screen and continue your Alpine session press "E".-->
1501 <!--chtml else-->
1502 To Exit this screen and continue your Alpine session press "Return".
1503 <!--chtml endif-->
1504 </BODY>
1505 </HTML>
1506 ===== new_alpine_user_greeting ======
1507 <HTML>
1508 <HEAD>
1509 <TITLE>NEW ALPINE USER GREETING</TITLE>
1510 </HEAD>
1511 <BODY>
1512 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1513 <BR>
1514 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
1515 Your Alpine configuration file indicates that you may have used Pine before
1516 but not Alpine.
1517 If you are familiar with the way Pine works, you should be comfortable
1518 using Alpine.
1519 Your Pine configuration file is automatically used for Alpine.
1520 The Release Notes may be viewed by pressing 
1521 &quot;R&quot; now or while in the MAIN MENU.
1523 <!--chtml if pinemode="phone_home"-->
1524 SPECIAL REQUEST:
1525 This software is made available as a public service of the
1526 University of Washington in Seattle. We are no longer actively developing
1527 the software, but it is still helpful to us to have an idea of how many
1528 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1529 <A HREF="X-Alpine-Phone-Home:">Return</A>
1530 will send an anonymous (meaning, your real email address will not be revealed) 
1531 message to the Alpine team at the University of Washington for purposes of tallying.
1533 <!--To Exit this screen and continue your Alpine session press "E".-->
1534 <!--chtml else-->
1535 To Exit this screen and continue your Alpine session press "Return".
1536 <!--chtml endif-->
1537 </BODY>
1538 </HTML>
1539 ===== new_version_greeting ======
1540 <HTML>
1541 <HEAD>
1542 <TITLE>NEW VERSION GREETING</TITLE>
1543 </HEAD>
1544 <BODY>
1545 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
1546 <BR>
1547 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
1548 Your Alpine configuration file indicates that you may not have used 
1549 this version of Alpine before.  This version's significant changes are
1550 documented in the Release Notes, which may be viewed by pressing 
1551 &quot;R&quot; now or while in the MAIN MENU.
1553 <!--chtml if pinemode="phone_home"-->
1554 SPECIAL REQUEST:
1555 This software is made available as a public service of the
1556 University of Washington in Seattle. We are no longer actively developing
1557 the software, but it is still helpful to us to have an idea of how many
1558 people are using Alpine. Are you willing to be counted as an Alpine user? Pressing 
1559 <A HREF="X-Alpine-Phone-Home:">Return</A>
1560 will send an anonymous (meaning, your real email address will not be revealed) 
1561 message to the Alpine team at the University of Washington for purposes of tallying.
1563 <!--To Exit this screen and continue your Alpine session press "E".-->
1564 <!--chtml else-->
1565 To Exit this screen and continue your Alpine session press "Return".
1566 <!--chtml endif-->
1567 </BODY>
1568 </HTML>
1570 ===== main_menu_tx ======
1571 <HTML>
1572 <HEAD>
1573 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
1574 </HEAD>
1575 <BODY>
1576 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
1577 <DIV ALIGN=CENTER>
1578 Version <!--#echo var="ALPINE_VERSION"-->
1579 <!--chtml if pinemode="running"-->
1580 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
1581 <!--chtml endif-->
1582 </DIV>
1583 <CENTER>Copyright 2013-2014 Eduardo Chappa,
1584 <BR>Copyright 2006-2008 University of Washington.
1585 </CENTER>
1588 When you are viewing a help screen, there may be links to
1589 other topics highlighted (in Reverse video) in the text.
1590 Here is an example.
1591 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
1592 highlighted.
1593 If you type carriage return (or V for View Link, see the commands at the
1594 bottom of the screen) you will be taken to a new help screen to view the
1595 Introduction.
1596 The commands at the bottom of the screen should then include
1597 &quot;P Prev Help&quot;.
1598 If you type &quot;P&quot; you will end up back here.
1599 If you type &quot;E&quot; for Exit, you will be back out of help and returned
1600 to the place you were in Alpine when you entered Help.
1601 In this case, you would go back to the MAIN MENU.
1602 There are also other links that are highlighted in bold (or the color used
1603 by your terminal to display bold).
1604 The items after the Introduction in the TABLE OF CONTENTS are all examples
1605 of such links.
1606 In order to view those links, you first have to make the link you want
1607 to view the current link.
1608 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
1609 (see bottom of screen) can do that for you.
1612 <H2>TABLE OF CONTENTS</H2>
1613 <OL>
1614   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
1615   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
1616 <!--chtml if [ -r PINE_INFO_PATH ]-->
1617   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
1618 <!--chtml endif-->
1619   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
1620   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
1621   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
1622   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
1623   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
1624   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
1625   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
1626   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
1627   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
1628   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
1629   <LI> <A HREF="h_mainhelp_folders">Folders</A>
1630   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
1631   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
1632   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
1633   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
1634   <LI> <A HREF="h_mainhelp_roles">Roles</A>
1635   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
1636   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
1637   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
1638   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
1639   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
1640   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
1641   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
1642   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
1643   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
1644 </OL>
1647 &lt;End of help on this topic&gt;
1648 </BODY>
1649 </HTML>
1650 ===== h_mainhelp_intro ======
1651 <HTML>
1652 <HEAD>
1653 <TITLE>Introduction</TITLE>
1654 </HEAD>
1655 <BODY>
1656 <H1>Introduction</H1>
1658 Alpine is an &quot;Alternatively Licensed Program for Internet
1659 News and Email&quot; produced until 2008 by the University of Washington.
1660 It is intended to be an easy-to-use program for
1661 sending, receiving, and filing Internet electronic mail messages and
1662 bulletin board (Netnews/Usenet) messages. Alpine supports the following
1663 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
1664 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
1665 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
1666 Directory Access Protocol).<p>
1668 Although originally designed for inexperienced email users, Alpine has
1669 evolved to support many advanced features.  There are an ever-growing
1670 number of configuration and personal-preference options, though which of
1671 them are available to you is determined by your local system managers. 
1673 <H2>WHAT ALPINE DOES...</H2>
1675 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
1676 allows you to
1677 compose and read messages using Internet mail standards.  (Whether you
1678 can correspond with others on the Internet depends on whether or not your
1679 computer is connected to the Internet.)  Alpine also allows reading and
1680 posting messages on the Internet &quot;net news&quot; system, provided
1681 that your site operates a suitable news server.
1683 <H2>WHAT ALPINE DOES NOT DO...</H2>
1685 A &quot;mail user agent&quot; such as Alpine is just one part of a
1686 messaging system. Here are some things that are <B>not</B> done by Alpine,
1687 but require other programs:<P>
1688 <UL>
1689  <LI> Actual relaying of email... which is done by &quot;message transfer 
1690 agents&quot;.
1691  <LI> Vacation messages... automatically responding to incoming messages
1692  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
1693 email.
1694  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
1695  <LI> List processing... resending one message to a list of recipients.
1696 </UL>
1699 &lt;End of help on this topic&gt;
1700 </BODY>
1701 </HTML>
1703 ===== h_mainhelp_pinehelp ======
1704 <HTML>
1705 <HEAD>
1706 <TITLE>Alpine Help</TITLE>
1707 </HEAD>
1708 <BODY>
1709 <H1>Alpine Help</H1>
1711 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
1712 use will have its own help text, explaining the choices available for that
1713 screen. This general help section, on the other hand, attempts to give an 
1714 overall picture of what Alpine is capable of doing, as well as pointers to 
1715 additional help sections about specific topics.<p>
1717 Much of the help text contains links to further help topics, similar to
1718 how the World Wide Web works.
1719 You may choose a link to view using the &quot;NextLink&quot; and
1720 &quot;PrevLink&quot; commands to change the link that is highlighted.
1721 The &quot;View Link&quot; command will then show you the highlighted link.
1722 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
1723 will return you to where you were before viewing the link, and &quot;Exit Help&quot
1724 will return you to the location in Alpine before you asked for help.
1725 For example, if you are reading this text in Alpine you may return to the
1726 help table of contents with the &quot;Prev Help&quot; command or you may view the
1727 Release notes link in the next paragraph and then return here with
1728 &quot;Prev Help&quot;.
1731 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
1732 on the current Alpine version are also available from the MAIN MENU: Press
1733 <!--chtml if pinemode="function_key"-->
1734 &quot;F9&quot;
1735 <!--chtml else-->
1736 &quot;R&quot;
1737 <!--chtml endif-->
1738 to browse the release notes.  These include changes since the last release,
1739 configuration information, the history of the Alpine
1740 project, credits, and legal notices.
1742 Alpine releases are available via the world wide web at
1744 <CENTER><SAMP><A 
1745 HREF="http://patches.freeiz.com/alpine/release/">http://patches.freeiz.com/alpine/release/</A></SAMP
1746 ></CENTER>
1749 If you would like to print <EM>all</EM> of Alpine's internal help text
1750 (not recommended) for a little light bedtime reading, then press
1751 <!--chtml if pinemode="function_key"-->
1752 &quot;F12&quot;
1753 <!--chtml else-->
1754 &quot;Z&quot;
1755 <!--chtml endif-->
1756 now.  (This assumes that the
1757 copy of Alpine you are using has been properly configured for printing
1758 at your site.)
1760 &lt;End of help on this topic&gt;
1761 </BODY>
1762 </HTML>
1763 ===== h_mainhelp_localsupport ======
1764 <HTML>
1765 <HEAD>
1766 <TITLE>Local Support Contacts</TITLE>
1767 </HEAD>
1768 <BODY>
1769 <H1>Local Support Contacts</H1>
1771 <!--chtml if [ -r PINE_INFO_PATH ]-->
1772 <!--#include file="PINE_INFO_PATH"-->
1773 <!--chtml else-->
1774 No Local Support Contacts configured.
1775 <!--chtml endif-->
1778 &lt;End of help on this topic&gt;
1779 </BODY>
1780 </HTML>
1782 ===== h_mainhelp_cmds ======
1783 <HTML>
1784 <HEAD>
1785 <TITLE>Giving Commands in Alpine</TITLE>
1786 </HEAD>
1787 <BODY>
1788 <H1>Giving Commands in Alpine</H1>
1790 Unless configured otherwise
1791 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
1792 the bottom two lines of the screen are always used to list the
1793 commands you can give.  You press the keys that are highlighted to give
1794 the command.  The commands for getting help and going back to the main
1795 menu are always present (except when viewing help as you are now).
1796 <!--chtml if pinemode="function_key"-->
1797 <!--chtml else-->
1799 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
1800 you see at the bottom of any screen. In some cases there are 3 or
1801 even 4 different
1802 sets of keys that can be seen by using the O key. <EM>All commands are 
1803 active</EM>, even if they are not currently showing at the bottom of your 
1804 screen. In other words, you <EM>never</EM> need to press the O key, except to 
1805 remind yourself of the proper key to press to perform an operation.
1807 <H2>Control Key Commands</H2>
1808 When composing mail, and in a few other places, in Alpine you
1809 have to use Control keys. This means pressing the Control key (usually labeled 
1810 &quot;Ctrl&quot;) and the
1811 letter indicated at the same time.  Usually, this is shown with a
1812 &quot;^&quot; in front of the letter.  On some systems, certain control
1813 characters are intercepted before they get to Alpine.  As a work-around,
1814 you can press the ESCAPE key twice followed by the desired key.  For
1815 example, if Ctrl-O (^O) does not work on your system, try typing
1816 &quot;ESC ESC O&quot;.
1817 <!--chtml endif-->
1818 <H2>Paging Up and Down</H2>
1819 The &quot;+&quot; and &quot;-&quot; keys are used for
1820 moving to the next or previous page.  The space bar is a synonym for
1821 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
1822 up as you do in the message composer.  On screens with a WhereIs (search)
1823 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
1824 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
1825 of the message or list.
1827 <H2>Return Key</H2>
1828 The return key is usually a synonym for a frequently used
1829 command.  When viewing a message, there is currently not a default
1830 command, so RETURN does nothing; when in the index, it is synonymous with
1831 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
1832 enclosed in square brackets [] is the same as the return key.
1834 <H2>Control Keys Not Used By Alpine</H2>
1835 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
1836 value, but in places where Alpine is expecting text input, e.g. in the composer or 
1837 at prompts for file/folder names, control keys must be used for editing and 
1838 navigation functions.
1841 Alpine has used nearly all the control keys available.  There are, however,
1842 certain control keys that are reserved by other programs or for technical
1843 reasons.  Alpine does not use any of these keys:
1844 <DL>
1845  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
1846  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
1847  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
1848 </DL>
1850 Note: Ctrl-S and Ctrl-Q can be subject to 
1851 <A HREF="h_special_xon_xoff">special handling</A>.
1853 In addition, while the ESC key alone is not used for command input,
1854 Alpine will recognize two consecutive ESC key presses followed by a letter 
1855 key as a substitute for control key input.  For example, the control key
1856 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
1857 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
1858 This is useful if the communication program you are using
1859 (e.g. Telnet) has its own, conflicting, idea of what certain control
1860 characters mean.
1863 <H2>Repainting the Screen</H2>
1864 Sometimes what is displayed on the screen will be
1865 incorrect due to noise on the phone line or other causes and you will want
1866 to repaint the whole screen to make it correct.  You can use the Ctrl-L
1867 command to do this.  It never hurts to do it when in doubt.
1870 &lt;End of help on this topic&gt;
1871 </BODY>
1872 </HTML>
1873 ===== h_mainhelp_status ======
1874 <HTML>
1875 <HEAD>
1876 <TITLE>Titlebar Line</TITLE>
1877 </HEAD>
1878 <BODY>
1879 <H1>Titlebar Line</H1>
1881 The top line of the screen is Alpine's titlebar line.  It will always display
1882 the current version of Alpine and will also convey information about the
1883 status of the program.  This is where you look to find out what
1884 collection, folder and message number is active and where you are in Alpine.
1887 If the titlebar line says &quot;READONLY&quot; it means that the open folder
1888 (typically your INBOX) is &quot;locked&quot; by another mail session --
1889 most likely a more recent session of Alpine has taken the INBOX lock.
1892 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
1893 access a
1894 folder on a remote mail server, and for some reason, communication with
1895 the mail server has either been lost, or never successfully established.
1896 This can be a result of trying to open a non-existent folder, or one
1897 stored on an invalid or non-operational server, or it can mean that Alpine
1898 has been suspended for more that 30 minutes while accessing a remote mail
1899 server.
1902 &lt;End of help on this topic&gt;
1903 </BODY>
1904 </HTML>
1905 ===== h_mainhelp_mainmenu ======
1906 <HTML>
1907 <HEAD>
1908 <TITLE>Main Menu</TITLE>
1909 </HEAD>
1910 <BODY>
1911 <H1>Main Menu</H1>
1913 The Main Menu lists Alpine's main options.
1914 The key or keys you must type to enter your
1915 choice are to the left of each option or command name.
1916 You can type either uppercase or lowercase letters,
1917 and you should not press &lt;Return&gt; after typing the
1918 letter (unless you are specifically asking for the default,
1919 highlighted command).
1922 From the Main Menu you can choose to read online help, write (compose) and 
1923 send a message, look at an index of your mail messages, open or maintain
1924 your mail folders, update your address book, configure Alpine, and quit Alpine.
1925 There are additional options listed at
1926 the bottom of the screen as well.
1929 The Help command usually returns context-sensitive help information.
1930 However, in the Main Menu you get the most general help, which includes
1931 a Table of Contents.
1932 The last entry in the Table of Contents is an Index of help topics,
1933 so this is a good place to go if you are having trouble finding how
1934 to do something.
1936 <H2>Main Menu Commands</H2>
1937 The Alpine main menu lists the most common Alpine functions. A <a
1938 href="h_main_menu_commands">full list of these
1939 commands</a> and what they do is available.
1941 &lt;End of help on this topic&gt;
1942 </BODY>
1943 </HTML>
1944 ===== h_mainhelp_abooks ======
1945 <HTML>
1946 <HEAD>
1947 <TITLE>Address Books</TITLE>
1948 </HEAD>
1949 <BODY>
1950 <H1>Address Books</H1>
1953 As you use email, you can build a list of your regular email correspondents 
1954 in your Alpine
1955 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
1956 screen. Your
1957 personal address book will be highlighted. Press &lt;Return&gt; to view it.
1958 You can use the address book to store email addresses for individuals or
1959 groups, to create easily
1960 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
1961 address when you are composing a message.
1963 There are two ways to add addresses to your address book: you can add them 
1964 manually or take them from messages (by pressing T to access the Take command). 
1965 With either method, you specify nicknames for your correspondents. A single 
1966 address book entry (or nickname) can point to just one email address, or, it can
1967 point to more than one. When it points to more than one, it is called a 
1968 distribution list. Each distribution list has a nickname, a full name, and a 
1969 list of addresses. These
1970 addresses may be actual addresses, other nicknames in your address book, or 
1971 other
1972 distribution lists.
1975 Additional information is available in Alpine's online help:
1976 <ul>
1977   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
1978 </ul>
1980 &lt;End of help on this topic&gt;
1981 </BODY>
1982 </HTML>
1983 ===== h_mainhelp_ldap ======
1984 <HTML>
1985 <HEAD>
1986 <TITLE>LDAP</TITLE>
1987 </HEAD>
1988 <BODY>
1989 <H1>LDAP</H1>
1991 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
1992 an organization's shared
1993 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
1994 large address
1995 books, rather like the White Pages provided by the phone company. As an Alpine 
1996 user, it is not
1997 necessary to know much about how this works, only how to use it and how to 
1998 configure
2001 More information on configuring LDAP is available in Alpine's online help:
2002 <ul>
2003   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2004 </ul>
2006 Additional help on using LDAP in Alpine is also available:
2007 <ul>
2008   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2009 </ul>
2011 &lt;End of help on this topic&gt;
2012 </BODY>
2013 </HTML>
2014 ===== h_mainhelp_index ======
2015 <HTML>
2016 <HEAD>
2017 <TITLE>Index of Messages</TITLE>
2018 </HEAD>
2019 <BODY>
2020 <H1>Index of Messages</H1>
2022 In Alpine's message index, the selected message is highlighted. The first 
2023 column on the left is blank, shows a &quot;+&quot; if the message was
2024 sent directly to you (i.e., it is not a
2025 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2027 The second column may be blank, or it may contain:
2028 <ul>
2029   <li>"N" if the message is new (unread), </li>
2030   <li>"A" if you have answered the message (using the Reply command), </li>
2031   <li>"D" if you have marked the message for deletion.</li>
2032 </ul>
2035 Note: If you answer a message as well as mark it deleted (in either order), 
2036 you will only see the &quot;D&quot;.
2039 The rest of the columns in the message line show you the message
2040 number, date sent, sender, size, and subject. For details, press ? (Help).  
2041 The behavior and appearance of the Index screen is highly configurable.
2042 In the Setup/Config screen search (with the WhereIs command) for options
2043 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2044 many of the configuration possibilities.
2045 In particular, the
2046 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2047 option may be used to configure the look of the standard MESSAGE INDEX lines
2048 in many different ways.
2049 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2050 read the help text there for more information.
2052 Most of the commands you need to handle your messages are visible at the
2053 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2054 commands that are available.
2055 You do not need to see these &quot;other commands&quot;
2056 on the screen to use them. That is, you never need to press O as a prefix
2057 for any other command.
2060 Additional information is available in Alpine's online help:
2061 <ul>
2062   <li><a href="h_mail_index">Message Index Commands</a></li>
2063 </ul>
2065 &lt;End of help on this topic&gt;
2066 </BODY>
2067 </HTML>
2068 ===== h_mainhelp_reading ======
2069 <HTML>
2070 <HEAD>
2071 <TITLE>Reading Messages</TITLE>
2072 </HEAD>
2073 <BODY>
2074 <H1>Reading Messages</H1>
2076 The message text screen shows you the text of the message along with
2077 its header. If a message has attachments, those will be listed (but not
2078 displayed) also.  The titlebar line displays information about the currently
2079 open message, folder and collection.  You see the name of the collection
2080 (if there is one) in angle brackets, then the name of the folder, then the
2081 message number and finally the position within the current message (in
2082 percent). If the message is marked for deletion
2083 &quot;DEL&quot; will appear in the
2084 upper right as well.
2087 As with every Alpine screen, the bottom two lines show you the commands 
2088 available.
2090 <P>Additional information is available in Alpine's online help:
2091 <ul>
2092   <li><a href="h_mail_view">Message Text Screen</a></li>
2093   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2094   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2095 </ul>
2097 &lt;End of help on this topic&gt;
2098 </BODY>
2099 </HTML>
2100 ===== h_mainhelp_composing ======
2101 <HTML>
2102 <HEAD>
2103 <TITLE>Composing Messages</TITLE>
2104 </HEAD>
2105 <BODY>
2106 <H1>Composing Messages</H1>
2108 To write a message, press C (Compose). You see the Compose Message
2109 screen, which is divided into two parts: the header area and the message
2110 text area. The header area is where information on the recipient (the To:
2111 field) and the subject line go, while the message text area contains the
2112 actual text of the email message. Different commands are available to you
2113 when your cursor is in different areas on this screen. To see additional
2114 help on commands in either the message text or header area, type
2115 <Control>G (Get help).
2118 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2119 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2121 <P>The following information from Alpine's online help may prove useful:
2122 <ul>
2123   <li><a href="h_composer_to">Message Header Commands</a></li>
2124   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2125   <li><a href="h_composer">Composer Commands</a></li>
2126   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2127   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2128   <li><a href="h_compose_send">Send Command</a></li>
2129   <li><a href="h_compose_spell">Spell Check Command</a></li>
2130 </ul>
2132 &lt;End of help on this topic&gt;
2133 </BODY>
2134 </HTML>
2135 ===== h_mainhelp_collections ======
2136 <HTML>
2137 <HEAD>
2138 <TITLE>Collection Lists</TITLE>
2139 </HEAD>
2140 <BODY>
2141 <H1>Collection Lists</H1>
2143 Collection lists are Alpine's way of organizing groups of folders. Each
2144 "collection" can reside on a different server, for example, and contain a
2145 different group of mail folders.
2148 For more information on this, see:
2149 <ul>
2150   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2151 </ul>
2153 Additional information relating to collection lists is also available in 
2154 Alpine's online
2155 help:
2156 <ul>
2157   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2158   <li><a href="h_collection_screen">Collection List Screen</a></li>
2159 </ul>
2161 &lt;End of help on this topic&gt;
2162 </BODY>
2163 </HTML>
2164 ===== h_mainhelp_folders ======
2165 <HTML>
2166 <HEAD>
2167 <TITLE>Folders</TITLE>
2168 </HEAD>
2169 <BODY>
2170 <H1>Folders</H1>
2172 Messages can quickly accumulate in your INBOX folder. If you use email
2173 often, you soon could have hundreds. You need to delete messages you do
2174 not want, and you can use folders to organize messages you wish to save. A
2175 folder is a collection of one or more messages that are stored (just like
2176 the messages in your INBOX) so you can access and manage them.
2179 You can organize your email messages into different folders by topic,
2180 correspondent, date, or any other category that is meaningful to you. You
2181 can create your own folders, and Alpine automatically provides three:
2182 <ul>
2183   <li>The INBOX folder: messages sent to you are listed in this folder.
2184       When you first start Alpine and go to the Message Index screen, you are
2185 looking at the list of messages in your INBOX folder. Every incoming
2186 message remains in your INBOX until you delete it or save it in another
2187 folder. </li>
2188   <li>The sent-mail folder: copies of messages you send are stored in this 
2189 folder. This is
2190 convenient if you cannot remember whether you actually sent a message and want 
2191 to check, or
2192 if you want to send a message again.</li>
2193   <li>The saved-messages folder: copies of messages you save are stored in this 
2194 folder
2195 unless you choose to save them to other folders you create yourself.</li>
2196 </ul>
2199 More information about folders is available in Alpine's online help:
2200 <ul>
2201   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2202   <li><a href="h_folder_maint">Help for Folder List</a></li>
2203   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2204   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2205 Explained</a></li>
2206   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2207 </ul>
2209 &lt;End of help on this topic&gt;
2210 </BODY>
2211 </HTML>
2212 ===== h_mainhelp_color ======
2213 <HTML>
2214 <HEAD>
2215 <TITLE>Color</TITLE>
2216 </HEAD>
2217 <BODY>
2218 <H1>Color</H1>
2220 If the terminal emulator you are using is capable of displaying color or if
2221 you are using PC-Alpine, then it is possible to set up Alpine so that various
2222 parts of the display will be shown in colors you configure. This is done
2223 using the Setup Color screen, available from the MAIN MENU by selecting
2224 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2225 stands for Config in this context).
2228 For example, you may color things like the titlebar, the current item,
2229 the keymenu, and the status messages.
2230 You may also color lines in the index, and headers and quoted text in the
2231 MESSAGE TEXT screen.
2232 You use the Color Setup screen for configuring most of this, but you must
2233 use the IndexColor setup for coloring whole index lines.
2234 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2237 The following entries in Alpine's online help provide additional information 
2238 about how to use color:
2239 <UL>
2240   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2241   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2242   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2243   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2244 </UL>
2246 &lt;End of help on this topic&gt;
2247 </BODY>
2248 </HTML>
2249 ===== h_mainhelp_mouse ======
2250 <HTML>
2251 <HEAD>
2252 <TITLE>Using a Mouse</TITLE>
2253 </HEAD>
2254 <BODY>
2255 <H1>Using a Mouse</H1>
2257 If you are using PC-Alpine mouse support is turned on automatically.
2258 If you are using UNIX Alpine within an X terminal window or within
2259 a terminal emulator that supports an xterm-style mouse, then you may
2260 turn on support for the mouse with the feature
2261 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2262 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2264 PC-Alpine offers considerable mouse support.  You can view what is
2265 &quot;clickable&quot; by dragging your mouse over any screen; when the
2266 arrow cursor changes into a hand, you found something. Mouse-click
2267 possibilities include navigating between screens and folders and
2268 double-clicking on hyperlinks to open your Web browser.
2269 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2270 screen.  Examples of right-click options include &quot;copy&quot; after
2271 selecting text to copy and &quot;View in New Window&quot; when you click
2272 on a particular message in the Message Index. The menu choices available
2273 to you will vary based upon what screen is open, where on the screen your
2274 cursor is located, and even what action you have already taken.
2275 Within a folder, you may set the &quot;Important&quot; flag on any
2276 message.
2278 X terminal mouse support is more limited but still quite powerful.
2279 As with PC-Alpine, clicking on any of the commands in the keymenu at
2280 the bottom of the screen will execute that command as if you typed it.
2281 Double-clicking on a link, for example the link to the
2282 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2283 will take you to that link.
2284 Double-clicking on an index line will view the message, and so on.
2286 &lt;End of help on this topic&gt;
2287 </BODY>
2288 </HTML>
2289 ===== h_mainhelp_keywords ======
2290 <HTML>
2291 <HEAD>
2292 <TITLE>Keywords</TITLE>
2293 </HEAD>
2294 <BODY>
2295 <H1>Keywords</H1>
2297 Within a folder, you may set the &quot;Important&quot; flag on any
2298 message.
2299 This doesn't have any system-defined meaning and is only called
2300 the Important flag because many users use it to signify that a message
2301 is important to them in some way.
2303 You may also define your own set of keywords.
2304 You might know these as user defined flags or as labels.
2305 These are similar to the Important flag but you choose the names for yourself.
2307 Alpine will only display keywords that
2308 have been added by you in the Flag Details screen or
2309 that have been configured by you using the Setup/Config option
2310 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2311 Keywords set by other means (for example, by another email client) will not
2312 show up in Alpine unless you configure Alpine to know about them.
2313 They will show up in the Flag Details screen, but will not show up, for example,
2314 in the index line.
2317 The following entries in Alpine's online help provide additional information 
2318 about how to use keywords:
2319 <ul>
2320   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2321   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2322 </ul>
2324 &lt;End of help on this topic&gt;
2325 </BODY>
2326 </HTML>
2327 ===== h_mainhelp_roles ======
2328 <HTML>
2329 <HEAD>
2330 <TITLE>Roles</TITLE>
2331 </HEAD>
2332 <BODY>
2333 <H1>Roles</H1>
2335 You may play different roles depending on who you are replying to. For
2336 example, if you are replying to a message addressed to help-desk you may
2337 be acting as a Help Desk Worker. That role may require that you use a
2338 different return address and/or a different signature.
2341 To configure roles, go to the MAIN MENU and use the Setup command
2342 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2343 The following entries in Alpine's online help provide additional information 
2344 about how to
2345 use roles:
2346 <ul>
2347   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2348   <li><a href="h_role_select">Roles Screen</a></li>
2349 </ul>
2351 &lt;End of help on this topic&gt;
2352 </BODY>
2353 </HTML>
2354 ===== h_mainhelp_filtering ======
2355 <HTML>
2356 <HEAD>
2357 <TITLE>Filtering</TITLE>
2358 </HEAD>
2359 <BODY>
2360 <H1>Filtering</H1>
2362 The software that actually delivers mail (the stuff that happens
2363 before Alpine is involved) for you is in a better position to do mail filtering
2364 than Alpine itself.
2365 If possible, you may want to look into using that sort of mail filtering to
2366 deliver mail to different folders, delete it, or forward it.
2367 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
2370 Filtering is a way to automatically move certain messages from one folder
2371 to another or to automatically delete messages.
2372 You may also automatically set the state (Important, New, Deleted, Answered) of messages
2373 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
2374 Alpine doesn't have the ability to forward mail to another address or
2375 to deliver vacation messages.
2378 To configure filtering, go to the MAIN MENU and use the Setup command
2379 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
2380 The following entries in Alpine's online help provide additional information 
2381 about how to use filtering:
2382 <UL>
2383   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
2384 </UL>
2386 &lt;End of help on this topic&gt;
2387 </BODY>
2388 </HTML>
2389 ===== h_mainhelp_patterns ======
2390 <HTML>
2391 <HEAD>
2392 <TITLE>Patterns</TITLE>
2393 </HEAD>
2394 <BODY>
2395 <H1>Patterns</H1>
2397 Patterns are used with Roles, Filtering, Index Coloring,
2398 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
2399 The following entries in Alpine's online help provide information 
2400 about using Patterns:
2401 <UL>
2402   <LI> <A HREF="h_rule_patterns">Patterns</A>
2403 </UL>
2405 &lt;End of help on this topic&gt;
2406 </BODY>
2407 </HTML>
2408 ===== h_mainhelp_cmdlineopts ======
2409 <HTML>
2410 <HEAD>
2411 <TITLE>Command Line Options</TITLE>
2412 </HEAD>
2413 <BODY>
2414 <H1>Command Line Options</H1>
2416 Alpine accepts a number of command line arguments, allowing you, for
2417 example, to start Alpine and immediately access a particular folder.
2418 Many of these arguments overlap with options in the Alpine configuration file.
2419 If there is a difference, then an option set on the command line takes
2420 precedence.
2421 Alpine expects command line arguments (other than addresses) to be
2422 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
2423 A <a href="h_command_line_options">full list</a> of command line
2424 possibilities is available.
2426 &lt;End of help on this topic&gt;
2427 </BODY>
2428 </HTML>
2429 ===== h_mainhelp_config ======
2430 <HTML>
2431 <HEAD>
2432 <TITLE>Alpine Configuration</TITLE>
2433 </HEAD>
2434 <BODY>
2435 <H1>Alpine Configuration</H1>
2437 Unless it has been administratively disabled, the Setup command on the
2438 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
2439 The possible subcommands are for general Configuration settings,
2440 Printer settings, Changing your Password, Signature setup,
2441 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
2442 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
2443 and Color configuration.
2444 In particular, the &quot;Config&quot; subcommand has many features you may
2445 set or unset and many other configuration variables that may be set to change
2446 the way Alpine works.
2447 Every one of the hundreds of options available in that configuration settings
2448 screen has help text associated with it.
2449 You may read that text by moving the cursor to highlight the option and then
2450 typing the Help command.
2452 These settings are stored in your personal
2453 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
2454 <A HREF="h_config_remote_config">remotely</A>),
2455 but on shared systems these settings
2456 may be over-ridden by a system-wide control file (due to local site
2457 security or support policies).  A global pine configuration file can also
2458 be used to set default values for all Alpine users on a particular system.
2459 Power users may be interested in splitting their personal configuration
2460 data into two pieces, a generic piece and
2461 <A HREF="h_config_exceptions">exceptions</A> which apply to
2462 a particular platform.
2463 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
2464 General Alpine configuration information can be found
2465 <A HREF="h_news_config">here</A>.
2467 &lt;End of help on this topic&gt;
2468 </BODY>
2469 </HTML>
2470 ===== h_mainhelp_aggops ======
2471 <HTML>
2472 <HEAD>
2473 <TITLE>Aggregate Operations</TITLE>
2474 </HEAD>
2475 <BODY>
2476 <H1>Aggregate Operations</H1>
2478 When you are in the MESSAGE INDEX, the available commands
2479 (for example, Delete, Undelete, Save, Reply, and so on)
2480 normally act on a single message.
2481 So, for example, if you press the Delete command, the currently highlighted
2482 message is marked Deleted.
2483 These commands that normally act on a single message may be applied to
2484 several messages at once instead.
2486 By default this feature is turned on, but it could be administratively turned
2487 off to reduce complexity.
2488 The feature
2489 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
2490 in the Setup/Config screen is used to turn it off or on.
2491 When this feature is turned on, the four commands &quot;Select&quot;,
2492 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
2493 are available.
2494 The two selection commands allow you to mark a set of
2495 messages as being &quot;selected&quot;.
2496 The &quot;ZoomMode&quot; command will toggle between
2497 displaying only the selected messages and displaying all the messages.
2498 The &quot;Apply&quot; command allows you to
2499 apply one of the regular MESSAGE INDEX commands to all of the selected
2500 messages instead of to only the highlighted message.
2502 An example aggregate operation would be to catch up when reading
2503 a news group.
2504 That is, get rid of all the messages in the news group so that you can
2505 start fresh.
2506 The easiest way to do this in Alpine is to use aggregate operations.
2507 You want to Delete all of the messages in the group.
2508 You could start at the top and type &quot;D&quot; once for every message.
2509 A much faster method is to first Select all of the messages in the group,
2510 and then Delete all of them.
2511 This would take four keystrokes:
2513 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
2514 <BR>
2515 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
2517 Another use of Select is to use it for searching for a particular message
2518 or set of messages in a large folder.
2519 You may know that the message was From a certain user.
2520 You could select all messages from that user to start, and use Zoom to
2521 look at only those messages.
2522 If there were still too many messages to look at you could Narrow the
2523 set of messages further by selecting from all of those messages only
2524 the ones that were after a certain date, or contained a particular phrase
2525 in the Subject, or were too a particular address, and so on.
2526 That may be the end of what you are doing, or you may want to use Apply to
2527 Save or Forward or Print all of the selected messages.
2529 Some related help topics are
2530 <UL>
2531 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
2532 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
2533 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
2534 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
2535 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
2536 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
2537 </UL>
2539 &lt;End of help on this topic&gt;
2540 </BODY>
2541 </HTML>
2542 ===== h_mainhelp_readingnews ======
2543 <HTML>
2544 <HEAD>
2545 <TITLE>Reading News</TITLE>
2546 </HEAD>
2547 <BODY>
2548 <H1>Reading News</H1>
2550 <H2>Background</H2>
2551 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
2552 commands as for mail. Similar to mailing lists but existing on a larger scale, 
2553 Usenet newsgroups allow groups of people with common interests to discuss 
2554 particular topics. You might find newsgroups related to your career, or you 
2555 might wish to check out the online discussion among the fans of your favorite 
2556 television show. 
2558 <H2>Configuring Alpine for Reading News</H2>
2559 Alpine often arrives
2560 pre-configured by your system administrator to automatically access the
2561 newsgroups offered by your organization, Internet Service Provider, or
2562 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
2563 need additional details on <a href="h_configuring_news">how to
2564 configure Alpine to read news</a>.
2566 <H2>Accessing Newsgroups</H2>
2567 The first step in reading news is to access the newsgroups collections
2568 screen from Alpine. If everything is configured properly, you should be able
2569 to do this by first typing L (folder List), then selecting the folder
2570 collection listed as "News." The actual name of this collection may differ
2571 from system to system.
2573 <H2>Subscribing to Newsgroups</H2>
2575 Once you have accessed the news collection, you need to subscribe to a
2576 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
2577 will keep a record of the newsgroups in which you are interested and which
2578 articles in those newsgroups have been read.
2580 <H2>Using Newsgroups</H2> 
2581 Alpine uses the similar commands to read news as to read mail. For example,
2582 the D command marks messages as Deleted (or "Dismissed," if you prefer),
2583 and the R command Replies to a news posting. Basically, Alpine allows you to
2584 read news as if it were mail, so you don't need to change the way you
2585 interact with Alpine.
2587 There is also additional Alpine help available on 
2588 <A HREF="h_reading_news">how to use Alpine to read news</A>.
2590 &lt;End of help on this topic&gt;
2591 </BODY>
2592 </HTML>
2593 ===== h_mainhelp_securing ======
2594 <HTML>
2595 <HEAD>
2596 <TITLE>Securing your Alpine Session</TITLE>
2597 </HEAD>
2598 <BODY>
2599 <H1>Securing your Alpine Session</H1>
2601 By default, Alpine will attempt to connect to an IMAP server on the normal
2602 IMAP service port (143).
2603 If the Alpine you are using has been built to
2604 support &quot;Transport Layer Security&quot; (TLS)
2605 and &quot;Secure Sockets Layer&quot; (SSL) 
2606 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
2607 and the server offers the STARTTLS capability, then a secure (encrypted)
2608 session will be established.
2610 When you are connected to a remote folder the titlebar will contain a plus sign
2611 in the far right column if the connection is encrypted using TLS or SSL.
2612 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
2613 if the connection is encrypted.
2615 <H2>More Information on Alpine with SSL and TLS</H2>
2616 <UL>
2617 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
2618 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
2619 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
2620 <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>
2621 </UL>
2622 <H2>Here are some other security-related features and options</H2>
2624 <UL>
2625 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
2626 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
2627 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
2628 </UL>
2630 &lt;End of help on this topic&gt;
2631 </BODY>
2632 </HTML>
2633 ===== h_mainhelp_problems ======
2634 <HTML>
2635 <HEAD>
2636 <TITLE>Reporting Problems</TITLE>
2637 </HEAD>
2638 <BODY>
2639 <H1>Reporting Problems</H1>
2641 We ask that you first read the relevant help screens and then seek
2642 assistance from your own local support staff.  Once you are sure that your
2643 difficulty is not a local configuration problem, you might look at the
2644 help section explaining where to look for
2645 <A HREF="h_finding_help">more information</A> and where to 
2646 get assistance.
2649 <ADDRESS>
2650    Eduardo Chappa &lt;chappa@gmx.com&gt;
2651 </ADDRESS>
2654 &lt;End of help on this topic&gt;
2655 </BODY>
2656 </HTML>
2657 ===== h_main_menu_commands ======
2658 <HTML>
2659 <HEAD>
2660 <TITLE>MAIN MENU COMMANDS</TITLE>
2661 </HEAD>
2662 <BODY>
2663 <H1>MAIN MENU COMMANDS</H1>
2665 <!--chtml if pinemode="function_key"-->
2666 &nbsp;Available&nbsp;Commands&nbsp;--
2667 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
2668 &nbsp;------------------------------
2669 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
2670 ----------<BR>
2671 &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>
2672 &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>
2673 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
2674 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
2675 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
2676 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
2677 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
2678 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
2679 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
2680 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2681 &nbsp;F7&nbsp;&nbsp;<A 
2682 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
2683 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2684 &nbsp;F8&nbsp;&nbsp;<A 
2685 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
2686 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
2687 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 
2688 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
2689 &nbsp;F10&nbsp;<A 
2690 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 
2691 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
2692 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
2693 &nbsp;F11&nbsp;<A 
2694 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
2695 <!--chtml else-->
2696 &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>
2697 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
2698 &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>
2699 &nbsp;C&nbsp;&nbsp;<A 
2700 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>
2701 &nbsp;I&nbsp;&nbsp;<A 
2702 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>
2703 &nbsp;L&nbsp;&nbsp;<A 
2704 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>
2705 &nbsp;A&nbsp;&nbsp;<A 
2706 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
2707 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
2708 &nbsp;S&nbsp;&nbsp;<A 
2709 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 
2710 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
2711 &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>
2712 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
2713 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
2714 <!--chtml endif-->
2717 NOTE:
2718 <OL>
2719  <LI>For help on a particular command, highlight the bold text associated
2720 with it above and hit Return.
2721  <LI> The availability of certain commands (e.g. some of the options under
2722 SETUP) is determined by Alpine configuration files and system capabilities.
2723 At some sites, certain commands may not be available due to security or
2724 support concerns.
2725 </OL>
2727 &lt;End of help on this topic&gt;
2728 </BODY>
2729 </HTML>
2731 ===== h_command_line_options ======
2732 <HTML>
2733 <HEAD>
2734 <TITLE>COMMAND LINE OPTIONS</TITLE>
2735 </HEAD>
2736 <BODY>
2737 <H1>COMMAND LINE OPTIONS</H1>
2738 Possible starting arguments for Alpine:
2740 <DL COMPACT>
2742 <DT> <EM>[addresses]</EM>
2744 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
2745 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
2746 <EM>Alpine</EM> will startup in
2747 the composer with a message started to the addresses specified.
2748 Once the message is sent, the <EM>Alpine</EM> session closes.
2749 Standard input redirection is allowed.
2750 Separate multiple addresses with a space between them.
2751 Addresses are placed in the &quot;To&quot; field only.
2754 <DT> &lt; <EM>file</EM>
2756 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
2757 into the body of the message.
2758 Once the message is sent, the <EM>Alpine</EM> session closes. 
2761 <DT> -attach <EM>file</EM>
2763 <DD> Go directly into composer with given file attached.
2766 <DT> -attachlist <EM>file-list</EM>
2768 <DD> Go directly into composer with given files attached.
2769 This must be the last option on the command line.
2772 <DT> -attach_and_delete <EM>file</EM>
2774 <DD> Go directly into composer with given file attached, delete when finished.
2777 <DT> -aux <EM>local_directory</EM>
2779 <DD> <EM>PC-Alpine</EM> only.
2780 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
2781 files, like debug files, address books, and signature files.  The pinerc may 
2782 be local or remote.
2785 <DT> -bail
2787 <DD> If the personal configuration file doesn't already exist, exit.
2788 This might be useful if the configuration file is accessed using some
2789 remote filesystem protocol. If the remote mount is missing this will cause
2790 <EM>Alpine</EM> to quit instead of creating a new pinerc.
2793 <DT> -c <EM>n</EM>
2795 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
2796 This is used when there are multiple folder collections (contexts) and you 
2797 want to open a folder not in the primary collection.
2800 <DT> -conf
2802 <DD> Configuration: Prints a sample system configuration file to the
2803 screen or standard output. To generate an initial system configuration 
2804 file, execute
2806 <PRE><CODE>
2807                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
2808 </CODE></PRE>
2811 To generate a system configuration file using settings from an old
2812 system configuration file, execute
2814 <PRE><CODE>
2815                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
2816 </CODE></PRE>
2818 A system configuration file is not required.
2821 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
2823 <DD> Copy an address book file to a remote address book folder.
2824 If the remote folder doesn't exist, it will be created.
2825 If it exists but the first message in the folder isn't a remote address
2826 book header message, the copy will be aborted.
2827 This flag will not usually be used by a user.
2828 Instead, the user will create a remote address book from within <EM>Alpine</EM>
2829 and copy entries from the local address book by using aggregate Save in
2830 the address book screen.
2833 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
2835 <DD> Copy a pinerc configuration file to a remote pinerc folder.
2836 If the remote folder doesn't exist, it will be created.
2837 If it exists but the first message in the folder isn't a remote pinerc
2838 header message, the copy will be aborted.
2839 This flag may be useful to users who already have a local pinerc file and
2840 would like to convert it to a remote pinerc folder and use that instead.
2841 This gives a way to bootstrap that conversion without having to manually
2842 reset all of the variables in the remote pinerc folder.
2845 <DT> -d <EM>debug-level</EM>
2847 <DD> Debug Level:  Sets the level of debugging information written by
2848 <EM>Alpine</EM>.
2849 <EM>debug-level</EM> can be set to any integer 0-9.
2850 A debug level of 0 turns off debugging for the session.
2851 (Actually there are some levels higher than 9, but you probably don't
2852 want to see them.)
2855 <DT> -d <EM>keywords</EM>
2857 <DD> You may use a more detailed version of the debugging flag to set
2858 the debug level in separate parts of <EM>Alpine</EM>.
2859 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
2860 verbose=0..9.
2861 <EM>Flush</EM> causes debugging information to be flushed immediately to
2862 the debug file as it is written.
2863 <EM>Verbose</EM> is the general debugging verbosity level.
2864 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
2865 is useful when you are trying to figure out what is responsible for delays.
2866 <EM>Numfiles</EM> sets the number of debug files saved.
2867 <EM>Imap</EM> sets the debug level for the debugging statements related
2868 to the conversation with the IMAP server, and more generally, for the
2869 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
2870 <EM>Tcp</EM> turns on some TCP/IP debugging.
2873 <DT> -f <EM>folder</EM>
2875 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
2876 of the standard INBOX.
2879 <DT> -F <EM>file</EM>
2881 <DD> Open named text file for viewing and forwarding.
2884 <DT> -h
2886 <DD> Help:  Prints the list of available command-line arguments to the
2887 screen.
2890 <DT> -i
2892 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
2893 screen instead of the MAIN MENU.
2896 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
2899 <DT> -I <EM>a,b,c,...</EM>
2901 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
2902 sequence of commands upon startup.
2903 This allows users to get <EM>Alpine</EM> to start in any
2904 of its menus/screens.
2905 You cannot include any input to the composer in the initial keystrokes.
2906 The key &lt;Return&gt; is represented by a ``CR'' in
2907 the keystroke list; the spacebar is designated by the letters ``SPACE''.
2908 Control keys are two character sequences beginning with ``^'', such as
2909 ``^I''.
2910 A tab character is ``TAB''.
2911 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
2912 ``DOWN'', ``LEFT'', and ``RIGHT''.
2913 A restriction is that you can't mix function keys and character keys in this
2914 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
2915 A user can always use only <EM>character</EM> keys in the startup list even
2916 if he or she is using <EM>function</EM> keys normally, or vice versa.
2917 If an element in this list is a string of characters surrounded by double
2918 quotes (&quot;) then it will be expanded into the individual characters in
2919 the string, excluding the double quotes.
2922 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
2925 <DT> -install
2927 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
2928 some basic information to help with getting properly set up.
2931 <DT> -k
2933 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
2934 the input of commands to be function-keys.
2935 Otherwise, commands are linked to the regular character keys.
2938 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
2939 <EM>Feature-List</EM>.
2942 <DT> -n <EM>n</EM>
2944 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
2945 FOLDER INDEX screen with the current message being the specified
2946 message number.
2949 <DT> -nosplash
2951 <DD> <EM>PC-Alpine</EM> only.
2952 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
2953 This may be helpful for certain troubleshooting or terminal server scenarios.
2956 <DT> -o <EM>folder</EM>
2958 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
2961 <DT> -p <EM>pinerc</EM>
2963 <DD> Uses the named file as the personal configuration file instead of
2964 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
2965 Alpinerc may be either a local file or a remote configuration folder.
2968 <DT> -P <EM>pinerc</EM>
2970 <DD> Uses the named file as the system wide configuration file instead of
2971 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
2972 Alpinerc may be either a local file or a remote configuration folder.
2975 <DT> -passfile <EM>passfile</EM>
2977 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
2978 This should be a fully-qualified filename.
2981 <DT> -pinerc <EM>file</EM>
2983 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
2984 settings of variables that the user has made.
2985 Use <EM>file</EM> set to ``-'' to make output go to standard out.
2988 <DT> -r
2990 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
2991 <EM>Alpine</EM> in restricted mode can only send email to itself.
2992 Save and export are limited.
2995 <DT> -registry <EM>cmd</EM>
2997 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
2998 <EM>Alpine</EM>'s registry entries.
2999 Possible values for <EM>cmd</EM> are set, clear, and dump.
3000 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3001 entries according to its current settings.
3002 <EM>Clear</EM> will clear the registry values.
3003 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3004 <EM>Dump</EM> will display the values of current registry settings.
3005 Note that the dump command is currently disabled.
3006 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3007 the registry only if there currently aren't any values set.
3010 <DT> -sort <EM>key</EM>
3012 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3013 FOLDER INDEX screen.
3014 <EM>Key</EM> can have the following values: 
3015 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3016 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3017 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3018 The default value is &quot;arrival&quot;.
3019 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3022 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3025 <DT> -uninstall
3027 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3028 in Windows settings.  The registry settings are removed and
3029 the password cache is cleared.
3032 <DT> -url <EM>url</EM>
3034 <DD> Open the given URL.
3037 <DT> -v
3039 <DD> Version:  Print version information to the screen.
3042 <DT> -x <EM>exceptions_config</EM>
3044 <DD> Configuration settings in the exceptions configuration override your normal
3045 default settings.
3046 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3049 <DT> -z
3051 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3052 will suspend the <EM>Alpine</EM> session.
3055 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3056 <EM>Feature-List</EM>.
3059 <DT> -<EM>option</EM>=<EM>value</EM>
3061 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3062 For example, <EM>-signature-file=sig1</EM> or
3063 <EM>-Feature-List=signature-at-bottom</EM>.
3064 Note:  Feature-List values are
3065 additive and features may be preceded with no- to turn them off.
3066 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3067 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3068 <EM>-Feature-List=signature-at-bottom</EM>.
3071 </DL>
3073 &lt;End of help on this topic&gt;
3074 </BODY>
3075 </HTML>
3076 ===== h_configuring_news ======
3077 <HTML>
3078 <HEAD>
3079 <TITLE>CONFIGURING NEWS</TITLE>
3080 </HEAD>
3081 <BODY>
3082 <H1>CONFIGURING NEWS</H1>
3083 Alpine can access news folders in any one of three different ways:
3084 <DL>
3085 <DT>REMOTE NNTP</DT>
3086 <DD>Using the Network News Transport Protocol (NNTP) to
3087 access news on a remote news server.  In this case the newsrc file is
3088 stored on the machine where Alpine is running.
3091 To specify a remote news-collection accessed via NNTP use the
3092 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3093 Server: value to the NNTP server's hostname appended with the
3094 communication method &quot;/service=NNTP&quot;, and set the Path:
3095 value to the &quot;#news.&quot; namespace (without the quotes).  See
3096 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3097 help text for a more complete explanation of access method, and the
3098 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3099 text for a more complete explanation of &quot;namespace&quot;.
3101 Instead of specifying a news-collection, you may simply set the
3102 <A HREF="h_config_nntp_server">NNTP Server</A>
3103 option, which will cause Alpine to create a default news-collection for you.
3104 Another NNTP option that may be of interest is
3105 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3107 <DT>REMOTE IMAP</DT>
3108 <DD>Using the Internet Message Access Protocol (IMAP) to
3109 access news on a remote news server.  In this case, your newsrc file is
3110 stored on the news server, in your home directory, so you must have an
3111 account on the news server, but you would be running Alpine on a different
3112 machine.  The news server must be running an IMAPd server process. 
3115 To specify a remote news-collection accessed via IMAP use the
3116 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3117 Server: value to the IMAP server's hostname, and set the Path: value
3118 to the &quot;#news.&quot; namespace (without the quotes).  See the
3119 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3120 text for a more complete explanation of &quot;namespace&quot;.
3122 </DD>
3124 <DT>LOCAL</DT>
3125 <DD>Using local file access to the news database.  In this
3126 case, your newsrc file is stored on the news server, in your home
3127 directory, so you must have an account on the news server, and you would
3128 be running Alpine on the same machine.
3131 To specify a local news-collection use the SETUP/collectionList
3132 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3133 set the Path: value to the &quot;#news.&quot; namespace (without the
3134 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3135 field's help text for a more complete explanation of &quot;namespace&quot;.
3137 </DD>
3138 </DL>
3142 NOTE: Should no news-collection be defined as above, Alpine will
3143 automatically create one using the Setup/Config screen's
3144 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3145 will be created as a &quot;Remote NNTP&quot; as described above.
3149 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3150 possible.  If you don't have an account on the news server, or if the news
3151 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3152 sure, ask your service provider, university, or company for help.)  In
3153 this case, your Unix .newsrc file can be transferred to your PC.  A good
3154 place to put it would be in the same directory as your PINERC file, under
3155 the name NEWSRC, but you can 
3156 <A HREF="h_config_newsrc_path">specify a different location</A>
3157 via Alpine's Setup/Config screen.
3160 Other configuration features related to news are
3161 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3162 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3163 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3164 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3165 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3166 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3167 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3168 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3171 &lt;End of help on this topic&gt;
3172 </BODY>
3173 </HTML>
3174 ===== h_reading_news ======
3175 <HTML>
3176 <HEAD>
3177 <TITLE>READING NEWS</TITLE>
3178 </HEAD>
3179 <BODY>
3180 <H1>READING NEWS</H1>
3182 Alpine uses almost the same commands for manipulating news folders as for
3183 mail folders.  This means, for example, that when you are done with a
3184 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3185 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3186 most newsreaders, wherein a message is implicitly dismissed after you have
3187 looked at it once. We strongly believe that Alpine should offer as much
3188 consistency as possible between mail and news, so the mail paradigm --
3189 wherein a message does not magically disappear without explicit action by
3190 the user -- is used for news as well. <P>
3192 If you answer a message in a news folder, the index view will show the
3193 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3194 keep track of what news as been read has no way of storing this flag, so
3195 it will not be preserved across sessions.  The Deleted flag is the only
3196 one that is preserved when you leave and then return to a newsgroup.  As an
3197 additional note on replies, when you Reply to a newsgroup message and say
3198 you want to reply to all recipients, Alpine will ask if you want to post the
3199 message to all the newsgroups listed in the original message. <P>
3201 If you would like Alpine to mark more-or-less recent news messages as
3202 &quot;New&quot;, then set the
3203 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3204 feature (which is set by default).  This will cause messages after the last one you have marked as
3205 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3206 &quot;N&quot; status often makes it easier to distinguish later news
3207 articles from those you've previously seen, but not yet disposed of via
3208 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3209 record of which messages you have not seen.
3212 A frequent operation in news-reading is &quot;catching up&quot; -- that
3213 is, getting rid of all the messages in the newsgroup so that you can
3214 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3215 Select command.  You would enter the following four keystrokes:
3216 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3217 dismiss) command to all of them.
3220 There are also additional details on 
3221 <A HREF="h_configuring_news">configuring news</a>.
3224 &lt;End of help on this topic&gt;
3225 </BODY>
3226 </HTML>
3227 ====== h_help_index ======
3228 <HTML>
3229 <HEAD>
3230 <TITLE>Help Index</TITLE>
3231 </HEAD>
3232 <BODY>
3233 <H1>Help Index</H1>
3234 <ul>
3235 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3236 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3237 <li><a href="h_main_addrbook">Address Book Command</a>
3238 <li><a href="h_abook_view">Address Book View Explained</a>
3239 <li><a href="h_compose_addrcomplete">Address Completion</a>
3240 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3241 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3242 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3243 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3244 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3245 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3246 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3247 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3248 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3249 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3250 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3251 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3252 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3253 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3254 <li><a href="h_news_legal">Alpine Legal Notices</a>
3255 <li><a href="h_compose_alted">Alt Editor Command</a>
3256 <li><a href="h_index_cmd_apply">Apply Command</a>
3257 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3258 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3259 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3260 <li><a href="h_composer_browse">BROWSER</a>
3261 <li><a href="h_common_bounce">Bounce Command</a>
3262 <li><a href="h_compose_cancel">Cancel Command</a>
3263 <li><a href="h_config_change_your_from">Changing your From Address</a>
3264 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3265 <li><a href="h_mainhelp_color">Color</a>
3266 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3267 <li><a href="h_composer">COMPOSER COMMANDS</a>
3268 <li><a href="h_mainhelp_composing">Composing Messages</a>
3269 <li><a href="h_mainhelp_collections">Collection Lists</a>
3270 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3271 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3272 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3273 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3274 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3275 <li><a href="h_common_compose">Compose Command</a>
3276 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3277 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3278 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3279 <li><a href="h_mainhelp_config">Configuration</a>
3280 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3281 <li><a href="h_config_dflt_color">Default Color</a>
3282 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3283 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3284 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3285 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3286 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3287 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3288 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3289 <li><a href="h_ge_export">Export File Selection</a>
3290 <li><a href="h_ge_allparts">Export Message File Selection</a>
3291 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3292 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3293 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3294 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3295 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3296 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3297 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3298 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3299 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3300 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3301 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3302 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3303 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3304 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3305 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3306 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3307 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3308 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3309 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3310 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3311 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3312 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3313 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3314 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3315 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3316 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3317 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3318 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3319 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3320 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3321 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3322 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3323 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3324 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3325 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3326 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3327 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3328 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3329 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3330 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3331 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3332 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3333 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3334 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3335 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3336 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3337 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3338 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3339 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3340 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3341 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3342 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3343 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3344 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3345 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3346 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3347 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3348 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3349 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3350 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3351 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3352 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3353 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3354 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3355 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3356 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3357 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3358 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3359 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3360 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3361 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3362 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3363 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3364 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3365 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3366 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
3367 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
3368 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
3369 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
3370 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
3371 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
3372 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
3373 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
3374 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
3375 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
3376 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
3377 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
3378 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
3379 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
3380 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
3381 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
3382 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
3383 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
3384 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
3385 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
3386 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
3387 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
3388 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
3389 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
3390 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
3391 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
3392 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
3393 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
3394 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
3395 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
3396 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
3397 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
3398 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
3399 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
3400 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
3401 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
3402 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
3403 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
3404 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
3405 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
3406 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
3407 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
3408 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
3409 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
3410 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
3411 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
3412 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
3413 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
3414 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
3415 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
3416 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
3417 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
3418 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
3419 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
3420 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
3421 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
3422 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
3423 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
3424 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
3425 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
3426 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
3427 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
3428 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
3429 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
3430 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
3431 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
3432 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
3433 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
3434 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
3435 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
3436 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
3437 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
3438 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
3439 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
3440 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
3441 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
3442 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
3443 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
3444 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
3445 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
3446 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
3447 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
3448 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
3449 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
3450 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
3451 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
3452 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
3453 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
3454 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
3455 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
3456 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
3457 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
3458 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
3459 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
3460 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
3461 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
3462 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
3463 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
3464 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
3465 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
3466 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
3467 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
3468 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
3469 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
3470 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
3471 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
3472 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
3473 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
3474 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
3475 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
3476 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
3477 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
3478 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
3479 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
3480 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
3481 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
3482 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
3483 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
3484 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
3485 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
3486 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
3487 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
3488 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
3489 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
3490 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
3491 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
3492 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
3493 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
3494 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
3495 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
3496 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
3497 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
3498 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
3499 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
3500 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
3501 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
3502 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
3503 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
3504 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
3505 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
3506 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
3507 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
3508 <li><a href="h_mainhelp_filtering">Filtering</a>
3509 <li><a href="h_finding_help">Finding more information and requesting help</a>
3510 <li><a href="h_common_flag">Flag Command</a>
3511 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
3512 <li><a href="h_mainhelp_folders">Folders</a>
3513 <li><a href="h_what_are_collections">Folder Collections Explained</a>
3514 <li><a href="h_common_folders">Folder List Command</a>
3515 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
3516 <li><a href="h_folder_save">Folder Select for Save Explained</a>
3517 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
3518 <li><a href="h_config_change_your_from">From Address, Changing</a>
3519 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
3520 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
3521 <li><a href="h_common_goto">Goto Command</a>
3522 <li><a href="h_common_hdrmode">HdrMode Command</a>
3523 <li><a href="h_mainhelp_pinehelp">Help</a>
3524 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
3525 <li><a href="h_folder_maint">Help for Folder List</a>
3526 <li><a href="h_valid_folder_names">IMAP</a>
3527 <li><a href="h_ge_import">Import File Selection</a>
3528 <li><a href="h_mainhelp_index">Index of Messages</a>
3529 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
3530 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
3531 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
3532 <li><a href="h_info_on_mbox">Information on mbox driver</a>
3533 <li><a href="h_mainhelp_intro">Introduction</a>
3534 <li><a href="h_main_journal">Journal Command</a>
3535 <li><a href="h_common_jump">Jump Command</a>
3536 <li><a href="h_compose_justify">Justify Command</a>
3537 <li><a href="h_main_kblock">Keyboard Lock Command</a>
3538 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
3539 <li><a href="h_mainhelp_ldap">LDAP</a>
3540 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
3541 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
3542 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
3543 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
3544 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
3545 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
3546 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
3547 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
3548 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
3549 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
3550 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
3551 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
3552 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
3553 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
3554 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
3555 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
3556 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
3557 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
3558 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
3559 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
3560 <li><a href="h_ldap_view">LDAP Response View Explained</a>
3561 <li><a href="h_maildrop">Mail Drop: What is it?</a>
3562 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
3563 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
3564 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
3565 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
3566 <li><a href="h_common_index">Message Index Command</a>
3567 <li><a href="h_mainhelp_mouse">Mouse</a>
3568 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
3569 <li><a href="new_user_greeting">NEW USER GREETING</a>
3570 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
3571 <li><a href="h_mainhelp_readingnews">News Reading</a>
3572 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
3573 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
3574 <li><a href="h_common_nextnew">NextNew Command</a>
3575 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
3576 <li><a href="h_mainhelp_readingnews">NNTP</a>
3577 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
3578 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
3579 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
3580 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
3581 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
3582 <li><a href="h_config_color_style">OPTION: Color Style</a>
3583 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
3584 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
3585 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
3586 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
3587 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
3588 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
3589 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
3590 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
3591 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
3592 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
3593 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
3594 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
3595 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
3596 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
3597 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
3598 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
3599 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
3600 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
3601 <li><a href="h_config_file_dir">OPTION: File Directory</a>
3602 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
3603 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
3604 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
3605 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
3606 <li><a href="h_config_font_name">OPTION: Font Name</a>
3607 <li><a href="h_config_font_size">OPTION: Font Size</a>
3608 <li><a href="h_config_font_style">OPTION: Font Style</a>
3609 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
3610 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
3611 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
3612 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
3613 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
3614 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
3615 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
3616 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
3617 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
3618 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
3619 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
3620 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
3621 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
3622 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
3623 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
3624 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
3625 <li><a href="h_config_index_color">OPTION: Index Colors</a>
3626 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
3627 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
3628 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
3629 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
3630 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
3631 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
3632 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
3633 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
3634 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
3635 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
3636 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
3637 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
3638 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
3639 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
3640 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
3641 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
3642 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
3643 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
3644 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
3645 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
3646 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
3647 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
3648 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
3649 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
3650 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
3651 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
3652 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
3653 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
3654 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
3655 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
3656 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
3657 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
3658 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
3659 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
3660 <li><a href="h_config_pat_old">OPTION: Patterns</a>
3661 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
3662 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
3663 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
3664 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
3665 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
3666 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
3667 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
3668 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
3669 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
3670 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
3671 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
3672 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
3673 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
3674 <li><a href="h_config_printer">OPTION: Printer</a>
3675 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
3676 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
3677 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
3678 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
3679 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
3680 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
3681 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
3682 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
3683 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
3684 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
3685 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
3686 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
3687 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
3688 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
3689 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
3690 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
3691 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
3692 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
3693 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
3694 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
3695 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
3696 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
3697 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
3698 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
3699 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
3700 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
3701 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
3702 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
3703 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
3704 <li><a href="h_config_status_color">OPTION: Status Color</a>
3705 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
3706 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
3707 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
3708 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
3709 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
3710 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
3711 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
3712 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
3713 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
3714 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
3715 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
3716 <li><a href="h_config_title_color">OPTION: Title Color</a>
3717 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
3718 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
3719 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
3720 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
3721 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
3722 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
3723 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
3724 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
3725 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
3726 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
3727 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
3728 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
3729 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
3730 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
3731 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
3732 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
3733 <li><a href="h_config_window_position">OPTION: Window-Position</a>
3734 <li><a href="h_mainhelp_patterns">Patterns</a>
3735 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
3736 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
3737 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
3738 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
3739 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
3740 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
3741 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
3742 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
3743 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
3744 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
3745 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
3746 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
3747 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
3748 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
3749 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
3750 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
3751 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
3752 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
3753 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
3754 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
3755 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
3756 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
3757 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
3758 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
3759 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
3760 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
3761 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
3762 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
3763 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
3764 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
3765 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
3766 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
3767 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
3768 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
3769 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
3770 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
3771 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
3772 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
3773 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
3774 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
3775 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
3776 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
3777 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
3778 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
3779 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
3780 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
3781 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
3782 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
3783 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
3784 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
3785 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
3786 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
3787 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
3788 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
3789 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
3790 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
3791 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
3792 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
3793 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
3794 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
3795 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
3796 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
3797 <li><a href="h_common_pipe">Pipe Command</a>
3798 <li><a href="h_valid_folder_names">POP</a>
3799 <li><a href="h_common_postpone">Postpone Command</a>
3800 <li><a href="h_common_print">Print Command</a>
3801 <li><a href="h_mainhelp_readingnews">Reading News</a>
3802 <li><a href="h_news">RELEASE NOTES for Alpine</a>
3803 <li><a href="h_mainhelp_roles">Roles</a>
3804 <li><a href="h_role_select">ROLES SCREEN</a>
3805 <li><a href="h_compose_readfile">Read File Command</a>
3806 <li><a href="h_mainhelp_reading">Reading Messages</a>
3807 <li><a href="h_main_release_notes">Release Notes Command</a>
3808 <li><a href="h_common_reply">Reply and Forward Commands</a>
3809 <li><a href="h_compose_richhdr">Rich Header Command</a>
3810 <li><a href="h_common_role">Role Command</a>
3811 <li><a href="h_mainhelp_smime">S/MIME</a>
3812 <li><a href="h_index_cmd_select">Searching for Messages</a>
3813 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
3814 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
3815 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
3816 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
3817 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
3818 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
3819 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
3820 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
3821 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
3822 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
3823 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
3824 <li><a href="h_common_save">Save and Export Commands</a>
3825 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
3826 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
3827 <li><a href="h_compose_send">Send Command</a>
3828 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
3829 <li><a href="h_main_setup">Setup Command</a>
3830 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
3831 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
3832 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
3833 <li><a href="h_mainhelp_smime">S/MIME</a>
3834 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
3835 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
3836 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
3837 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
3838 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
3839 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
3840 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
3841 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
3842 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
3843 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
3844 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
3845 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
3846 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
3847 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
3848 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
3849 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
3850 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
3851 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
3852 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
3853 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
3854 <li><a href="h_index_cmd_sort">Sort Command</a>
3855 <li><a href="h_compose_spell">Spell Check Command</a>
3856 <li><a href="h_common_suspend">Suspend Command</a>
3857 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
3858 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
3859 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
3860 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
3861 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
3862 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
3863 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
3864 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
3865 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
3866 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
3867 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
3868 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
3869 <li><a href="h_common_take">TakeAddr Command</a>
3870 <li><a href="h_mainhelp_status">Titlebar Line</a>
3871 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
3872 <li><a href="h_config_usenone_color">Use None Color</a>
3873 <li><a href="h_config_usenormal_color">Use Normal Color</a>
3874 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
3875 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
3876 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
3877 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
3878 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
3879 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
3880 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
3881 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
3882 </UL>
3885 &lt;End of Help Index&gt;
3886 </BODY>
3887 </HTML>
3890 ============== h_config_remote_config =============
3891 <HTML>
3892 <HEAD>
3893 <TITLE>Remote Configuration</TITLE>
3894 </HEAD>
3895 <BODY>
3896 <H1>Remote Configuration</H1>
3898 You may use the command line argument &quot;-p pinerc&quot; to tell
3899 Alpine to use a non-default configuration file.
3900 There are two types of storage for configuration information.
3901 <EM>Local</EM> configuration files are used by default.
3902 These are just regular files on the UNIX system or on the PC.
3903 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
3904 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
3905 <EM>Remote</EM> configuration folders are stored on an IMAP server.
3906 The advantage of using a remote configuration is that the same information
3907 may be accessed from multiple platforms.
3908 For example, if you use one computer at work and another at home, the same
3909 configuration could be used from both places.
3910 A configuration change from one place would be seen in both places.
3911 To use a remote configuration you simply give a
3912 <A HREF="h_valid_folder_names">remote folder name</A>
3913 as the argument to the &quot;-p&quot; command line option.
3914 The command line might look something like:
3916 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
3918 If there are special characters in the command shell you use, you may need to
3919 quote the last argument (to protect the curly braces from the shell).
3920 The command might look like:
3922 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
3924 You should choose a folder name for a folder that does not yet exist.
3925 It will be created containing an empty configuration.
3926 Do not use a folder that you wish to store regular mail messages in.
3928 The Setup/RemoteConfigSetup command will help you convert from a local
3929 configuration to a remote configuration.
3930 It will create a remote configuration for you and copy your current local
3931 configuration to it.
3932 It will also help you convert local address books into remote address books
3933 and local signature files into literal signatures contained in the
3934 remote configuration file.
3936 If the Setup/RemoteConfigSetup command doesn't do what you want, you
3937 may copy a local pinerc file to a remote configuration folder by hand
3938 by using the command line option &quot;-copy_pinerc&quot;.
3940 Another command line option, which is somewhat related to remote
3941 configuration, is the option &quot;-x exceptions_config&quot;.
3942 The configuration settings in the exceptions configuration override
3943 your default settings.
3944 It may be useful to store the default configuration (the -p argument) remotely
3945 and to have the exceptions configuration stored in a local file.
3946 You might put generic configuration information in the remote configuration
3947 and platform-specific configuration on each platform in the exceptions
3948 configuration.
3949 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
3950 can be either remote folders or local files.
3952 There is another command line argument that works only with PC-Alpine and
3953 which may prove useful when using a remote configuration.
3954 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
3955 to store your local auxiliary files.
3956 This only has an effect if your configuration file is remote.
3957 Some examples of auxiliary files are debug files, address book files, and
3958 signature files.
3960 &lt;End of help on this topic&gt;
3961 </BODY>
3962 </HTML>
3963 ============== h_config_exceptions =============
3964 <HTML>
3965 <HEAD>
3966 <TITLE>Generic and Exceptional Configuration</TITLE>
3967 </HEAD>
3968 <BODY>
3969 <H1>Generic and Exceptional Configuration</H1>
3971 If you use Alpine from more than one platform it may be convenient
3972 to split your configuration information into two pieces, a generic piece
3973 and exceptions that apply to a particular platform.
3974 For example, suppose you use Alpine from home and from work.
3975 Most of your configuration settings are probably the
3976 same in both locations, so those settings belong in the generic settings
3977 configuration.
3978 However, you may use a different SMTP server and INBOX
3979 from home than you do from work.
3981 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
3983 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
3984 options could be
3985 part of your exceptional configuration so that they could be different in the
3986 two places.
3988 The command line option &quot;-x exceptions_config&quot;
3989 may be used to split your configuration into generic and exceptional pieces.
3990 &quot;Exceptions_config&quot; may be either local or remote.
3991 The regular Alpine configuration file will contain the generic data, and
3992 &quot;exceptions_config&quot; will contain the exceptional data.
3994 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
3995 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
3996 in the same local directory that the regular config file is located in (usually
3997 the Unix home directory).
3998 If the regular config file is remote (because the command line option
3999 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4000 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4001 If the file does not already exist then no exceptions will be used.
4002 You can force exceptions to be used by using the &quot;-x&quot; option or
4003 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4005 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4006 PC-Alpine will use the value of the
4007 environment variable <CODE>$PINERCEX</CODE>.
4008 If that is not set, PC-Alpine will look for
4009 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4010 in the same local directory that the regular config file is located in.
4011 If the regular config file is remote (because the command line option
4012 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4013 local directory specified by the &quot;-aux local_directory&quot; command
4014 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4015 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4017 When you have an exception configuration there is a new command
4018 in the Alpine Setup screen, Setup/eXceptions.
4019 It toggles between exceptions and the regular configuration.
4020 This is the usual way to make changes in your exceptional configuration data.
4021 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4022 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4023 for Config or &quot;K&quot; for Kolor.
4025 For most people, splitting the configuration information into two pieces is
4026 going to be most useful if the generic information is accessed
4027 <A HREF="h_config_remote_config">remotely</A>).
4028 That data will be the same no matter where you access it from and if you
4029 change it that change will show up everywhere.
4030 The exceptional data will most commonly be in a local file, so that the
4031 contents may easily be different on each computing platform used.
4033 If you already have a local configuration file with settings you like
4034 you may find that the command Setup/RemoteConfigSetup is useful
4035 in helping you convert to a remote configuration.
4036 The command line flag &quot;-copy_pinerc&quot;
4037 may also be useful.
4039 &lt;End of help on this topic&gt;
4040 </BODY>
4041 </HTML>
4042 ============== h_config_inheritance =============
4043 <HTML>
4044 <HEAD>
4045 <TITLE>Configuration Inheritance</TITLE>
4046 </HEAD>
4047 <BODY>
4048 <H1>Configuration Inheritance</H1>
4050 Configuration inheritance is a power user feature.
4051 It is confusing and not completely supported by the configuration
4052 user interface.
4053 We start with an explanation of how configuration works in hopes of making
4054 it easier to describe how inheritance works.
4056 Alpine uses a hierarchy of configuration values from different locations.
4057 There are five ways in which each configuration option (configuration
4058 variable) can be set.
4059 In increasing order of precedence they are:
4061 <OL>
4062 <LI> the system-wide configuration file.
4064 <LI> the personal configuration file
4066 <LI> the personal exceptions file
4068 <LI> a command line argument
4070 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4071 </OL>
4073 The fixed configuration file is normally
4074 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4076 The system-wide configuration file is normally
4077 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4078 set for PC-Alpine.
4079 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4080 is used for the system-wide configuration.
4081 This location can be set or changed on the command line with the -P flag.
4082 The system-wide configuration file can be either a local file or a
4083 remote configuration folder.
4085 For Unix Alpine, the personal configuration file is normally the file
4086 <CODE>.pinerc</CODE> in the user's home directory.
4087 This can be changed with the -p command line flag.
4088 For PC-Alpine, the personal configuration file is in
4089 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4090 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4091 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4092 This can be changed with the -p command line flag.
4093 If -p is used, the configuration data may be in a local file or a remote config
4094 folder.
4096 For Unix Alpine, the personal exceptions configuration file is named
4097 <CODE>.pinercex</CODE> and is in the same directory as the personal
4098 configuration file, if that configuration file is not remote, and is in
4099 the home directory if the personal configuration file is remote.
4100 If the file exists, then exceptions are turned on.
4101 If it doesn't, then you are not using exceptions.
4102 Alternatively, you may change the location of the exceptions configuration
4103 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4104 Like the personal configuration data, exceptions_config may be
4105 either local or remote.
4107 For PC-Alpine, the personal exceptions configuration file is named
4108 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4109 configuration file unless the personal configuration file is remote.
4110 In that case, it is in the local directory specfied by the
4111 &quot;-aux local_directory&quot; command line argument.
4112 (In the case that the personal configuration is remote and there is no
4113 &quot;-aux&quot; command line argument, Alpine searches for
4114 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4115 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4116 If the file exists, then exceptions are turned on.
4117 If it doesn't, then you are not using exceptions.
4118 You may change the location of the exceptions configuration
4119 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4120 or with the
4121 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4122 option).
4124 To reiterate, the value of a configuration option is taken from the
4125 last location in the list above in which it is set.
4126 Or, thinking about it slightly differently, a default value for an option
4127 is established in the system-wide configuration file (or internally by Alpine
4128 if there is no value in the system-wide file).
4129 That default remains in effect until and unless it is overridden by a value in a
4130 location further down the list, in which case a new &quot;default&quot;
4131 value is established.
4132 As we continue down the list of locations we either retain the
4133 value at each step or establish a new value.
4134 The value that is still set after going through the whole list of
4135 configuration locations is the one that is used.
4137 So, for example, if an option is set in the system-wide configuration
4138 file and in the personal configuration file, but is not set in the
4139 exceptions, on the command line, or in the fixed file; then the value
4140 from the personal configuration file is the one that is used.
4141 Or, if it is set in the system-wide config, in the personal config, not
4142 in the exceptions, but is set on the command line; then the value
4143 on the command line is used.
4145 Finally we get to inheritance.
4146 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4147 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4148 the inheritance mechanism makes it possible to <EM>combine</EM>
4149 the values from different locations instead of <EM>replacing</EM> the value.
4150 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4151 for which you may already set whatever you want at
4152 any configuration location (by using the &quot;no-&quot; prefix if
4153 necessary).
4155 To use inheritance, set the first item in a configuration list to the
4156 token &quot;INHERIT&quot;, without the quotes.
4157 If the first item is &quot;INHERIT&quot;,
4158 then instead of replacing the default value established so far, the rest of
4159 the list is appended to the default value established so far and that is
4160 the new value.
4162 Here is an example which may make it clearer. Suppose we have:
4164 <PRE>
4165  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4166  Personal config    :   smtp-server = INHERIT, mysmtp.home
4167  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4168  Command line       :   smtp-server = &lt;No Value Set&gt;
4169  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4170 </PRE>
4173 This would result in an effective smtp-server option of
4175 <PRE>
4176  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4177 </PRE>
4179 The &quot;INHERIT&quot; token can be used in any of the configuration files
4180 and the effect cascades.
4181 For example, if we change the above example to:
4183 <PRE>
4184  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4185  Personal config    :   smtp-server = INHERIT, mysmtp.home
4186  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4187  Command line       :   smtp-server = &lt;No Value Set&gt;
4188  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4189 </PRE>
4192 This would result in:
4194 <PRE>
4195  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4196 </PRE>
4198 Unset variables are skipped over (the default value is carried forward) so
4199 that, for example:
4201 <PRE>
4202  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4203  Personal config    :   smtp-server = &lt;No Value Set&gt;
4204  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4205  Command line       :   smtp-server = &lt;No Value Set&gt;
4206  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4207 </PRE>
4210 produces:
4212 <PRE>
4213  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4214 </PRE>
4217 If any later configuration location has a value set (for a particular list
4218 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4219 then that value replaces whatever value has been defined up to that point.
4220 In other words, that cancels out any previous inheritance.
4222 <PRE>
4223  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4224  Personal config    :   smtp-server = INHERIT, mysmtp.org
4225  Exceptions config  :   smtp-server = yoursmtp.org
4226  Command line       :   smtp-server = &lt;No Value Set&gt;
4227  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4228 </PRE>
4231 results in:
4233 <PRE>
4234  smtp-server = yoursmtp.org
4235 </PRE>
4238 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4239 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4240 difficult to insert the value &quot;INHERIT&quot; into the list of values
4241 for the option using the normal Setup tools.
4242 In other words, the color setting screen (for example) does not
4243 provide a way to input the text &quot;INHERIT&quot; as the first
4244 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4245 The way to do this is to either edit the pinerc file directly and manually
4246 insert it, or turn
4247 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4248 feature and insert it using the Setup/Config screen.
4250 &lt;End of help on this topic&gt;
4251 </BODY>
4252 </HTML>
4253 ============== h_special_xon_xoff =============
4254 <HTML>
4255 <HEAD>
4256 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4257 </HEAD>
4258 <BODY>
4259 <H1>XOFF/XON Handling within Alpine</H1>
4261 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4262 and XON) as normal characters, even though Alpine does not use them.
4263 However, the printer, modem, or communication software you are using may
4264 be configured for &quot;software flow control,&quot; which means that
4265 XON/XOFF must be treated as special characters by the operating system.
4266 If you see messages such as &quot;^S not defined for this screen&quot;,
4267 then your system is probably using software flow control. In this case
4268 you will need to set the
4269 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4270 feature.
4272 If you <EM>do</EM> set this
4273 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4274 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4275 and see if that puts things right.  Printing via the
4276 &quot;attached-to-ansi&quot; or 
4277 &quot;attached-to-wyse&quot;
4278 option will automatically enable software
4279 flow-control handling for the duration of the printing.
4281 &lt;End of help on this topic&gt;
4282 </BODY>
4283 </HTML>
4284 ============= h_special_help_nav =============
4285 <HTML>
4286 <HEAD>
4287 <TITLE>Help Text Navigation Explained</TITLE>
4288 </HEAD>
4289 <BODY>
4290 <H1>Help Text Navigation Explained</H1>
4292 Alpine contains extensive context-sensitive help text.   At any point, 
4293 pressing the &quot;?&quot; key will bring up a page of help text
4294 explaining the options available to you.  You can leave the help
4295 text screen and return to normal Alpine operation by pressing
4297 <!--chtml if pinemode="function_key"-->
4298 F3 function
4299 <!--chtml else-->
4300 &quot;E&quot;
4301 <!--chtml endif-->
4302 key to Exit Help at any time.
4305 Within the help screen you might find a word or phrase displayed in 
4306 inverse text and others displayed in bold typeface.  Such words and
4307 phrases are used to tell you Alpine has more information available on
4308 the topic they describe.
4309 The inverted text is the &quot;selected&quot; topic.  
4310 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4311 displayed in bold type
4312 is &quot;selected&quot;.
4313 Hit the Return key to display the information Alpine has available on that
4314 topic.  While viewing such additional information, the 
4315 <!--chtml if pinemode="function_key"-->
4316 F3 function
4317 <!--chtml else-->
4318 &quot;P&quot;
4319 <!--chtml endif-->
4320 key will return you to the previous help screen, and the
4321 <!--chtml if pinemode="function_key"-->
4322 F2 function
4323 <!--chtml else-->
4324 &quot;E&quot;
4325 <!--chtml endif-->
4326 key will Exit the Help system altogether.
4329 The "N" command will tell you the internal name of the help text you are 
4330 reading each time, so that you can send this name in the text of a message 
4331 and create a direct link to that internal help using the x-pine-help URL 
4332 scheme. For example, the direct link to this item is 
4333 x-pine-help:h_special_help_nav. If you add this text to a message, then
4334 a person using Pine to read such message would have a direct link to this
4335 help text.
4338 When you are finished reading this help text, you can press the
4339 <!--chtml if pinemode="function_key"-->
4340 F3 function
4341 <!--chtml else-->
4342 &quot;P&quot;
4343 <!--chtml endif-->
4344 key to return to the previously displayed help text.
4347 &lt;End of help on this topic&gt;
4348 </BODY>
4349 </HTML>
4350 ============= h_special_list_commands =============
4351 <HTML>
4352 <HEAD>
4353 <TITLE>Email List Commands Explained</TITLE>
4354 </HEAD>
4355 <BODY>
4356 <H1>Email List Commands Explained</H1>
4358 Electonic mail lists provide a way for like-minded users to join in
4359 discussions on topics of interest.  The email list itself is 
4360 represented by a
4361 single address that participants send messages to when they have
4362 something of interest to share with other members of the list.  The
4363 receiving computer then, either automatically or after review by the
4364 list's owner (or moderator), sends a copy of that message to each
4365 member of the list.
4368 Usually, subscribing and unsubscribing is done by sending requests in
4369 an email message to a special address setup to handle managing list
4370 membership.  Often this is the name of the list followed by
4371 <I>-request</I>.  This address is almost <EM>never</EM> the same as
4372 the address used to send messages to the list.
4375 Unfortunately, email list participation commands are more a matter
4376 of convention than standard, and thus may vary from list to list.
4377 Increasingly, list management software is adding information to
4378 the copy of the postings as they're copied to the list members that
4379 explains how to do the various list management functions.
4382 Alpine will recognize this information and offer the management commands
4383 they represent in a simple display. One or more of the following
4384 operations will be made available:
4386 <DL>
4387 <DT>Help</DT>
4388 <DD>
4389 A method to get help on subscribing, unsubscribing, 
4390 an explanation of what the list is about, or special instructions
4391 for participation.  This may be in the form of a reply in response
4392 to an email message, or instructions on how to connect to a Web site.
4393 </DD>
4395 <DT>Unsubscribe</DT>
4396 <DD>
4397 A method to get your email addressed removed from the list of
4398 recipients of the email list.
4399 </DD>
4401 <DT>Subscribe</DT>
4402 <DD>
4403 A method to get your email address added to the list of recipients
4404 of the email list.  It may be in the form of a message sent to 
4405 a special address or you may be connected to a web site.
4406 <DD>
4407 </DD>
4409 <DT>Post</DT>
4410 <DD>
4411 A method used to post to the email list.  However, it might also 
4412 indicate that no posting is allowed directly to the list.
4413 </DD>
4415 <DT>Owner</DT>
4416 <DD>
4417 A method to contact the list owner for special questions you might
4418 have regarding the list.
4419 </DD>
4421 <DT>Archive</DT>
4422 <DD>
4423 A method to view an archive of previous messages posted to the list.
4424 This may be in the form of a mail folder on a remote computer, an
4425 IMAP mailbox or even a Web site.
4426 </DD>
4427 </DL>
4430 &lt;End of help on this topic&gt;
4431 </BODY>
4432 </HTML>
4433 ============= h_quota_command =============
4434 <HTML>
4435 <HEAD>
4436 <TITLE>Quota Screen Explained</TITLE>
4437 </HEAD>
4438 <BODY>
4439 <H1>Quota Screen Explained</H1>
4441 <P> This screen summarizes the quota report for this mailbox in the
4442 IMAP server. For each resource that you have a quota, this reports summarizes
4443 its use and limit.
4445 <P> Your IMAP server administrator may have set a quota based either on 
4446 the total size of your mailbox (STORAGE), or the number of messages in 
4447 your mailbox (MESSAGES), or some other criteria. This will be reported
4448 to you indicating the type of quota, its total use and its limit.
4450 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
4451 1024 bytes. Each of the characters that you see in this help text is one 
4452 byte, and this help text is about 1 kibibyte in size. Small messages sent 
4453 by Alpine are normally less than 4 kibibytes in size (which includes 
4454 headers and text). Other email programs may send messages with bigger 
4455 sizes when they send messages, since they send plain text and an 
4456 alternative part in HTML.
4458 <P> A convenient way to save space for the STORAGE type of quota is by 
4459 deleting attachments. This is done on each individual message by pressing 
4460 the &quot;V&quot; command while reading the message text, then moving the cursor 
4461 to the position of the attachment that is to be deleted, then pressing
4462 &quot;D&quot; to delete such attachment, going back to reading the 
4463 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
4464 save the message in the same folder you are reading from. The saved 
4465 message will not have the attachment that was marked deleted. Now you
4466 can delete and expunge the message with the unwanted attachment.
4469 &lt;End of help on this topic&gt;
4470 </BODY>
4471 </HTML>
4472 ============= h_mail_thread_index =============
4473 <HTML>
4474 <HEAD>
4475 <TITLE>THREAD INDEX COMMANDS</TITLE>
4476 </HEAD>
4477 <BODY>                 
4478 <H1>THREAD INDEX COMMANDS</H1>
4479 <!--chtml if pinemode="function_key"-->
4480 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>
4481 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4482 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>
4483 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>
4484 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>
4485 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>
4486 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>
4487 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>
4488 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>
4489 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>
4490 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>
4491 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>
4492 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>
4493 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>
4494 <BR>
4495 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4496 -----------------------------<BR>
4497 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>
4498 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>
4499 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>
4500 <BR>
4501 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4502 -----------------------------<BR>
4503 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
4504 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
4505 <BR>
4506 <!--chtml else-->
4507 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>
4508 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4509 &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>
4510 &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>
4511 &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>
4512 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>
4513 &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>
4514 &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>
4515 &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>
4516 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>
4517 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4518 <BR>
4519 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
4520 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
4521 &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>
4522 &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>
4523 &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>
4524 &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>
4525 &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>
4526 &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>
4527 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
4528 <!--chtml endif-->
4531 NOTE:
4532 <OL>
4533  <LI>For help on a particular command, highlight the bold text associated
4534 with it above and hit Return.
4535  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4536 </OL>
4538 <H2>Description of the THREAD INDEX Screen</H2>
4540 The THREAD INDEX displays summary information from each
4541 thread (conversation) in the current folder.
4542 This is useful if you want to quickly
4543 scan new threads, or find a particular thread without having to go
4544 through the text of each message, or to quickly get rid of junk
4545 threads, etc.
4546 The current thread is always highlighted.
4547 Each line of the THREAD INDEX contains the following columns: <P>
4548 <DL>
4549  <DT>STATUS:</DT>
4550  <DD> The markings on the left side of the thread tell you about its
4551 status.  You may see one or more of the following codes on any given
4552 thread:
4553 <UL>
4554   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
4555   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
4556   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
4557   <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.
4558   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4559         message in the thread was sent to you as a cc:. This symbol will only show up if
4560         the feature
4561         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4562   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
4563         &quot;select&quot; command.  (Some systems may optionally allow selected
4564         messages to be denoted by the index line being displayed in bold
4565         type instead.)
4566   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4567       to mark at least one message in this thread as &quot;important&quot;.
4568 </UL></DD><P>
4570  <DT>THREAD NUMBER:</DT>
4571  <DD>Threads in a folder are numbered, from one through the number
4572 of threads in the folder, to help you know where you are in the folder.
4573 </DD><P>
4575  <DT>DATE STARTED:</DT>
4576  <DD>The date the thread was started. This is actually from the Date header
4577 of the first message in the thread. It doesn't take different time zones
4578 into account.</DD><P>
4580  <DT>WHO STARTED THE THREAD:</DT>
4581  <DD>This is usually the name of the sender of the first message in the thread, taken from
4582 the From header of the message.
4583 If there is no personal name given in that
4584 address, then the email address is used instead.
4585 If the message is from you (or from one of your
4586 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4587 then the recipient's name is shown here instead, with the characters
4588 &quot;To: &quot; inserted before the name.
4589 (The idea of this is that if you started the thread you would rather see who
4590 the mail was sent to instead of that the mail was from you.)
4591 In Newsgroups, if you are
4592 the sender and there are no email recipients, the newsgroup name will be
4593 listed after the &quot;To: &quot;.
4594 </DD><P>
4596  <DT>SIZE:</DT>
4597  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
4599  <DT>SUBJECT:</DT>
4600  <DD>As much of the thread's subject line as will fit on the screen.
4601 This is the subject of the first message in the thread.</DD>
4602 </DL>
4604 <P><UL>
4605 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4606 </UL>
4608 &lt;End of help on this topic&gt;
4609 </BODY>
4610 </HTML>
4611 ============= h_mail_index =============
4612 <HTML>
4613 <HEAD>
4614 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
4615 </HEAD>
4616 <BODY>                 
4617 <H1>MESSAGE INDEX COMMANDS</H1>
4618 <!--chtml if pinemode="function_key"-->
4619 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>
4620 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
4621 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>
4622 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>
4623 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>
4624 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>
4625 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>
4626 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>
4627 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>
4628 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>
4629 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>
4630 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>
4631 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>
4632 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>
4633 <BR>
4634 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4635 -----------------------------<BR>
4636 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>
4637 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>
4638 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>
4639 <BR>
4640 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4641 -----------------------------<BR>
4642 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
4643 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>
4644 <BR>
4645 <!--chtml else-->
4646 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>
4647 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
4648 &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>
4649 &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>
4650 &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>
4651 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>
4652 &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>
4653 &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>
4654 &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>
4655 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>
4656 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
4657 Miscellaneous&nbsp;Operations<BR>
4658 ------------------------<BR>
4659 &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>
4660 &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>
4661 &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>
4662 &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>
4663 &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>
4664 &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>
4665 &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>
4666 &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>
4667 <!--chtml endif-->
4670 NOTE:
4671 <OL>
4672  <LI>For help on a particular command, highlight the bold text associated
4673 with it above and hit Return.
4674  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4675 </OL>
4677 <H2>Description of the MESSAGE INDEX Screen</H2>
4679 The MESSAGE INDEX displays summary information from each
4680 message in the current folder.
4681 This is useful if you want to quickly
4682 scan new messages, or find a particular message without having to go
4683 through the text of each message, or to quickly get rid of junk
4684 messages, etc.
4686 The current message is always highlighted
4687 and many commands operate on the current message.
4688 For example, the Delete command will delete the current message.
4689 If the folder is sorted by either Threads or OrderedSubject, then, depending
4690 on some of your configuration settings, a single line in the index may
4691 refer to an entire thread or to a subthread.
4692 If that is the case, then the commands that normally operate on the current
4693 message will operate on the thread or subthread instead.
4694 For example, the Delete command will delete the whole collapsed thread
4695 instead of just a single message.
4697 Each line of the MESSAGE INDEX contains the following columns (by default -- 
4698 you can change this with the 
4699 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
4700 in the SETUP CONFIGURATION screen): <P>
4701 <DL>
4702  <DT>STATUS:</DT>
4703  <DD> The markings on the left side of the message tell you about its
4704 status.  You may see one or more of the following codes on any given
4705 message:
4706 <UL>
4707   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
4708          yet eXpunged the folder.
4709   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
4710   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
4711          to be answered.
4712   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
4713          forward a message.
4714   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
4715         directly to your account, your copy is not part of a cc: or a
4716         mailing list.
4717   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
4718         message was sent to you as a cc:. This symbol will only show up if
4719         the feature
4720         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
4721   <LI> &quot;X&quot; for selected.  You have selected the message by using the
4722         &quot;select&quot; command.  (Some systems may optionally allow selected
4723         messages to be denoted by the index line being displayed in bold
4724         type.)
4725   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
4726       to mark this message as &quot;important&quot;.
4727 </UL></DD><P>
4729  <DT>MESSAGE NUMBER:</DT>
4730  <DD>Messages in a folder are numbered, from one through the number
4731 of messages in the folder, to help you know where you are in the folder.
4732 These numbers are always in increasing order, even if you sort the folder
4733 in a different way.</DD><P>
4735  <DT>DATE SENT:</DT>
4736  <DD>The date the message was sent.  By default, messages are
4737 ordered by arrival time, not by date sent.  Most of the time, arrival time
4738 and date sent (effectively departure time) are similar.  Sometimes,
4739 however, the index will appear to be out of order because a message took a
4740 long time in delivery or because the sender is in a different time
4741 zone than you are. This date is just the date from the Date header
4742 field in the message.</DD><P>
4744  <DT>WHO SENT THE MESSAGE:</DT>
4745  <DD>This is usually the name of the sender of the message, taken from
4746 the From header of the message.
4747 If there is no personal name given in that
4748 address, then the email address is used instead.
4749 If the message is from you (or from one of your
4750 <A HREF="h_config_alt_addresses">alternate addresses</A>),
4751 then the recipient's name is shown here instead, with the characters
4752 &quot;To: &quot; inserted before the name.
4753 (The idea of this is that if you sent the mail you would rather see who
4754 the mail was sent to instead of that the mail was from you.
4755 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
4756 above.
4757 In particular, use the FROM token or the FROMORTONOTNEWS token
4758 in place of the FROMORTO token.)
4759 In Newsgroups, if you are
4760 the sender and there are no email recipients, the newsgroup name will be
4761 listed after the &quot;To: &quot;. </DD><P>
4763  <DT>SIZE:</DT>
4764  <DD>The number in parentheses is the number of characters in the message.
4765 It may have a suffix of K, M, or G which means the number should be
4766 multiplied by one thousand, one million, or one billion to get the
4767 size of the message.</DD><P>
4769  <DT>SUBJECT:</DT>
4770  <DD>As much of the message's subject line as will fit on the screen.</DD>
4771 </DL>
4773 <P><UL>
4774 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4775 </UL>
4777 &lt;End of help on this topic&gt;
4778 </BODY>
4779 </HTML>
4780 ============= h_mail_view ========================
4781 <HTML>
4782 <HEAD>
4783 <TITLE>MESSAGE TEXT SCREEN</TITLE>
4784 </HEAD>
4785 <BODY>
4786 <H1>MESSAGE TEXT SCREEN</H1>
4787 <!--chtml if pinemode="function_key"-->
4788 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>
4789 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
4790 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>
4791 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>
4792 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>
4793 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>
4794 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>
4795 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>
4796 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>
4797 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>
4798 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>
4799 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>
4800 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>
4801 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>
4802 <BR>
4803 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
4804 ------------------------------<BR>
4805 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
4806 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
4807 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
4808 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
4809 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
4810 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
4811 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
4812 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
4813 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
4814 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
4815 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
4816 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
4817 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
4818 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
4819 <!--chtml else-->
4820 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
4821 ---------------------------------<BR>
4822 <BR>
4823 &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>
4824 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>
4825 &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>
4826 &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>
4827 &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>
4828 &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>
4829 &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>
4830 &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>
4831 &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>
4832 <BR>
4833 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
4834 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
4835 &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>
4836 &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>
4837 &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>
4838 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>
4839 <BR>
4840 General&nbsp;Alpine&nbsp;Commands<BR>
4841 ---------------------<BR>
4842 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
4843 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
4844 &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>
4845 &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>
4846 &nbsp;&nbsp;&nbsp;&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>
4847 <!--chtml endif-->
4850 NOTE:
4851 <OL>
4852  <LI>For help on a particular command, highlight the bold text associated
4853 with it above and hit Return.
4854  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
4855 </OL>
4857 <H2>Description of the MESSAGE TEXT Screen</H2>
4859 The top line of the view message screen displays status
4860 information about the currently open collection and folder and about the
4861 current message.  It shows the name of the collection in angle brackets
4862 and then the name of the folder.  The line also displays the number
4863 of messages in the folder, the number of the current message and the
4864 percentage of the current message that has been displayed on the screen.
4865 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
4866 right corner.
4867 If the message has been answered (but not deleted) &quot;ANS&quot; will show
4868 in the corner.
4871 NOTE: to rapidly move to the end of a message, hit the
4872 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
4873 (or Ctrl-W) key followed
4874 by Ctrl-V.  Similarly,
4875 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
4876 followed by Ctrl-Y will take you to the beginning of
4877 a message.
4879 <H2>Explanation of Alternate Character Sets</H2>
4881 Alpine attempts to stay out of the way so that it won't prevent you from
4882 viewing mail in any character set.  It will simply send the message to
4883 your display device.  If the device is capable of displaying the
4884 message as it was written it will do so.  If not, the display may be
4885 partially or totally incorrect.
4886 If the message contains characters that are not representable in your 
4887 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
4888 variable in your configuration, then a warning message will be printed
4889 to your screen at the beginning of the message display.
4890 It is probably best to use UNIX Alpine in a terminal emulator
4891 capable of displaying UTF-8 characters.
4892 See <A HREF="h_config_char_set">Display Character Set</A> for a little
4893 more information about character set settings.
4895 <P><UL>
4896 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
4897 </UL>
4899 &lt;End of help on this topic&gt;
4900 </BODY>
4901 </HTML>
4902 ======= h_index_cmd_select =======
4903 <HTML>
4904 <HEAD>
4905 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
4906 </HEAD>
4907 <BODY>
4908 <H1>Selecting: Select and WhereIs/Select</H1>
4910 Aggregate operations give you the ability to process a group of messages
4911 at once.  Acting on multiple messages requires two steps: (1) selecting a
4912 set of messages and then; (2) applying a command to that set. The first
4913 part is handled by the select command.  Select allows you to
4914 select messages based on their status (read, answered, etc.), contents,
4915 date, size, or keywords.
4916 You may also select based on one of your Rules or based on threads,
4917 and there are quick options to select a specific message or range of messages,
4918 to select the current message, or to select all messages.
4921 We describe the various selection criteria briefly:
4924 <DL>
4925 <DT>select All</DT>
4926 <DD> Marks all the messages in the folder as selected.
4927 </DD>
4929 <DT>select Cur</DT>
4930 <DD> Selects the currently highlighted message or currently highlighted
4931 set of messages if in a threaded view.
4932 </DD>
4934 <DT>select by Number</DT>
4935 <DD> Select by message number. This may be a comma-separated list instead or
4936 a single entry.
4937 Each element in the list may be either a single message number or a range
4938 of numbers with a dash between the lowest and highest member of the range.
4939 Some examples are 7 to select only message number 7; 2-5 to select messages
4940 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
4941 The word &quot;end&quot; may be used as a substitute for the highest numbered
4942 message in the folder.
4943 If in a separate thread index where the numbers refer to threads instead of
4944 to messages, then you will be selecting all of the messages in the
4945 referenced threads instead of selecting by message number.
4946 </DD>
4948 <DT>select by Date</DT>
4949 <DD> Select by either the date stored in the Date headers of each message,
4950 or by the date when the messages arrived.
4951 This does not adjust for different time zones, but just checks to see what
4952 day the message was sent on.
4953 You may type in a date. If you do, the date should be in the form
4954 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
4955 For example,
4956 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
4958 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
4959 If the date you want is close to the current date, it is probably
4960 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
4961 is displayed, instead of typing in the date yourself.
4962 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
4963 the date of the currently highlighted message. 
4965 There are six possible settings that are selected using the
4966 &quot;^W&nbsp;Toggle When&quot; command.
4967 Three of them select messages based on the Date headers.
4968 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
4969 and &quot;SENT ON&quot;.
4970 SINCE is all messages with the selected date or later.
4971 BEFORE is all messages earlier than the selected date (not including the day
4972 itself).
4973 ON is all messages sent on the selected date.
4974 The other three select messages in the same way but they use the arrival
4975 times of the messages instead of the Date headers included in the messages.
4976 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
4977 and &quot;ARRIVED ON&quot;.
4978 When you save a message from one folder to another the arrival time is
4979 preserved.
4980 </DD>
4982 <DT>select by Text</DT>
4983 <DD> Selects messages based on the message contents.
4984 This allows you to select a set of messages based on whether or not the
4985 message headers or message body contain specified text.
4986 You may look for text in the Subject, the From header,
4987 the To header, or the Cc header.
4988 You may also choose Recipient, which searches for the text in
4989 either the To or the Cc header;
4990 or Participant, which means To or Cc or From.
4991 Besides those specific header searches, you may also search the entire
4992 header and text of the message with &quot;All Text&quot;, or just the
4993 body of the message.
4995 To search for the absence of text, first type the &quot;! Not&quot; command
4996 before typing the specific type of text search.
4997 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
4998 search for all messages that do not contain a particular word in their
4999 Subjects.
5001 If you choose a Subject search, you may use the subject from the current
5002 message by typing the &quot;^X Cur Subject&quot; command.
5003 You may then edit it further if you wish.
5004 For example, you might select the subject of a reply and edit the
5005 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5006 the original message being replied to.
5007 All of the other header searches allow you to use addresses from the
5008 headers of the current message if you want to.
5009 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5010 &quot;^W Cur Cc&quot;.
5011 In each case, if there is more than one address, only the first is offered.
5012 </DD>
5014 <DT>select by Status</DT>
5015 <DD> Selects messages based on their status.
5016 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5017 messages.
5018 Or, if you first type the &quot;! Not&quot; command, you get not New,
5019 or not Important, and so on.
5020 If you select Deleted messages, you will get all messages with their
5021 Deleted flag set.
5022 Likewise for Important messages, all messages that you have flagged as
5023 being Important with the
5024 <A HREF="h_common_flag">Flag</A> command.
5025 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5026 because they try to match what you see on the screen by default.
5027 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5028 and Unanswered.
5029 If you have looked at the message, or deleted it, or answered it; then it
5030 is not considered &quot;New &quot;.
5031 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5033 &quot;Answered&quot; is another one that is a little different.
5034 It means that the message has been Answered <EM>and</EM> is not deleted.
5035 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5036 the opposite of &quot;Answered&quot;!
5037 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5038 both Unanswered <EM>and</EM> not deleted.
5040 The other two types were added later because the special nature of the
5041 New flag was not what was wanted by all users.
5042 New does match what you see in the index by default, but if you use
5043 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5044 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5045 be exactly what you want.
5046 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5047 they are deleted or answered, and
5048 &quot;Recent&quot; selects all of the messages that have been added to
5049 the folder since you started this Alpine session.
5050 (That's not technically quite true. If there are multiple mail clients
5051 reading an IMAP mailbox, each message will be marked as Recent in only
5052 one of the client's sessions.)
5053 </DD>
5055 <DT>select by siZe</DT>
5056 <DD> Selects messages based on their size being smaller than or larger
5057 than the size you specify.
5058 The size is the number of bytes.
5059 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5060 the number.
5061 For example, 7K is the same as 7000.
5062 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5063 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5064 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5065 and Larger.
5066 </DD>
5068 <DT>select by Keyword</DT>
5069 <DD> Selects messages that either have or do not have
5070 (using the &quot;!&nbsp;Not&quot; command)
5071 a particular <A HREF="h_config_keywords">Keyword</A> set.
5072 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5073 command to select one from your list of keywords.
5075 <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.
5076 </DD>
5078 <DT>select by Rule</DT>
5079 <DD> Selects messages that either match or don't match
5080 (using the &quot;!&nbsp;Not&quot; command)
5081 one of the Rules you have defined.
5082 The most likely method of filling in the Rule is to use the
5083 &quot;^T&nbsp;To&nbsp;List&quot;
5084 command to select one of your Rules.
5085 All of the Rules you have defined will be in the list, including
5086 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5087 They may not all make sense for this purpose, but they are all there for
5088 flexibility.
5089 You might find it useful to define some rules solely for the purpose
5090 of being used by the Select command.
5091 There is a special category for such Rules. They are called Search Rules.
5093 Unfortunately, Alpine does not allow all possible Rules to be defined.
5094 For example, there is no logical OR operation.
5095 OR is accomplished in the Filter Rules or the other types of Rules by
5096 simply defining two rules, one that matches the first part of the OR
5097 and another that matches the second part.
5098 But you can't do that here, since you only have a single Rule to work with.
5099 Likewise, the order of Rules is usually important.
5100 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5101 a message, then that stops the search for a further match.
5102 This means that you may be confused if you try to use Select by Rule to
5103 check your Filter rules because the order is important when filtering but
5104 is not considered here.
5105 </DD>
5107 <DT>select by tHread</DT>
5108 <DD> Selects all of the messages in the current thread.
5109 </DD>
5110 </DL>
5112 After you have an initial selection, the next and subsequent selection
5113 commands modify the selection.
5114 The select command changes. It first gives
5115 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5116 &quot;unselect Current&quot;,
5117 &quot;Broaden selection&quot; (implements a logical OR), and
5118 &quot;Narrow selection&quot; (implements a logical AND).
5119 After you choose either Broaden or Narrow, you then choose one of the
5120 selection criteria listed above (by Text or Number or ...).
5121 You may use select as many times as you wish to get the selected set right.
5124 The WhereIs command has a feature (Ctrl-X) to
5125 select all the messages that match the WhereIs search. WhereIs searches
5126 through just the text that appears on the MESSAGE INDEX screen.
5127 This method is often slower than using the select command itself, unless the
5128 line you are looking for is not too far away in the index.
5131 The availability of the aggregate operations commands is determined by the
5132 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5133 Feature-List option in your Alpine
5134 configuration, which defaults to set.
5135 The features
5136 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5138 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5139 affect the behavior of the Select command.
5142 &lt;End of help on this topic&gt;
5143 </BODY>
5144 </HTML>
5145 ======= h_select_rule =======
5146 <HTML>
5147 <HEAD>
5148 <TITLE>Select: Rule</TITLE>
5149 </HEAD>
5150 <BODY>
5151 <H1>Select: Rule</H1>
5153 You are selecting messages that either match or don't match
5154 one of the Rules you have defined.
5155 You may either type the nickname of the Rule at the prompt, or use the
5156 &quot;^T&nbsp;To&nbsp;List&quot;
5157 command to select one of your Rules.
5158 All of the Rules you have defined will be in the list, including
5159 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5160 They may not all make sense for this purpose, but they are all there for
5161 flexibility.
5162 Rules may be added by using the Setup/Rules screen off of the main Alpine
5163 menu.
5165 Unfortunately, Alpine does not allow all possible Rules to be defined.
5166 For example, there is no logical OR operation.
5167 OR is accomplished in the Filter Rules or the other types of Rules by
5168 simply defining two rules, one that matches the first part of the OR
5169 and another that matches the second part.
5170 But you can't do that here, since you only have a single Rule to work with.
5171 Likewise, the order of Rules is usually important.
5172 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5173 a message, then that stops the search for a further match.
5174 This means that you may be confused if you try to use Select by Rule to
5175 check your Filter rules because the order is important when filtering but
5176 is not considered here.
5179 &lt;End of help on this topic&gt;
5180 </BODY>
5181 </HTML>
5182 ======= h_select_text =======
5183 <HTML>
5184 <HEAD>
5185 <TITLE>Select: Text</TITLE>
5186 </HEAD>
5187 <BODY>
5188 <H1>Select: Text</H1>
5190 You are selecting messages based on the contents of the message.
5191 This allows you to select a set of messages based on whether or not the
5192 message headers or message body contain specified text.
5193 You may look for text in the Subject, the From header,
5194 the To header, or the Cc header.
5195 You may also choose Recipient, which searches for the text in
5196 either the To or the Cc header;
5197 or Participant, which means either the To header, or the Cc header,
5198 or the From header.
5199 Besides those specific header searches, you may also search the entire
5200 header and text of the message with &quot;All Text&quot;, or just the
5201 body of the message with &quot;Body&quot;.
5203 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5204 before typing the specific type of text search.
5205 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5206 search for all messages that do not contain a particular word in their
5207 Subjects.
5209 If you choose a Subject search, you may use the subject from the current
5210 message by typing the &quot;^X Cur Subject&quot; command.
5211 You may then edit it further if you wish.
5212 For example, you might select the subject of a reply and edit the
5213 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5214 the original message being replied to.
5215 All of the other header searches allow you to use addresses from the
5216 headers of the current message if you want to.
5217 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5218 &quot;^W Cur Cc&quot;.
5219 In each case, if there is more than one address, only the first is offered.
5222 &lt;End of help on this topic&gt;
5223 </BODY>
5224 </HTML>
5225 ======= h_select_status =======
5226 <HTML>
5227 <HEAD>
5228 <TITLE>Select: Status</TITLE>
5229 </HEAD>
5230 <BODY>
5231 <H1>Select: Status</H1>
5233 You are selecting messages based on the status of the message.
5234 For example, whether or not the message has been marked Deleted or Important,
5235 or whether or not it has been Answered or is New.
5236 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5237 opposite: not Deleted, not Important, and so on.
5239 If you select Deleted messages, you will get all messages with their
5240 Deleted flag set.
5241 Likewise for Important messages, all messages that you have flagged as
5242 being Important with the
5243 <A HREF="h_common_flag">Flag</A> command.
5244 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5245 because they try to match what you see on the screen by default.
5246 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5247 and Unanswered.
5248 If you have looked at the message, or deleted it, or answered it; then it
5249 is not considered &quot;New &quot;.
5250 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5252 &quot;Answered&quot; is another one that is a little different.
5253 It means that the message has been Answered <EM>and</EM> is not deleted.
5254 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5255 the opposite of &quot;Answered&quot;!
5256 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5257 both Unanswered <EM>and</EM> not deleted.
5259 (The New and Answered options may seem counter-intuitive.
5260 The reason it is done this way is
5261 because, by default, a Deleted message will show up with the &quot;D&quot;
5262 symbol in the MAIL INDEX screen even if it is New or Answered.
5263 The Delete symbol overrides the New and Answered symbols, because you
5264 usually don't care about the message anymore once you've deleted it.
5265 Similarly, you usually only care about whether a message is Answered or
5266 not if it is not Deleted.
5267 Once it is Deleted you've put it out of your mind.)
5269 The other two options were added later because the special nature of the
5270 New flag was not what was wanted by all users.
5271 New does match what you see in the index by default, but if you use
5272 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5273 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5274 be exactly what you expect.
5275 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5276 they are deleted or answered, and
5277 &quot;Recent&quot; selects all of the messages that have been added to
5278 the folder since you started this Alpine session.
5279 (That's not technically quite true. If there are multiple mail clients
5280 reading an IMAP mailbox, each message will be marked as Recent in only
5281 one of the client's sessions.
5282 That behavior can be convenienent for some purposes, like filtering, but
5283 it isn't usually what you expect when selecting.)
5286 &lt;End of help on this topic&gt;
5287 </BODY>
5288 </HTML>
5289 ======= h_index_cmd_apply =======
5290 <HTML>
5291 <HEAD>
5292 <TITLE>Apply Command</TITLE>
5293 </HEAD>
5294 <BODY>
5295 <H1>Apply Command</H1>
5297 Apply
5298 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5299 is the second step of most aggregate operations.  Apply
5300 becomes active any time there is a defined set of selected messages.  The
5301 following commands can be applied to a selected message set: delete,
5302 undelete, reply, forward,
5303 <!--chtml if pinemode="os_windows"-->
5304 <!--chtml else--> 
5305 pipe,
5306 <!--chtml endif-->
5307 print, take address, save, export, bounce, and flag.
5310 The behavior of some of these commands in an aggregate sense is not easy to
5311 explain.  Try them out to see what they do.
5312 The feature
5313 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5314 affects the behavior of the Apply command, as does the feature
5315 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5318 &lt;End of help on this topic&gt;
5319 </BODY>
5320 </HTML>
5321 ======= h_index_cmd_zoom =======
5322 <HTML>
5323 <HEAD>
5324 <TITLE>ZoomMode Command</TITLE>
5325 </HEAD>
5326 <BODY>
5327 <H1>ZoomMode Command</H1>
5329 Another action you might want to take on a set of selected messages is to
5330 zoom in on them.  Like apply, zoom only becomes active when messages have
5331 been selected.
5332 ZoomMode
5333 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5334 is a toggle command that allows you to
5335 zoom-in (and only see the selected messages) and zoom-out (to see all
5336 messages in the folder).  Neither apply nor zoom removes the markings that
5337 define the selected set; you need to use a select command in order
5338 to do that.
5341 &lt;End of help on this topic&gt;
5342 </BODY>
5343 </HTML>
5344 ======= h_index_collapse_expand =======
5345 <HTML>
5346 <HEAD>
5347 <TITLE>Collapse/Expand Command</TITLE>
5348 </HEAD>
5349 <BODY>
5350 <H1>Collapse/Expand Command</H1>
5352 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5353 the folder is sorted by either Threads or OrderedSubject, and the
5354 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5355 is set to something other than &quot;none&quot;.
5356 By default, this command collapses or expands the subthread that starts at
5357 the currently highlighted message, if any.
5358 If the subthread is already collapsed, then this command expands it.
5359 If the subthread is expanded, then this command collapses it.
5360 If there are no more messages below the current message in the
5361 thread tree (that is, there are no replies to the current message) then
5362 this command does nothing.
5365 The behavior of this command is affected by the option
5366 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
5367 Normally, this command Collapses or Expands the subthread that
5368 starts at the currently highlighted message.
5369 If the above option is set, then this command Collapses or Expands the
5370 entire current thread instead of just the subthread.
5371 The current thread is simply the top-level thread that contains the
5372 current message.
5375 &lt;End of help on this topic&gt;
5376 </BODY>
5377 </HTML>
5378 ======= h_index_cmd_sort =======
5379 <HTML>
5380 <HEAD>
5381 <TITLE>Sort Command</TITLE>
5382 </HEAD>
5383 <BODY>
5384 <H1>Sort Command</H1>
5386 In Alpine's generic configuration, messages are presented in the order in
5387 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
5388 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
5389 You can also re-sort the folder on demand with the sort
5390 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
5391 command.
5392 Your sorting options are:
5394 <UL>
5395  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
5396  <LI> <A HREF="h_index_sort_date">D</A>ate
5397  <LI> <A HREF="h_index_sort_subj">S</A>ubject
5398  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
5399  <LI> t<A HREF="h_index_sort_thread">H</A>read
5400  <LI> <A HREF="h_index_sort_from">F</A>rom
5401  <LI> si<A HREF="h_index_sort_size">Z</A>e
5402  <LI> scor<A HREF="h_index_sort_score">E</A>,
5403  <LI> <A HREF="h_index_sort_to">T</A>o
5404  <LI> <A HREF="h_index_sort_cc">C</A>c
5405 </UL>
5408 The Reverse option will toggle the order the index is currently
5409 sorted by, but will not change the relative sort order.
5412 Sorting a folder does not actually rearrange the way the folder is saved,
5413 it just re-arranges how the messages are presented to you.  This means
5414 that Alpine has to do the work of sorting every time you change sort order.
5415 Sometimes, especially with PC-Alpine or with large folders, this could take
5416 a while.
5419 &lt;End of help on this topic&gt;
5420 </BODY>
5421 </HTML>
5422 ======= h_index_sort_default =======
5423 <HTML>
5424 <HEAD>
5425 <TITLE>SORT OPTION: Default</TITLE>
5426 </HEAD>
5427 <BODY>
5428 <H1>SORT OPTION: Default</H1>
5430 The <EM>Default</EM> sort option just means to use the default sort order
5431 set in the
5432 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
5433 option in Setup/Config.
5436 &lt;End of help on this topic&gt;
5437 </BODY>
5438 </HTML>
5439 ======= h_index_sort_arrival =======
5440 <HTML>
5441 <HEAD>
5442 <TITLE>SORT OPTION: Arrival</TITLE>
5443 </HEAD>
5444 <BODY>
5445 <H1>SORT OPTION: Arrival</H1>
5447 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5448 in the order that they exist in the folder.  This is usually the same as the
5449 order in which they arrived.  This option is comparable to not sorting
5450 the messages at all.
5453 &lt;End of help on this topic&gt;
5454 </BODY>
5455 </HTML>
5456 ======= h_index_sort_date =======
5457 <HTML>
5458 <HEAD>
5459 <TITLE>SORT OPTION: Date</TITLE>
5460 </HEAD>
5461 <BODY>
5462 <H1>SORT OPTION: Date</H1>
5464 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5465 according to the date and time they were
5466 sent.
5469 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
5470 identical to sorting by &quot;Arrival&quot;.
5473 &lt;End of help on this topic&gt;
5474 </BODY>
5475 </HTML>
5476 ======= h_index_sort_subj =======
5477 <HTML>
5478 <HEAD>
5479 <TITLE>SORT OPTION: Subject</TITLE>
5480 </HEAD>
5481 <BODY>
5482 <H1>SORT OPTION: Subject</H1>
5484 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5485 by subject. 
5488 Messages with the same subject are
5489 first grouped together, and then the groups of like-subject messages
5490 are arranged alphabetically.
5493 Alpine ignores leading &quot;Re:&quot; and
5494 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
5495 likeness and alphabetical order of subject lines.
5498 &lt;End of help on this topic&gt;
5499 </BODY>
5500 </HTML>
5501 ======= h_index_sort_ordsubj =======
5502 <HTML>
5503 <HEAD>
5504 <TITLE>SORT OPTION: OrderedSubject</TITLE>
5505 </HEAD>
5506 <BODY>
5507 <H1>SORT OPTION: OrderedSubject</H1>
5509 The <EM>OrderedSubject</EM> sort option arranges messages in the
5510 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
5511 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
5514 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
5515 messages by the date of the oldest message in the group.
5518 This sort method provides for pseudo threading of conversations within
5519 a folder.
5520 You may want to try sorting by Thread instead.
5523 &lt;End of help on this topic&gt;
5524 </BODY>
5525 </HTML>
5526 ======= h_index_sort_thread =======
5527 <HTML>
5528 <HEAD>
5529 <TITLE>SORT OPTION: Thread</TITLE>
5530 </HEAD>
5531 <BODY>
5532 <H1>SORT OPTION: Thread</H1>
5534 The <EM>Thread</EM> sort option arranges messages in the
5535 MESSAGE&nbsp;INDEX by grouping all messages that indicate
5536 they are part of a conversation (discussion thread) taking
5537 place within a mailbox or newsgroup.  This indication is
5538 based on information in the message's header -- specifically
5539 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
5542 &lt;End of help on this topic&gt;
5543 </BODY>
5544 </HTML>
5545 ======= h_index_sort_from =======
5546 <HTML>
5547 <HEAD>
5548 <TITLE>SORT OPTION: From</TITLE>
5549 </HEAD>
5550 <BODY>
5551 <H1>SORT OPTION: From</H1>
5553 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5554 by the name of the author of the message.
5557 Messages with the same author are grouped together. Groups of
5558 messages are then put into alphabetical order according to message
5559 author.
5562 &lt;End of help on this topic&gt;
5563 </BODY>
5564 </HTML>
5565 ======= h_index_sort_size =======
5566 <HTML>
5567 <HEAD>
5568 <TITLE>SORT OPTION: Size</TITLE>
5569 </HEAD>
5570 <BODY>
5571 <H1>SORT OPTION: Size</H1>
5573 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5574 by their relative sizes.
5577 &lt;End of help on this topic&gt;
5578 </BODY>
5579 </HTML>
5580 ======= h_index_sort_score =======
5581 <HTML>
5582 <HEAD>
5583 <TITLE>SORT OPTION: Score</TITLE>
5584 </HEAD>
5585 <BODY>
5586 <H1>SORT OPTION: Score</H1>
5588 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
5589 by their scores.
5592 Messages with the same score are sorted in arrival order.
5593 Scores are something you create using the
5594 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
5597 &lt;End of help on this topic&gt;
5598 </BODY>
5599 </HTML>
5600 ======= h_index_sort_to =======
5601 <HTML>
5602 <HEAD>
5603 <TITLE>SORT OPTION: To</TITLE>
5604 </HEAD>
5605 <BODY>
5606 <H1>SORT OPTION: To</H1>
5608 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
5609 by the names of the recipients of the message.
5612 Messages with the same recipients are grouped together. Groups of
5613 messages are then put into alphabetical order according to message
5614 recipients.
5617 &lt;End of help on this topic&gt;
5618 </BODY>
5619 </HTML>
5620 ======= h_index_sort_cc =======
5621 <HTML>
5622 <HEAD>
5623 <TITLE>SORT OPTION: Cc</TITLE>
5624 </HEAD>
5625 <BODY>
5626 <H1>SORT OPTION: Cc</H1>
5628 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
5629 the names of the carbon copy addresses of the message.
5632 &lt;End of help on this topic&gt;
5633 </BODY>
5634 </HTML>
5635 ======= h_index_cmd_whereis =======
5636 <HTML>
5637 <HEAD>
5638 <TITLE>WhereIs Command</TITLE>
5639 </HEAD>
5640 <BODY>
5641 <H1>WhereIs Command</H1>
5643 The WhereIs
5644 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
5645 command lets you search the MESSAGE INDEX for a word.
5646 It scans through whatever you see, usually the name of the author
5647 and the Subject line.
5648 WhereIs has special subcommands to let you find the beginning of the
5649 index (Ctrl-Y -- first message)
5650 or the end of the index (Ctrl-V -- last message).
5652 Note that WhereIs only searches through the visible text on the screen.
5653 For example, if only part of the Subject of a message is shown because it
5654 is long, then only the visible portion of the Subject is searched.
5655 Also note that WhereIs does not &quot;see&quot; the 
5656 &quot;X&quot; in column one of Index entries for selected messages
5657 so it can't be used to search for
5658 selected messages (use &quot;Zoom&quot; instead).
5660 If the feature
5661 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5662 is turned on,
5663 WhereIs can also be used as a quick way to select messages that match the
5664 string being searched for.
5665 Instead of typing carriage return to search for the next match, type
5666 Ctrl-X to select all matches.
5667 Once again, this only selects matches that are (or would be if the right
5668 index line was on the screen) visible.
5669 Truncated From lines or Subjects will cause matches to be missed.
5670 Although WhereIs is sometimes convenient for quick matching, the Select
5671 command is usually more powerful and usually faster.
5674 &lt;End of help on this topic&gt;
5675 </BODY>
5676 </HTML>
5677 ======= h_view_cmd_whereis =======
5678 <HTML>
5679 <HEAD>
5680 <TITLE>WhereIs Command</TITLE>
5681 </HEAD>
5682 <BODY>
5683 <H1>WhereIs Command</H1>
5685 The WhereIs
5686 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
5687 command does a &quot;find in current message&quot; operation.  You
5688 type in text and Alpine will try to find it in the message you are
5689 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
5690 or end (Ctrl-V) of the message.
5691 That is, to rapidly move to the end of a message, hit the 
5692 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5693 (or Ctrl-W) key followed
5694 by Ctrl-V.  Similarly,
5695 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5696 followed by Ctrl-Y will take you to the beginning of a message.
5699 &lt;End of help on this topic&gt;
5700 </BODY>
5701 </HTML>
5702 ======= h_view_cmd_hilite =======
5703 <HTML>
5704 <HEAD>
5705 <TITLE>View Hilite and Next item/Previous item</TITLE>
5706 </HEAD>
5707 <BODY>
5708 <H1>View Hilite and Next item/Previous item</H1>
5710 Sometimes messages may be in the form of formatted HTML text
5711 or they may contain URLs or Web server hostnames.
5712 When any of the features
5713 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
5714 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
5715 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
5717 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
5718 are enabled, Alpine will represent such selectable items in the text
5719 in bold typeface.  One of the selectable items will be displayed in
5720 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
5721 Press the Return key to view the currently selected item.
5724 The Up and Down Arrows keys can be used to change the selected item
5725 (also see the feature
5726 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
5727 If there are no selectable items in the direction of the arrow you
5728 pressed, Alpine will scroll the display in that direction until one
5729 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
5730 items in the message text, use the Previous and Next item commands,
5731 <!--chtml if pinemode="function_key"-->F5 and F6
5732 <!--chtml else-->^B and ^F<!--chtml endif-->.
5735 &lt;End of help on this topic&gt;
5736 </BODY>
5737 </HTML>
5738 ======= h_view_cmd_viewattch =======
5739 <HTML>
5740 <HEAD>
5741 <TITLE>ViewAttch Command</TITLE>
5742 </HEAD>
5743 <BODY>
5744 <H1>ViewAttch Command</H1>
5747 The View/Save Attachment
5748 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
5749 command allows you to handle MIME attachments to a message you have
5750 received.  Alpine shows you a list of the message attachments -- you just
5751 choose the attachment you want.  You may either view or save the
5752 selected attachment.
5755 Because many attachments require external programs for display, there
5756 is some system configuration that has to happen before you can
5757 actually display attachments.  Hopefully much of that will have been
5758 done already by your system administrator.  MIME configuration is
5759 handled with the &quot;mailcap&quot; configuration file.  (See the section 
5760 on configuration in the
5761 <A HREF="h_news">release notes</A> for more information.)
5764 &lt;End of help on this topic&gt;
5765 </BODY>
5766 </HTML>
5767 ======= h_index_cmd_expunge =======
5768 <HTML>
5769 <HEAD>
5770 <TITLE>Expunge/Exclude Command</TITLE>
5771 </HEAD>
5772 <BODY>
5773 <H1>Expunge/Exclude Command</H1>
5775 Expunge/Exclude
5776 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
5777 is the command Alpine uses to actually remove all messages
5778 marked for deletion.  With regular email files, expunge literally deletes
5779 the text from the current folder.  With newsgroups or shared mailboxes,
5780 you don't have permission to actually remove the message, so it is an
5781 exclude -- Alpine removes the message from your view of the folder even
5782 though it is not technically gone.
5784 <P> A selective expunge command is available in IMAP folders that support 
5785 the UID EXPUNGE extension in <A 
5786 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
5787 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
5788 as a subcommand of the apply command. If some selected messages are marked 
5789 deleted, then the apply command will offer the eXpunge command, which when 
5790 executed will only expunge those messages that are selected and deleted.
5792 <P> 
5793 Observe that the expunge command (when not used from the apply command) 
5794 will expunge/exclude all deleted messages from the folder, and so all 
5795 messages marked deleted will be expunged, regardless of if they are 
5796 selected or not. In other words, there is no protection against 
5797 potentially expunging more messages than only those that have been 
5798 selected and deleted.
5801 The configuration features
5802 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
5804 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
5805 affect the behavior of the Expunge command.
5808 &lt;End of help on this topic&gt;
5809 </BODY>
5810 </HTML>
5811 ======= h_common_compose =======
5812 <HTML>
5813 <HEAD>
5814 <TITLE>Compose Command</TITLE>
5815 </HEAD>
5816 <BODY>
5817 <H1>Compose Command</H1>
5819 The Compose command takes you into the Alpine message composer where you
5820 can start a new message for sending.  This is where you type in the
5821 message's text and specify its recipient list (the &quot;To:&quot;
5822 address), where copies should be directed (e.g., &quot;Fcc&quot;,
5823 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
5824 be attached to the message.
5827 When you type this command, Alpine will also automatically check for any
5828 interrupted (i.e., a message that was being composed when your modem
5829 or network connection was broken) or previously postponed messages and
5830 offer you a chance to continue working on those.
5833 <UL>   
5834 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5835 </UL><P>
5836 &lt;End of help on this topic&gt;
5837 </BODY>
5838 </HTML>
5839 ======= h_common_index =======
5840 <HTML>
5841 <HEAD>
5842 <TITLE>Message Index Command</TITLE>
5843 </HEAD>
5844 <BODY>
5845 <H1>Message Index Command</H1>
5847 The Index command takes you to the MESSAGE INDEX screen that displays a
5848 summary caption for each message in the currently-open folder. One
5849 message will be highlighted; this is the &quot;Current&quot; message.
5850 The message commands available from this screen (e.g. View, Reply,
5851 Forward, Delete, Print, Save, etc) apply to the current message.
5854 &lt;End of help on this topic&gt;
5855 </BODY>
5856 </HTML>
5857 ======= h_common_folders =======
5858 <HTML>
5859 <HEAD>
5860 <TITLE>Folder List Command</TITLE>
5861 </HEAD>
5862 <BODY>
5863 <H1>Folder List Command</H1>
5865 This Folder List command takes you to the FOLDER LIST screen that displays
5866 the names of all your message folders and allows you to view, rename,
5867 delete, and add folders.  You can open (view) a different folder than the
5868 one currently open by highlighting the desired one (using the arrow keys
5869 or their control-key equivalents) and pressing RETURN.
5872 If you have multiple folder collections defined (see the Help text for
5873 the FOLDER LIST screen to learn more about Collections), you may need
5874 to press Return to expand the collection and display all of the
5875 folders in it.
5878 &lt;End of help on this topic&gt;
5879 </BODY>
5880 </HTML>
5881 ======= h_main_addrbook =======
5882 <HTML>
5883 <HEAD>
5884 <TITLE>Address Book Command</TITLE>
5885 </HEAD>
5886 <BODY>
5887 <H1>Address Book Command</H1>
5889 This command, available only from the MAIN MENU, takes you
5890 to the ADDRESS BOOK management screen.  From here, your personal address
5891 book(s) may be updated.
5894 &lt;End of help on this topic&gt;
5895 </BODY>
5896 </HTML>
5897 ======= h_main_setup =======
5898 <HTML>
5899 <HEAD>
5900 <TITLE>Setup Command</TITLE>
5901 </HEAD>
5902 <BODY>
5903 <H1>Setup Command</H1>
5905 The Setup command, available only from the MAIN MENU, prompts you for
5906 one of several configuration screens, including the SETUP CONFIGURATION 
5907 screen, by which you may activate optional Alpine features.
5910 &lt;End of help on this topic&gt;
5911 </BODY>
5912 </HTML>
5913 ======= h_main_release_notes =======
5914 <HTML>
5915 <HEAD>
5916 <TITLE>Release Notes Command</TITLE>
5917 </HEAD>
5918 <BODY>
5919 <H1>Release Notes Command</H1>
5921 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
5922 as well as pointers to further information such as history and legal notes.
5925 &lt;End of help on this topic&gt;
5926 </BODY>
5927 </HTML>
5928 ======= h_main_kblock =======
5929 <HTML>
5930 <HEAD>
5931 <TITLE>Keyboard Lock Command</TITLE>
5932 </HEAD>
5933 <BODY>
5934 <H1>Keyboard Lock Command</H1>
5936 This command allows your Alpine session to be protected
5937 during a temporary absence from your terminal.
5940 &lt;End of help on this topic&gt;
5941 </BODY>
5942 </HTML>
5943 ======= h_main_journal =======
5944 <HTML>
5945 <HEAD>
5946 <TITLE>Journal Command</TITLE>
5947 </HEAD>
5948 <BODY>
5949 <H1>Journal Command</H1>
5951 This command displays a list of all the status messages Alpine has
5952 displayed (on the third line from the bottom of the screen). This may
5953 be useful if a message disappeared before you had a chance to read it.
5956 &lt;End of help on this topic&gt;
5957 </BODY>
5958 </HTML>
5959 ======= h_common_role =======
5960 <HTML>
5961 <HEAD>
5962 <TITLE>Role Command</TITLE>
5963 </HEAD>
5964 <BODY>
5965 <H1>Role Command</H1>
5967 The Role command is similar to the Compose command except that it starts
5968 off by letting you select a <A HREF="h_rules_roles">role</A>
5969 to be used for the composition.
5970 You may set up alternate roles by using Setup/Rules/Roles.
5973 &lt;End of help on this topic&gt;
5974 </BODY>
5975 </HTML>
5976 ======= h_common_conditional_cmds =======
5977 <HTML>
5978 <HEAD>
5979 <TITLE>Conditional Commands</TITLE>
5980 </HEAD>
5981 <BODY>
5982 <H1>Conditional Commands</H1>
5984 The presence or absence of certain commands, particularly in the
5985 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
5986 whether or not specific features are set in your Alpine configuration.  
5987 (You can access the SETUP CONFIGURATION screen, where they are found, from 
5988 Alpine's MAIN MENU.)  To see if a desired command's availability is
5989 conditioned on a feature setting, see the command's help text (highlight
5990 the phrase associated with the command and hit Return).
5993 Also note that some
5994 commands may be administratively disabled by your system manager;
5995 if they don't work, please check with your local help desk.
5998 <UL>   
5999 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6000 </UL><P>
6001 &lt;End of help on this topic&gt;
6002 </BODY>
6003 </HTML>
6004 ======= h_common_pipe =======
6005 <HTML>
6006 <HEAD>
6007 <TITLE>Pipe Command</TITLE>
6008 </HEAD>
6009 <BODY>
6010 <H1>Pipe Command</H1>
6012 Pipe
6013 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6014 allows you to send a message to a specified Unix command for external
6015 processing.
6016 This command's availability is controlled by the
6017 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6018 feature.
6019 By default, the processed text of the message is sent to the command
6020 you specify and the output is captured by Alpine and shown to you.
6021 When you run the pipe command, there are some sub-commands which may be
6022 used to alter this behavior.
6023 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6026 &lt;End of help on this topic&gt;
6027 </BODY>
6028 </HTML>
6029 ======= h_common_goto =======
6030 <HTML>
6031 <HEAD>
6032 <TITLE>Goto Command</TITLE>
6033 </HEAD>
6034 <BODY>
6035 <H1>Goto Command</H1>
6037 Goto
6038 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6039 is the command that lets you bypass Alpine's folder selection screens
6040 and jump directly to a new folder.  You can select any folder in the
6041 world: one in your current collection, one in a different collection or
6042 one in a collection you've never even used before.
6045 Alpine will help you as much as possible to narrow in on the folder you want.
6046 However, if the folder is outside of your defined collections, you are
6047 going to have to enter the exact folder location using the correct
6048 <A HREF="h_valid_folder_names">syntax</A>
6049 for a remote folder and/or fully-qualified path name.
6052 &lt;End of help on this topic&gt;
6053 </BODY>
6054 </HTML>
6055 ======= h_common_nextnew =======
6056 <HTML>
6057 <HEAD>
6058 <TITLE>NextNew Command</TITLE>
6059 </HEAD>
6060 <BODY>
6061 <H1>NextNew Command</H1>
6063 When you press the TAB key, Alpine advances to the next
6064 &quot;interesting&quot; message.
6065 This will be the next message you have not seen before, or the next message
6066 you have flagged Important, whichever comes first.
6067 Unread messages that have been deleted are not considered interesting.
6068 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6069 articles after you have read them if you want to remove them from future
6070 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6071 more information.)
6074 The NextNew command is affected by the feature
6075 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6076 which causes Alpine to only consider Unread messages interesting, not messages
6077 flagged Important.
6080 This command behaves a little differently when it finds there are no more
6081 interesting messages left in the current folder.
6082 If the current folder is one of your Incoming Message Folders
6083 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6084 or it is a newsgroup, then Alpine will try to find the next folder or
6085 newsgroup that contains <EM>Recent</EM> messages and will ask you
6086 if you want to open that folder.
6087 This behavior may be modified by using the
6088 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6089 feature that causes Alpine to look for Unseen messages instead of Recent
6090 messages.
6091 The NextNew command's behavior is also affected by the configuration features
6092 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6094 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6097 &lt;End of help on this topic&gt;
6098 </BODY>
6099 </HTML>
6100 ======= h_common_jump =======
6101 <HTML>
6102 <HEAD>
6103 <TITLE>Jump Command</TITLE>
6104 </HEAD>
6105 <BODY>
6106 <H1>Jump Command</H1>
6108 This is Alpine's way of allowing you to go straight to a specific message.
6109 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6110 configured such that typing in any number automatically jumps you to that
6111 message 
6112 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6113 in the SETUP CONFIGURATION).
6116 &lt;End of help on this topic&gt;
6117 </BODY>
6118 </HTML>
6119 ======= h_common_flag =======
6120 <HTML>
6121 <HEAD>
6122 <TITLE>Flag Command</TITLE>
6123 </HEAD>
6124 <BODY>
6125 <H1>Flag Command</H1>
6127 Flag
6128 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6129 is the command that allows users to manipulate the status flags that
6130 appear on the left side of the MESSAGE INDEX screen.  The most common
6131 use of this is to mark a message as important. This is something of a
6132 note to yourself to get back to that message.  You may also use the
6133 flag command to set (or unset) the flags that indicate that a message
6134 is new, answered, deleted, or forwarded.<P>
6136 Provided the mail server supports it,
6137 you may also manipulate user-defined keywords
6138 for a message using the flag command.
6139 These keywords will be available if you use the Flag Details screen that you
6140 can get to after typing the
6141 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6142 command.
6143 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6144 which are always present.
6145 You may add new keywords by using the Add KW command from the Flag Details screen
6146 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6148 The availability of the flag command is determined by the
6149 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6150 feature in your Alpine configuration. Also, it is possible that Flag could be
6151 administratively disabled by your system manager; if it doesn't work,
6152 please check with your local help desk before reporting a bug.
6153 The behavior of the flag command may be modified by the
6154 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6155 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6158 &lt;End of help on this topic&gt;
6159 </BODY>
6160 </HTML>
6161 ======= h_common_hdrmode =======
6162 <HTML>
6163 <HEAD>
6164 <TITLE>HdrMode Command</TITLE>
6165 </HEAD>
6166 <BODY>
6167 <H1>HdrMode Command</H1>
6169 Every email message comes with some header lines that you normally
6170 don't see (and don't want to see).
6171 These include anywhere from 3-20 lines (or more) added by the
6172 Internet mail transport system to record the route your message took,
6173 for diagnostic purposes.
6174 These are normally of no import and simply
6175 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6176 This also includes other non-standard headers the message may contain.
6177 If you want to see these headers, there is a way to reveal them.
6180 The Header Mode
6181 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6182 command is a toggle that controls Alpine's handling of these header
6183 lines.  Normally, full headers is &quot;off&quot; and you only see a
6184 few lines about who a message is to and who it is from.  When you
6185 press
6186 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6187 to turn full headers on, Alpine will show you
6188 the normal header lines as well as delivery headers, comment headers,
6189 MIME headers, and any other headers present.
6192 Several different Alpine commands honor the header mode -- it affects how
6193 messages are displayed, how they appear in forward and reply email, how
6194 they are printed, how they are saved, and how they are exported.
6195 <!--chtml if pinemode="os_windows"-->
6196 <!--chtml else--> 
6197 The pipe command is also affected.
6198 <!--chtml endif-->
6201 The presence or absence of the Header Mode command is determined by the
6202 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6203 Feature-List option in your Alpine configuration.
6206 If you have also turned on the
6207 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6208 option then the HdrMode command actually rotates through three states
6209 instead of just two.
6210 The first is the normal view with long quotes suppressed.
6211 The second is the normal view but with the long quotes included.
6212 The last enables the display of all headers in the message.
6213 When using Export, Pipe, Print, Forward, or Reply the quotes are
6214 never suppressed, so the first two states are identical.
6217 The behavior of the Header Mode command may be altered slightly by
6218 turning on the
6219 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6220 Feature-List option in your Alpine configuration.
6221 In particular, it will cause the Header Mode to be persistent when moving
6222 from message to message instead of resetting to the default for each message.
6225 <UL>   
6226 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6227 </UL><P>
6228 &lt;End of help on this topic&gt;
6229 </BODY>
6230 </HTML>
6231 ======= h_common_print =======
6232 <HTML>
6233 <HEAD>
6234 <TITLE>Print Command</TITLE>
6235 </HEAD>
6236 <BODY>
6237 <H1>Print Command</H1>
6239 The Print
6240 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6241 command allows you to print a copy of a message.
6242 There are many SETUP CONFIGURATION features that affect the
6243 Print command, including
6244 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6245 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6246 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6247 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6248 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6249 You set up for printing by using the Printer option of the Setup command
6250 on the MAIN MENU.
6254 &lt;End of help on this topic&gt;
6255 </BODY>
6256 </HTML>
6257 ======= h_common_take =======
6258 <HTML>
6259 <HEAD>
6260 <TITLE>TakeAddr Command</TITLE>
6261 </HEAD>
6262 <BODY>
6263 <H1>TakeAddr Command</H1>
6266 With the Take Address
6267 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6268 command, you can extract email addresses from an
6269 incoming message and save them in an address book.  This is an easy way
6270 to add to your address book and avoid having to remember the email
6271 addresses of the people who write to you.
6274 If the message is just to you individually, then you will only need to
6275 provide a nickname.  If the message contains more than one email address,
6276 then you will see an address
6277 selection screen that lets you choose the address you want to save into
6278 your address book, or lets you choose several of them add to a
6279 personal distribution list.
6282 Once you've added an entry to your address book, you can use it from the
6283 message composer by typing the nickname of the entry into one of the
6284 header fields (for example, into the To: field), or you can use ^T from
6285 the header field to select the entry from your address book.
6288 If the configuration feature
6289 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6290 is set, the behavior of the Take command is altered slightly.
6293 &lt;End of help on this topic&gt;
6294 </BODY>
6295 </HTML>
6296 ======= h_ge_import =======
6297 <HTML>
6298 <HEAD>
6299 <TITLE>Import File Selection</TITLE>
6300 </HEAD>
6301 <BODY>
6302 <H1>Import File Selection</H1>
6304 You are importing a file that you previously
6305 exported from Alpine.
6306 You are now being asked for the name of that file.
6307 The easiest way to select a file is probably with the &quot;^T&quot;
6308 &quot;To Files&quot; command.
6309 Alternatively, you may type in a file name.
6310 It may be an absolute pathname.
6311 Otherwise, it is a file located in your home directory
6312 or current working directory
6313 <!--chtml if pinemode="running"-->
6314 (which, at least for your current Alpine &quot;session,&quot; 
6315 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6316 <!--chtml endif-->, depending on the
6317 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6318 In any case, you finish by typing a carriage return to accept the
6319 file name that is displayed.
6320 When the feature
6321 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6322 is turned on you may use TAB to complete partially typed in names.
6324 You may cancel the import operation by typing &quot;^C&quot; after exiting
6325 this help.
6327 &lt;End of help on this topic&gt;
6328 </BODY>
6329 </HTML>
6330 ======= h_ge_allparts =======
6331 <HTML>
6332 <HEAD>
6333 <TITLE>Export Message File Selection</TITLE>
6334 </HEAD>
6335 <BODY>
6336 <H1>Export Message File Selection</H1>
6338 You are Exporting a message from an Alpine mail folder
6339 to a plain text file.
6340 You also have the option of exporting all of the attachments associated
6341 with the message.
6342 You are now being asked for the name of the file to export <EM>to</EM>.
6343 The easiest way to select a file is probably with the &quot;^T&quot;
6344 &quot;To Files&quot; subcommand.
6345 After returning from that subcommand you will still be allowed to
6346 edit the name you have selected.
6347 Alternatively, you may type in a file name.
6348 It may be an absolute pathname.
6349 Otherwise, it is a file located in your home directory
6350 or current working directory
6351 <!--chtml if pinemode="running"-->
6352 (which, at least for your current Alpine &quot;session,&quot; 
6353 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6354 <!--chtml endif-->, depending on the
6355 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6356 In any case, you finish by typing a carriage return to accept the
6357 file name that is displayed.
6358 When the feature
6359 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6360 is turned on you may use TAB to complete partially typed in names.
6362 The message you are exporting appears to have some attachments.
6363 If you wish to save <EM>all</EM> of the attachments at once,
6364 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
6365 saving of the attachments.
6366 You may turn it back off by typing &quot;^P&quot; again, which will now
6367 be labeled &quot;NoAllParts&quot; instead.
6368 If you want to save the parts the command displayed should be
6369 &quot;NoAllParts&quot;!
6370 When you choose to save attachments like this, the attachments will be saved
6371 in a newly created directory.
6372 That directory will have the same name as the file name you choose here,
6373 with the letters &quot;.d&quot; appended.
6374 If that directory already exists, then the letters &quot;.d_1&quot; will
6375 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
6376 is found.
6377 For example, if you select the file name
6379 <CENTER><SAMP>filename</SAMP></CENTER>
6381 to export the message to, then the directory used for the attachments will be
6383 <CENTER><SAMP>filename.d</SAMP></CENTER>
6385 or perhaps
6387 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
6389 The attachments will then be put into files inside that directory.
6390 The names for the attachment files will be derived from the attachments
6391 if possible.
6392 This is done in the same way as the default values are derived if you
6393 save them one at a time.
6394 (The &quot;filename&quot; parameter from the Content-Disposition header
6395 is the first choice. If that doesn't exist, the &quot;name&quot;
6396 parameter from the Content-Type header is used.)
6397 If a name for a particular attachment is not available, then the
6398 part number of the attachment is used, with the characters &quot;part_&quot;
6399 prepended.
6400 An example of that would be
6402 <CENTER><SAMP>part_2.1</SAMP></CENTER>
6404 If you want to save only some of the attachments or if you want more control
6405 over the directory and filename where an attachment is saved you may
6406 cancel out of this command and View the attachment list.
6407 From there you can save each attachment individually.
6409 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6410 this help.
6412 &lt;End of help on this topic&gt;
6413 </BODY>
6414 </HTML>
6415 ======= h_ge_export =======
6416 <HTML>
6417 <HEAD>
6418 <TITLE>Export File Selection</TITLE>
6419 </HEAD>
6420 <BODY>
6421 <H1>Export File Selection</H1>
6423 You are Exporting or Saving something from within the Alpine world
6424 (a message, an attachment, etc.)
6425 to a plain text file.
6426 You are now being asked for the name of the file to export <EM>to</EM>.
6427 The easiest way to select a file is probably with the &quot;^T&quot;
6428 &quot;To Files&quot; subcommand.
6429 After returning from that subcommand you will still be allowed to
6430 edit the name you have selected.
6431 Alternatively, you may type in a file name.
6432 It may be an absolute pathname.
6433 Otherwise, it is a file located in your home directory
6434 or current working directory
6435 <!--chtml if pinemode="running"-->
6436 (which, at least for your current Alpine &quot;session,&quot; 
6437 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6438 <!--chtml endif-->, depending on the
6439 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6440 In any case, you finish by typing a carriage return to accept the
6441 file name that is displayed.
6442 When the feature
6443 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6444 is turned on you may use TAB to complete partially typed in names.
6446 If the object you are exporting is a message with some attachments,
6447 you may wish to save all of the attachments by typing the &quot;^P&quot;
6448 &quot;AllParts&quot; command to turn on saving of the attachments.
6449 This subcommand will only be visible if the message actually has attachments.
6450 You may also View the attachment list and save individual attachments from
6451 there.
6453 You may cancel the Export operation by typing &quot;^C&quot; after exiting
6454 this help.
6456 &lt;End of help on this topic&gt;
6457 </BODY>
6458 </HTML>
6459 ======= h_common_save =======
6460 <HTML>
6461 <HEAD>
6462 <TITLE>Save and Export Commands</TITLE>
6463 </HEAD>
6464 <BODY>
6465 <H1>Save and Export Commands</H1>
6467 Save
6468 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
6469 and Export
6470 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
6471 are the two alternatives Alpine gives you to keep a copy of the message
6472 you are reading. If you want to keep the message within Alpine's email
6473 world, use &quot;Save&quot;; if you want to use the message in another
6474 program, use &quot;Export&quot;.
6477 When you Save a message, it is put into an existing folder or into a new
6478 folder in one of your existing folder collections.  The message stays in
6479 email format and can be read by Alpine again.  Alpine may use a special format
6480 for its mail folders -- never edit an Alpine folder by hand or with any
6481 program other than Alpine.  The exact behavior of the Save command can be
6482 configured with the
6483 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
6484 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
6485 and 
6486 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
6487 feature list settings.
6488 The name of the folder offered as a default is controlled by the option
6489 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
6492 When you use Export, the message is placed in a plain text file in your
6493 home directory 
6494 <!--chtml if pinemode="running"-->
6495 (which, in the present configuration of your system, is
6496  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
6497 <!--chtml endif-->
6498 or current working directory
6499 <!--chtml if pinemode="running"-->
6500 (which, at least for your current Alpine &quot;session,&quot; 
6501 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6502 <!--chtml endif-->, depending on the
6503 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
6504 configuration setting.  In the normal case, only minimal
6505 headers are exported with the message; however, if the full header mode 
6506 (whose availability may be disabled  by setting the feature 
6507 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6508 in SETUP CONFIGURATION) is
6509 toggled on, then complete headers are exported along with the message
6510 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
6511 defined, they may affect the contents of the exported file.)
6514 &lt;End of help on this topic&gt;
6515 </BODY>
6516 </HTML>
6517 ======= h_common_bounce =======
6518 <HTML>
6519 <HEAD>
6520 <TITLE>Bounce Command</TITLE>
6521 </HEAD>
6522 <BODY>
6523 <H1>Bounce Command</H1>
6525 The Bounce 
6526 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
6527 command allows you to re-send, or &quot;remail&quot;, a
6528 message, as if you were never in the loop.  It is analogous to crossing
6529 out your address on a postal letter, writing a different address on the
6530 envelope, and putting it into the mailbox. Bounce is used primarily to
6531 redirect email that was sent to you in error.
6532 Also, some owners of email
6533 lists need the bounce command to handle list traffic.
6534 Bounce is not anonymous.
6535 A ReSent-From header is added to the message so that the recipient may
6536 tell that you Bounced it to them.
6539 The presence or absence of the Bounce command is determined by the
6540 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
6541 feature in your Alpine configuration.
6542 The feature
6543 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
6544 affects the behavior of the Bounce command.
6545 Also, it is possible that Bounce could be
6546 administratively disabled by your system manager; if it doesn't work,
6547 please check with your local help desk before reporting a bug.
6550 &lt;End of help on this topic&gt;
6551 </BODY>
6552 </HTML>
6553 ======= h_common_reply =======
6554 <HTML>
6555 <HEAD>
6556 <TITLE>Reply and Forward Commands</TITLE>
6557 </HEAD>
6558 <BODY>
6560 <H1>Reply and Forward Commands</H1>
6562 Replying 
6563 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
6564 and Forwarding 
6565 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
6566 are your two alternatives for following up on the
6567 message you are reading.  You would use reply if you want to get email
6568 back to the author of the message and/or the other people who have
6569 already seen it.  You use forward if you want somebody new to see the
6570 message.
6573 In the normal case, the only thing that you must supply when forwarding a
6574 message is the name/email address of the new recipient.
6575 Alpine will include the text of the forwarded message.
6576 Alpine will also include any attachments to the message.
6577 There is space above the forwarded text for you to include additional comments.
6580 When replying, you usually have to answer some questions.
6581 If the message is to multiple people and/or specified with a Reply-To: header,
6582 then you will have to decide who should get the reply.
6583 You also need to decide whether or not to include the previous
6584 message in your reply.
6585 Some of this is configurable.
6586 Specifically, see the
6587 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
6588 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
6589 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
6591 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
6592 configuration features.
6595 Both the Reply and Forward commands react to the full header mode toggle.
6596 If the full header mode is on, then all the header and delivery lines are
6597 included with the text of the message in your reply/forward.
6600 Other configuration features that affect the Reply command are
6601 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
6602 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
6603 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
6606 &lt;End of help on this topic&gt;
6607 </BODY>
6608 </HTML>
6609 ======= h_common_delete =======
6610 <HTML>
6611 <HEAD>
6612 <TITLE>Delete and Undelete Commands</TITLE>
6613 </HEAD>
6614 <BODY>
6615 <H1>Delete and Undelete Commands</H1>
6617 Delete 
6618 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
6619 and Undelete 
6620 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
6621 allow you to change the Deleted flag for the current message.
6622 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
6623 removes the mark.
6624 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
6625 at the left hand edge of the index line.
6626 When viewing a deleted message, the letters &quot;DEL&quot; will be present
6627 in the upper right hand corner of the screen.
6628 Delete simply <EM>marks</EM> a message Deleted, it does not actually
6629 get rid of the message.
6630 The eXpunge command (available from the MESSAGE INDEX screen) actually
6631 removes all of the deleted messages in a folder.
6632 Once a message is eXpunged, it can't be retrieved.
6635 The Delete command is affected by the setting of the configuration feature
6636 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
6639 &lt;End of help on this topic&gt;
6640 </BODY>
6641 </HTML>
6642 ======= h_common_postpone =======
6643 <HTML>
6644 <HEAD>
6645 <TITLE>Postpone Command</TITLE>
6646 </HEAD>
6647 <BODY>
6648 <H1>Postpone Command</H1>
6650 The postpone
6651 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
6652 command allows you to temporarily stop working on the current
6653 message so you may read
6654 other messages or compose another message.  When you want to resume a
6655 message later, start to compose and answer &quot;yes&quot; to the
6656 &quot;Continue postponed composition?&quot; question.  You may
6657 postpone as many messages as you like.
6660 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
6661 in the Setup/Config screen, then the Postpone command will prompt you for
6662 the folder in which to store your outgoing message.
6665 &lt;End of help on this topic&gt;
6666 </BODY>
6667 </HTML>
6668 ======= h_compose_cancel =======
6669 <HTML>
6670 <HEAD>
6671 <TITLE>Cancel Command</TITLE>
6672 </HEAD>
6673 <BODY>
6674 <H1>Cancel Command</H1>
6676 Cancel
6677 <!--chtml if pinemode="function_key"-->
6678 (F2)
6679 <!--chtml else-->
6680 (^C) 
6681 <!--chtml endif-->
6683 The Cancel command returns you to Alpine's normal mail processing and
6684 causes the message currently under composition to be thrown out.
6685 The message text <EM>will be lost</EM>.
6688 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
6689 will be preserved in the file named
6690 <!--chtml if pinemode="os_windows"-->
6691 &quot;DEADLETR&quot;.
6692 <!--chtml else-->
6693 &quot;dead.letter&quot; in your home directory.
6694 <!--chtml endif-->
6695 If you unintentionally cancel a message, look there for its text.
6698 &lt;End of help on this topic&gt;
6699 </BODY>
6700 </HTML>
6701 ======= h_compose_addrcomplete =======
6702 <HTML>
6703 <HEAD>
6704 <TITLE>Address Completion</TITLE>
6705 </HEAD>
6706 <BODY>
6707 <H1>Address Completion</H1>
6709 When entering addresses in the address fields of the composer (To, Cc, etc.)
6710 the TAB key may be used to help complete the address.
6711 Type a partial nickname and tap the TAB key to complete the typing.
6712 The unambiguous part of the name will be filled in automatically.
6713 Typing TAB twice in succession will bring up a selection list of possibilities,
6714 making it easy to find and choose the correct address.
6717 The matching algorithm is rather ad hoc.
6718 The search starts with a search of your address book.
6719 It counts as a match if the nickname, address, or fullname field of an
6720 entry begins with the text typed in so far. It is also a match if
6721 a later word in the fullname (for example, the middle name or last name)
6722 begins with the entered text.
6724 Next comes an LDAP search.
6725 The search will happen for any servers that have the
6726 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
6727 feature set. You can set or unset the feature for each server independently
6728 in the Setup/Directory screen.
6730 Finally, if you are replying to or forwarding a message, that message is
6731 searched for likely candidate addresses that match the typed-in text.
6734 &lt;End of help on this topic&gt;
6735 </BODY>
6736 </HTML>
6737 ======= h_compose_richhdr =======
6738 <HTML>
6739 <HEAD>
6740 <TITLE>Rich Header Command</TITLE>
6741 </HEAD>
6742 <BODY>
6743 <H1>Rich Header Command</H1>
6745 The Rich Header command allows you to toggle between the list of 
6746 all message headers available for editing and those that are most
6747 common.
6750 Use this toggle to expose headers that are not normally visible by
6751 default.
6752 This set usually includes the
6753 &quot;Bcc:&quot;,
6754 &quot;Fcc:&quot;,
6755 &quot;Lcc:&quot;,
6756 and &quot;Newsgroups&quot;
6757 headers.
6758 If you are posting to a newsgroup the set of defaults is a little different.
6759 Obviously, in that case, the Newsgroups header is of interest so is not
6760 hidden.
6761 For news posting the hidden set includes the
6762 &quot;To:&quot;,
6763 &quot;Cc:&quot;,
6764 &quot;Bcc:&quot;,
6765 &quot;Fcc:&quot;,
6766 and &quot;Lcc:&quot;
6767 headers.
6768 You won't normally want to edit these, which is why they are hidden,
6769 but it is sometimes useful to be able to set them manually.
6772 The default sets of headers listed above can be altered.
6773 Any header that you have added to the
6774 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
6775 option, but not to the
6776 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
6777 option will appear when you use the Rich Headers command to
6778 make the Rich Headers visible.
6779 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
6780 even without toggling the Rich Headers command.)
6783 &lt;End of help on this topic&gt;
6784 </BODY>
6785 </HTML>
6786 ======= h_compose_send =======
6787 <HTML>
6788 <HEAD>
6789 <TITLE>Send Command</TITLE>
6790 </HEAD>
6791 <BODY>
6792 <H1>Send Command</H1>
6794 The Send command
6795 <!--chtml if pinemode="function_key"-->
6796 (F3)
6797 <!--chtml else-->
6798 (^X) 
6799 <!--chtml endif-->
6800 tells Alpine you are finished composing.
6801 Before actually sending it, though, Alpine will ask you to confirm 
6802 your intention, and, at the same time, redisplayed the message text
6803 with the recipients at the top of the screen to give you the opportunity
6804 to review and verify that the message is addressed to the people
6805 you intended.
6807 If the feature
6808 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
6809 then this confirmation prompt and any options it allows are skipped.
6812 This confirmation prompt may also offer, depending
6813 on your particular Setup/Config, options allowing you to set
6814 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
6815 include attachments in the &quot;Fcc&quot; (if you had previously
6816 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
6817 observe details of the
6818 <A HREF="h_config_verbose_post">message submission process</A>,
6819 choose the filter through which the
6820 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
6821 or turn of flowed text generation.
6824 &lt;End of help on this topic&gt;
6825 </BODY>
6826 </HTML>
6827 ======= h_compose_markcutpaste =======
6828 <HTML>
6829 <HEAD>
6830 <TITLE>Mark, Cut and Paste Commands</TITLE>
6831 </HEAD>
6832 <BODY>
6833 <H1>Mark, Cut and Paste Commands</H1>
6835 You can define a &quot;block&quot; of text, which can subsequently
6836  be deleted or
6837 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
6838 then moving the cursor to the end of the desired text block.  You can then
6839 &quot;cut&quot; the block out 
6840 <!--chtml if pinemode="function_key"-->
6841 &quot;F9&quot;,
6842 <!--chtml else-->
6843 &quot;Ctrl-K&quot;,
6844 <!--chtml endif-->
6845 move the cursor, and &quot;paste&quot; it
6846 <!--chtml if pinemode="function_key"-->
6847 &quot;F10&quot;,
6848 <!--chtml else-->
6849 &quot;Ctrl-U&quot;,
6850 <!--chtml endif-->
6851 in the new location.  Also, you can paste more than once, allowing you
6852 to use this feature to copy a block of text.<P>
6854 If you press 
6855 <!--chtml if pinemode="function_key"-->
6856 &quot;F9&quot;
6857 <!--chtml else-->
6858 &quot;^K&quot;
6859 <!--chtml endif-->
6860 without having marked anything, Alpine will delete
6861 a single line.  If you delete a group of lines together, Alpine keeps them
6862 in the same buffer, so 
6863 <!--chtml if pinemode="function_key"-->
6865 <!--chtml else-->
6867 <!--chtml endif-->
6868 will restore them as a block.  About
6869 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
6870 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
6871 &quot;type the character ^&quot;.
6874 &lt;End of help on this topic&gt;
6875 </BODY>
6876 </HTML>
6877 ======= h_compose_justify =======
6878 <HTML>
6879 <HEAD>
6880 <TITLE>Justify Command</TITLE>
6881 </HEAD>
6882 <BODY>
6883 <H1>Justify Command</H1>
6885 The Justify
6886 <!--chtml if pinemode="function_key"-->
6887 (F4)
6888 <!--chtml else-->
6889 (^J) 
6890 <!--chtml endif-->
6891 command reformats the text in the paragraph the cursor is in.
6892 Paragraphs are separated by one blank line or a line beginning with a space.
6893 This is useful when you have been editing a paragraph and the lines become
6894 uneven.  The text is left aligned or justified and the right is ragged.  If
6895 the text is already justified as typed with auto-wrap, no justification will
6896 be done.
6899 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
6900 block of text, the Justify command is modified.
6901 Instead of automatically justifying the current paragraph you will be
6902 asked if you want to justify the paragraph, justify the selected region,
6903 or adjust the quote level of the selected region.
6904 Adjusting the quote level only works if you are using standard
6905 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
6906 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
6909 When composing a reply containing included text, the justify command
6910 will reformat text to the right of the 
6911 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
6912 adding or removing indented lines as needed.  Paragraphs are separated
6913 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
6914 line containing the indent string and one or more blank spaces.
6915 Included text that was previously indented (or &quot;quoted&quot;) is
6916 not preserved.
6919 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
6920 in 1999 and its wide-spread adoption since then, you will usually be better off if you
6921 use the standard
6922 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
6925 &lt;End of help on this topic&gt;
6926 </BODY>
6927 </HTML>
6928 ======= h_compose_spell =======
6929 <HTML>
6930 <HEAD>
6931 <TITLE>Spell Check Command</TITLE>
6932 </HEAD>
6933 <BODY>
6934 <H1>Spell Check Command</H1>
6936 The &quot;To Spell&quot;
6937 <!--chtml if pinemode="function_key"-->
6938 (F12)
6939 <!--chtml else-->
6940 (^T) 
6941 <!--chtml endif-->
6942 command calls an external spell checking program to look over the
6943 message you are composing.  By default, Alpine uses
6945 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
6947 if it knows where to find &quot;aspell&quot;.
6948 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
6949 then the command used is
6951 <CENTER><SAMP>ispell -l</SAMP></CENTER>
6953 Otherwise, the ancient &quot;spell&quot; command is used.
6955 For PC-Alpine, you must install the aspell library code that you
6956 may get from
6957 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
6960 &lt;End of help on this topic&gt;
6961 </BODY>
6962 </HTML>
6963 ======= h_compose_alted =======
6964 <HTML>
6965 <HEAD>
6966 <TITLE>Alt Editor Command</TITLE>
6967 </HEAD>
6968 <BODY>
6969 <H1>Alt Editor Command</H1>
6971 The &quot;Alt Editor&quot; command's availability depends on the
6972 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
6975 When the variable specifies a valid editor on your system, this
6976 command will launch it with the current text of your message
6977 already filled in.
6980 &lt;End of help on this topic&gt;
6981 </BODY>
6982 </HTML>
6983 ======= h_compose_readfile =======
6984 <HTML>
6985 <HEAD>
6986 <TITLE>Read File Command</TITLE>
6987 </HEAD>
6988 <BODY>
6989 <H1>Read File Command</H1>
6991 The &quot;Read File&quot;
6992 <!--chtml if pinemode="function_key"-->
6993 (F5)
6994 <!--chtml else-->
6995 (^R) 
6996 <!--chtml endif-->
6997 command allows you to copy in text from an existing file. You will be
6998 prompted for the name of a file to be inserted into the message.  The file
6999 name is relative to your home directory 
7000 <!--chtml if pinemode="running"-->
7001 (which, in the present configuration of your system, is
7002  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7003 <!--chtml endif-->
7004 or current working directory
7005 <!--chtml if pinemode="running"-->
7006 (which, at least for your current Alpine &quot;session,&quot; 
7007 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7008 <!--chtml endif-->, depending on the
7009 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7010 configuration setting; or, the file name must be specified as a full path name 
7011 <!--chtml if pinemode="os_windows"-->
7012 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7013 <!--chtml else-->
7014 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7015 <!--chtml endif-->
7016 (without the quotation marks).
7019 The file will be inserted where the cursor is located.  <B>The
7020 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7021 Unix machine but have files on a PC or Mac, the files must be transferred
7022 to the system Alpine is running on before they can be read.  Please ask your
7023 local computer support people about the correct way to transfer a file to 
7024 your Alpine system.
7027 &lt;End of help on this topic&gt;
7028 </BODY>
7029 </HTML>
7030 ======= h_config_tray_icon =======
7031 <HTML>
7032 <HEAD>
7033 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7034 </HEAD>
7035 <BODY>
7036 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7038 PC-Alpine only.
7040 This option restores a behavior of previous versions of PC-Alpine.
7041 These
7042 versions, when started, installed a PC-Alpine icon in the notification 
7043 tray of Window's Taskbar.  The primary use of this icon was to indicate
7044 new mail arrival by turning red (while the Taskbar icon remained green).
7045 Additionally, the icon now changes to yellow to signify that a mail folder
7046 has been closed unexpectedly.
7049 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7050 color its Taskbar entry's icon red (as well as the icon in the Window
7051 Title).  This feature is only provided for backwards compatibility.
7054 &lt;End of help on this topic&gt;
7055 </BODY>
7056 </HTML>
7057 ======= h_common_suspend =======
7058 <HTML>
7059 <HEAD>
7060 <TITLE>Suspend Command</TITLE>
7061 </HEAD>
7062 <BODY>
7063 <H1>Suspend Command</H1>
7065 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7066 enabled, you can, at almost any time, temporarily halt your Alpine session,
7067 <!--chtml if pinemode="os_windows"-->
7068 minimizing it into an icon.
7069 <!--chtml else-->
7070 and return to your system prompt.
7071 <!--chtml endif-->
7074 &lt;End of help on this topic&gt;
7075 </BODY>
7076 </HTML>
7077 ======= h_pipe_command =======
7078 <HTML>
7079 <HEAD>
7080 <TITLE>Pipe Command SubOptions</TITLE>
7081 </HEAD>
7082 <BODY>
7083 <H1>Pipe Command SubOptions</H1>
7085 By default, when you use the Pipe command, the processed text of the
7086 message is sent to the Unix command
7087 you specify and the output is captured by Alpine and shown to you.
7088 (This command is available in PC-Alpine, as well, but there aren't many
7089 Windows commands that work well with piping.)
7090 There are some sub-commands that may be used to alter this behavior.
7091 These are toggles that switch the behavior between two possibilities.
7092 They can be combined in any way you wish.
7094 By default, the prompt at the bottom of the screen looks like
7096 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7100 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7102 if you are piping more than one message.
7104 The sub-command options are:
7105 <DL>
7106    <DT>Shown Text or Raw Text</DT>
7107    <DD>This option toggles between sending the shown (processed) text
7108 of the message to the Unix command, and sending the
7109 raw (unprocessed) text of the message to the Unix command.
7110 The default is to send the shown text.
7111 The raw version of the message will contain all of the headers and any
7112 MIME encoding that the message contains.
7113 If you've selected the Raw Text then the prompt will have the additional word
7114 &quot;RAW&quot; in it, like
7116 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7118 You can experiment with this option by piping to something simple like the
7119 Unix &quot;cat&quot; command.
7120    </DD>
7121    <DT>Captured Output or Free Output</DT>
7122    <DD>This option toggles between having Alpine capture the output of
7123 the Unix pipe command for display, and not capturing it.
7124 If the command you are piping to is a filter that will produce output
7125 you want to view, then you want to capture that output
7126 for display (the default).
7127 If the Unix command doesn't produce output or handles the display itself,
7128 then you want free output.
7129 When you've selected the Free Output option the prompt will change to
7131 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7133    </DD>
7134    <DT>No Delimiter or With Delimiter</DT>
7135    <DD>This option controls whether or not a Unix mailbox style delimiter
7136 will come before the text of the message.
7137 This is the delimiter used in the common Unix mailbox format.
7138 It's the single line that begins with the five characters
7139 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7140 You'll usually only want to include this if the Unix command requires
7141 input in the format of a traditional Unix mailbox file.
7142 When you've selected the With Delimiter option the prompt will change to
7144 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7146    </DD>
7147    <DT>To Same Pipe or To Individual Pipes</DT>
7148    <DD>This option only shows up if you are running an aggregate
7149 pipe command.
7150 That is, the command was Apply Pipe, not just Pipe.
7151 You have the option of piping all of the selected messages through a
7152 single pipe to a single instance of the Unix command,
7153 or piping each individual message through a separate pipe to separate
7154 instances of the Unix command.
7155 The default is that all of the output will go through a single pipe
7156 to a single instance of the command.
7157 You can try this option with a command like &quot;less&quot;, with Free
7158 Output enabled.
7159 When you've selected the Individual Pipes option the prompt will change to
7161 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7163    </DD>
7164 </DL>
7167 As mentioned earlier, the options can be combined in any way you wish.
7168 You may leave them all off, turn them all on, or turn some of them on
7169 and some of them off.
7170 If you use the pipe command a second time in the same session the default
7171 options will be what you used the last time.
7174 &lt;End of help on this topic&gt;
7175 </BODY>
7176 </HTML>
7177 ========== h_emptydir_subfolder_name =========
7178 <HTML>
7179 <HEAD>
7180 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7181 </HEAD>
7182 <BODY>
7183 <H1>Enter Subfolder Name</H1>
7185 <P> 
7186 This is the name of a new subfolder in the directory you are creating.
7187 Because empty directories are hidden and therefore not useful, you must also
7188 create a subfolder in the directory you are creating in order that the
7189 directory remains visible.
7191 Alternatively, you may turn off the configuration feature
7192 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7193 so that empty directories remain visible.
7194 If you do that, you will not be required to create the subfolder when you
7195 create a directory.
7198 &lt;End of help on this topic&gt;
7199 </BODY>
7200 </HTML>
7201 ========== h_incoming_add_folder_name =========
7202 <HTML>
7203 <HEAD>
7204 <TITLE>ENTER FOLDER NAME</TITLE>
7205 </HEAD>
7206 <BODY>
7207 <H1>Enter Folder Name</H1>
7209 <P> 
7210 This is the name of the folder on the previously specified server.
7211 By default the folder name is interpreted as defining a section of your personal
7212 folder area.  This area and how you specify it are defined by the
7213 server, if one is specified.
7216 To define a folder outside the default area, prefix
7217 the path with the namespace to use when interpreting the
7218 given path.  If a namespace is specified, the folder name begins with the
7219 sharp (#) character followed by the name of the namespace
7220 and then the namespace's path-element-delimiter.  Aside from the
7221 name's format, namespaces can also imply access rights, content
7222 policy, audience, location, and, occasionally, access methods.
7225 Each server exports its own set (possibly of size one) of 
7226 namespaces.
7227 For a more detailed explanation read about
7228 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7231 To specify the default for INBOX on the server you can usually just enter
7232 &quot;INBOX&quot;, and the server will understand the special meaning of
7233 that word.
7236 &lt;End of help on this topic&gt;
7237 </BODY>
7238 </HTML>
7239 ========== h_incoming_add_folder_host =========
7240 <HTML>
7241 <HEAD>
7242 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7243 </HEAD>
7244 <BODY>
7245 <H1>Enter Incoming Folder Server</H1>
7247 You are being asked for the name of the server for use with this incoming
7248 folder.
7249 If the folder is on the machine where Alpine is running, then just enter
7250 RETURN without typing a server name.
7253 If the folder is on an IMAP server then type the server's name followed
7254 by RETURN.
7255 You may use the ^X command if the server is the same as the server that
7256 the INBOX is on.
7259 You may have to add optional extra information to the server name.
7260 For example, if the IMAP server is using a non-standard port number you
7261 would specify that by appending a colon (:) followed by the port number
7262 to the server name
7265 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7268 or you may need to specify a different protocol if the server is not an
7269 IMAP server. For example:
7272 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7275 for a POP server or
7278 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7281 for an NNTP news server.
7282 For an explanation of all of the possibilities, see
7283 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7284 for folders.
7287 There is a special command (^W) if you want to set up a folder that gets its
7288 mail from a
7289 <A HREF="h_maildrop">Mail Drop</A>.
7290 If you type that command, you will be prompted for the information for
7291 both the Mail Drop folder and the destination folder.
7294 &lt;End of help on this topic&gt;
7295 </BODY>
7296 </HTML>
7297 ========== h_incoming_add_inbox =========
7298 <HTML>
7299 <HEAD>
7300 <TITLE>ENTER INBOX SERVER</TITLE>
7301 </HEAD>
7302 <BODY>
7303 <H1>Enter INBOX Server</H1>
7305 You are being asked for the name of the server for use with
7306 the INBOX folder.
7307 Type the server's name followed by RETURN.
7310 You may have to add optional extra information to the server name.
7311 For example, if the server is using a non-standard port number you
7312 would specify that by appending a colon (:) followed by the port number
7313 to the server name
7316 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7319 or you may need to specify a different protocol if the server is not an
7320 IMAP server. For example:
7323 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7326 for a POP server.
7329 For an explanation of all of the possibilities, see
7330 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7331 for folders.
7334 If the INBOX folder is on the machine where Alpine is running, then just enter
7335 RETURN without typing a server name.
7338 There is a special command (^W) if you want to set up a folder that gets its
7339 mail from a
7340 <A HREF="h_maildrop">Mail Drop</A>.
7341 If you type that command, you will be prompted for the information for
7342 both the Mail Drop folder and the destination folder, which will be used
7343 as your INBOX folder.
7346 &lt;End of help on this topic&gt;
7347 </BODY>
7348 </HTML>
7349 ========== h_incoming_add_maildrop_destn =========
7350 <HTML>
7351 <HEAD>
7352 <TITLE>ENTER DESTINATION SERVER</TITLE>
7353 </HEAD>
7354 <BODY>
7355 <H1>Enter Destination Server</H1>
7357 You are being asked for the name of the server where the destination
7358 folder is for use with this Mail Drop incoming folder.
7359 That is, you are using a Mail Drop for this incoming folder and
7360 you've already entered
7361 the server and folder name for the Mail Drop.
7362 Now you need to enter the server for the destination folder
7363 where the mail should be copied to.
7364 Mail will come from the Mail Drop and be copied to the destination folder.
7367 Type the server's name followed by RETURN.
7368 If the folder is local to this computer, just type RETURN without entering
7369 a server name.
7372 You may have to add optional extra information to the server name.
7373 For example, if the server is using a non-standard port number you
7374 would specify that by appending a colon (:) followed by the port number
7375 to the server name
7378 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7381 For an explanation of all of the possibilities, see
7382 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7383 for folders.
7386 &lt;End of help on this topic&gt;
7387 </BODY>
7388 </HTML>
7389 ========== h_inbox_add_maildrop_destn =========
7390 <HTML>
7391 <HEAD>
7392 <TITLE>ENTER DESTINATION SERVER</TITLE>
7393 </HEAD>
7394 <BODY>
7395 <H1>Enter Destination Server</H1>
7397 You are being asked for the name of the server where the destination
7398 folder is for use with your Mail Drop INBOX.
7399 That is, you are using a Mail Drop for your INBOX and you've already entered
7400 the server and folder name for the Mail Drop.
7401 Now you need to enter the server for the destination folder
7402 where the mail should be copied to.
7403 Mail will come from the Mail Drop and be copied to the destination folder.
7406 Type the server's name followed by RETURN.
7407 If the folder is local to this computer, just type RETURN without entering
7408 a server name.
7411 You may have to add optional extra information to the server name.
7412 For example, if the server is using a non-standard port number you
7413 would specify that by appending a colon (:) followed by the port number
7414 to the server name
7417 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7420 For an explanation of all of the possibilities, see
7421 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7422 for folders.
7425 &lt;End of help on this topic&gt;
7426 </BODY>
7427 </HTML>
7428 ========== h_inbox_add_maildrop =========
7429 <HTML>
7430 <HEAD>
7431 <TITLE>ENTER MAILDROP SERVER</TITLE>
7432 </HEAD>
7433 <BODY>
7434 <H1>Enter Mail Drop Server</H1>
7436 You are being asked for the name of the Mail Drop server for use with
7437 your INBOX.
7440 Type the server's name followed by RETURN.
7443 You may have to add optional extra information to the server name.
7444 For example, if the server is using a non-standard port number you
7445 would specify that by appending a colon (:) followed by the port number
7446 to the server name
7449 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7452 or you may need to specify a different protocol if the server is not an
7453 IMAP server. For example:
7456 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7459 for a POP server or
7462 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7465 for an NNTP news server.
7466 For an explanation of all of the possibilities, see
7467 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7468 for folders.
7471 &lt;End of help on this topic&gt;
7472 </BODY>
7473 </HTML>
7474 ========== h_incoming_add_maildrop =========
7475 <HTML>
7476 <HEAD>
7477 <TITLE>ENTER MAILDROP SERVER</TITLE>
7478 </HEAD>
7479 <BODY>
7480 <H1>Enter Mail Drop Server</H1>
7482 You are being asked for the name of the Mail Drop server for use with
7483 this incoming folder.
7486 Type the server's name followed by RETURN.
7487 You may use the ^X command if the server is the same as the server that
7488 the INBOX is on.
7491 You may have to add optional extra information to the server name.
7492 For example, if the server is using a non-standard port number you
7493 would specify that by appending a colon (:) followed by the port number
7494 to the server name
7497 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7500 or you may need to specify a different protocol if the server is not an
7501 IMAP server. For example:
7504 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7507 for a POP server or
7510 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7513 for an NNTP news server.
7514 For an explanation of all of the possibilities, see
7515 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7516 for folders.
7519 If the Mail Drop folder is on the machine where Alpine is running, then just enter
7520 RETURN without typing a server name.
7523 &lt;End of help on this topic&gt;
7524 </BODY>
7525 </HTML>
7526 ========== h_maildrop =========
7527 <HTML>
7528 <HEAD>
7529 <TITLE>WHAT IS A MAIL DROP?</TITLE>
7530 </HEAD>
7531 <BODY>
7532 <H1>What is a Mail Drop?</H1>
7534 In some situaions it may make sense to have your mail delivered to one
7535 folder (the Mail Drop) and then when you want to read mail that has been
7536 delivered to the Mail Drop folder Alpine will move it to another
7537 destination folder.
7538 Often the Mail Drop will be a remote folder and messages will be moved from
7539 there to a local destination folder.
7542 One example where this might make sense is if the Mail Drop folder is accessible
7543 only with the POP protocol.
7544 You could designate your POP inbox as the Mail Drop folder and have Alpine move
7545 mail from there to a local (on the same machine Alpine is running on)
7546 destination folder, where you'll read it.
7549 A Mail Drop may only be used as your Inbox or as an
7550 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
7553 There is no attempt to synchronize the contents of the destination folder
7554 with the contents of the Mail Drop folder.
7555 All that happens is that all of the messages in the Mail Drop folder are
7556 copied to the destination folder and then they are deleted and expunged (if possible)
7557 from the Mail Drop folder.
7558 The next time a check for new mail is made, any messages in the Mail 
7559 Drop folder are once again copied to the destination folder and deleted
7560 and expunged from the Mail Drop folder.
7561 (If the Mail Drop folder is a news group, then the messages can't be
7562 expunged from the newsgroup. Instead, only Recent messages are copied from
7563 the newsgroup to the destination folder.)
7566 Configuration of a Mail Drop is a little different from configuration of
7567 a folder that does not use a Mail Drop because you have to specify two
7568 folder names instead of one.
7569 The two folders may be any types of folders that Alpine can normally use.
7570 They don't have to be a remote folder and a local folder, that is
7571 simply the most common usage.
7572 When you use a Mail Drop folder Alpine will periodically re-open the Mail
7573 Drop to check for new mail.
7574 The new-mail checks will happen at the frequency set with the
7575 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
7576 but with a minimum time
7577 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
7578 between checks.
7579 Because of this minimum you may notice that new mail does not
7580 appear promptly when you expect it.
7581 The reason for this is to protect the server from over-zealous opening and
7582 closing of the Mail Drop folder.
7583 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
7584 the end of the folder index, then the check will happen, regardless of how
7585 long it has been since the previous check.
7587 If there is new mail, that mail will be copied to the destination folder
7588 and then will be deleted from the Mail Drop.
7589 Note that using a Mail Drop with a local destination folder does not make
7590 sense if you read mail from more than one machine, because the mail is
7591 downloaded to the destination folder (which is accessible from only one
7592 machine) and deleted from the Mail Drop.
7594 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
7597 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
7600 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
7602 The brackets are not literal.
7604 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
7606 is a single character that does not appear in the MailDropFolder name.
7607 If the name doesn't contain spaces then it can be a space character.
7608 The two folder names are full technical
7609 <A HREF="h_valid_folder_names">folder names</A>
7610 as used by Alpine.
7611 Here are a couple examples to give you an idea what is being talked about:
7614 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
7616 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
7619 A #move folder may only be used as an
7620 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
7621 an Inbox.
7622 When you are in the FOLDER LIST of Incoming Message Folders (after turning
7623 on the
7624 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
7625 option)
7626 the Add command has a subcommand &quot;Use Mail Drop&quot;
7627 which may be helpful for defining the folder in your Alpine configuration.
7628 The same is true when you edit the
7629 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
7630 option in Setup/Config.
7631 Each of these configuration methods will also create the DestinationFolder
7632 if it doesn't already exist.
7633 If you are having problems, make sure the DestinationFolder exists.
7636 &lt;End of help on this topic&gt;
7637 </BODY>
7638 </HTML>
7639 ========== h_save =========
7640 <HTML>
7641 <HEAD>
7642 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
7643 </HEAD>
7644 <BODY>
7645 <H1>Choose a Folder to Save Into</H1>
7647 After Exiting from this help text,
7648 type the name of the folder you want to save into and press RETURN.
7650 Press ^T to get a list of your folders to choose from.
7651 Press ^C to cancel the Save.
7653 If you have Folder Collections defined you may use
7654 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
7655 the collection being saved to.
7657 If Tab Completion is enabled (it is enabled by default)
7658 you may type a Tab character to have Alpine complete the folder name for you.
7660 If Partial Match Lists is enabled (it is enabled by default) you may type
7661 Ctrl-X to get a list of matches to the prefix you've typed in so far.
7663 If the Ctrl-R subcommand is present that means you can decide to Delete or
7664 not Delete the message you are saving after you save it.
7665 The label on that key gives the action to switch to.
7666 If it says Delete and you type Ctrl-R the label displayed will change to
7667 No Delete and the source message will be deleted after the save. If it
7668 says No Delete and you type Ctrl-R the label displayed will change to
7669 Delete and the message will not be deleted.
7670 You can control the default for the Delete parameter with the
7671 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
7673 Similarly, if the Ctrl-W subcommand is present that means you can decide
7674 to Preserve the order of the messages being saved or not.
7675 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
7676 will be in the same order as you see them in the source folder now.
7677 The opposite action (which is usually the default) is that you don't care
7678 about the order.
7679 The Saved messages may or may not be in the same order in the destination folder.
7680 There may be a performance penalty for choosing to save the messages in order.
7681 You can control the default for the Preserve Order parameter with the
7682 configuration feature
7683 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
7686 If you haven't disabled the Save Input History and you've already done a
7687 Save earlier in this session then you may use the Up and Down arrows to retrieve
7688 a folder name used in a previous Save.
7691 &lt;End of help on this topic&gt;
7692 </BODY>
7693 </HTML>
7694 ============= h_simple_index ========================
7695 <HTML>
7696 <HEAD>
7697 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
7698 </HEAD>
7699 <BODY>
7700 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
7701 <!--chtml if pinemode="function_key"-->
7702 <PRE>
7703 Navigating the List of Messages               General Alpine Commands
7704 -------------------------------               -----------------------
7705  F5   Move to previous message                 F1   Show this help text
7706  F6   Move to next message
7707  F7   Show previous screen of messages
7708  F8   Show next screen of messages
7710 Message Selection Commands
7711 --------------------------
7712  F3   Exit the Message Select menu (canceling Send command)
7713  F4   Select the currently highlighted message
7714  F9   Mark the currently highlighted message as deleted
7715  F10  Undelete (remove deletion mark from) the highlighted message
7716 </PRE>
7717 <!--chtml else-->
7718 <PRE>
7719 Navigating the List of Messages               General Alpine Commands
7720 -------------------------------               -----------------------
7721   P  Move to previous message                  ?  Show this help text
7722   N  Move to next message
7723   -  Show previous screen of messages
7724  Spc (space bar) Show next screen of messages
7726 Message Selection Commands
7727 --------------------------
7728   E  Exit the Message Select menu (canceling Send command)
7729   S  Select the currently highlighted message
7730   D  Mark the currently highlighted message as deleted
7731   U  Undelete (remove deletion mark from) the highlighted message
7732 </PRE>
7733 <!--chtml endif-->
7735 <H2>Description of the Select Postponed Message Screen</H2>
7737 This screen allows you to select one of several previously postponed
7738 messages in order to continue composition.  Your options are very limited
7739 -- the screen is not meant to let you manipulate these messages.  However,
7740 you may now delete messages from this list.  Once you choose a message,
7741 Alpine reads it in and puts you into the regular message composer.
7744 Messages do not stay in this postponed state automatically.  If you select
7745 a message and then want to postpone it again, use the normal postpone
7746 (Ctrl-O) command in the composer.
7749 If you exit this screen without selecting a message, the Compose command
7750 that got you here is canceled.  Other than messages explicitly marked
7751 &quot;Deleted&quot;, no messages will be removed.
7754 &lt;End of help on this topic&gt;
7755 </BODY>
7756 </HTML>
7757 ============= h_collection_screen ========================
7758 <HTML>
7759 <HEAD>
7760 <TITLE>COLLECTION LIST screen</TITLE>
7761 </HEAD>
7762 <BODY>
7763 <H1>COLLECTION LIST screen</H1>
7765 The COLLECTION LIST screen is used to select one of your  
7766 collection definitions to display the folders they contain.  See
7767 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
7768 detailed explanation of collections.<P>
7770 To manage your collection definitions (Add, Change, Delete, etc.), use
7771 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
7772 MAIN MENU.
7775 &lt;End of help on this topic&gt;
7776 </BODY>
7777 </HTML>
7778 ============= h_collection_maint ========================
7779 <HTML>
7780 <HEAD>
7781 <TITLE>SETUP COLLECTION LIST screen</TITLE>
7782 </HEAD>
7783 <BODY>
7784 <H1>SETUP COLLECTION LIST screen</H1>
7786 The SETUP COLLECTION LIST screen lets you manage your collection
7787 definitions.  See 
7788 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
7789 for detailed explanation of collections.<P>
7791 Maintenance commands include:
7792 <DL>
7793 <DT>Change
7794 <!--chtml if pinemode="function_key"-->
7795 (F4)
7796 <!--chtml else-->
7798 <!--chtml endif-->
7799 </DT>
7801 <DD>Modify attributes of the selected collection definition.
7803 <DT>Add Cltn
7804 <!--chtml if pinemode="function_key"-->
7805 (F9)
7806 <!--chtml else-->
7808 <!--chtml endif-->
7809 </DT>
7811 <DD>Create a new collection definition.
7812 </DD>
7814 <DT>Del Cltn
7815 <!--chtml if pinemode="function_key"-->
7816 (F10)
7817 <!--chtml else-->
7819 <!--chtml endif-->
7820 </DT>
7822 <DD>Delete the selected collection definition.<BR>
7823 NOTE: The folders and directories referred to by the
7824 collection definition are <EM>NOT</EM> deleted.  Folders must
7825 be deleted, if that's what you wish to do, from the 
7826 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
7827 individual folders in a collection.
7828 </DD>
7830 <DT>Shuffle
7831 <!--chtml if pinemode="function_key"-->
7832 (F11)
7833 <!--chtml else-->
7835 <!--chtml endif-->
7836 </DT>
7838 <DD>Change the order of the displayed collections.  Alpine will offer
7839 to move the currently selected collection one position UP
7840 or DOWN.
7841 </DD>
7842 </DL>
7845 &lt;End of help on this topic&gt;
7846 </BODY>
7847 </HTML>
7848 ============ h_what_are_collections ==========
7849 <HTML>
7850 <HEAD>
7851 <TITLE>Folder Collections Explained</TITLE>
7852 </HEAD>
7853 <BODY>
7854 <H1>Folder Collections Explained</H1>
7857 Those of you with simple mail configurations will just see a list of all the
7858 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
7859 The special folders for INBOX, sent mail and saved messages
7860 will appear at the top of the list.  All others are in alphabetical order.
7862 If you
7863 or your system administrator have defined more than one collection or if
7864 you have a collection (for newsgroups or email folders) defined on your 
7865 system, then you will see the COLLECTION LIST screen first when choosing 
7866 FOLDER LIST from Alpine's MAIN MENU.
7868 <H2>Why have multiple folder collections?</H2>
7870 For Alpine users who only maintain email folders (and not too many) on one host, 
7871 a single folder collection is probably sufficient.<P>
7873 However, people who have more than one email account - for example, one 
7874 at their university, and one with their personal Internet Service Provider - 
7875 will have different sets of folders on different hosts, and they may want to
7876 access them all from the same installation of Alpine, rather than use different 
7877 software and/or log into other hosts to manipulate messages in different 
7878 accounts.  (If in doubt whether one of your email accounts can be accessed 
7879 with Alpine, contact the technical support people for that account.)  Even people
7880 who have only one email account on one host, but have dozens or
7881 hundreds of email folders, may want to arrange these folders together in a 
7882 meaningful way.<BR>
7883 That is where multiple collections come in.
7885 <H2>Types of Collections</H2>
7886 <DL>
7887 <DT>INCOMING FOLDERS</DT>
7888 <DD>&quot;Incoming Message Folders&quot; 
7889 is a special collection typically used to supplement your single INBOX.  
7890 All the folders here are meant to be ones that receive incoming messages, 
7891 which you intend to check more or less frequently.  
7892 You may have multiple folders like this because you or your systems 
7893 administrator have set up an external program or you may have set up
7894 Alpine to filter incoming 
7895 messages into different folders, based on certain criteria such as 
7896 sender, recipient, or subject; or because you have multiple accounts and 
7897 wish to check their INBOXes easily.  This collection is established by 
7898 setting the 
7899 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
7900 feature in the SETUP CONFIGURATION screen, which is accessed from the 
7901 MAIN MENU.
7902 </DD>
7904 <DT>NEWS</DT>
7905 <DD>You can also define a collection specifically for
7906 newsgroups.  Alpine does this for you implicitly when you 
7907 <A HREF="h_config_nntp_server">define an NNTP Server</A>
7908 in your Alpine configuration.  The news collection appears last in the 
7909 COLLECTION LIST (though you can shuffle it up in the order of presentation),
7910 and Alpine knows not to save messages there.
7911 </DD>
7913 <DT>DEFAULT COLLECTION</DT>
7914 <DD>This is the default collection for your saved and sent messages folders.
7915 </DD>
7916 </DL>
7920 <H2>Defining Collections</H2>
7922 In the absence of any folder-collection definitions, Alpine will assume a
7923 single default folder collection.
7924 <!--chtml if pinemode="os_windows"-->
7925 <!--chtml else-->
7926 If necessary, Alpine will create the directory
7927 &quot;mail&quot; in your Unix home directory 
7928 to hold your folders.
7929 <!--chtml endif-->
7931 You can use the 
7932 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
7933 the MAIN MENU, to manage your collection list.  
7935 &lt;End of help on this topic&gt;
7936 </BODY>
7937 </HTML>
7938 ===== h_select_address_screen =====
7939 <HTML>
7940 <HEAD>
7941 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
7942 </HEAD>
7943 <BODY>
7944 <H1>SELECT AN ADDRESS SCREEN</H1>
7945 <H2>COMMANDS</H2>
7946 <!--chtml if pinemode="function_key"-->
7947 <PRE>
7948 Available  Commands                        
7949 -------------------------------            
7950 F1  Show Help Text
7951 F3  Exit without selecting anything
7952 F4  Select the highlighted address
7953 F5  Move highlight to previous address
7954 F6  Move highlight to next address
7955 F7  Previous page of addresses
7956 F8  Next page of addresses
7957 F11 Print
7958 F12 WhereIs
7959 </PRE>
7960 <!--chtml else-->
7961 <PRE>
7962 Navigation                     General Alpine Commands
7963 -------------------------      -----------------------
7964  P  Prev Address                ?  Display this help text
7965  N  Next Address                E  Exit without selecting anything
7966  -  Previous page               %  Print
7967 Spc (space bar) Next page
7968  W  WhereIs
7970 Select Command
7971 ------------------------------------------------
7972  S  Select the highlighted address
7973 </PRE>
7974 <!--chtml endif-->
7976 <H2>Description of the Select Address Screen</H2>
7978 This screen gives you an easy way to select an address from all of
7979 the address book entries that match the prefix typed so far.
7981 <P><UL>
7982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7983 </UL>
7985 &lt;End of help on this topic&gt;
7986 </BODY>
7987 </HTML>
7988 ===== h_select_rule_screen =====
7989 <HTML>
7990 <HEAD>
7991 <TITLE>SELECT A RULE SCREEN</TITLE>
7992 </HEAD>
7993 <BODY>
7994 <H1>SELECT A RULE SCREEN</H1>
7995 <H2>COMMANDS</H2>
7996 <!--chtml if pinemode="function_key"-->
7997 <PRE>
7998 Available  Commands                        
7999 -------------------------------            
8000 F1  Show Help Text
8001 F3  Exit without selecting anything
8002 F4  Select the highlighted rule
8003 F5  Move highlight to previous rule
8004 F6  Move highlight to next rule
8005 F7  Previous page of rules
8006 F8  Next page of rules
8007 F11 Print
8008 F12 WhereIs
8009 </PRE>
8010 <!--chtml else-->
8011 <PRE>
8012 Navigation                     General Alpine Commands
8013 -------------------------      -----------------------
8014  P  Prev Rule                   ?  Display this help text
8015  N  Next Rule                   E  Exit without selecting anything
8016  -  Previous page               %  Print
8017 Spc (space bar) Next page
8018  W  WhereIs
8020 Select Command
8021 ------------------------------------------------
8022  S  Select the highlighted rule
8023 </PRE>
8024 <!--chtml endif-->
8026 <H2>Description of the Select Rule Screen</H2>
8028 This screen just gives you an easy way to select a rule from all of your
8029 defined rules.
8030 The list of rules presented is the list of nicknames of all of the rules
8031 defined using Setup/Rules.
8032 For selecting messages, it is likely that the Indexcolor rules and possibly
8033 the Roles rules will be most useful.
8034 The others are there also, in case you find a use for them.
8036 In order for this to be useful for selecting messages, the nicknames of
8037 the rules have to be different.
8038 Alpine actually just gets the nickname of the rule that you select and then
8039 looks up that rule using the nickname.
8040 So if there are duplicate nicknames, the first rule that has that
8041 nickname will be used.
8043 <P><UL>
8044 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8045 </UL>
8047 &lt;End of help on this topic&gt;
8048 </BODY>
8049 </HTML>
8050 ===== h_select_priority_screen =====
8051 <HTML>
8052 <HEAD>
8053 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8054 </HEAD>
8055 <BODY>
8056 <H1>SELECT A PRIORITY SCREEN</H1>
8057 <H2>COMMANDS</H2>
8058 <!--chtml if pinemode="function_key"-->
8059 <PRE>
8060 Available  Commands                        
8061 -------------------------------            
8062 F1  Show Help Text
8063 F3  Exit without selecting anything
8064 F4  Select the highlighted priority
8065 F5  Move highlight to previous priority
8066 F6  Move highlight to next priority
8067 F7  Previous page of priorities
8068 F8  Next page of priorities
8069 F11 Print
8070 F12 WhereIs
8071 </PRE>
8072 <!--chtml else-->
8073 <PRE>
8074 Navigation                     General Alpine Commands
8075 -------------------------      -----------------------
8076  P  Prev Priority               ?  Display this help text
8077  N  Next Priority               E  Exit without selecting anything
8078  -  Previous page               %  Print
8079 Spc (space bar) Next page
8080  W  WhereIs
8082 Select Command
8083 ------------------------------------------------
8084  S  Select the highlighted priority
8085 </PRE>
8086 <!--chtml endif-->
8088 <H2>Description of the Select Priority Screen</H2>
8090 This screen gives you a way to select a priority for the message you are sending.
8091 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8092 Some mail programs will display an indication of the priority level to
8093 the recipient of the message, some will ignore it.
8094 Even in cases where the mail programs of both the sender and the recipient
8095 agree on the meaning of this header, keep in mind that it is
8096 something that the sender sets so it is only an indication
8097 of the priority that the sender attaches to the mail.
8098 Alpine can be made to display an indication of this priority in incoming
8099 messages by use of one of the tokens
8100 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8101 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8102 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8104 <P><UL>
8105 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8106 </UL>
8108 &lt;End of help on this topic&gt;
8109 </BODY>
8110 </HTML>
8111 ===== h_select_keyword_screen =====
8112 <HTML>
8113 <HEAD>
8114 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8115 </HEAD>
8116 <BODY>
8117 <H1>SELECT A KEYWORD SCREEN</H1>
8118 <H2>COMMANDS</H2>
8119 <!--chtml if pinemode="function_key"-->
8120 <PRE>
8121 Available  Commands                        
8122 -------------------------------            
8123 F1  Show Help Text
8124 F3  Exit without selecting anything
8125 F4  Select the highlighted keyword
8126 F5  Move highlight to previous keyword
8127 F6  Move highlight to next keyword
8128 F7  Previous page of keywords
8129 F8  Next page of keywords
8130 F11 Print
8131 F12 WhereIs
8132 </PRE>
8133 <!--chtml else-->
8134 <PRE>
8135 Navigation                     General Alpine Commands
8136 -------------------------      -----------------------
8137  P  Prev Keyword                ?  Display this help text
8138  N  Next Keyword                E  Exit without selecting anything
8139  -  Previous page               %  Print
8140 Spc (space bar) Next page
8141  W  WhereIs
8143 Select Command
8144 ------------------------------------------------
8145  S  Select the highlighted keyword
8146 </PRE>
8147 <!--chtml endif-->
8149 <H2>Description of the Select Keyword Screen</H2>
8151 This screen just gives you an easy way to select a keyword.
8152 The list of keywords presented is the list of all keywords defined in your 
8153 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8154 If you have given a keyword a nickname, that nickname is displayed
8155 instead of the actual keyword.
8157 <P><UL>
8158 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8159 </UL>
8161 &lt;End of help on this topic&gt;
8162 </BODY>
8163 </HTML>
8164 ===== h_select_charset_screen =====
8165 <HTML>
8166 <HEAD>
8167 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8168 </HEAD>
8169 <BODY>
8170 <H1>SELECT A CHARACTER SET SCREEN</H1>
8171 <H2>COMMANDS</H2>
8172 <!--chtml if pinemode="function_key"-->
8173 <PRE>
8174 Available  Commands                        
8175 -------------------------------            
8176 F1  Show Help Text
8177 F3  Exit without selecting anything
8178 F4  Select the highlighted character set
8179 F5  Move highlight to previous character set
8180 F6  Move highlight to next character set
8181 F7  Previous page of character sets
8182 F8  Next page of character sets
8183 F11 Print
8184 F12 WhereIs
8185 </PRE>
8186 <!--chtml else-->
8187 <PRE>
8188 Navigation                     General Alpine Commands
8189 -------------------------      -----------------------
8190  P  Prev Character Set          ?  Display this help text
8191  N  Next Character Set          E  Exit without selecting anything
8192  -  Previous page               %  Print
8193 Spc (space bar) Next page
8194  W  WhereIs
8196 Select Command
8197 ------------------------------------------------
8198  S  Select the highlighted character set
8199 </PRE>
8200 <!--chtml endif-->
8202 <H2>Description of the Select A Character Set Screen</H2>
8204 This screen just gives you an easy way to select a character set from the
8205 set of character sets Alpine knows about.
8206 The list presented will vary slightly depending on what option you are
8207 selecting the character set for.
8209 <P><UL>
8210 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8211 </UL>
8213 &lt;End of help on this topic&gt;
8214 </BODY>
8215 </HTML>
8216 ===== h_select_multcharsets_screen =====
8217 <HTML>
8218 <HEAD>
8219 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8220 </HEAD>
8221 <BODY>
8222 <H1>SELECT CHARACTER SETS SCREEN</H1>
8223 <H2>COMMANDS</H2>
8224 <!--chtml if pinemode="function_key"-->
8225 <PRE>
8226 Available  Commands
8227 -------------------------------            
8228 F1  Show Help Text
8229 F3  Exit without selecting anything
8230 F4  Select the highlighted charset (or chosen charsets in ListMode)
8231 F5  Move highlight to previous charset
8232 F6  Move highlight to next charset
8233 F7  Previous page of charsets
8234 F8  Next page of charsets
8235 F9  Toggle choices when using ListMode
8236 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8237 F11 Print
8238 F12 WhereIs
8239 </PRE>
8240 <!--chtml else-->
8241 <PRE>
8242 Navigation                     General Alpine Commands
8243 -------------------------      -----------------------
8244  P  Prev Charset                ?  Display this help text
8245  N  Next Charset                E  Exit without selecting anything
8246  -  Previous page               %  Print
8247 Spc (space bar) Next page
8248  W  WhereIs
8250 Select Command
8251 ------------------------------------------------
8252  S  Select the highlighted charset (or chosen charsets in ListMode)
8253  L  Turn on ListMode (makes it easy to choose multiple charsets)
8254  1  Turn off ListMode
8255  X  Toggle choices when using ListMode
8256 </PRE>
8257 <!--chtml endif-->
8259 <H2>Description of the Select Character Set Screen</H2>
8261 This screen just gives you an easy way to select a character set or a list of
8262 character sets.
8263 The list of character sets presented is the list of all character sets known to
8264 Alpine.
8265 You may select other character sets by typing them in directly.
8267 <P><UL>
8268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8269 </UL>
8271 &lt;End of help on this topic&gt;
8272 </BODY>
8273 </HTML>
8274 ===== h_select_multkeyword_screen =====
8275 <HTML>
8276 <HEAD>
8277 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8278 </HEAD>
8279 <BODY>
8280 <H1>SELECT KEYWORDS SCREEN</H1>
8281 <H2>COMMANDS</H2>
8282 <!--chtml if pinemode="function_key"-->
8283 <PRE>
8284 Available  Commands
8285 -------------------------------            
8286 F1  Show Help Text
8287 F3  Exit without selecting anything
8288 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8289 F5  Move highlight to previous keyword
8290 F6  Move highlight to next keyword
8291 F7  Previous page of keywords
8292 F8  Next page of keywords
8293 F9  Toggle choices when using ListMode
8294 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8295 F11 Print
8296 F12 WhereIs
8297 </PRE>
8298 <!--chtml else-->
8299 <PRE>
8300 Navigation                     General Alpine Commands
8301 -------------------------      -----------------------
8302  P  Prev Keyword                ?  Display this help text
8303  N  Next Keyword                E  Exit without selecting anything
8304  -  Previous page               %  Print
8305 Spc (space bar) Next page
8306  W  WhereIs
8308 Select Command
8309 ------------------------------------------------
8310  S  Select the highlighted keyword (or chosen keywords in ListMode)
8311  L  Turn on ListMode (makes it easy to choose multiple keywords)
8312  1  Turn off ListMode
8313  X  Toggle choices when using ListMode
8314 </PRE>
8315 <!--chtml endif-->
8317 <H2>Description of the Select Keyword Screen</H2>
8319 This screen just gives you an easy way to select a keyword or a list of
8320 keywords.
8321 The list of keywords presented is the list of all keywords defined in your 
8322 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8323 If you have given a keyword a nickname, that nickname is displayed
8324 instead of the actual keyword.
8326 <P><UL>
8327 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8328 </UL>
8330 &lt;End of help on this topic&gt;
8331 </BODY>
8332 </HTML>
8333 ===== h_select_incoming_to_monitor =====
8334 <HTML>
8335 <HEAD>
8336 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8337 </HEAD>
8338 <BODY>
8339 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8340 <H2>COMMANDS</H2>
8341 <!--chtml if pinemode="function_key"-->
8342 <PRE>
8343 Available  Commands
8344 -------------------------------            
8345 F1  Show Help Text
8346 F3  Exit without selecting anything
8347 F4  Select the marked folders
8348 F5  Move highlight to previous folder
8349 F6  Move highlight to next folder
8350 F7  Previous page of folders
8351 F8  Next page of folders
8352 F9  Toggle choices on or off
8353 F11 Print
8354 F12 WhereIs
8355 </PRE>
8356 <!--chtml else-->
8357 <PRE>
8358 Navigation                     General Alpine Commands
8359 -------------------------      -----------------------
8360  P  Prev Folder                 ?  Display this help text
8361  N  Next Folder                ^C  exit without changing anything
8362  -  Previous page               %  Print
8363 Spc (space bar) Next page
8364  W  WhereIs
8366 Select Command
8367 ------------------------------------------------
8368  S  Select the marked folders
8369  X  Toggle choices on or off
8370 </PRE>
8371 <!--chtml endif-->
8373 <H2>Description of the Select Folders to Check Screen</H2>
8375 This screen is only useful if the feature
8376 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
8377 is set.
8378 By default, when you set that feature all of your incoming folders
8379 will be checked periodically for Unseen messages.
8380 By using this screen, you may restrict the set of monitored folders to
8381 a subset of all of the incoming folders.
8383 Mark the folders you want to monitor for Unseen messages with
8384 an &quot;X&quot;.
8385 When you've finished marking all your selections use the Select
8386 command to register your choices.
8387 To return to the default of checking all incoming folders
8388 delete all folders or unmark all folders.
8390 <P><UL>
8391 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8392 </UL>
8394 &lt;End of help on this topic&gt;
8395 </BODY>
8396 </HTML>
8397 ===== h_role_select =====
8398 <HTML>
8399 <HEAD>
8400 <TITLE>ROLES SCREEN</TITLE>
8401 </HEAD>
8402 <BODY>
8403 <H1>ROLES SCREEN</H1>
8404 <H2>ROLES COMMANDS</H2>
8405 <!--chtml if pinemode="function_key"-->
8406 <PRE>
8407 Available  Commands                        
8408 -------------------------------            
8409 F1  Show Help Text
8410 F3  Exit without a selection
8411 F4  Select a role to use in composition
8412 F5  Move to previous role
8413 F6  Move to next role
8414 F7  Previous page of roles
8415 F8  Next page of roles
8416 F11 Change Default Role
8417 F12 Whereis (search role nicknames)
8418 </PRE>
8419 <!--chtml else-->
8420 <PRE>
8421 Navigation                     General Alpine Commands
8422 -------------------------      -----------------------
8423  P  Prev Role                     ?  Display this help text
8424  N  Next Role                     E  Exit without a selection
8425  -  Previous page
8426 Spc (space bar) Next page
8427  W  WhereIs (search for word in role nicknames)
8429 Select Role Commands
8430 ------------------------------------------------
8431  [Return]  Select highlighted role
8432  D         Change Default Role
8433 </PRE>
8434 <!--chtml endif-->
8436 <H2>Description of the Roles Screen</H2>
8438 With this screen you select a role to be used in the composition of a
8439 message.
8440 Use the Previous and Next commands to highlight the role you wish to
8441 use.
8442 When you type carriage return you will be placed in the composer using the highlighted role.
8444 You don't have any non-default <A HREF="h_rules_roles">roles</A>
8445 available unless you set them up.
8446 You may do so by using the Setup/Rules command on the MAIN MENU.
8448 By using the D command, you may set a default role that will persist until
8449 you change it or until you exit Alpine.
8450 The D command toggles through three states: set the default role, unset the
8451 default role, and leave the default role as it is.
8452 <P><UL>
8453 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8454 </UL>
8456 &lt;End of help on this topic&gt;
8457 </BODY>
8458 </HTML>
8459 ===== h_role_abook_select =====
8460 <HTML>
8461 <HEAD>
8462 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
8463 </HEAD>
8464 <BODY>
8465 <H1>SELECT ADDRESS BOOK SCREEN</H1>
8466 <H2>COMMANDS</H2>
8467 <!--chtml if pinemode="function_key"-->
8468 <PRE>
8469 Available  Commands                        
8470 -------------------------------            
8471 F1  Show Help Text
8472 F3  Exit screen without selecting anything
8473 F4  Select highlighted address book
8474 F5  Move to previous address book
8475 F6  Move to next address book
8476 F7  Previous page of address books
8477 F8  Next page of address books
8478 F12 Whereis
8479 </PRE>
8480 <!--chtml else-->
8481 <PRE>
8482 Navigation                     General Alpine Commands
8483 -------------------------      -----------------------
8484  P  Previous addrbook          ?  Display this help text
8485  N  Next addrbook
8486  -  Previous page
8487 Spc (space bar) Next page
8488  W  WhereIs
8490 Select Role Commands
8491 ------------------------------------------------
8492  S  Select highlighted address book
8493  E  Exit screen without selecting anything
8494 </PRE>
8495 <!--chtml endif-->
8497 <H2>Description of the Select Address Book Screen</H2>
8499 This screen helps you select one of your address books.
8500 Use the Previous and Next commands to highlight the address book you wish to
8501 select.
8502 <P><UL>
8503 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8504 </UL>
8506 &lt;End of help on this topic&gt;
8507 </BODY>
8508 </HTML>
8509 ======== h_rule_patterns =============
8510 <HTML>
8511 <HEAD>
8512 <TITLE>PATTERNS</TITLE>
8513 </HEAD>
8514 <BODY>
8515 <H1>PATTERNS</H1>
8516 Patterns are used with Roles, Filtering, Index Coloring,
8517 Scoring, Other Rules, and Search Rules.
8518 Patterns are compared with a message to see if there is a match.
8519 For Filtering, the messages being checked are all the messages in the
8520 folder, one at a time.
8521 For Index Line Coloring, each message that is visible on the screen is
8522 checked for matches with the Index Coloring Patterns.
8523 Roles are used with the Reply, Forward, and Compose commands.
8524 For Reply, the message used to compare the Pattern with is the message
8525 being replied to;
8526 for Forward, the message used to compare the Pattern with is the message
8527 being forwarded;
8528 and for Compose, there is no message, so the parts of the Pattern that depend
8529 on a message (everything other than Current Folder Type and the
8530 Beginning of Month and Year)
8531 are not used.
8532 Only the Current Folder Type matters for Compose (plus the Beginning of
8533 Month or Year, which you wouldn't usually use for a Role).
8534 For Scoring, the message being scored is compared with all of the Score
8535 Patterns, and the Score Values from the ones that match are added together to 
8536 get the message's score.
8537 For Other Rules, there is no message. Only the Current Folder Type is checked
8538 for Other Rules.
8540 Each Pattern has several possible parts, all of which are optional.
8541 In order for there to be a match, <EM>ALL</EM> of the
8542 <EM>defined</EM> parts of the Pattern must match the message.
8543 If a part is not defined it is considered a match, but note that a filtering
8544 Pattern must have at least one defined part or it will be ignored.
8545 For example, if the To pattern is not defined it will be
8546 displayed as
8548 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
8550 That is considered a match because it is not defined.
8551 This means that the Pattern with nothing defined is a match if the
8552 Current Folder Type matches, but there is an exception that was mentioned
8553 in the previous paragraph.
8554 Because filtering is a potentially destructive action, filtering Patterns
8555 with nothing other than Current Folder Type defined are ignored.
8556 If you really want a filtering Pattern to match all messages (subject to
8557 Current Folder Type) the best way to do it is to define a Score interval
8558 that includes all possible scores.
8559 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
8560 This can be used even if you haven't defined any rules to Set Scores.
8562 There are six predefined header patterns called the To, From, Sender, Cc, News,
8563 and Subject patterns.
8564 Besides those six predefined header patterns, you may add
8565 additional header patterns with header fieldnames of your choosing.
8566 You add an extra header pattern by placing the cursor on one of the
8567 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
8568 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
8569 and the Partic pattern is a header pattern that stands for
8570 Participant (From OR To OR Cc).
8571 (Defining the Recip pattern does not have the same effect as defining both
8572 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
8573 Similar to the header patterns are the AllText pattern and the BodyText pattern.
8574 Instead of comparing this pattern's text against only the contents of
8575 a particular header field, the text for the AllText pattern is compared
8576 with text anywhere in the message's header or body, and the text for the
8577 BodyText pattern is compared with text anywhere in the message's body.
8579 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
8580 &quot;!&quot; &quot;toggle NOT&quot; command.
8581 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8582 &quot;!&quot; at the beginning of the pattern line.
8583 When the &quot;!&quot; is present, it reverses the meaning of the match.
8584 That is, if the pattern matches then it is considered to NOT be a match, and
8585 if it does not match it is considered to be a match.
8587 Don't make the mistake of putting the &quot;!&quot; in the data field for
8588 a pattern.
8589 For example, if you type the characters &quot;!urgent&quot; into the Subject
8590 pattern, the pattern will look like:
8592 <PRE>
8593  Subject pattern = !urgent
8594 </PRE>
8596 This means you want to match the 7 character sequence &quot;!urgent&quot;.
8597 In order to match messages that do not have &quot;urgent&quot; in
8598 their Subject field, first type the characters &quot;urgent&quot; followed
8599 by carriage return for the value of the Subject pattern, then negate it
8600 by typing the &quot;!&quot; command.
8601 It should look like
8603 <PRE>
8604  ! Subject pattern = urgent
8605 </PRE>
8607 The contents of each of these header patterns (or the AllText or BodyText patterns) may
8608 be a complete email address, part of an address, or a random set of
8609 characters to match against.
8610 It may also be a list of such patterns, which means you
8611 are looking for a match against the first pattern in the list <EM>OR</EM>
8612 the second pattern <EM>OR</EM> the third and so on.
8613 For example, a Subject pattern equal to
8615 <PRE>
8616  Subject pattern = urgent
8617                    emergency
8618                    alert
8619 </PRE>
8621 would match all messages with a subject that contained at least one
8622 of those words.
8623 It would also match subjects containing the words &quot;alerts&quot; or
8624 &quot;Urgently&quot;.
8626 The same example with &quot;NOT&quot; turned on would be
8628 <PRE>
8629  ! Subject pattern = urgent
8630                      emergency
8631                      alert
8632 </PRE>
8634 which would match all messages with a subject that did <EM>NOT</EM> contain any of
8635 those words.
8636 You can use the &quot;Add Value&quot; command to add new words to the list,
8637 or you can enter them as a comma-separated list.
8639 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
8640 present for a match.
8641 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
8642 pattern2 must be present,
8643 and that is exactly what using a list does.)
8645 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
8646 also part of the Pattern, although the &quot;Score Interval&quot; is not used
8647 when checking for matches for Scoring.
8648 There are five similar settings that relate to the status of the message.
8649 These settings rely on the message being New or not, Deleted or not,
8650 Answered or not, Important or not, and Recent or not.
8651 There are also some other miscellaneous settings.
8652 The first is the Age of the message in days.
8653 Another is the Size of the message, in bytes.
8654 The third is a setting that detects whether or not the Subject of a
8655 message contains raw 8-bit characters (unencoded characters with the most
8656 significant bit set).
8657 There is a setting that detects whether or not this is the first time
8658 Alpine has been run this month (doesn't depend on individual messages),
8659 and another that detects whether or not this is the first time Alpine has
8660 been run this year.
8661 Other parts of the Pattern detect whether or not the From address of a
8662 message appears in your address book, whether or not certain keywords
8663 are set for a message, and whether or not certain character sets are
8664 used in a message.
8666 <H2>Parts of a Pattern</H2>
8668 <H3>Header patterns</H3>
8670 A header pattern is simply text that is searched for in the corresponding
8671 header field.
8672 For example, if a Pattern has a From header pattern with the value
8673 &quot;@company.com&quot;, then only messages that have a From header
8674 that contains the text &quot;@company.com&quot; will be possible
8675 matches.
8676 Matches don't have to be exact.
8677 For example, if the relevant field of a message contains the text
8678 &quot;mailbox@domain&quot; somewhere
8679 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
8680 &quot;mailbox@domain&quot; are all matches.
8682 All parts of the Pattern must match so, for example,
8683 if a message matches a defined
8684 From pattern, it still must be checked against the other parts of the
8685 Pattern that have been defined.
8686 The To header pattern is a slightly special case.
8687 If the message being checked has a Resent-To header
8688 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
8689 there are used in place of the addresses in the To header.
8690 This is only true for the To header.
8691 Resent-cc and Resent-From headers are never used unless you add them
8692 with the eXtraHdrs command.
8694 The meaning of a header pattern may be negated with the
8695 &quot;!&quot; &quot;toggle NOT&quot; command.
8696 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8697 &quot;!&quot; at the beginning of the pattern line.
8698 It would look something like
8700 <PRE>
8701  ! From pattern = susan@example.com
8702 </PRE>
8704 When the &quot;!&quot; is present, it reverses the meaning of the match.
8706 If you want to check for the presence of a header field but don't care
8707 about its value, then
8708 the empty pattern that you get by entering a pair of
8709 double quotes (&quot;&quot;) should match any message that
8710 has the corresponding header field.
8712 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
8714 AllText patterns are just like header patterns except that the text is
8715 searched for anywhere in the message's headers or body, not just in the
8716 contents of a particular header field.
8719 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
8721 BodyText patterns are just like header patterns except that the text is
8722 searched for anywhere in the message's body, not just in the
8723 contents of a particular header field.
8726 If there is more than one header pattern or AllText pattern or BodyText pattern
8727 for which you want to take the
8728 same action there is a shorthand notation that may be used.
8729 Any of these patterns may be a list of patterns instead of
8730 just a single pattern.
8731 If any one of the patterns in the list matches the message
8732 then it is considered a match.
8733 For example, if &quot;company1&quot; and &quot;company2&quot; both required
8734 you to use the same role when replying to messages, you might have
8735 a To pattern that looks like
8737 <PRE>
8738  To pattern = company1.com
8739               company2.com
8740 </PRE>
8742 This means that if the mail you are replying to was addressed to
8743 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
8744 then this Pattern is a match and the same actions will be taken.
8746 The meaning of an AllText or BodyText pattern may be negated with the
8747 &quot;!&quot; &quot;toggle NOT&quot; command.
8748 You can tell that <EM>NOT</EM> has been turned on by looking for the character
8749 &quot;!&quot; at the beginning of the pattern line.
8750 When the &quot;!&quot; is present, it reverses the meaning of the match.
8752 A technicality: Since comma is the character used to separate multiple values
8753 in any of the fields that may have multiple values (such as header patterns,
8754 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
8755 you must escape comma with a
8756 backslash (&#92;) if you want to include a literal comma in one of those fields.
8757 In other words, if you type a backslash followed by a comma it will
8758 be interpreted as a comma by Alpine, instead of as a separator between
8759 pattern values.
8760 All other backslashes (those not followed by a comma) are literal
8761 backslashes and should not be escaped.
8762 It's unlikely you'll ever need to enter a literal comma or backslash in
8763 any of the patterns.
8765 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
8767 The &quot;Current Folder Type&quot; may be set to one of four different
8768 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
8769 &quot;Specific&quot;.
8770 If the value is set to &quot;News&quot;, then the
8771 Pattern will only match if the currently open folder is a newsgroup.
8772 The value &quot;Email&quot; only matches if the current folder is not news and
8773 the value &quot;Any&quot; causes any folder to match.
8774 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
8775 then you must fill in a value for &quot;Folder&quot;, which is on the line
8776 below the &quot;Specific&quot; line.
8777 In this case you will only get a match if the currently open folder is
8778 the specific folder you list.
8779 You may give a list of folders instead of just a single
8780 folder name, in which case the Pattern will match if the open folder is
8781 any one of the folders in the list.
8782 The name of each folder in the list may be either &quot;INBOX&quot;,
8783 the technical specification
8784 of the folder (like what appears in your configuration file) or, if the
8785 folder is one of your incoming folders, it may be the nickname you've given
8786 the folder.
8787 Here are some samples of specific folder names:
8789 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
8791 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
8793 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
8795 The easiest way to fill in the &quot;Folder&quot; field is to use
8796 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
8797 highlighted, or to use the &quot;Take&quot; command with the configuration
8798 feature
8799 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
8800 turned on.
8802 When reading a newsgroup, there may be a performance penalty
8803 incurred when collecting the information necessary to check whether
8804 or not a Pattern matches a message.
8805 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
8806 If you have Patterns with a Current Folder Type of either
8807 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
8808 Index Line Coloring or Scoring, you may experience
8809 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
8811 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
8813 The &quot;Age Interval&quot; may be set to an interval of message
8814 ages that should be considered a match.
8815 Like the other parts of the Pattern, if it is unset it will be ignored.
8816 The Age Interval looks like
8818 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
8820 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
8821 than or equal to zero.
8822 The special value &quot;INF&quot; may be used for
8823 the max value. It represents infinity.
8825 Actually, this option may be defined as a list of intervals instead
8826 of just a single interval.
8827 The list is separated by commas.
8828 It can look like
8830 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
8832 When there is an Age Interval defined, it is a match if the age, in days, of
8833 the message is contained in any of the intervals.
8834 The intervals include both endpoints.
8836 Even though this option is called Age, it isn't actually
8837 the <EM>age</EM> of the message.
8838 Instead, it is how many days ago the message arrived in one of your folders.
8839 If the current time is a little past midnight, then a message that arrived
8840 just before midnight arrived yesterday, even though the message is only
8841 a few minutes old.
8842 By default, the date being used is not the date in the Date
8843 header of the message.
8844 It is the date that the message arrived in one of your folders.
8845 When you Save a message from one folder to another that arrival date
8846 is preserved.
8847 If you would like to use the date in the Date header that is possible.
8848 Turn on the option
8849 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
8850 near the bottom of the rule definition.
8851 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
8853 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
8855 The &quot;Size Interval&quot; may be set to an interval of message
8856 sizes that should be considered a match.
8857 Like the other parts of the Pattern, if it is unset it will be ignored.
8858 The Size Interval looks like
8860 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
8862 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
8863 than or equal to zero.
8864 The special value &quot;INF&quot; may be used for
8865 the max value. It represents infinity.
8867 Actually, this option may be defined as a list of intervals instead
8868 of just a single interval.
8869 The list is separated by commas.
8870 It can look like
8872 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
8874 When there is a Size Interval defined, it is a match if the size, in bytes, of
8875 the message is contained in any of the intervals.
8876 The intervals include both endpoints.
8878 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
8880 The &quot;Score Interval&quot; may be set to an interval of message
8881 scores that should be considered a match.
8882 Like the other parts of the Pattern, if it is unset it will be ignored.
8883 The Score Interval looks like
8885 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
8887 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
8888 negative integers, with min_score less than or equal to max_score.
8889 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
8890 the min and max values to represent negative and positive infinity.
8892 Actually, a list of intervals may be used if you wish.
8893 A list would look like
8895 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
8897 When there is a Score Interval defined, it is a match if the score for
8898 the message is contained in any of the intervals in the list.
8899 The intervals include the endpoints.
8900 The score for a message is calculated by looking at every Score rule defined and
8901 adding up the Score Values for the ones that match the message.
8902 When deciding whether or not a Pattern matches a message for purposes of
8903 calculating the score, the Score Interval is ignored.
8905 <H3><A NAME="pattern_message_status">Message Status</A></H3>
8907 There are five separate message status settings.
8908 By default, all five are set to the value &quot;Don't care&quot;, which
8909 will match any message.
8910 The value &quot;Yes&quot; means that the particular status must be true
8911 for a match, and the value &quot;No&quot; means that the particular
8912 status must not be true for a match.
8913 For example, one of the five Message Status settings is whether a message
8914 is marked Important or not.
8915 A &quot;Yes&quot; means that the message must be Important to be
8916 considered a match and &quot;No&quot; means that the message must not be
8917 Important to be considered a match.
8918 The same is true of the other four message status settings that depend
8919 on whether or not the message is New; whether the message has 
8920 been Answered or not; whether the message has been Deleted or not, and
8921 whether the message is Recent or not. 
8923 The nomenclature for New and Recent is a bit confusing:
8925 New means that the message is Unseen.
8926 It could have been in your mailbox for a long time but if you haven't looked
8927 at it, it is still considered New.
8928 That matches the default Alpine index display that shows an N for such a
8929 message.
8931 Recent means that the message was added to this folder since the last time
8932 you opened the folder.
8933 Alpine also shows an N by default for these types of messages.
8934 If you were to run two copies of Alpine that opened a folder one right after
8935 the other, a message would only show up as Recent in (at most) the first
8936 Alpine session.
8938 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
8940 Keywords are similar to Message Status, but they are chosen by the user.
8941 Provided the mail server allows for it, you may add a set of possible keywords
8942 to a folder and then you may set those keywords or not for each message
8943 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
8944 The syntax of this part of the Pattern is similar to the header patterns.
8945 It is a list of keywords.
8946 The Keyword part of the Pattern is a match if the message has any of
8947 the keywords in the list set.
8948 Like other parts of the Pattern, if this is unset it will be ignored.
8950 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
8952 A message may use one or more character sets.
8953 This part of the Pattern matches messages that make use of one or more of
8954 the character sets specified in the pattern.
8955 It will be considered a match if a message uses any of the character
8956 sets in the list you give here.
8959 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
8960 GB2312) you may also use some shorthand names that Alpine provides.
8961 These names are more understandable shorthand names for sets of 
8962 character set names.
8963 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
8964 Selecting one of these shorthand names is equivalent to selecting all of
8965 the character sets that make up the set.
8966 You can see all of these shorthand names and the lists of character sets
8967 they stand for by typing the &quot;T&quot; command with the Character
8968 Set pattern highlighted.
8969 The syntax of this part of the Pattern is similar to the header patterns
8970 and the Message Keywords pattern.
8971 It is a list of character sets (or shorthand names).
8972 The Character Set part of the Pattern is a match if the message uses any
8973 of the character sets in the list.
8974 Like other parts of the Pattern, if this is unset it will be ignored.
8976 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
8978 It seems that lots of unwanted email contains unencoded 8-bit characters
8979 in the Subject.
8980 Normally, characters with the 8th bit set are not allowed in the Subject
8981 header unless they are MIME-encoded.
8982 This option gives you a way to match messages that have Subjects that
8983 contain unencoded 8-bit characters.
8984 By default, the value of this option is &quot;Don't care&quot;, which
8985 will match any message.
8986 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
8987 the Subject of the message in order for there to be a match,
8988 and the value &quot;No&quot; is the opposite.
8989 Setting this option will affect performance in large folders because the
8990 subject of each message in the folder has to be checked.
8992 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
8994 This option gives you a way to take some action once per month.
8995 By default, the value of this option is &quot;Don't care&quot;, which
8996 will always match.
8997 The value &quot;Yes&quot; means that this must be the first time Alpine has
8998 been run this month in order to count as a match,
8999 and the value &quot;No&quot; is the opposite.
9001 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9003 This option gives you a way to take some action once per year.
9004 By default, the value of this option is &quot;Don't care&quot;, which
9005 will always match.
9006 The value &quot;Yes&quot; means that this must be the first time Alpine has
9007 been run this year in order to count as a match,
9008 and the value &quot;No&quot; is the opposite.
9010 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9012 This option gives you a way to match messages that have an address
9013 that is in one of your address books.
9014 Only the simple entries in your address books are searched.
9015 Address book distribution lists are ignored!
9016 By default, the value of this option is &quot;Don't care&quot;, which
9017 will match any message.
9018 The value &quot;Yes, in any address book&quot; means the address
9019 from the message must be in at least one of your
9020 address books in order to be a match.
9021 The value &quot;No, not in any address book&quot;
9022 means none of the addresses may
9023 be in any of your address books in order to be a match.
9024 The values &quot;Yes, in specific address books&quot; and
9025 &quot;No, not in any of specific address books&quot; are similar but instead
9026 of depending on all address books you are allowed to give a list of address
9027 books to look in.
9028 The addresses from the message that are checked for are determined by the
9029 setting you have for &quot;Types of addresses to check for in address book&quot;.
9030 If you set this to &quot;From&quot; the From address from the message will
9031 be looked up in the address book.
9032 If you set it to only &quot;To&quot; then the To addresses will be used.
9033 If any of the To addresses are in the address book then it is considered
9034 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9035 You could set it to both From and To, in which case all of the From and To
9036 addresses are used.
9037 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9038 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9039 exists or the From address if there is no Reply-To address.
9040 Same for the Sender address.
9041 Setting this option may affect performance in large folders because the
9042 From and Reply-To of each message in the folder have to be checked.
9044 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9046 This is a command that is run with its standard input set to the message
9047 being checked and its standard output discarded.
9048 The full directory path should be specified.
9049 The command will be run and then its exit status will be checked against
9050 the Exit Status Interval, which defaults to just the value zero.
9051 If the exit status of the command falls in the interval, it is considered
9052 a match, otherwise it is not a match.
9055 This option may actually be a list of commands.
9056 The first one that exists and is executable is used.
9057 That makes it possible to use the same configuration with Unix Alpine and
9058 PC-Alpine.
9061 If none of the commands in the list exists and is executable then the rule
9062 is <EM>not</EM> a match.
9063 If it is possible that the command may not exist, you should be careful
9064 to structure your rules so that nothing destructive
9065 happens when the command does not exist.
9066 For example, you might have a filter that filters away spam when there is
9067 a match but does nothing when there is not a match.
9068 That would continue to work correctly if the command didn't exist.
9069 However, if you have a filter that filters away spam when there is not
9070 a match and keeps it when there is a match, that would filter everything
9071 if the categorizer command didn't exist.
9073 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9074 setup for the bogofilter filter.
9077 &lt;End of help on this topic&gt;
9078 </BODY>
9079 </HTML>
9080 ===== h_rules_roles =====
9081 <HTML>
9082 <HEAD>
9083 <TITLE>SETUP ROLES SCREEN</TITLE>
9084 </HEAD>
9085 <BODY>
9086 <H1>SETUP ROLES SCREEN</H1>
9087 <H2>SETUP ROLES COMMANDS</H2>
9088 <!--chtml if pinemode="function_key"-->
9089 <PRE>
9090 Available  Commands -- Group 1         Available Commands -- Group 2   
9091 -------------------------------        ------------------------------  
9092 F1  Show Help Text                      F1  Show Help Text             
9093 F2  See commands in next group          F2  See commands in next group
9094 F3  Back to MAIN Alpine menu
9095 F4  Change configuration for role
9096 F5  Move to previous role               F5  Include file in role config
9097 F6  Move to next role                   F6  Exclude file from config
9098 F7  Previous page of roles
9099 F8  Next page of roles
9100 F9  Add new role                        F9  Replicate existing role
9101 F10 Delete existing role
9102 F11 Shuffle the order of roles
9103 F12 Whereis (search role nicknames)
9104 </PRE>
9105 <!--chtml else-->
9106 <PRE>
9107 Navigation                     General Alpine Commands
9108 -------------------------      -----------------------
9109  P  Prev Role                     ?  Display this help text
9110  N  Next Role                     E  Back to MAIN Alpine menu
9111  -  Previous page
9112 Spc (space bar) Next page
9113  W  WhereIs (search for word in role nicknames)
9115 Setup Roles Commands
9116 ------------------------------------------------
9117  A  Add new role                  $  Shuffle the order of roles
9118  D  Delete existing role          C  Change configuration for highlighted role
9119  R  Replicate existing role
9120  I  Include file in role config   X  Exclude file from role config
9121 </PRE>
9122 <!--chtml endif-->
9124 <H2>Description of the Setup Roles Screen</H2>
9126 This screen lets you add, delete, modify, or change the order of the rules
9127 that determine the role you are playing when composing a message.
9129 You may play different roles depending on who you are replying to.
9130 For example, if you are replying to a message addressed to help-desk you
9131 may be acting as a Help Desk Worker.
9132 That role may require that you use a different return address and/or
9133 a different signature.
9135 Roles are optional.
9136 If you set up roles they work like this:  Each role has a set of
9137 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9138 considered for a particular use; a &quot;Pattern&quot;,
9139 which is used to decide which of the eligible roles is used; and a set
9140 of &quot;Actions&quot;, which are taken when that role is used.
9141 When you reply to a message, the message you are replying to is compared
9142 with the Patterns of the roles marked as eligible for use when replying.
9143 The comparisons start with the first eligible role and keep going until there
9144 is a match.
9145 If a match is found, the matching role's Actions are taken.
9147 It is also possible to set a default role and to change that role during
9148 your Alpine session.
9149 When you start Alpine no default role will be set.
9150 You may set or change the current default role by using the &quot;D&quot;
9151 command in the role selection screen.
9152 You'll see that screen while composing a message and being asked to select
9153 a role.
9154 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9155 compose a message.
9156 You may find a default role useful if you normally perform the duties of one
9157 of your roles for a while, then you switch to another role and stay in the
9158 new role for another period of time.
9159 It may be easier than using the Role Command to select the role each time you
9160 compose a message.
9162 <H2>Role Uses</H2>
9164 There are three types of use to be configured;
9165 one for Replying, one for Forwarding, and one for Composing.
9166 These indicate whether or not you want a role to be considered when you
9167 type the Reply, Forward, or Compose commands.
9168 (The Role command is an alternate form of the Compose command, and it is
9169 not affected by these settings.)
9170 Each of these Use types has three possible values.
9171 The value &quot;Never&quot;
9172 means that the role will never be considered as a candidate for use with
9173 the corresponding command.
9174 For example, if you set a role's Reply Use to Never, then when you Reply to
9175 a message, that role won't even be considered.
9176 (That isn't quite true. If the message you are replying to matches some other
9177 role that requires confirmation,
9178 then there will be a ^T command available which allows you to select a role
9179 from all of your roles, not just the reply-eligible roles.)
9182 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9183 both mean that you do want to consider this role when using the corresponding
9184 command.
9185 For either of these settings the role's Pattern will
9186 be checked to see if it matches the message.
9187 For Reply Use, the message used to compare the Pattern with is the message
9188 being replied to.
9189 For Forward Use, the message used to compare the Pattern with is the message
9190 being forwarded.
9191 For Compose Use, there is no message, so the parts of the Pattern that depend
9192 on a message (everything other than Current Folder Type) are ignored.
9193 In all cases, the Current Folder Type is checked if defined.
9194 If there is a match then this role will either be used without confirmation
9195 or will be the default when confirmation is asked for, depending on
9196 which of the two options is selected.
9197 If confirmation is requested, you will have a chance to
9198 choose No Role instead of the offered role, or to
9199 change the role to any one of your other roles (with the ^T command).
9201 <H2>Role Patterns</H2>
9203 In order to determine whether or not a message matches a role the message is
9204 compared with the Role's Pattern.
9205 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9206 Scoring, Other Rules, and Search Rules, so are described in only one place,
9207 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9209 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9210 a role that has all header patterns unset, the AllText pattern unset,
9211 the BodyText pattern unset,
9212 the Score Interval unset, and the Current Folder Type set to
9213 &quot;Any&quot; may be used as a default role.
9214 It should be put last in the list of roles since the matching
9215 starts at the beginning and proceeds until one of the roles is a match.
9216 If no roles at all match, then Alpine will
9217 use its regular methods of defining the role.
9218 If you wanted to, you could define a different &quot;default&quot; role
9219 for Replying, Forwarding, and Composing by setting the
9220 &quot;Use&quot; fields appropriately.
9222 <H2>Role Actions</H2>
9224 Once a role match is found, the role's Actions are taken.
9225 For each role there are several possible actions that may be defined.
9226 They are actions to set the From address, the Reply-To address,
9227 the Fcc, the Signature, the Template file, and Other Headers.
9229 <H3>Set From</H3>
9231 The From address is the address used on the From line of the message
9232 you are sending.
9234 <H3>Set Reply-To</H3>
9236 The Reply-To address is the address used on the Reply-To line of the message
9237 you are sending.
9238 You don't need a Reply-To address unless it is different from the From address.
9240 <H3>Set Other Headers</H3>
9242 If you want to set the value of the From or Reply-To headers, use
9243 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9244 If you want to set the values of other headers, use this field.
9245 This field is similar to the
9246 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9247 Each header you specify here must include the header tag
9248 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9249 and may optionally include a value for that header.
9250 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9251 for a header here will replace any value that already exists.
9252 For example, if you are Replying to a message there will be at least one
9253 address in the To header (the address you are Replying to).
9254 However, if you Reply using a role that sets the To header, that role's
9255 To header value will be used instead.
9257 <H3>Set Fcc</H3>
9259 The Fcc is used as the Fcc for the message you are sending.
9261 <H3>Set Signature or Set LiteralSig</H3>
9263 The Signature is the name of a file to be used as the signature file when
9264 this role is being used.
9265 If the name of the file has a vertical bar following it (|)
9266 then it is assumed that the file is a program that should be run to
9267 produce the signature.
9268 If the LiteralSig is set, then it is used instead of the signature file.
9269 LiteralSig is just a different way to store the signature.
9270 It is stored in the pine configuration file instead of in a separate
9271 signature file.
9272 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9273 either in the role or as the default signature in the Setup/Config screen,
9274 then the signature file is ignored.
9276 <H3>Set Template</H3>
9278 A Template is the name of a file to be included in the message when this
9279 role is being used.
9280 If the name of the file has a vertical bar following it (|)
9281 then it is assumed that the file is a program that should be run to
9282 produce the template.
9285 Both signature files and template files may be stored remotely on an IMAP
9286 server.
9287 In order to do that you just give the file a remote name.
9288 This works just like the regular
9289 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9290 option that is configured from the Setup/Configuration screen.
9291 A remote signature file name might look like:
9293 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9295 Once you have named the remote signature or template file you create its
9296 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9297 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9298 line of the role editor.
9301 Both signature files and template files (or the output of signature programs
9302 and template file programs) may contain special tokens
9303 that are replaced with contents
9304 that depend on the message being replied to or forwarded.
9305 See the help for the individual fields inside the role editor for more
9306 information on tokens.
9308 <H3>Use SMTP Server</H3>
9310 If this field has a value, then it will be used as the SMTP server
9311 to send mail when this role is being used (unless the SMTP server variable
9312 is set in the system-wide fixed configuration file).
9313 It has the same semantics as the
9314 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9315 variable in the Setup/Config screen.
9316 When you postpone the composition this SMTP server list will be saved
9317 with the postponed composition and it cannot be changed later.
9318 Because of that, you may want to make this a list of SMTP servers
9319 with the preferred server at the front of the list and alternate servers
9320 later in the list.
9323 If any of the actions are left unset, then the action depends on what
9324 is present in the &quot;Initialize settings using role&quot; field.
9325 If you've listed the nickname of another one of your roles there, then the
9326 corresponding action from that role will be used here.
9327 If that action is also blank, or if there is no nickname specified,
9328 then Alpine will do whatever it normally does to set these actions.
9329 This depends on other configuration options and features you've set.
9331 <H2>Command Descriptions</H2>
9333 <H3>Add</H3>
9335 The Add command is used to add a new role definition to your set of
9336 roles.
9337 The new role will be added after the highlighted role.
9339 <H3>Delete</H3>
9341 The Delete command deletes the currently highlighted role.
9343 <H3>Change</H3>
9345 The Change command lets you edit the nickname, Uses, Pattern,
9346 and Actions of the currently highlighted role.
9348 <H3>Shuffle</H3>
9350 The Shuffle command allows you to change the order of the roles.
9351 You may move the currently highlighted role up or down in the list.
9352 The order of the roles is important since the roles are tested for a
9353 match starting with the first role and continuing until a match is found.
9354 You should place the roles with more specific Patterns near the beginning
9355 of the list, and those with more general Patterns near the end so that
9356 the more specific matches will happen when appropriate.
9358 <H3>Replicate</H3>
9360 The Replicate command is used to copy an existing role and modify it.
9361 The new role will be added after the highlighted role.
9363 <H3>IncludeFile</H3>
9365 The IncludeFile command allows you to add a roles file to your configuration.
9366 Usually, your roles will be contained in your Alpine configuration file.
9367 If you wish, some or all of your roles may be stored in a separate file.
9368 If a roles file already exists (maybe it was made by somebody else using
9369 Alpine), you may insert it before the currently highlighted role.
9370 You may also insert an empty file or a file that does not yet exist.
9371 Once you have an empty roles file in your configuration, you may use
9372 the Shuffle command to move roles into it.
9373 In fact, that's the only way to get the initial role into the file.
9375 <H3>eXcludeFile</H3>
9377 The eXcludeFile command removes a roles file from your roles configuration.
9378 A limitation of the program is that in order to exclude a roles file
9379 that file must have at least one role
9380 in it, otherwise you won't be able to highlight a line in the file.
9381 So you may have to add a dummy role to the file in order to exclude the file.
9382 <P><UL>
9383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9384 </UL>
9386 &lt;End of help on this topic&gt;
9387 </BODY>
9388 </HTML>
9389 ===== h_rules_other =====
9390 <HTML>
9391 <HEAD>
9392 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
9393 </HEAD>
9394 <BODY>
9395 <H1>SETUP OTHER RULES SCREEN</H1>
9396 <H2>SETUP OTHER RULES COMMANDS</H2>
9397 <!--chtml if pinemode="function_key"-->
9398 <PRE>
9399 Available  Commands -- Group 1         Available Commands -- Group 2   
9400 -------------------------------        ------------------------------  
9401 F1  Show Help Text                      F1  Show Help Text             
9402 F2  See commands in next group          F2  See commands in next group
9403 F3  Back to MAIN Alpine menu
9404 F4  Change configuration for rule
9405 F5  Move to previous rule               F5  Include file in rule config
9406 F6  Move to next rule                   F6  Exclude file from config
9407 F7  Previous page of rules
9408 F8  Next page of rules
9409 F9  Add new rule                        F9  Replicate existing rule
9410 F10 Delete existing rule
9411 F11 Shuffle the order of rules
9412 F12 Whereis (search rule nicknames)
9413 </PRE>
9414 <!--chtml else-->
9415 <PRE>
9416 Navigation                     General Alpine Commands
9417 -------------------------      -----------------------
9418  P  Prev rule                     ?  Display this help text
9419  N  Next rule                     E  Back to MAIN Alpine menu
9420  -  Previous page
9421 Spc (space bar) Next page
9422  W  WhereIs (search for word in rule nicknames)
9424 Setup Other Rules Commands
9425 ------------------------------------------------
9426  A  Add new rule                  $  Shuffle the order of rules
9427  D  Delete existing rule          C  Change configuration for highlighted rule
9428  R  Replicate existing rule
9429  I  Include file in rule config   X  Exclude file from rule config
9430 </PRE>
9431 <!--chtml endif-->
9433 <H2>Description of the Setup Other Rules Screen</H2>
9435 This is where you may set various actions that do not fit well into the
9436 other Rules categories.
9438 <H2>Patterns</H2>
9440 Other Rules are a little different from the rest of the Rules because
9441 they depend only on the current folder, and not on a particular message.
9442 In order to determine whether or not a rule's actions should be applied
9443 the current folder is compared with the rule's Pattern, which consists
9444 of only the Current Folder Type.
9445 Current Folder Type works the same for Other Rules as it does for Roles,
9446 Filtering, Index Coloring, and Scoring.
9447 Keep in mind that the only part of the Pattern that applies to Other
9448 Rules is the Current Folder Type when looking at the description of
9449 Patterns given
9450 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9452 <H2>The Actions</H2>
9454 <H3>Set Sort Order</H3>
9456 When you enter a new folder, these rules will be checked to see if you
9457 have set a sort order that is different from your default sort order.
9458 The default is set in the Setup/Config screen with
9459 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
9460 If the Sort Order action is set, then the folder will be displayed sorted in
9461 that sort order instead of in the default order.
9463 A possible point of confusion arises when you change the configuration
9464 of the Sort Order for the currently open folder.
9465 The folder will normally be re-sorted when you go back to viewing the
9466 index.
9467 However, if you have manually sorted the folder with the
9468 Sort
9469 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
9470 command, then it will not be re-sorted until the next time it is opened.
9472 <H3>Set Index Format</H3>
9474 When you enter a new folder, these rules will be checked to see if you
9475 have set an Index Format that is different from your default Index Format,
9476 which is set with the
9477 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
9478 If so, the index will be displayed with this format instead of the default.
9480 <H3>Set Startup Rule</H3>
9482 When you enter a new folder, these rules will be checked to see if you
9483 have set a startup rule that is different from the default startup rule.
9484 The default for incoming folders is set in the Setup/Config screen with
9485 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
9486 The default for folders other than INBOX that are not part of your
9487 incoming collection
9488 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
9489 is to start with the last message in the folder.
9490 If the Startup Rule is set to something other than &quot;default&quot;,
9491 then the rule will determine which message will be the current message when
9492 the folder is first opened.
9494 The various startup rule possibilities work the same here as they do in
9495 the incoming collection, so check
9496 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
9497 for more help.
9499 <H2>Command Descriptions</H2>
9501 <H3>Add</H3>
9503 The Add command is used to add a new rule definition to your set of
9504 rules.
9505 The new rule will be added after the highlighted rule.
9507 <H3>Delete</H3>
9509 The Delete command deletes the currently highlighted rule.
9511 <H3>Change</H3>
9513 The Change command lets you edit the nickname, Pattern,
9514 and Action of the currently highlighted rule.
9516 <H3>Shuffle</H3>
9518 The Shuffle command allows you to change the order of the rules.
9519 You may move the currently highlighted rule up or down in the list.
9520 The order of the rules is important since the rules are tested for a
9521 match starting with the first rule and continuing until a match is found.
9522 You should place the rules with more specific Patterns near the beginning
9523 of the list, and those with more general Patterns near the end so that
9524 the more specific matches will happen when appropriate.
9526 <H3>Replicate</H3>
9528 The Replicate command is used to copy an existing rule definition and modify it.
9529 The new rule will be added after the highlighted rule.
9531 <H3>IncludeFile</H3>
9533 The IncludeFile command allows you to add a rules file to your configuration.
9534 Usually, your rules will be contained in your Alpine configuration file.
9535 If you wish, some or all of your rules may be stored in a separate file.
9536 If a rules file already exists (maybe it was made by somebody else using
9537 Alpine), you may insert it before the currently highlighted rule.
9538 You may also insert an empty file or a file that does not yet exist.
9539 Once you have an empty rules file in your configuration, you may use
9540 the Shuffle command to move rules into it.
9541 In fact, that's the only way to get the initial rule into the file.
9543 <H3>eXcludeFile</H3>
9545 The eXcludeFile command removes a rules file from your rules configuration.
9546 A limitation of the program is that in order to exclude a rules file
9547 that file must have at least one rule
9548 in it, otherwise you won't be able to highlight a line in the file.
9549 So you may have to add a dummy rule to the file in order to exclude the file.
9550 <P><UL>
9551 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9552 </UL>
9554 &lt;End of help on this topic&gt;
9555 </BODY>
9556 </HTML>
9557 ===== h_rules_srch =====
9558 <HTML>
9559 <HEAD>
9560 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
9561 </HEAD>
9562 <BODY>
9563 <H1>SETUP SEARCH RULES SCREEN</H1>
9564 <H2>SETUP SEARCH RULES COMMANDS</H2>
9565 <!--chtml if pinemode="function_key"-->
9566 <PRE>
9567 Available  Commands -- Group 1         Available Commands -- Group 2   
9568 -------------------------------        ------------------------------  
9569 F1  Show Help Text                      F1  Show Help Text             
9570 F2  See commands in next group          F2  See commands in next group
9571 F3  Back to MAIN Alpine menu
9572 F4  Change configuration for rule
9573 F5  Move to previous rule               F5  Include file in rule config
9574 F6  Move to next rule                   F6  Exclude file from config
9575 F7  Previous page of rules
9576 F8  Next page of rules
9577 F9  Add new rule                        F9  Replicate existing rule
9578 F10 Delete existing rule
9579 F11 Shuffle the order of rules
9580 F12 Whereis (search rule nicknames)
9581 </PRE>
9582 <!--chtml else-->
9583 <PRE>
9584 Navigation                     General Alpine Commands
9585 -------------------------      -----------------------
9586  P  Prev rule                     ?  Display this help text
9587  N  Next rule                     E  Back to MAIN Alpine menu
9588  -  Previous page
9589 Spc (space bar) Next page
9590  W  WhereIs (search for word in rule nicknames)
9592 Setup Search Rules Commands
9593 ------------------------------------------------
9594  A  Add new rule                  $  Shuffle the order of rules
9595  D  Delete existing rule          C  Change configuration for highlighted rule
9596  R  Replicate existing rule
9597  I  Include file in rule config   X  Exclude file from rule config
9598 </PRE>
9599 <!--chtml endif-->
9601 <H2>Description of the Setup Search Rules Screen</H2>
9603 One of the commands that becomes available when that feature is turned on
9604 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
9605 screen to select a set of messages.
9606 One way of selecting messages is to use a Rule.
9607 All of the messages that match (or don't match if you wish)
9608 a Rule's Pattern will be selected.
9610 Any of your Rules may be used for this purpose.
9611 You might already have Rules set up for filtering, index line color, scores, or roles;
9612 and you may use any of those Rules with the Select command.
9613 However, you might find it more convenient to set up a separate set of Rules
9614 just for this purpose without having to worry about what other effects
9615 they may cause.
9616 That is the purpose of these Select Rules.
9619 Each rule has a &quot;Pattern&quot;
9620 that is used to decide which messages are selected when you use it with
9621 the Select command.
9623 <H2>Patterns</H2>
9625 In order to determine whether or not a message should be selected
9626 the message is compared with the rule's Pattern.
9627 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9628 Scoring, Other Rules, and Search Rules, so are described in only one place,
9629 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9631 <H2>Command Descriptions</H2>
9633 <H3>Add</H3>
9635 The Add command is used to add a new rule definition to your set of
9636 rules.
9637 The new rule will be added after the highlighted rule.
9639 <H3>Delete</H3>
9641 The Delete command deletes the currently highlighted rule.
9643 <H3>Change</H3>
9645 The Change command lets you edit the nickname and Pattern
9646 of the currently highlighted rule.
9648 <H3>Shuffle</H3>
9650 The Shuffle command allows you to change the order of the rules.
9651 This affects only the order they are presented in when you use the
9652 ^T subcommand of the Select by Rule command.
9653 You may move the currently highlighted rule up or down in the list.
9655 <H3>Replicate</H3>
9657 The Replicate command is used to copy an existing rule definition and modify it.
9658 The new rule will be added after the highlighted rule.
9660 <H3>IncludeFile</H3>
9662 The IncludeFile command allows you to add a rules file to your configuration.
9663 Usually, your rules will be contained in your Alpine configuration file.
9664 If you wish, some or all of your rules may be stored in a separate file.
9665 If a rules file already exists (maybe it was made by somebody else using
9666 Alpine), you may insert it before the currently highlighted rule.
9667 You may also insert an empty file or a file that does not yet exist.
9668 Once you have an empty rules file in your configuration, you may use
9669 the Shuffle command to move rules into it.
9670 In fact, that's the only way to get the initial rule into the file.
9672 <H3>eXcludeFile</H3>
9674 The eXcludeFile command removes a rules file from your rules configuration.
9675 A limitation of the program is that in order to exclude a rules file
9676 that file must have at least one rule
9677 in it, otherwise you won't be able to highlight a line in the file.
9678 So you may have to add a dummy rule to the file in order to exclude the file.
9679 <P><UL>
9680 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9681 </UL>
9683 &lt;End of help on this topic&gt;
9684 </BODY>
9685 </HTML>
9686 ===== h_rules_incols =====
9687 <HTML>
9688 <HEAD>
9689 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
9690 </HEAD>
9691 <BODY>
9692 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
9693 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
9694 <!--chtml if pinemode="function_key"-->
9695 <PRE>
9696 Available  Commands -- Group 1         Available Commands -- Group 2   
9697 -------------------------------        ------------------------------  
9698 F1  Show Help Text                      F1  Show Help Text             
9699 F2  See commands in next group          F2  See commands in next group
9700 F3  Back to MAIN Alpine menu
9701 F4  Change configuration for rule
9702 F5  Move to previous rule               F5  Include file in rule config
9703 F6  Move to next rule                   F6  Exclude file from config
9704 F7  Previous page of rules
9705 F8  Next page of rules
9706 F9  Add new rule                        F9  Replicate existing rule
9707 F10 Delete existing rule
9708 F11 Shuffle the order of rules
9709 F12 Whereis (search rule nicknames)
9710 </PRE>
9711 <!--chtml else-->
9712 <PRE>
9713 Navigation                     General Alpine Commands
9714 -------------------------      -----------------------
9715  P  Prev rule                     ?  Display this help text
9716  N  Next rule                     E  Back to MAIN Alpine menu
9717  -  Previous page
9718 Spc (space bar) Next page
9719  W  WhereIs (search for word in rule nicknames)
9721 Setup Index Color Commands
9722 ------------------------------------------------
9723  A  Add new rule                  $  Shuffle the order of rules
9724  D  Delete existing rule          C  Change configuration for highlighted rule
9725  R  Replicate existing rule
9726  I  Include file in rule config   X  Exclude file from rule config
9727 </PRE>
9728 <!--chtml endif-->
9730 <H2>Description of the Setup Index Line Colors Screen</H2>
9732 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
9733 This action is only available if your terminal is capable of displaying
9734 color and color display has been enabled with the
9735 <A HREF="h_config_color_style">Color Style</A> option within the
9736 Setup Color screen.
9737 (In PC-Alpine, color is always enabled so there is no option to turn on.)
9738 This screen lets you add, delete, modify, or change the order of the rules
9739 that cause the lines in the MESSAGE INDEX to be displayed in different
9740 colors.
9742 Each rule has a &quot;Pattern&quot;,
9743 which is used to decide which of the rules is used; and the color that
9744 is used if the Pattern matches a particular message.
9746 <H2>Index Color Patterns</H2>
9748 In order to determine whether or not a message matches an Index Color Rule
9749 the message is compared with the rule's Pattern.
9750 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9751 Scoring, Other Rules, and Search Rules, so are described in only one place,
9752 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9755 If none of the Index Color rules is a match for a particular index line,
9756 then the color used is set using
9757 the <A HREF="h_color_setup">Setup Kolor</A> screen.
9759 <H2>Index Line Color</H2>
9761 This is the color that index lines are colored when there is a matching
9762 Pattern.
9763 This colors the whole index line, except possibly the status letters,
9764 which may be colored separately using
9765 the <A HREF="h_color_setup">Setup Kolor</A> screen.
9767 <H2>Command Descriptions</H2>
9769 <H3>Add</H3>
9771 The Add command is used to add a new rule definition to your set of
9772 rules.
9773 The new rule will be added after the highlighted rule.
9775 <H3>Delete</H3>
9777 The Delete command deletes the currently highlighted rule.
9779 <H3>Change</H3>
9781 The Change command lets you edit the nickname, Pattern,
9782 and Index Line Color of the currently highlighted rule.
9784 <H3>Shuffle</H3>
9786 The Shuffle command allows you to change the order of the rules.
9787 You may move the currently highlighted rule up or down in the list.
9788 The order of the rules is important since the rules are tested for a
9789 match starting with the first rule and continuing until a match is found.
9790 You should place the rules with more specific Patterns near the beginning
9791 of the list, and those with more general Patterns near the end so that
9792 the more specific matches will happen when appropriate.
9794 <H3>Replicate</H3>
9796 The Replicate command is used to copy an existing rule definition and modify it.
9797 The new rule will be added after the highlighted rule.
9799 <H3>IncludeFile</H3>
9801 The IncludeFile command allows you to add a rules file to your configuration.
9802 Usually, your rules will be contained in your Alpine configuration file.
9803 If you wish, some or all of your rules may be stored in a separate file.
9804 If a rules file already exists (maybe it was made by somebody else using
9805 Alpine), you may insert it before the currently highlighted rule.
9806 You may also insert an empty file or a file that does not yet exist.
9807 Once you have an empty rules file in your configuration, you may use
9808 the Shuffle command to move rules into it.
9809 In fact, that's the only way to get the initial rule into the file.
9811 <H3>eXcludeFile</H3>
9813 The eXcludeFile command removes a rules file from your rules configuration.
9814 A limitation of the program is that in order to exclude a rules file
9815 that file must have at least one rule
9816 in it, otherwise you won't be able to highlight a line in the file.
9817 So you may have to add a dummy rule to the file in order to exclude the file.
9818 <P><UL>
9819 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9820 </UL>
9822 &lt;End of help on this topic&gt;
9823 </BODY>
9824 </HTML>
9825 ===== h_rules_filter =====
9826 <HTML>
9827 <HEAD>
9828 <TITLE>SETUP FILTERING SCREEN</TITLE>
9829 </HEAD>
9830 <BODY>
9831 <H1>SETUP FILTERING SCREEN</H1>
9832 <H2>SETUP FILTERING COMMANDS</H2>
9833 <!--chtml if pinemode="function_key"-->
9834 <PRE>
9835 Available  Commands -- Group 1         Available Commands -- Group 2   
9836 -------------------------------        ------------------------------  
9837 F1  Show Help Text                      F1  Show Help Text             
9838 F2  See commands in next group          F2  See commands in next group
9839 F3  Back to MAIN Alpine menu
9840 F4  Change configuration for filter
9841 F5  Move to previous filter             F5  Include file in filter config
9842 F6  Move to next filter                 F6  Exclude file from config
9843 F7  Previous page of filters
9844 F8  Next page of filters
9845 F9  Add new filter                      F9  Replicate existing filter
9846 F10 Delete existing filter
9847 F11 Shuffle the order of filters
9848 F12 Whereis (search filter nicknames)
9849 </PRE>
9850 <!--chtml else-->
9851 <PRE>
9852 Navigation                     General Alpine Commands
9853 -------------------------      -----------------------
9854  P  Prev Filter                   ?  Display this help text
9855  N  Next Filter                   E  Back to MAIN Alpine menu
9856  -  Previous page
9857 Spc (space bar) Next page
9858  W  WhereIs (search for word in filter nicknames)
9860 Setup Filters Commands
9861 ------------------------------------------------
9862  A  Add new filter                $  Shuffle the order of filters
9863  D  Delete existing filter        C  Change configuration for highlighted filter
9864  R  Replicate existing filter
9865  I  Include file in filter config X  Exclude file from filter config
9866 </PRE>
9867 <!--chtml endif-->
9869 <H2>Description of the Setup Filtering Screen</H2>
9871 This screen lets you add, delete, modify, or change the order of the rules
9872 that determine the filtering Alpine does on folders you view.
9874 The software that actually delivers mail (the stuff that happens
9875 before Alpine is involved) for you is in a better position to do mail filtering
9876 than Alpine itself.
9877 If possible, you may want to look into using that sort of mail filtering to
9878 deliver mail to different folders, delete it, or forward it.
9879 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
9881 Filtering is a way to automatically move certain messages from one folder
9882 to another or to delete messages.
9883 It can also be used to set message status (Important, Deleted, New,
9884 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
9885 Alpine doesn't have the ability to forward mail to another address or
9886 to deliver vacation messages.
9888 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
9889 When a folder is opened, when new mail arrives in an open folder, or
9890 when mail is Expunged from a folder; each
9891 message is compared with the Patterns of your filtering rules.
9892 The comparisons start with the first rule and keep going until there
9893 is a match.
9894 If a match is found, the message may be deleted or moved, depending on
9895 the setting of the Filter Action.
9896 If the message is not deleted, it may have its status altered.
9899 <EM>NOTE:</EM>
9900 When setting up a Pattern used to delete messages,
9901 it is recommended that you test the Pattern first with a &quot;Move&quot;
9902 folder specified in
9903 case unintended matches occur.  Messages that are deleted will be removed 
9904 from the folder and <EM>unrecoverable</EM> from within Alpine after the
9905 next Expunge command or once the folder being filtered has been closed.
9907 <H2>Filter Patterns</H2>
9909 In order to determine whether or not a message matches a filter the message is
9910 compared with the Filter's Pattern.
9911 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9912 Scoring, Other Rules, and Search Rules, so are described in only one place,
9913 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9915 Since filtering is a potentially destructive action, if you have a filtering
9916 Pattern with nothing other than Current Folder Type set, that filtering
9917 rule is ignored.
9919 <H2>Filter Actions</H2>
9921 Once a filter match is found for a particular message, there are some actions
9922 that may be taken.
9923 First, the message may have its status changed.
9924 This is the same message status that you can manipulate manually using the
9925 <a href="h_common_flag">Flag Command</a>.
9926 There are always four elements of message status that you can control.
9927 You can set or clear the Important status, the New status, the Deleted
9928 status, and the Answered status.
9929 Of course, if the filter is going to delete the message,
9930 then there is no point in setting message status.
9931 You may also be able to set user-defined keywords for a message.
9932 Read a little about keywords in the help text for the
9933 <A HREF="h_common_flag">Flag</A> command.
9935 Second, the filter may delete or move the message.
9936 Deleting the message marks it Deleted and removes it from view.
9937 It is effectively gone forever (though it technically is still there until
9938 the next expunge command, which may happen implicitly).
9939 Moving the message moves it from the open folder into the folder
9940 listed on the &quot;Folder List&quot; line of the filter configuration.
9941 If you list more than one folder name (separated by commas) then the message
9942 will be copied to each of those folders.
9943 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
9944 message is removed from the current folder.
9945 If you just want to set the messages status without deleting it from
9946 the folder, then set the filter action to
9947 &quot;Just Set Message Status&quot;.
9949 (There is no way to do a Copy instead of a Move, due to the difficulties
9950 involved in keeping track of whether or not a message has
9951 already been copied.)
9953 <H2>Command Descriptions</H2>
9955 <H3>Add</H3>
9957 The Add command is used to add a new filter definition to your set of
9958 filters.
9959 The new filter will be added after the highlighted filter.
9961 <H3>Delete</H3>
9963 The Delete command deletes the currently highlighted filter.
9965 <H3>Change</H3>
9967 The Change command lets you edit the nickname, Pattern,
9968 and Folder of the currently highlighted filter.
9970 <H3>Shuffle</H3>
9972 The Shuffle command allows you to change the order of the filters.
9973 You may move the currently highlighted filter up or down in the list.
9974 The order of the filters is important since the filters are tested for a
9975 match starting with the first filter and continuing until a match is found.
9976 You should place the filters with more specific Patterns near the beginning
9977 of the list, and those with more general Patterns near the end so that
9978 the more specific matches will happen when appropriate.
9980 <H3>Replicate</H3>
9982 The Replicate command is used to copy an existing filter and modify it.
9983 The new filter will be added after the highlighted filter.
9985 <H3>IncludeFile</H3>
9987 The IncludeFile command allows you to add a filters file to your configuration.
9988 Usually, your filters will be contained in your Alpine configuration file.
9989 If you wish, some or all of your filters may be stored in a separate file.
9990 If a filters file already exists (maybe it was made by somebody else using
9991 Alpine), you may insert it before the currently highlighted filter.
9992 You may also insert an empty file or a file that does not yet exist.
9993 Once you have an empty filters file in your configuration, you may use
9994 the Shuffle command to move filters into it.
9995 In fact, that's the only way to get the initial filter into the file.
9997 <H3>eXcludeFile</H3>
9999 The eXcludeFile command removes a filters file from your filters configuration.
10000 A limitation of the program is that in order to exclude a filters file
10001 that file must have at least one filter
10002 in it, otherwise you won't be able to highlight a line in the file.
10003 So you may have to add a dummy filter to the file in order to exclude the file.
10004 <P><UL>
10005 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10006 </UL>
10008 <H3>Performance Considerations</H3>
10009 The number and type of patterns being tested can 
10010 adversely effect performance.  Issues to be aware
10011 of include:
10013 <UL>
10014   <LI> The more filters you have defined the longer it will take to run down
10015 the list.  Deleting unused filters is a good idea.
10016   <LI> Filtering in newsgroups served by an NNTP server will be slow
10017 if your patterns include tests other than &quot;From:&quot;
10018 or &quot;Subject:&quot;.
10019 </UL>
10021 &lt;End of help on this topic&gt;
10022 </BODY>
10023 </HTML>
10024 ===== h_rules_score =====
10025 <HTML>
10026 <HEAD>
10027 <TITLE>SETUP SCORING SCREEN</TITLE>
10028 </HEAD>
10029 <BODY>
10030 <H1>SETUP SCORING SCREEN</H1>
10031 <H2>SETUP SCORING COMMANDS</H2>
10032 <!--chtml if pinemode="function_key"-->
10033 <PRE>
10034 Available  Commands -- Group 1         Available Commands -- Group 2   
10035 -------------------------------        ------------------------------  
10036 F1  Show Help Text                      F1  Show Help Text             
10037 F2  See commands in next group          F2  See commands in next group
10038 F3  Back to MAIN Alpine menu
10039 F4  Change configuration for rule
10040 F5  Move to previous rule               F5  Include file in rule config
10041 F6  Move to next rule                   F6  Exclude file from config
10042 F7  Previous page of rules
10043 F8  Next page of rules
10044 F9  Add new rule                        F9  Replicate existing rule
10045 F10 Delete existing rule
10046 F11 Shuffle the order of rules
10047 F12 Whereis (search rule nicknames)
10048 </PRE>
10049 <!--chtml else-->
10050 <PRE>
10051 Navigation                     General Alpine Commands
10052 -------------------------      -----------------------
10053  P  Prev rule                     ?  Display this help text
10054  N  Next rule                     E  Back to MAIN Alpine menu
10055  -  Previous page
10056 Spc (space bar) Next page
10057  W  WhereIs (search for word in rule nicknames)
10059 Setup Scoring Commands
10060 ------------------------------------------------
10061  A  Add new rule                  $  Shuffle the order of rules
10062  D  Delete existing rule          C  Change configuration for highlighted rule
10063  R  Replicate existing rule
10064  I  Include file in rule config   X  Exclude file from rule config
10065 </PRE>
10066 <!--chtml endif-->
10068 <H2>Description of the Setup Scoring Screen</H2>
10070 Most people will not use scores at all, but if you do use them, here's how
10071 they work in Alpine.
10072 Using this screen, you may define Scoring rules.
10073 The score for a message is calculated by looking at every Score rule defined
10074 and adding up the Score Values for the ones that match the message.
10075 If there are no matches for a message, it has a score of zero.
10076 Message scores may be used a couple of ways in Alpine.
10078 <H3>Sorting by Score</H3>
10080 One of the methods you may use to sort message indexes is to sort by
10081 score.
10082 The scores of all the messages in a folder will be calculated and then
10083 the index will be ordered by placing the messages in order of ascending or
10084 descending score.
10086 <H3>Scores for use in Patterns</H3>
10088 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10089 category labeled &quot;Score Interval&quot;.
10090 When a message is being compared with a Pattern to check for a match, if
10091 the Score Interval is set only messages that have a score somewhere in
10092 the interval are a match.
10094 <H2>Scoring Rule Patterns</H2>
10096 In order to determine whether or not a message matches a scoring rule
10097 the message is compared with the rule's Pattern.
10098 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10099 Scoring, Other Rules, and Search Rules, so are described in only one place,
10100 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10103 Actually, Scoring rule Patterns are slightly different from the other types of
10104 Patterns because Scoring rule Patterns don't contain a Score Interval.
10105 In other words, when calculating the score for a message, which is done
10106 by looking at the Scoring rule Patterns, scores aren't used.
10108 <H2>Score Value</H2>
10110 This is the value that will be added to the score for a message if the
10111 rule's Pattern is a match.
10112 Each individual Score Value is an integer between -100 and 100, and the
10113 values from matching rules are added together to get a message's score.
10114 There is also a way to extract the value from a particular header of each
10115 message. See the help text for Score Value for further information.
10117 <H2>Command Descriptions</H2>
10119 <H3>Add</H3>
10121 The Add command is used to add a new scoring rule definition.
10122 The new rule will be added after the highlighted rule.
10124 <H3>Delete</H3>
10126 The Delete command deletes the currently highlighted scoring rule.
10128 <H3>Change</H3>
10130 The Change command lets you edit the nickname, Pattern,
10131 and Score Value of the currently highlighted scoring rule.
10133 <H3>Shuffle</H3>
10135 The Shuffle command allows you to change the order of the scoring rules.
10136 You may move the currently highlighted rule up or down in the list.
10137 The order of the rules is important since the rules are tested for a
10138 match starting with the first rule and continuing until a match is found.
10139 You should place the rules with more specific Patterns near the beginning
10140 of the list, and those with more general Patterns near the end so that
10141 the more specific matches will happen when appropriate.
10143 <H3>Replicate</H3>
10145 The Replicate command is used to copy an existing rule and modify it.
10146 The new rule will be added after the highlighted rule.
10148 <H3>IncludeFile</H3>
10150 The IncludeFile command allows you to add a rules file to your configuration.
10151 Usually, your rules will be contained in your Alpine configuration file.
10152 If you wish, some or all of your rules may be stored in a separate file.
10153 If a rules file already exists (maybe it was made by somebody else using
10154 Alpine), you may insert it before the currently highlighted rule.
10155 You may also insert an empty file or a file that does not yet exist.
10156 Once you have an empty rules file in your configuration, you may use
10157 the Shuffle command to move rules into it.
10158 In fact, that's the only way to get the initial rule into the file.
10160 <H3>eXcludeFile</H3>
10162 The eXcludeFile command removes a rules file from your rules configuration.
10163 A limitation of the program is that in order to exclude a rules file
10164 that file must have at least one rule
10165 in it, otherwise you won't be able to highlight a line in the file.
10166 So you may have to add a dummy rule to the file in order to exclude the file.
10167 <P><UL>
10168 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10169 </UL>
10171 &lt;End of help on this topic&gt;
10172 </BODY>
10173 </HTML>
10174 ===== h_direct_config =====
10175 <HTML>
10176 <HEAD>
10177 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10178 </HEAD>
10179 <BODY>
10180 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10181 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10182 <!--chtml if pinemode="function_key"-->
10183 <PRE>
10184 Available  Commands                        
10185 -------------------------------            
10186 F1  Show Help Text                         
10187 F3  Back to MAIN Alpine menu                 
10188 F4  Change configuration for directory server  
10189 F5  Move to previous directory server          
10190 F6  Move to next directory server              
10191 F7  Previous page of directory servers         
10192 F8  Next page of directory servers
10193 F9  Add new directory server
10194 F10 Delete existing directory server
10195 F11 Shuffle the order of directory servers
10196 F12 Whereis (search directory server titles)   
10197 </PRE>
10198 <!--chtml else-->
10199 <PRE>
10200 Navigation                     General Alpine Commands
10201 -------------------------      -----------------------
10202  P  Prev Directory Server         ?  Display this help text
10203  N  Next Directory Server         E  Back to MAIN Alpine menu
10204  -  Previous page
10205 Spc (space bar) Next page
10206  W  WhereIs (search for word in directory server titles)
10208 Setup LDAP Directory Server Commands
10209 ------------------------------------------------
10210  A  Add new directory server      $  Shuffle the order of directory servers
10211  D  Delete existing dir server    C  Change configuration for highlighted server
10212 </PRE>
10213 <!--chtml endif-->
10215 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10217 This screen lets you add, delete, modify, or change the order of your
10218 directory servers. You may also set some optional behavior for each server.
10219 The &quot;Add Dir&quot; command brings up a blank form to 
10220 fill in. You will have to supply at least the name of the LDAP server.
10221 You will often have to supply a search base to be used with that server,
10222 as well. Once the form has been brought up on your screen, there is help
10223 available for each of the options you may set.
10225 The &quot;Del Dir&quot; command allows you to remove a directory server
10226 from your configuration.
10228 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10229 The difference is that instead of bringing up a form for a new server
10230 configuration, you are changing the configuration of an existing entry.
10231 For example, you might want to correct a typing error, change a
10232 nickname, or change one of the options set for that server.
10234 The &quot;Shuffle&quot; command is used to change the order of directory
10235 servers.
10236 <P><UL>
10237 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10238 </UL>
10240 &lt;End of help on this topic&gt;
10241 </BODY>
10242 </HTML>
10243 ============= h_address_display ========================
10244 <HTML>
10245 <HEAD>
10246 <TITLE>SEARCH RESULTS INDEX</TITLE>
10247 </HEAD>
10248 <BODY>
10249 <H1>SEARCH RESULTS INDEX</H1>
10250 This screen shows the results, if any, of your Directory Server search.  
10251 Commands (besides those for screen navigation) are:
10252 <DL>
10253 <DT>View
10254 <!--chtml if pinemode="function_key"-->
10255 (F4)
10256 <!--chtml else-->
10258 <!--chtml endif-->
10259 </DT>
10260 <DD>See the full information for the selected entry.
10262 <DT>Compose
10263 <!--chtml if pinemode="function_key"-->
10264 (F9)
10265 <!--chtml else-->
10267 <!--chtml endif--></DT>
10268 <DD>Compose a message with the selected entry as the recipient.
10270 <DT>Role
10271 <!--chtml if pinemode="function_key"-->
10272 (F2)
10273 <!--chtml else-->
10275 <!--chtml endif--></DT>
10276 <DD>Compose a message with the selected entry as the recipient. This differs
10277 from Compose in that you may select a role before beginning your composition.
10279 <DT>Forward
10280 <!--chtml if pinemode="function_key"-->
10281 (F10)
10282 <!--chtml else-->
10284 <!--chtml endif--></DT>
10285 <DD>Send the full information for the selected entry as an 
10286 email message to someone else.
10288 <DT>Save
10289 <!--chtml if pinemode="function_key"-->
10290 (F11)
10291 <!--chtml else-->
10293 <!--chtml endif-->
10294 </DT>
10295 <DD>Save to your address book:
10296 <UL>
10297 <LI>the result of the search (as just found through your query) for the 
10298 selected entry; or 
10299 <LI>the selected entry for repeated Directory Server searching when used 
10300 in the future.
10301 </UL>
10302 or<BR>
10303 Export to a file (external to Alpine):
10304 <UL>
10305 <LI>the full information for the selected entry; or
10306 <LI>the email address from the selected entry; or
10307 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10308 </UL>
10309 <DT>WhereIs
10310 <!--chtml if pinemode="function_key"-->
10311 (F12)
10312 <!--chtml else-->
10314 <!--chtml endif-->
10315 </DT>
10316 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10317 displayed text, not the full records for each entry.)  
10318 </DL>
10319 &lt;End of help on this topic&gt;
10320 </BODY>
10321 </HTML>
10322 ============= h_address_select ========================
10323 <HTML>
10324 <HEAD>
10325 <TITLE>SEARCH RESULTS INDEX</TITLE>
10326 </HEAD>
10327 <BODY>
10328 <H1>SEARCH RESULTS INDEX</H1>
10329 This screen shows the results, if any, of your Directory Server search.  
10330 Commands (besides those for screen navigation) are:
10331 <DL>
10332 <DT>Select
10333 </DT>
10334 <DD>Select this entry for use.
10336 <DT>ExitSelect
10337 <DD>Exit without selecting any of the entries.
10339 <DT>WhereIs
10340 </DT>
10341 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10342 displayed text, not the full records for each entry.)  
10343 </DL>
10344 &lt;End of help on this topic&gt;
10345 </BODY>
10346 </HTML>
10347 ===== h_folder_maint =====
10348 <HTML>
10349 <HEAD>
10350 <TITLE>Help for Folder List</TITLE>
10351 </HEAD>
10352 <BODY>
10353 <H1>FOLDER LIST COMMANDS</H1>
10354 <!--chtml if pinemode="function_key"-->
10355 <PRE>
10356 Available Commands -- Group 1        Available Commands -- Group 2
10357 -------------------------------      ------------------------------
10358 F1  Show Help Text                    F1  Show Help Text               
10359 F2  See commands in next group        F2  See commands in next group  
10360 F3  MAIN MENU Screen                  F3  Quit Alpine                    
10361 F4  Select folder and view it         F4  MAIN MENU Screen
10362 F5  Move to previous folder
10363 F6  Move to next folder               F6  Specify a folder to go to
10364 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
10365 F8  Show next screen of listing       F8  Compose a message
10366 F9  Add a new folder                  F9  Print folder listing
10367 F10 Delete selected folder
10368 F11 Rename selected folder
10369 F12 Whereis (search folder names)
10371 Available Commands -- Group 3
10372 F1  Show Help Text
10373 F2  See commands in next group
10374 F5  Go to next new message
10375     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
10376 F8  Compose a message using roles
10377 F9  Export folder to a file
10378 F10 Import the file back to a folder
10379 </PRE>
10380 <!--chtml else-->
10381 <PRE>
10382 Navigating the Folder Screen            Operations on the Selected Folder
10383 ----------------------------            ---------------------------------
10384  P   Move to previous folder              V  View Index of selected folder
10385  N   Move to next folder                  D  Delete
10386  -   Show previous page of listing        R  Rename
10387 Spc  (space bar) Show next page           E  Export to file
10388                                           U  Import from file to folder
10390 FOLDER LIST Screen Commands              General Alpine Command
10391 ---------------------------              -----------------------
10392  A  Add a folder                          O  Show all other available commands
10393  G  Specify a folder to go to             ?  Show Help text
10394  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
10395  W  Whereis (search folder names)         Q  Quit Alpine
10396  %  Print folder listing                  C  Compose a message
10397                                           #  Compose a message using roles
10398 </PRE>
10399 <!--chtml endif-->
10401 These commands are only available in the FOLDER LIST screen when the 
10402 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
10403 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
10404 <DT>Select:</DT>
10405 <DD>Select folders by certain criteria:<UL>
10406 <LI>All: of limited use, since there is no Apply command.
10407 <LI>by Property: <UL>
10408         <LI>folder contains messages not yet seen 
10409         <LI>folder contains new messages
10410         <LI>folder contains exactly as many, more, or fewer messages 
10411 than a given number
10412         </UL>
10413 <LI>by Text: <UL>
10414         <LI>contained in name of folder (Name Select)
10415         <LI>contained in messages in folder (Content Select)
10416         </UL>
10417 </UL></DD>
10419 <DT>Select current:</DT>
10420 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
10421 add one or more folders to a set created with the Select command described 
10422 above.)</DD>
10423 <DT>Zoom mode:</DT>
10424 <DD>Toggles display of only selected folders or all folders on and off.</DD>
10425 </DL>
10427 If the feature
10428 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
10429 is set then the TAB key will display the number of recent messages and
10430 the total number of messages in the highlighted folder.
10432 The &quot;Export&quot; command causes the lowest common denominator style
10433 mailbox to be written to a file.
10434 If the file already exists, you are asked if you want to delete it.
10435 If you say No, then the operation is aborted.
10436 Export might be a reasonable way to store a backup or an archival copy of
10437 a folder.
10438 The exported-to file is a local file on the system where you are running Alpine.
10439 The &quot;Import&quot; command is the opposite of the Export command.
10440 It reads a file created by Export and asks where it should save it in your
10441 folders.
10442 This could be a new folder or an existing folder.
10443 If the folder already exists, the messages from the exported file will be
10444 appended to the folder.
10446 <CENTER>Description of the FOLDER LIST Screen</CENTER>
10448 The purpose of the FOLDER LIST screen is to help you browse and manage
10449 the folders and directories (also known as &quot;hierarchy&quot;)
10450 contained within a collection.
10453 Folders and directories are arranged alphabetically across lines of
10454 the screen.  Directories, if present, are denoted by a special
10455 character at the end of the name known as the hierarchy delimiter
10456 (typically, &quot;/&quot;).  By default, folders and directories are
10457 mixed together.  The
10458 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
10459 configuration option can be used to group directories toward the 
10460 beginning or end of the list.
10463 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
10464 commands change the &quot;selected&quot; (i.e., highlighted) folder or
10465 directory, and the View Fldr/Dir commands will &quot;open&quot; the
10466 selected item.  Folder and directory management is provided via the
10467 Rename, Delete and Add commands.
10469 <P><CENTER>About Folders</CENTER>
10470 What are Folders?<P>
10472 Folders are simply files where messages are kept.  Every message has to be
10473 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
10474 folder for sent mail and a folder for saved messages.<P>
10476 You may create as many other folders as you wish.  They must be given
10477 names that can be filenames on the filesystem.  
10480 You can move messages from one folder to another by opening the original
10481 folder and saving messages into the other folder just as you can save
10482 message from your INBOX to any other folder.<P>
10484 Folders are typically just files in the filesystem.  However, the files
10485 that are
10486 folders have some special formatting in them (so that Alpine knows where one
10487 message ends and another begins) and should <EM>not</EM> be edited outside of
10488 Alpine.  If you want copies of your messages in text files that you can edit
10489 or otherwise manipulate, use the Export command to copy them from Alpine into
10490 your regular file area.
10493 FOR MORE INFORMATION: See the section on
10494 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10496 <CENTER>About Directories</CENTER>
10498 A directory is simply a container used to group folders within a
10499 folder list.  You can create as many directories as you like.  And 
10500 directories can even contain directories themselves.
10503 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
10504 to note that not all IMAP servers support directories.  If you find that
10505 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
10506 then it's likely that directories are not supported by the server serving
10507 in that collection.
10510 Similarly, servers that do provide for directories may not do so in
10511 the same way.  On some servers, for example, each folder name you
10512 create is at the same time capable of being a directory.  When this
10513 happens, Alpine will display both the folder name and the name of the
10514 directory (with trailing hierarchy delimiter) in the folder list.
10517 Another issue with IMAP access, though with a much smaller set of servers,
10518 is that not all servers accept the request to list out the available
10519 folders and directories in the same way.  If you find yourself having
10520 trouble viewing folders on your server, you might investigate the
10521 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
10522 feature.
10524 <UL>
10525 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10526 </UL>
10528 &lt;End of help on this topic&gt;
10529 </BODY>
10530 </HTML>
10531 ========= h_valid_folder_names ========
10532 <HTML>
10533 <HEAD>
10534 <TITLE>Explanation of Valid Folder Names</TITLE>
10535 </HEAD>
10536 <BODY>
10537 <H1>Folder Name Syntax Explained</H1>
10539 Once your folder collections are defined, you can usually refer to
10540 folders by their simple (unqualified) name, or pick from a FOLDER LIST
10541 display.  However, understanding the complete syntax for folder names,
10542 both local and remote, is handy when using the Goto command and when
10543 you are adding new folder collections via the Setups/collectionList screen.
10545 An Alpine folder name looks like
10548 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
10551 The square brackets ([]) mean that the part is optional.
10554 If there is no remote-specification, then the folder name is interpreted
10555 locally on the computer running Alpine.
10556 Local folder names depend on the operating system used by the computer 
10557 running Alpine, as well as the configuration of that system.  For example,
10558 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
10559 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
10560 system running Unix.
10563 Alpine users have the option of using folders that are stored on some other
10564 computer.  Alpine accesses remote folders via IMAP (the Internet Message
10565 Access Protocol), or in the case of news, via NNTP (the Network News
10566 Transport Protocol).  To be able to access remote folders in Alpine, the
10567 remote host must be running the appropriate server software (imapd or
10568 nntpd) and you must correctly specify the name of the folder to Alpine,
10569 including the domain name of the remote machine. For example,
10571 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
10573 could be a remote folder specification, and so could
10575 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
10578 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
10580 Note that in the case of remote folders, the directory/file path in the specification is 
10581 determined by the operating system of the remote computer, <B>not</B> by
10582 the operating system of the computer on which you are running Alpine.
10584 As you can tell, the name of the computer is in &#123;} brackets
10585 followed immediately by the name of the folder.  (In each of these cases the
10586 optional namespace is missing.)  If, as in these
10587 examples, there is no remote access protocol specified, then IMAP is
10588 assumed.  Check
10589 <A HREF="h_folder_server_syntax">here</A>
10590 for a more detailed look at what options can be placed between the brackets.
10591 If there are no brackets at all, then the folder name is interpreted locally
10592 on the computer on which you are running Alpine.
10595 To the right of the brackets when a server name is present, or at the
10596 start of the foldername if no server is present, the sharp sign,
10597 &quot;#&quot;, holds special meaning.  It indicates a folder name
10598 outside the area reserved for your personal folders.  In fact, it's
10599 used to indicate both the name of the folder, and a special phrase
10600 telling Alpine how to interpret the name that follows.
10603 So, for example, Alpine can be used to access a newsgroup that might be 
10604 available on your computer using:
10606 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
10608 The sharp sign indicates the folder name is outside your personal
10609 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
10610 interpret the remainder of the name as a newsgroup.
10613 Similarly, to access a newsgroup on your IMAP server, you might
10614 use something like:
10616 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
10619 There are a number of such special phrases (or &quot;namespaces&quot;)
10620 available.  For a more detailed explanation read about
10621 <A HREF="h_folder_name_namespaces">Namespaces</A>.
10624 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
10625 names.  The name INBOX refers to your &quot;principal incoming
10626 message folder&quot; and will be mapped to the actual file name used for your
10627 INBOX on any given host.  Therefore, a name like
10628 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
10629 store incoming mail for you on that particular host.
10632 &lt;End of help on this topic&gt;
10633 </BODY>
10634 </HTML>
10635 ======= h_folder_name_namespaces =======
10636 <HTML>
10637 <HEAD>
10638 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
10639 </HEAD>
10640 <BODY>
10641 <H1>Folder Name Namespaces Explained</H1>
10643 An Alpine folder name looks like
10646 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
10649 The local part of a folder name has an optional &quot;Namespace&quot; which
10650 tells Alpine how to interpret the rest of the name.
10652 <P> 
10653 By default the folder name is interpreted as defining a section of your personal
10654 folder area.  This area and how you specify it are defined by the
10655 server, if one is specified, or, typically, the home
10656 directory, if no server is defined.
10659 If a namespace is specified, it begins with the
10660 sharp, &quot;#&quot;, character followed by the name of the namespace
10661 and then the namespace's path-element-delimiter.  Aside from the
10662 path's format, namespaces can also imply access rights, content
10663 policy, audience, location, and, occasionally, access methods.
10666 Each server exports its own set (possibly of size one) of 
10667 namespaces.  Hence, it's likely communication with your server's
10668 administrator will be required for specific configurations.  Some of
10669 the more common namespaces, however, include:
10671 <DL>
10672 <DT>#news.</DT>
10673 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
10674 names are hierarchically defined with each level delimited by a period.
10676 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
10678 </DD>
10679 <DT>#public/</DT>
10680 <DD>This specifies a folder area that the server may export to the general
10681 public.
10682 </DD>
10683 <DT>#shared/</DT>
10684 <DD>This specifies a folder area that the server may export to groups
10685 of users.
10686 </DD>
10687 <DT>#ftp/</DT>
10688 <DD>This specifies a folder area that is the same as that it may have 
10689 exported via the &quot;File Transfer Protocol&quot;.
10690 </DD>
10691 <DT>#mh/</DT>
10692 <DD>This specifies the personal folder area associated with folders
10693 and directories that were created using the MH message handling system.
10694 </DD>
10695 <DT>#move/</DT>
10696 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
10698 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
10700 The #move namespace is followed by two folder names separated by a delimiter
10701 character.
10702 The delimiter character may be any character that does not appear in
10703 the MailDropFolder name.
10704 The meaning of #move is that mail will be copied from the MailDropFolder to
10705 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
10706 Periodic checks at frequency
10707 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
10708 time between checks set by
10709 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
10710 are made for new mail arriving in the MailDropFolder.
10711 An example that copies mail from a POP inbox to a local folder follows
10713 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
10715 To you it appears that mail is being delivered to the local folder when it
10716 is copied from the MailDropFolder, and you read mail from the local folder.
10718 Note that if the DestinationFolder does not exist then the messages are not
10719 copied from the MailDropFolder.
10720 A #move folder may only be used as an
10721 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
10722 an Inbox.
10723 When you are in the FOLDER LIST of Incoming Message Folders (after turning
10724 on the
10725 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
10726 option)
10727 the Add command has a subcommand &quot;Use Mail Drop&quot;
10728 which may be helpful for defining the folder in your Alpine configuration.
10729 The same is true when you edit the
10730 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
10731 option in Setup/Config.
10732 Each of these configuration methods will also create the DestinationFolder
10733 if it doesn't already exist.
10734 If you are having problems, make sure the DestinationFolder exists.
10735 You may find some more useful information about Mail Drops at
10736 <A HREF="h_maildrop">What is a Mail Drop?</A>.
10737 </DD>
10738 </DL>
10741 In addition, the server may support access to other user's folders,
10742 provided you have suitable permissions.  Common methods use a prefix
10743 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
10744 indicate the root of the other user's folder area.
10747 No, nothing's simple.
10750 &lt;End of help on this topic&gt;
10751 </BODY>
10752 </HTML>
10753 ============= h_whatis_vcard ========================
10754 <HTML>
10755 <HEAD>
10756 <TITLE>VCARD EXPLAINED</TITLE>
10757 </HEAD>
10758 <BODY>
10759 <H1>What is the vCard format?</H1>
10760 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
10761 information about and among people and organizations electronically.  
10762 More information about vCard can be found (as of May 1998) on the WWW site 
10763 of the Internet Mail Consortium at the URL:
10765 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
10767 &lt;End of help on this topic&gt;
10768 </BODY>
10769 </HTML>
10770 ===== h_folder_open =====
10771 <HTML>
10772 <HEAD>
10773 <TITLE>Explanation of Folder Selection</TITLE>
10774 </HEAD>
10775 <BODY>
10776 <BR>
10777 <BR>
10778 This screen is designed to allow you to quickly and easily survey your
10779 folders and select one to open.
10780 <!--chtml if pinemode="function_key"-->
10781 <PRE>
10782 Navigating the List of Folders             General Alpine Commands
10783 ------------------------------             -----------------------
10784  P   Move to previous folder               ?   Show this help text
10785  N   Move to next folder
10786  -   Show previous screen of folders
10787 Spc  (space bar) Show next screen
10788  W   WhereIs (search folder names)
10790 Folder Selection Commands
10791 -------------------------
10792  E   Exit the Folder Select menu (without selecting a folder)
10793  S   Select the currently highlighted folder
10794 </PRE>
10795 <!--chtml else-->
10796 <PRE>
10797 Navigating the List of Folders             General Alpine Commands
10798 ------------------------------             -----------------------
10799 F5   Move to previous folder               F1  Show this help text
10800 F6   Move to next folder
10801 F7   Show previous screen of folders
10802 F8   Show next screen of folders
10803 F12  WhereIs (search folder names)
10805 Folder Selection Commands
10806 -------------------------
10807 F3   Exit the Folder Select menu (without selecting a folder)
10808 F4   Select the currently highlighted folder
10809 </PRE>
10810 <!--chtml endif-->
10812 FOR MORE INFORMATION: See the section on
10813 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10815 &lt;End of help on this topic&gt;
10816 </BODY>
10817 </HTML>
10818 ===== h_folder_subscribe =====
10819 <HTML>
10820 <HEAD>
10821 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
10822 </HEAD>
10823 <BODY>
10824 <H1>FOLDER SUBSCRIBE HELP</H1>
10826 This screen is designed to help you subscribe to newsgroups you are
10827 not currently subscribed to.  The screen display is a list of all
10828 available newsgroups (or possibly a partial list if you specified a
10829 partial name when entering the screen).  Groups you have already
10830 subscribed to have the letters &quot;SUB&quot; next to them.  You may
10831 select a single new group to subscribe to by moving the cursor to that
10832 group and pressing &quot;S&quot; or carriage return.  Alternatively,
10833 you may change into ListMode with the &quot;ListMode&quot; command.
10834 The display will change slightly so that each group has a checkbox in
10835 front of it.  Use the cursor and the Set/Unset command to place an
10836 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
10839 When you are finished marking groups, the &quot;Subscribe&quot;
10840 command will subscribe you to those groups you have marked.  Note, you
10841 may not unsubscribe to groups with this command.  Instead of the
10842 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
10843 UnSbscrbe command.
10846 <!--chtml if pinemode="function_key"-->
10847 <PRE>
10848 Navigating the List of Newsgroups          General Alpine Commands
10849 ---------------------------------          -----------------------
10850 F5   Move to previous group                F1   Show this help text
10851 F6   Move to next group
10852 F7   Show previous screen of groups
10853 F8   Show next screen of groups
10854 F12  WhereIs (search group names)
10855 F9   Use ListMode
10857 Group Selection Commands
10858 -------------------------
10859 F3  Exit the News Subscribe menu (without selecting any groups)
10860 F4  Subscribe to the currently highlighted newsgroup
10861 </PRE>
10862 <!--chtml else-->
10863 <PRE>
10864 Navigating the List of Newsgroups          General Alpine Commands
10865 ---------------------------------          -----------------------
10866  P   Move to previous group                ?   Show this help text
10867  N   Move to next group
10868  -   Show previous screen of groups
10869 Spc  (space bar) Show next screen
10870  W   WhereIs (search group names)
10871  L   Use ListMode
10873 Group Selection Commands
10874 -------------------------
10875  E   Exit the News Subscribe menu (without selecting any groups)
10876  S   Subscribe to the currently highlighted newsgroup
10877 </PRE>
10878 <!--chtml endif-->
10880 When in ListMode, there is an additional command for marking groups to
10881 subscribe to:
10883 <!--chtml if pinemode="function_key"-->
10884 <PRE>
10885 ListMode Commands
10886 -------------------------
10887 F9  Set or unset the highlighted group
10888 </PRE>
10889 <!--chtml else-->
10890 <PRE>
10891 ListMode Commands
10892 -------------------------
10893 X   Set or unset the highlighted group
10894 </PRE>
10895 <!--chtml endif-->
10897 &lt;End of help on this topic&gt;
10898 </BODY>
10899 </HTML>
10900 ===== h_folder_postnews =====
10901 <HTML>
10902 <HEAD>
10903 <TITLE>Newsgroup selecting for Posting explained</TITLE>
10904 </HEAD>
10905 <BODY>
10906 This screen is designed to allow you to quickly and easily survey
10907 the available newsgroups and select one to post news to.
10909 <!--chtml if pinemode="function_key"-->
10910 <PRE>
10911 Navigating the List of Newsgroups          General Alpine Commands
10912 ---------------------------------          -----------------------
10913 F5   Move to previous group                F1  Show this help text
10914 F6   Move to next group
10915 F7   Show previous screen of groups
10916 F8   Show next screen of groups
10917 F12  WhereIs (search group names)
10919 Group Selection Commands
10920 -------------------------
10921 F3   Exit the Selection menu (without selecting a group)
10922 F4   Select the currently highlighted newsgroup
10923 </PRE>
10924 <!--chtml else-->
10925 <PRE>
10926 Navigating the List of Newsgroups          General Alpine Commands
10927 ---------------------------------          -----------------------
10928  P   Move to previous group                ?  Show this help text
10929  N   Move to next group
10930  -   Show previous screen of groups
10931 Spc  (space bar) Show next screen of groups
10932  W   WhereIs (search group names)
10934 Group Selection Commands
10935 -------------------------
10936  E   Exit the Selection menu (without selecting a group)
10937  S   Select the currently highlighted newsgroup
10938 </PRE>
10939 <!--chtml endif-->
10941 &lt;End of help on this topic&gt;
10942 </BODY>
10943 </HTML>
10944 ===== h_folder_save =====
10945 <HTML>
10946 <HEAD>
10947 <TITLE>Folder Select for Save Explained</TITLE>
10948 </HEAD>
10949 <BODY>
10950 This screen is designed to allow you to quickly and easily survey your
10951 folders and select one to use for saving the current message.
10954 <!--chtml if pinemode="function_key"-->
10955 <PRE>
10956 Navigating the List of Folders             General Alpine Commands
10957 ------------------------------             -----------------------
10958 F5   Move to previous folder               F1  Show this help text
10959 F6   Move to next folder
10960 F7   Show previous screen of folders
10961 F8   Show next screen of folders
10962 F12  WhereIs (search folder names)
10964 Folder Selection Commands
10965 -------------------------
10966 F3   Exit the Folder Select menu (without selecting a folder)
10967 F4   Select the currently highlighted folder
10968 F11  AddNew folder (just like Select, but you type in a new folder name)
10969 </PRE>
10970 <!--chtml else-->
10971 <PRE>
10972 Navigating the List of Folders             General Alpine Commands
10973 ------------------------------             -----------------------
10974  P   Move to previous folder               ?  Show this help text
10975  N   Move to next folder
10976  -   Show previous screen of folders
10977 Spc  (space bar) Show next screen of folders
10978  W   WhereIs (search folder names)
10980 Folder Selection Commands
10981 -------------------------
10982  E   Exit the Folder Select menu (without selecting a folder)
10983  S   Select the currently highlighted folder
10984  A   AddNew folder (just like Select, but you type in a new folder name)
10985 </PRE>
10986 <!--chtml endif-->
10988 FOR MORE INFORMATION: See the section on
10989 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
10991 &lt;End of help on this topic&gt;
10992 </BODY>
10993 </HTML>
10994 ===== h_folder_fcc =====
10995 <HTML>
10996 <HEAD>
10997 <TITLE>Folder Select for Fcc Explained</TITLE>
10998 </HEAD>
10999 <BODY>
11000 This screen is designed to allow you to quickly and easily survey your
11001 folders and select one to use as the file carbon copy (fcc) for the
11002 current message.
11005 <!--chtml if pinemode="function_key"-->
11006 <PRE>
11007 Navigating the List of Folders             General Alpine Commands
11008 ------------------------------             -----------------------
11009 F5   Move to previous folder               F1  Show this help text
11010 F6   Move to next folder
11011 F7   Show previous screen of folders
11012 F8   Show next screen of folders
11013 F12  WhereIs (search folder names)
11015 Folder Selection Commands
11016 -------------------------
11017 F3   Exit the Folder Select menu (without selecting a folder)
11018 F4   Select the currently highlighted folder
11019 F11  AddNew folder (just like Select, but you type in a new folder name)
11020 </PRE>
11021 <!--chtml else-->
11022 <PRE>
11023 Navigating the List of Folders             General Alpine Commands
11024 ------------------------------             -----------------------
11025  P   Move to previous folder               ?  Show this help text
11026  N   Move to next folder
11027  -   Show previous screen of folders
11028 Spc  (space bar) Show next screen of folders
11029  W   WhereIs (search folder names)
11031 Folder Selection Commands
11032 -------------------------
11033  E   Exit the Folder Select menu (without selecting a folder)
11034  S   Select the currently highlighted folder
11035  A   AddNew folder (just like Select, but you type in a new folder name)
11036 </PRE>
11037 <!--chtml endif-->
11039 FOR MORE INFORMATION: See the section on
11040 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11042 &lt;End of help on this topic&gt;
11043 </BODY>
11044 </HTML>
11045 ===== h_folder_pattern_roles =====
11046 <HTML>
11047 <HEAD>
11048 <TITLE>Folder Select for Current Folder Explained</TITLE>
11049 </HEAD>
11050 <BODY>
11051 This screen is designed to allow you to quickly and easily survey your
11052 folders and select one to use as the specific Current Folder
11053 in a Pattern.
11056 <!--chtml if pinemode="function_key"-->
11057 <PRE>
11058 Navigating the List of Folders             General Alpine Commands
11059 ------------------------------             -----------------------
11060 F5   Move to previous folder               F1  Show this help text
11061 F6   Move to next folder
11062 F7   Show previous screen of folders
11063 F8   Show next screen of folders
11064 F12  WhereIs (search folder names)
11066 Folder Selection Commands
11067 -------------------------
11068 F3   Exit the Folder Select menu (without selecting a folder)
11069 F4   Select the currently highlighted folder
11070 F11  AddNew folder (just like Select, but you type in a new folder name)
11071 </PRE>
11072 <!--chtml else-->
11073 <PRE>
11074 Navigating the List of Folders             General Alpine Commands
11075 ------------------------------             -----------------------
11076  P   Move to previous folder               ?  Show this help text
11077  N   Move to next folder
11078  -   Show previous screen of folders
11079 Spc  (space bar) Show next screen of folders
11080  W   WhereIs (search folder names)
11082 Folder Selection Commands
11083 -------------------------
11084  E   Exit the Folder Select menu (without selecting a folder)
11085  S   Select the currently highlighted folder
11086  A   AddNew folder (just like Select, but you type in a new folder name)
11087 </PRE>
11088 <!--chtml endif-->
11090 FOR MORE INFORMATION: See the section on
11091 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11093 &lt;End of help on this topic&gt;
11094 </BODY>
11095 </HTML>
11096 ===== h_folder_stayopen_folders =====
11097 <HTML>
11098 <HEAD>
11099 <TITLE>Folder Select Explained</TITLE>
11100 </HEAD>
11101 <BODY>
11102 This screen is designed to allow you to quickly and easily survey your
11103 folders and select one to use as a Stay-Open folder.
11106 <!--chtml if pinemode="function_key"-->
11107 <PRE>
11108 Navigating the List of Folders             General Alpine Commands
11109 ------------------------------             -----------------------
11110 F5   Move to previous folder               F1  Show this help text
11111 F6   Move to next folder
11112 F7   Show previous screen of folders
11113 F8   Show next screen of folders
11114 F12  WhereIs (search folder names)
11116 Folder Selection Commands
11117 -------------------------
11118 F3   Exit the Folder Select menu (without selecting a folder)
11119 F4   Select the currently highlighted folder
11120 F11  AddNew folder (just like Select, but you type in a new folder name)
11121 </PRE>
11122 <!--chtml else-->
11123 <PRE>
11124 Navigating the List of Folders             General Alpine Commands
11125 ------------------------------             -----------------------
11126  P   Move to previous folder               ?  Show this help text
11127  N   Move to next folder
11128  -   Show previous screen of folders
11129 Spc  (space bar) Show next screen of folders
11130  W   WhereIs (search folder names)
11132 Folder Selection Commands
11133 -------------------------
11134  E   Exit the Folder Select menu (without selecting a folder)
11135  S   Select the currently highlighted folder
11136  A   AddNew folder (just like Select, but you type in a new folder name)
11137 </PRE>
11138 <!--chtml endif-->
11140 FOR MORE INFORMATION: See the section on
11141 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11143 &lt;End of help on this topic&gt;
11144 </BODY>
11145 </HTML>
11146 ===== h_folder_action_roles =====
11147 <HTML>
11148 <HEAD>
11149 <TITLE>Folder Select Explained</TITLE>
11150 </HEAD>
11151 <BODY>
11152 This screen is designed to allow you to quickly and easily survey your
11153 folders and select one to use as the folder into which messages
11154 matching this filter will be moved.
11157 <!--chtml if pinemode="function_key"-->
11158 <PRE>
11159 Navigating the List of Folders             General Alpine Commands
11160 ------------------------------             -----------------------
11161 F5   Move to previous folder               F1  Show this help text
11162 F6   Move to next folder
11163 F7   Show previous screen of folders
11164 F8   Show next screen of folders
11165 F12  WhereIs (search folder names)
11167 Folder Selection Commands
11168 -------------------------
11169 F3   Exit the Folder Select menu (without selecting a folder)
11170 F4   Select the currently highlighted folder
11171 F11  AddNew folder (just like Select, but you type in a new folder name)
11172 </PRE>
11173 <!--chtml else-->
11174 <PRE>
11175 Navigating the List of Folders             General Alpine Commands
11176 ------------------------------             -----------------------
11177  P   Move to previous folder               ?  Show this help text
11178  N   Move to next folder
11179  -   Show previous screen of folders
11180 Spc  (space bar) Show next screen of folders
11181  W   WhereIs (search folder names)
11183 Folder Selection Commands
11184 -------------------------
11185  E   Exit the Folder Select menu (without selecting a folder)
11186  S   Select the currently highlighted folder
11187  A   AddNew folder (just like Select, but you type in a new folder name)
11188 </PRE>
11189 <!--chtml endif-->
11191 FOR MORE INFORMATION: See the section on
11192 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11194 &lt;End of help on this topic&gt;
11195 </BODY>
11196 </HTML>
11197 ===== h_abook_config =====
11198 <HTML>
11199 <HEAD>
11200 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11201 </HEAD>
11202 <BODY>
11203 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11204 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11205 <!--chtml if pinemode="function_key"-->
11206 <PRE>
11207 Available  Commands                        
11208 -------------------------------            
11209 F1  Show Help Text                         
11210 F3  Back to MAIN Alpine menu                 
11211 F4  Change configuration for address book  
11212 F5  Move to previous address book          
11213 F6  Move to next address book              
11214 F7  Previous page of address books         
11215 F8  Next page of address books             
11216 F9  Add new address book                   
11217 F10 Delete existing address book           
11218 F11 Shuffle the order of address books     
11219 F12 Whereis (search address book titles)   
11220 </PRE>
11221 <!--chtml else-->
11222 <PRE>
11223 Navigation                     General Alpine Commands
11224 -----------------------        -----------------------
11225  P  Prev Address Book           ?  Display this help text
11226  N  Next Address Book           E  Back to MAIN Alpine menu
11227  -  Previous page
11228 Spc (space bar) Next page
11229  W  WhereIs (search for word in address book titles)
11231 Setup Address Books Commands
11232 ------------------------------------------------
11233  A  Add new address book          $  Shuffle the order of address books
11234  D  Delete existing address book  C  Change configuration for address book
11235 </PRE>
11236 <!--chtml endif-->
11238 <H2>Description of the Setup Address Books Screen</H2>
11240 This screen lets you add, delete, modify, or change the order of your
11241 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11242 fill in.  If you are adding a remote address book on an IMAP server
11243 you should fill in the name of the IMAP server.  Otherwise, leave
11244 that field blank.  (Note that remote IMAP address books are an Alpine
11245 concept and are unlikely to interoperate with other mail clients.)
11246 For a remote address book, fill in the name of the remote folder
11247 in the Folder field.  This should be a folder that is used only for
11248 this one purpose, not a general purpose folder you expect to store
11249 messages in.
11250 <P>If you are adding a local address book, fill in the
11251 Folder Name field with a local file name (e.g., .addressbook).
11253 <B>Please note:</B> Remote address books stored on an IMAP server are 
11254 of an entirely different format (namely, a special-purpose 
11255 &quot;mail folder&quot;) than that of the local addressbook familiar 
11256 to Alpine users.  Therefore, 
11257 you cannot use &quot;add a remote address book&quot; to make an existing 
11258 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11259 Alpine running on a different host.  
11262 The &quot;Del Abook&quot; command allows you to remove an address book
11263 from your configuration.  It will also ask you if you wish to remove
11264 the data for that address book, which would erase all traces of the
11265 address book if you answer Yes.
11268 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11269 The difference is that instead of adding a new address book to your
11270 configuration, you are changing the configuration of an existing entry.
11271 For example, you might want to correct a typing error or change a
11272 nickname.  The &quot;Change&quot; command is not a move command.  If you
11273 change the folder name or server name the data will not be moved for you.
11276 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11277 an address book toward another address book in the same group then
11278 the order of those two address books will be swapped.  If you shuffle
11279 the last Personal address book down towards the Global address book
11280 section, it will become a Global address book.  If you shuffle
11281 the first Global address book up it will become a Personal address
11282 book.  The main difference between Personal and Global address
11283 books is that Global address books are forced read-only.
11284 <P><UL>
11285 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11286 </UL>
11288 &lt;End of help on this topic&gt;
11289 </BODY>
11290 </HTML>
11291 ===== h_abook_top =====
11292 <HTML>
11293 <HEAD>
11294 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11295 </HEAD>
11296 <BODY>
11297 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11298 <!--chtml if pinemode="function_key"-->
11299 <PRE>
11300 Available  Commands -- Group 1         Available Commands -- Group 2
11301 -------------------------------        ------------------------------
11302 F1  Show Help Text                      F1  Show Help Text
11303 F2  See commands in next group          F2  See commands in next group
11304 F3  Exit to MAIN MENU                   F3  Quit Alpine
11305 F4  View/Edit selected address book
11306 F5  Move to previous address book       F5  FOLDER LIST screen
11307 F6  Move to next address book           F6  Specify a folder to go to
11308 F7  Previous page                       F7  MESSAGE INDEX screen
11309 F8  Next page                           F9  Print list of address books
11310 F12 Whereis (search for word)
11311 </PRE>
11312 <!--chtml else-->
11313 <PRE>
11314 Navigation                       General Alpine Commands
11315 -----------------------          -----------------------
11316  P  Previous Entry                ?  Display this help text
11317  N  Next Entry                    O  Show all other available commands
11318  -  Previous page                 &lt;  Back to MAIN Alpine menu
11319 Spc (space bar) Next page         Q  Quit Alpine
11320  W  WhereIs (search for word)     L  FOLDER LIST screen
11321                                   G  Specify a folder to go to
11322 Address Book Commands             I  MESSAGE INDEX screen
11323 ------------------------------------------------
11324  &gt;  View/Edit selected address book
11325               or
11326  &gt;  Search on selected directory server
11328  %  Print list of address books and directory servers
11329 </PRE>
11330 <!--chtml endif-->
11332 <H2>Description of the Address Book List Screen</H2>
11334 From this screen you may choose which address book you wish to view
11335 or edit. For more information on address books, view one of your
11336 address books (with
11337 <!--chtml if pinemode="function_key"-->
11339 <!--chtml else-->
11340 &quot;&gt;&quot;
11341 <!--chtml endif-->)
11342 and see the Help Text there.<P>
11344 You may also choose a directory server on which to search for entries.
11345 You do that by highlighting the directory server line and using
11346 <!--chtml if pinemode="function_key"-->
11348 <!--chtml else-->
11349 &quot;&gt;&quot;
11350 <!--chtml endif-->.<P>
11352 If you wish to define new address books or directory servers go to the Main
11353 menu and choose Setup. You may then either choose to setup AddressBooks or
11354 Directory (among other things). It's possible that the Directory option
11355 will not be there if the Alpine you are using does not contain LDAP directory
11356 lookup functionality.
11358 <P><UL>
11359 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11360 </UL><P>
11361 &lt;End of help on this topic&gt;
11362 </BODY>
11363 </HTML>
11364 ===== h_abook_opened =====
11365 <HTML>
11366 <HEAD>
11367 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
11368 </HEAD>
11369 <BODY>
11370 <H1>THE ALPINE ADDRESS BOOK</H1>
11371 <H2>ADDRESS BOOK COMMANDS</H2>
11372 <PRE>
11373 <!--chtml if pinemode="function_key"-->
11374 Available  Commands -- Group 1         Available Commands -- Group 2   
11375 -------------------------------        ------------------------------  
11376 F1  Show Help Text                      F1  Show Help Text             
11377 F2  See commands in next group          F2  See commands in next group
11378 F3  Exit this screen                    F3  Quit Alpine                  
11379 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
11380 F5  Move to previous entry              F5  FOLDER LIST screen         
11381 F6  Move to next entry                  F6  Specify a folder to go to  
11382 F7  Previous page of address book       F7  MESSAGE INDEX screen        
11383 F8  Next page of address book           F8  Compose to entry using roles
11384 F9  Add new entry to address book       F9  Print address book         
11385 F10 Delete selected entry               F10 TakeAddr to another addrbook
11386 F11 Compose to selected entry           F11 Save or Export addrbook selections
11387 F12 Whereis (search address book)       F12 Forward entry by mail       
11389 Available Commands -- Group 3                                           
11390 ------------------------------                                          
11391 F3  Select                              F6  Zoom (or unZoom)            
11392 F5  Select Current                      F7  Apply Command to Selection  
11393 <!--chtml else-->
11394 Address Book Navigation        General Alpine Commands
11395 -----------------------        -----------------------
11396  P  Prev Address                  ?  Display this help text
11397  N  Next Address                  O  Show all other available commands
11398  -  Previous page of address book M  Back to MAIN MENU
11399 Spc (space bar) Next page         Q  Quit Alpine
11400  W  WhereIs (search for word      C  Compose message to selected addr
11401      or name in address book)     #  Compose to addr using roles
11402  &lt;  To List of Address Books if   L  FOLDER LIST screen
11403      more than one, else to MAIN  G  Specify a folder to go to
11404                                   I  MESSAGE INDEX screen
11406 Address Book Commands
11407 ----------------------------------------------------
11408  &gt;  View/Update selected entry    D  Delete selected entries
11409  %  Print address book            S  Save or Export address book selections
11410  F  Forward entries by mail       @  Add new entry to address book
11412  ;  Select command                Z  Toggle Zoom Mode
11413  :  Select highlighted entry      A  Apply command to selected entries
11415 <!--chtml endif-->
11416 </PRE>
11417 Note:  The presence or absence of the final four commands above is
11418 controlled by the option 
11419 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
11422 <H2>Description of the Address Book Screen</H2>
11424 This screen lets you edit and manage entries in your address book.  It
11425 also acts as a short-cut for composing messages to people in the address
11426 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
11427 message starts &quot;pre-addressed&quot; to whatever address book entry is
11428 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
11429 role to use in your composition.
11431 Alpine's address book helps you keep a list of addresses you send email to so
11432 you do not have to remember addresses that are often complex.  Each entry
11433 in the address book has five fields, all of them optional.  The three
11434 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
11436         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
11437         This is what you type in as you are addressing the message in the
11438         composer.  If there is a matching entry in your address book(s),
11439         Alpine will extract the corresponding FullName and Address fields to
11440         generate the actual address for your message.
11442         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
11443 of the
11444         person or organization.  Usually the full names are put in last
11445         name first so they sort nicely in alphabetical order.  Whatever
11446         you put as the name here will appear on the message when it is
11447         finally delivered.  Examples:<PRE>
11448            Garcia Marquez, Gabriel
11449            Henscheid, Eckhard
11450            Alpine-Info mailing list
11451            Library materials renewal requests
11452            Kim An-guk
11453            &quot;George III, King of Great Britain, 1738-1820&quot;
11454 </PRE>
11455 (In the second-to-last example, no comma is used in the name so that 
11456 the family name appears first in the address book and when the entry is 
11457 used in the composer.
11458 In the last example, retaining the commas is intended; 
11459 double-quotation marks surround the name to 
11460 prevent the transposition of its parts when the entry is used in 
11461 the composer.)
11463         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
11464         a valid Internet address that conforms to the Internet message
11465         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
11467 The two fields that aren't usually visible are:<DL>
11469   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
11470         message to this address to be saved in.  If this field is set, and
11471         this address is the first one in the message's To: header, then
11472         Alpine will use this folder name for the FCC in lieu of the normal
11473         FCC folder name.
11475   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
11476         </DL>
11478 Due to screen width limitations, these last two fields do not show up in
11479 the normal ADDRESS BOOK display.  You may select the 
11480 &quot;View/Update&quot; command to
11481 view or modify them.  You may use the configuration variable
11482 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
11483 to add these fields to your ADDRESS BOOK 
11484 display, or to modify the format of the display.
11486 <H2>Sorting the Address book</H2>
11488 By default, address book entries are sorted alphabetically on the full
11489 name with distribution lists sorted to the end.  Sorting can be changed by
11490 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
11491 --assuming you have &quot;write&quot; permission for the address book file.
11493 Unlike the sorting of folders (which only changes presentation), sorting an
11494 address book actually changes the file as it is kept on the computer.  For
11495 this reason you won't be able to sort a shared or system-wide address
11496 book.
11498 <H2>Adding New Entries</H2>
11500 The easiest way to add new entries to your address book is to use the
11501 &quot;TakeAddr&quot; command when viewing a message.
11502 This command allows you to take addresses from the header and body of the
11503 message and put them into your address book, without having to type
11504 them in.
11507 To manually add a new entry from within the address book screen, use the AddNew
11508 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
11509 Use this command both for adding a simple alias and for adding a
11510 distribution list.
11512 <H2>Distribution Lists</H2>
11514 Address book entries can be simple cases of aliases (a single nickname is linked
11515 to a single email address) or distribution lists (a single nickname
11516 pointing at more than one email address).  Each distribution list has a
11517 nickname, a full name and a list of addresses.  The addresses may be
11518 actual addresses or they may be other nicknames in your address book.
11519 They may even refer to other distribution lists.
11520 There's really no difference between a simple alias and a distribution list,
11521 other than the number of addresses.
11522 Therefore, you can turn a simple alias with one address into a distribution
11523 list simply by adding more addresses.
11524 To add entries to an existing list or alias
11525 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
11526 a single address from the list if the cursor is placed on the address;
11527 it will delete the entire distribution list if the cursor is on the
11528 nickname/fullname line.  View/Update may also be used to delete addresses
11529 from a list.
11531 Address field entries in distribution lists may take any one of three
11532 forms: a nickname existing in any of the defined address books, a normal
11533 address of the form &quot;jsmith@art.example.com&quot;, or a complete
11534 fullname/address combination, e.g. &quot;John Smith
11535 &lt;jsmith@art.example.com&gt;&quot;.
11537 Distribution lists in Alpine address books can only be used by the person or
11538 people who have access to that address book.  They are not usually used to
11539 implement discussion groups, but can be used to facilitate small
11540 discussion groups if all the participants have access to the same shared
11541 address book.
11543 <H2>FCC and Comments</H2>
11545 As mentioned above, each entry in the address book also has two other optional
11546 fields, Fcc and Comments.  The command to look at or change either of these
11547 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
11548 Comments field is just for your own use.  The Fcc field overrides the
11549 default Fcc if this address is the first one on the To line.  The WhereIs
11550 command may be used to search for particular strings in the address book,
11551 including fields that are not visible (like Comment and Fcc by default).
11553 <H2>Aggregate Operations</H2>
11555 If the feature
11556 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
11557 is turned on (the default), then the four commands &quot;Select&quot;,
11558 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
11559 are available.  The two selection commands allow you to mark a set of
11560 address book entries as being selected.  If you have more than one address
11561 book, the selections may be in more than one of those address books.
11562 The &quot;Zoom&quot; command will toggle between displaying only the selected
11563 entries and all of the entries.  The &quot;Apply&quot; command allows you to
11564 apply one of the regular address book commands to all of the selected
11565 entries.  Usually the address book commands apply to only the entry
11566 highlighted by the cursor.  The &quot;Apply&quot; command works with the
11567 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
11568 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
11570 <H2>Exporting and Forwarding Address book entries</H2>
11572 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
11573 address book entry is placed in a plain text file in your home directory
11574 <!--chtml if pinemode="running"-->
11575 (which, in the present configuration of your system, is
11576  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
11577 <!--chtml endif-->
11578 or current working directory
11579 <!--chtml if pinemode="running"-->
11580 (which, at least for your current Alpine &quot;session,&quot; 
11581 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
11582 <!--chtml endif-->, depending on the 
11583 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
11584 configuration setting.  If you have some entries selected and use the
11585 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
11586 placed in the text file.
11588 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
11589 address book entry is placed in a special attachment and you are put into
11590 the composer.  You can fill in some comments in the body of the message,
11591 if you'd like, and send it to somebody else who uses Alpine.  The recipient
11592 may use the TakeAddr command on that message to insert the address book
11593 entry you sent in their own address book.  If you have some entries
11594 selected and use the Apply Forward command all of the selected entries
11595 will be forwarded in a single message.  You may
11596 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.
11597 The recipient must be using Alpine in order to receive this correctly.
11598 One way for the recipient to handle this might be to create an empty
11599 address book and then &quot;Take&quot; your forwarded address book entries into
11600 that empty address book.
11602 <H2>Multiple and/or Site-Wide Address books</H2>
11604 You may have more than one personal address book.  In addition, there may
11605 be one or more global address books.  This capability allows you to have
11606 multiple personal address books (some of which may be shared) and it also
11607 allows system administrators to implement site-wide address books that
11608 contain entries for users on multiple machines within the organization.
11609 <P><DL>
11610 <DT>Searching
11611   <DD> If you enter a nickname when composing a message, your
11612   personal address books will be searched through in order, and then the
11613   global address book(s) searched. If more than one address book has an entry
11614   for the nickname, Alpine uses the first one that it finds, so an entry in
11615   your personal address book would override a global address book entry. If
11616   after searching all the address books there is still no match, (Unix) Alpine
11617   then searches the local host password file on the assumption that you have
11618   entered a local user name rather than an address book nickname.
11619   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
11620   command, but global address books are always searched after personal
11621   address books.
11623   <P><DT>Tab completion
11624   <DD> If the
11625   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
11626   feature is turned on (the default) then the Tab key may be used
11627   in the composer to complete partially typed nicknames in the To
11628   or Cc lines. You type the first few letters of a nickname and then
11629   press the Tab key. It there is only one nickname that matches it will
11630   be filled in by Alpine. If there is more than one the unambiguous part
11631   of the nicknames will be filled in. For example, if your address book or
11632   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
11633   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
11634   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
11635   If you then type a second Tab character you will be presented with a list
11636   of matching nicknames to select from. Alternatively, you could type another
11637   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
11638   in the entire &quot;barbecue&quot; entry.
11640   <P><DT>Defining
11641   <DD> You define multiple personal address books in the 
11642   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
11643   from the MAIN MENU.  
11644   You may add as many as you like.  Global address books are usually
11645   site-wide address books defined by the System administrator, but
11646   you may define global address books of your own just like you define
11647   personal address books.
11649   <P><DT>Creating and updating
11650   <DD> Personal address books are normally created empty
11651   and populated by explicit additions from within Alpine, e.g. via the
11652   TakeAddr command.  Unlike personal address books, global address books may
11653   not be modified/updated from within Alpine; that is, they are Read-Only.
11654   Thus, global address books are created, populated and updated outside of
11655   Alpine. They might be hand-edited, generated by a program from another
11656   database, or by copying an existing address book.  They might also be
11657   some other user's personal address book, and so be modified normally by
11658   that user but accessed Read-Only by you.  See the Alpine Technical
11659   Notes document (included in the Alpine distribution) for more information on
11660   this.
11662   <P><DT>Accessing
11663   <DD>There are two different types of address books in Alpine.
11664   A local address book is stored in a regular file and the normal file
11665   access permissions apply.  A remote address book is stored on an IMAP
11666   server in a special folder that contains only messages pertaining to
11667   that address book.  The last message in the remote folder contains a
11668   copy of the address book data, and that data is copied to a local cache
11669   file in your home directory.  From there it is accessed just like a local
11670   address book.  The name of the cache file is kept track of in a special
11671   file called the
11672   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
11673   the name of which is stored in
11674   your Alpine configuration file the first time you use a remote address book.
11675   Just as local Alpine address books use a format that only Alpine understands,
11676   remote Alpine address books do the same and other mail reading programs
11677   are unlikely to be able to understand them.<P>
11678   While global address books are explicitly intended to be shared, there is
11679   nothing to prevent you from sharing a personal address book with other
11680   Alpine users. This might be useful in the case of a small workgroup.
11681   However, it is recommended that updates to shared personal address books
11682   be done when other Alpine users are not accessing the address book. Alpine
11683   does not do any file-locking to manage concurrent updates to the
11684   addressbook, but it does check to see if the file has been modified before
11685   making any changes.  Consequently, inadvertent concurrent updates will
11686   only cause other Alpine users to have to restart their address book
11687   operation, which will cause Alpine to reopen the updated file.
11689   <P><DT>Converting to Remote
11690   <DD>The easiest way to convert an existing local
11691   address book into a remote address book is to create an empty new remote
11692   personal address book by typing &quot;A&quot; to execute the
11693   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
11694   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
11695   address book.
11696   After you have added the empty
11697   remote address book, go into the screen for the address book you wish
11698   to copy and &quot;Select&quot; &quot;All&quot;.
11699   This selects every entry in that
11700   address book.  Then type the command &quot;Apply Save&quot;.
11701   You will be asked for the address book to save to.  You may use ^P and ^N
11702   to get to the new empty address book, then hit RETURN and the addresses
11703   will be copied.
11704   At this point you'll probably want to unselect all the entries in the local
11705   address book before proceeding. You do that with
11706   &quot;Select&quot; &quot;unselect All&quot;.
11708 </DL>
11709 <UL>
11710 <LI><A HREF="h_address_format">Explanation of Address formats</A>
11711 </UL>
11712 <P><UL>
11713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11714 </UL>
11716 &lt;End of help on this topic&gt;
11717 </BODY>
11718 </HTML>
11719 ===== h_abook_select_addr =====
11720 <HTML>
11721 <HEAD>
11722 <TITLE>Addressbook Selection Explained</TITLE>
11723 </HEAD>
11724 <BODY>
11725 <H1>SELECT ADDRESS</H1>
11726 <!--chtml if pinemode="function_key"-->
11727 <PRE>
11728 Navigating the List of Messages               General Alpine Commands
11729 -------------------------------               -----------------------
11730 F5   Move to previous entry                   F1  Show this help text
11731 F6   Move to next entry
11732 F7   Show previous screen of address book
11733 F8   Show next screen of address book
11734 F12  WhereIs (search through address book)
11736 Address Selection Commands
11737 --------------------------
11738 F3   Exit the Address Select screen (without selecting an address)
11739 F4   Select the currently highlighted entry
11740 </PRE>
11741 <!--chtml else-->
11742 <PRE>
11743 Navigating the List of Messages               General Alpine Commands
11744 -------------------------------               -----------------------
11745  P   Move to previous entry                    ?  Show this help text
11746  N   Move to next entry
11747  -   Show previous screen of address book
11748 Spc  (space bar) Show next screen of address book
11749  W   WhereIs (search through address book)
11751 Address Selection Commands
11752 --------------------------
11753  E   Exit the Address Select screen (without selecting an address)
11754  S   Select the currently highlighted entry
11755 </PRE>
11756 <!--chtml endif-->
11759 This screen is designed to let you easily scan your address book(s) in
11760 order to select an entry for the message you are composing.  You cannot
11761 edit your address book in any way at this time, for address book
11762 maintenance, select the address book command when not composing a message.
11765 If you are composing a message and know the nickname of the person/list you
11766 want, you can bypass this screen by simply typing in the nickname on the
11767 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11768 selecting an entry does not cancel your message.
11771 FOR MORE INFORMATION on addressing see
11772 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11773 <A HREF="h_abook_opened">Address Book Screen's</A>
11774 help text.
11776 &lt;End of help on this topic&gt;
11777 </BODY>
11778 </HTML>
11779 ===== h_abook_select_top =====
11780 <HTML>
11781 <HEAD>
11782 <TITLE>Addressbook Selection Navigation Explained</TITLE>
11783 </HEAD>
11784 <BODY>
11785 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
11786 <!--chtml if pinemode="function_key"-->
11787 <PRE>
11788 Navigating the List of Address Books       General Alpine Commands
11789 ------------------------------------       -----------------------
11790 F4   View the highlighted address book
11791 F5   Move to previous address book         F1  Show this help text
11792 F6   Move to next address book
11793 F7   Show previous screen of address books
11794 F8   Show next screen of address books
11795 F12  WhereIs (search through address books)
11797 Address Selection Commands
11798 --------------------------
11799 F3   Exit the Address Select screen (without selecting an address)
11800 F4   Select the currently selected entries (if using ListMode)
11801 F9   Change to ListMode
11802 </PRE>
11803 <!--chtml else-->
11804 <PRE>
11805 Navigating the List of Address Books       General Alpine Commands
11806 ------------------------------------       -----------------------
11807  &gt;   View the highlighted address book
11808  P   Move to previous address book         ?  Show this help text
11809  N   Move to next address book
11810  -   Show previous screen of address books
11811 Spc  (space bar) Show next screen of address books
11812  W   WhereIs (search through address books)
11814 Address Selection Commands
11815 --------------------------
11816  E   Exit the Address Select screen (without selecting an address)
11817  S   Select the currently selected entries (if using ListMode)
11818  L   Change to ListMode
11819 </PRE>
11820 <!--chtml endif-->
11823 This screen is designed to let you easily scan your address book(s) in
11824 order to select entries for the message you are composing.  You cannot
11825 edit your address book in any way at this time.  For address book
11826 maintenance, select the address book command when not composing a message.
11829 If you are composing a message and know the nickname of the person/list you
11830 want, you can bypass this screen by simply typing in the nickname on the
11831 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11832 selecting an entry does not cancel your message.
11835 The ListMode command will add a column at the left edge of the screen.
11836 You mark the entries that you wish to select with the &quot;X&quot; command.
11837 This allows you to choose more than one entry at a time.
11840 An alternative method of composing a message to entries in your
11841 address book(s) is to first use the &quot;Select&quot; command from
11842 the address book maintenance screen and then the &quot;Apply&quot;
11843 &quot;ComposeTo&quot; command to start the composer composing to the
11844 selected entries.
11847 FOR MORE INFORMATION on addressing see
11848 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11849 <A HREF="h_abook_opened">Address Book Screen's</A>
11850 help text.
11852 &lt;End of help on this topic&gt;
11853 </BODY>
11854 </HTML>
11855 ===== h_abook_select_listmode =====
11856 <HTML>
11857 <HEAD>
11858 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
11859 </HEAD>
11860 <BODY>
11861 <H1>COMPOSER: SELECT ADDRESSES</H1>
11862 <!--chtml if pinemode="function_key"-->
11863 <PRE>
11864 Navigating the List of Messages                 General Alpine Commands
11865 -------------------------------                 -----------------------
11866 F5   Move to previous entry                     F1  Show this help text
11867 F6   Move to next entry
11868 F7   Show previous screen of address book
11869 F8   Show next screen of address book
11870 F12  WhereIs (search through address book)
11872 Address Selection Commands
11873 --------------------------
11874 F3   Exit the Address Select screen (without selecting an address)
11875 F4   Select the currently highlighted entry
11876 F9   Change to ListMode
11877 </PRE>
11878 <!--chtml else-->
11879 <PRE>
11880 Navigating the List of Messages                 General Alpine Commands
11881 -------------------------------                 -----------------------
11882  P   Move to previous entry                     ?  Show this help text
11883  N   Move to next entry
11884  -   Show previous screen of address book
11885 Spc  (space bar) Show next screen of address book
11886  W   WhereIs (search through address book)
11888 Address Selection Commands
11889 --------------------------
11890  E   Exit the Address Select screen (without selecting an address)
11891  S   Select the currently highlighted entry
11892  L   Change to ListMode
11893 </PRE>
11894 <!--chtml endif-->
11897 This screen is designed to let you easily scan your address book(s) in
11898 order to select entries for the message you are composing.  You cannot
11899 edit your address book in any way at this time, for address book
11900 maintenance, select the address book command when not composing a message.
11903 If you are composing a message and know the nickname of the person/list you
11904 want, you can bypass this screen by simply typing in the nickname on the
11905 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
11906 selecting an entry does not cancel your message.
11909 The ListMode command will add a column at the left edge of the screen.
11910 You mark the entries that you wish to select with the &quot;X&quot; command.
11911 This allows you to choose more than one entry at a time.
11914 An alternative method of composing a message to entries in your
11915 address book(s) is to first use the &quot;Select&quot; command from
11916 the address book maintenance screen and then the &quot;Apply&quot;
11917 &quot;ComposeTo&quot; command to start the composer composing to the
11918 selected entries.
11921 FOR MORE INFORMATION on addressing see
11922 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11923 <A HREF="h_abook_opened">Address Book Screen's</A>
11924 help text.
11926 &lt;End of help on this topic&gt;
11927 </BODY>
11928 </HTML>
11929 ===== h_abook_select_checks =====
11930 <HTML>
11931 <HEAD>
11932 <TITLE>Address Selection from Composer Explained</TITLE>
11933 </HEAD>
11934 <BODY>
11935 <H1>COMPOSER: SELECT ADDRESSES</H1>
11936 <!--chtml if pinemode="function_key"-->
11937 <PRE>
11938 Navigating the List of Messages                 General Alpine Commands
11939 -------------------------------                 -----------------------
11940 F5   Move to previous entry                     F1  Show this help text
11941 F6   Move to next entry
11942 F7   Show previous screen of address book
11943 F8   Show next screen of address book
11944 F12  WhereIs (search through address book)
11946 Address Selection Commands
11947 --------------------------
11948 F3   Exit the Address Select screen (without selecting an address)
11949 F4   Select the currently highlighted entry
11950 F8   Either Sets or Unsets all entries in this address book
11951 F9   Set or Unset the highlighted entry
11952 </PRE>
11953 <!--chtml else-->
11954 <PRE>
11955 Navigating the List of Messages                 General Alpine Commands
11956 -------------------------------                 -----------------------
11957  P   Move to previous entry                     ?  Show this help text
11958  N   Move to next entry
11959  -   Show previous screen of address book
11960 Spc  (space bar) Show next screen of address book
11961  W   WhereIs (search through address book)
11963 Address Selection Commands
11964 --------------------------
11965  E   Exit the Address Select screen (without selecting an address)
11966  S   Select the currently highlighted entry
11967  X   Set or Unset the highlighted entry
11968  A   Either Sets or Unsets all entries in this address book
11969 </PRE>
11970 <!--chtml endif-->
11973 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
11974 command.  Type &quot;S Select&quot; to select all of the entries you
11975 have marked, just as if you had typed them in by hand.
11978 An alternative method of composing a message to entries in your
11979 address book(s) is to first use the &quot;Select&quot; command from
11980 the address book maintenance screen and then the &quot;Apply&quot;
11981 &quot;ComposeTo&quot; command to start the composer composing to the
11982 selected entries.
11985 FOR MORE INFORMATION on addressing see
11986 <A HREF="h_address_format">Explanation of Address formats</A>, and the
11987 <A HREF="h_abook_opened">Address Book Screen's</A>
11988 help text.
11990 &lt;End of help on this topic&gt;
11991 </BODY>
11992 </HTML>
11993 ===== h_abook_select_nicks_take =====
11994 <HTML>
11995 <HEAD>
11996 <TITLE>Take Address Nickname Selection Explained</TITLE>
11997 </HEAD>
11998 <BODY>
11999 <H1>TAKEADDR: SELECT NICKNAME</H1>
12000 <!--chtml if pinemode="function_key"-->
12001 <PRE>
12002 Navigating the List of Messages                 General Alpine Commands
12003 -------------------------------                 -----------------------
12004 F5   Move to previous entry                     F1  Show this help text
12005 F6   Move to next entry
12006 F7   Show previous screen of address book
12007 F8   Show next screen of address book
12008 F12  WhereIs (search through address book)
12010 Message Selection Commands
12011 --------------------------
12012 F3   Exit the Nickname Select screen (without selecting an address)
12013 F4   Select the currently highlighted entry
12014 </PRE>
12015 <!--chtml else-->
12016 <PRE>
12017 Navigating the List of Messages                 General Alpine Commands
12018 -------------------------------                 -----------------------
12019  P   Move to previous entry                     ?  Show this help text
12020  N   Move to next entry
12021  -   Show previous screen of address book
12022 Spc  (space bar) Show next screen of address book
12023  W   WhereIs (search through address book)
12025 Message Selection Commands
12026 --------------------------
12027  E   Exit the Nickname Select screen (without selecting an address)
12028  S   Select the currently highlighted entry
12029 </PRE>
12030 <!--chtml endif-->
12033 This screen is designed to let you modify or add to an existing
12034 address book entry.  You have already selected the name(s) and
12035 address(es) through &quot;Take Address&quot;.  This screen simply lets
12036 you scan your address books and select the nickname to be
12037 changed/augmented.  If you want to add a new entry, then you are in
12038 the wrong place-- Select &quot;Exit&quot; command.
12041 FOR MORE INFORMATION on addressing see
12042 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12043 <A HREF="h_abook_opened">Address Book Screen's</A>
12044 help text.
12046 &lt;End of help on this topic&gt;
12047 </BODY>
12048 </HTML>
12049 ===== h_abook_select_nick =====
12050 <HTML>
12051 <HEAD>
12052 <TITLE>Nickname Selection Explained</TITLE>
12053 </HEAD>
12054 <BODY>
12055 <H1>SELECT NICKNAME</H1>
12056 <!--chtml if pinemode="function_key"-->
12057 <PRE>
12058 Navigating the List of Messages                 General Alpine Commands
12059 -------------------------------                 -----------------------
12060 F5   Move to previous entry                     F1  Show this help text
12061 F6   Move to next entry
12062 F7   Show previous screen of address book
12063 F8   Show next screen of address book
12064 F12  WhereIs (search through address book)
12066 Message Selection Commands
12067 --------------------------
12068 F3   Exit the Nickname Select screen (without selecting an address)
12069 F4   Select the currently highlighted entry
12070 </PRE>
12071 <!--chtml else-->
12072 <PRE>
12073 Navigating the List of Messages                 General Alpine Commands
12074 -------------------------------                 -----------------------
12075  P   Move to previous entry                     ?  Show this help text
12076  N   Move to next entry
12077  -   Show previous screen of address book
12078 Spc  (space bar) Show next screen of address book
12079  W   WhereIs (search through address book)
12081 Message Selection Commands
12082 --------------------------
12083  E   Exit the Nickname Select screen (without selecting an address)
12084  S   Select the currently highlighted entry
12085 </PRE>
12086 <!--chtml endif-->
12089 This screen is designed to let you look at the nicknames in your address
12090 books before choosing a new one.
12093 FOR MORE INFORMATION on addressing see
12094 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12095 <A HREF="h_abook_opened">Address Book Screen's</A>
12096 help text.
12098 &lt;End of help on this topic&gt;
12099 </BODY>
12100 </HTML>
12101 ===== h_takeaddr_screen =====
12102 <HTML>
12103 <HEAD>
12104 <TITLE>Take Address Screen Explained</TITLE>
12105 </HEAD>
12106 <BODY>
12107 <H1>TAKE ADDRESS COMMANDS</H1>
12108 <!--chtml if pinemode="function_key"-->
12109 <PRE>
12110 Navigating the List of Addresses       Address Selection Commands        
12111 --------------------------------       --------------------------        
12112  F5  Move to previous entry            F3  Exit without taking address
12113  F6  Move to next entry                F4  Take current address(es)
12114  F7  Show previous page of address list
12115  F8  Show next page of address list
12116  F2  WhereIs (search list)
12117                                --------------
12118 Mode Toggle            F9  Set/Unset current address
12119 -----------            F10 Set all
12120  F12 Toggle between List and single mode       F11 Unset all
12121 </PRE>
12122 <!--chtml else-->
12123 <PRE>
12124 Navigating the List of Addresses       Address Selection Commands
12125 --------------------------------       --------------------------
12126  P  Move to previous entry              &lt;  Exit without taking address
12127  N  Move to next entry                  T  Take address
12128  -  Show previous page of address list
12129 Spc (space bar) Show next page of address list
12130  W  WhereIs (search list)              List Mode
12131                                        ---------
12132 Single Mode                             X  Set/Unset current address
12133 -----------                             A  Set all addresses
12134  L  Switch to list mode                 U  Unset all addresses
12135                                         S  Switch to single mode
12136 </PRE>
12137 <!--chtml endif-->
12139 <H2>Description of the Take Address Screen</H2>
12141 This screen is designed to let you select one or more address/name
12142 combinations from the current message and put them into your address book.
12143 The cursor is initially placed on the line with the message author.
12144 Other lines include the names of people and/or mailing lists who also
12145 received the message.  Other people &quot;involved&quot; in the
12146 message (e.g. the person named as Reply-To:) are also listed here.
12149 The simple case is adding a new, single entry into your address book. To
12150 do this, simply highlight the correct line and press 
12151 <!--chtml if pinemode="function_key"-->
12153 <!--chtml else-->
12154 &quot;T&quot;.
12155 <!--chtml endif-->
12156 To create a new list or add to an existing list, switch the screen display
12157 into List Mode by pressing
12158 <!--chtml if pinemode="function_key"-->
12159 F12.
12160 <!--chtml else-->
12161 &quot;L&quot;.
12162 <!--chtml endif-->
12163 In List Mode, you select the
12164 group of addresses you wish to manipulate by marking them with an
12165 &quot;X&quot;.
12166 The Set/Unset
12167 <!--chtml if pinemode="function_key"-->
12168 (F9)
12169 <!--chtml else-->
12170 (&quot;X&quot;)
12171 <!--chtml endif-->
12172 command will turn the &quot;X&quot; on for the
12173 highlighted address if it was off or turn it off if it was previously on.
12174 The SetAll command will select all of the addresses, and the UnSetAll
12175 command will turn off all the selections.  Once you've gotten the
12176 selection the way you want it, you may create a new list by pressing
12177 <!--chtml if pinemode="function_key"-->
12179 <!--chtml else-->
12180 &quot;T&quot;.
12181 <!--chtml endif-->
12184 In both the simple and list cases, after choosing to take the address,
12185 you will be asked for the nickname of the entry.  Typing in a new name
12186 creates the new entry/list.  Entering an existing nickname will replace
12187 the entry (simple case) or add to the list (list case).  Alternatively,
12188 you can press Ctrl-T at the nickname prompt and select an existing
12189 nickname from your address book.
12192 You will normally start in Single Mode, unless you used the Apply command
12193 to startup the TakeAddr screen, in which case you will start in List Mode.
12194 You may switch between the two modes at any time.  If you've already
12195 selected several addresses in List Mode, those will be remembered when you
12196 switch to Single Mode and then back to List Mode.  The set of addresses
12197 that are pre-selected when you start in List Mode are the From addresses
12198 of all of the messages you are operating on.  You may, of course, easily
12199 erase those selections with the UnSetAll command.
12202 If you have more than one writable address book, you will be prompted for
12203 the name of the address book you wish to add the new entry to before
12204 anything else. You can use ^N and ^P to choose among the defined address
12205 books, or type in the address book name.
12208 FOR MORE INFORMATION on addressing see
12209 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12210 <A HREF="h_abook_opened">Address Book Screen's</A>
12211 help text.
12213 &lt;End of help on this topic&gt;
12214 </BODY>
12215 </HTML>
12216 ===== h_takeexport_screen =====
12217 <HTML>
12218 <HEAD>
12219 <TITLE>Take Export Screen Explained</TITLE>
12220 </HEAD>
12221 <BODY>
12222 <H1>TAKE EXPORT COMMANDS</H1>
12223 <!--chtml if pinemode="function_key"-->
12224 <PRE>
12225 Navigating the List of Addresses       Address Selection Commands        
12226 --------------------------------       --------------------------        
12227  F5  Move to previous entry            F3  Exit without taking address
12228  F6  Move to next entry                F4  Take current address(es)
12229  F7  Show previous page of address list
12230  F8  Show next page of address list
12231  F2  WhereIs (search list)
12232                                --------------
12233 Mode Toggle            F9  Set/Unset current address
12234 -----------            F10 Set all
12235  F12 Toggle between List and single mode       F11 Unset all
12236 </PRE>
12237 <!--chtml else-->
12238 <PRE>
12239 Navigating the List of Addresses       Address Selection Commands
12240 --------------------------------       --------------------------
12241  P  Move to previous entry              &lt;  Exit without taking address
12242  N  Move to next entry                  T  Take address
12243  -  Show previous page of address list
12244 Spc (space bar) Show next page of address list
12245  W  WhereIs (search list)              List Mode
12246                                        ---------
12247 Single Mode                             X  Set/Unset current address
12248 -----------                             A  Set all addresses
12249  L  Switch to list mode                 U  Unset all addresses
12250                                         S  Switch to single mode
12251 </PRE>
12252 <!--chtml endif-->
12254 <H2>Description of the Take Export Screen</H2>
12256 This screen is designed to let you select one or more addresses
12257 from the current message and put them into a file.
12258 Only the user@domain_name part of each address is put into the file.
12261 To put a single entry into a file simply highlight the correct line and press 
12262 <!--chtml if pinemode="function_key"-->
12264 <!--chtml else-->
12265 &quot;T&quot;.
12266 <!--chtml endif-->
12267 To put more than one entry into a file
12268 switch the screen display
12269 into List Mode by pressing
12270 <!--chtml if pinemode="function_key"-->
12271 F12.
12272 <!--chtml else-->
12273 &quot;L&quot;.
12274 <!--chtml endif-->
12275 In List Mode, you select the
12276 group of addresses you wish to manipulate by marking them with an
12277 &quot;X&quot;.
12278 The Set/Unset
12279 <!--chtml if pinemode="function_key"-->
12280 (F9)
12281 <!--chtml else-->
12282 (&quot;X&quot;)
12283 <!--chtml endif-->
12284 command will turn the &quot;X&quot; on for the
12285 highlighted address if it was off or turn it off if it was previously on.
12286 The SetAll command will select all of the addresses, and the UnSetAll
12287 command will turn off all the selections.  Once you've gotten the
12288 selection the way you want it, you may put the addresses in a file by typing
12289 <!--chtml if pinemode="function_key"-->
12291 <!--chtml else-->
12292 &quot;T&quot;.
12293 <!--chtml endif-->
12296 You will be asked for the name of a file to put the addresses in.
12297 If the file already exists, you will be asked whether you want to Overwrite
12298 (replace) the contents of the file or Append to the contents of the file.
12301 &lt;End of help on this topic&gt;
12302 </BODY>
12303 </HTML>
12304 ============= h_abook_view ========================
12305 <HTML>
12306 <HEAD>
12307 <TITLE>Address Book View Explained</TITLE>
12308 </HEAD>
12309 <BODY>
12310 This function allows you to view the contents of an address book entry. You
12311 can only view one entry at a time.
12313 <DL>
12314 <DT>Help
12315 <!--chtml if pinemode="function_key"-->
12316 (F1)
12317 <!--chtml else-->
12319 <!--chtml endif-->
12320 </DT>
12321 <DD>
12322 Display this help text.
12324 <DT>Abook
12325 <!--chtml if pinemode="function_key"-->
12326 (F3)
12327 <!--chtml else-->
12328 (&lt;)
12329 <!--chtml endif-->
12330 </DT>
12331 <DD>
12332 Go back to index of address book entries.
12334 <DT>Update
12335 <!--chtml if pinemode="function_key"-->
12336 (F4)
12337 <!--chtml else-->
12339 <!--chtml endif-->
12340 </DT>
12341 <DD>
12342 Update (modify) this entry.
12344 <DT>ComposeTo
12345 <!--chtml if pinemode="function_key"-->
12346 (F5)
12347 <!--chtml else-->
12349 <!--chtml endif-->
12350 </DT>
12351 <DD>Compose a message to the address(es) in this entry.
12353 <DT>Role
12354 <!--chtml if pinemode="function_key"-->
12355 (F6)
12356 <!--chtml else-->
12358 <!--chtml endif-->
12359 </DT>
12360 <DD>Compose a message to the address(es) in this entry using roles.
12362 <DT>Prev Page
12363 <!--chtml if pinemode="function_key"-->
12364 (F7)
12365 <!--chtml else-->
12367 <!--chtml endif-->
12368 </DT>
12369 <DD>
12370 Show the previous page of the current entry.
12372 <DT>Next Page
12373 <!--chtml if pinemode="function_key"-->
12374 (F8)
12375 <!--chtml else-->
12376 (Space)
12377 <!--chtml endif-->
12378 </DT>
12379 <DD>
12380 Show the next page of the current entry.
12382 <DT>Print
12383 <!--chtml if pinemode="function_key"-->
12384 (F9)
12385 <!--chtml else-->
12387 <!--chtml endif-->
12388 </DT>
12389 <DD>Print the current entry.  You can select the
12390 printer or the print command via the &quot;Setup&quot; command
12391 on the MAIN MENU.
12393 <DT>WhereIs
12394 <!--chtml if pinemode="function_key"-->
12395 (F10)
12396 <!--chtml else-->
12398 <!--chtml endif-->
12399 </DT>
12400 <DD>Search the entry for a string of letters.  If it is
12401 found, move to it.  The string can be one word or a phrase.
12402 If there are multiple occurrences, the cursor moves to the
12403 first occurrence beyond the current cursor position.
12405 <DT>Fwd Email
12406 <!--chtml if pinemode="function_key"-->
12407 (F11)
12408 <!--chtml else-->
12410 <!--chtml endif-->
12411 </DT>
12412 <DD>Begin composition of a new mail message with the displayed
12413 text already inserted in the message body.
12415 </DL>
12417 &lt;End of help on this topic&gt;
12418 </BODY>
12419 </HTML>
12420 ============= h_ldap_view ========================
12421 <HTML>
12422 <HEAD>
12423 <TITLE>LDAP Response View Explained</TITLE>
12424 </HEAD>
12425 <BODY>
12426 This function allows you to view the contents of a directory entry. You
12427 can only view one entry at a time.
12429 <DL>
12430 <DT>Help
12431 <!--chtml if pinemode="function_key"-->
12432 (F1)
12433 <!--chtml else-->
12435 <!--chtml endif-->
12436 </DT>
12437 <DD>
12438 Display this help text.
12440 <DT>Results Index
12441 <!--chtml if pinemode="function_key"-->
12442 (F3)
12443 <!--chtml else-->
12444 (&lt;)
12445 <!--chtml endif-->
12446 </DT>
12447 <DD>Go back to index of search results.
12449 <DT>ComposeTo
12450 <!--chtml if pinemode="function_key"-->
12451 (F5)
12452 <!--chtml else-->
12454 <!--chtml endif-->
12455 </DT>
12456 <DD>Compose a message to the address(es) in this entry.
12458 <DT>Role
12459 <!--chtml if pinemode="function_key"-->
12460 (F6)
12461 <!--chtml else-->
12463 <!--chtml endif-->
12464 </DT>
12465 <DD>Compose a message to the address(es) in this entry using roles.
12467 <DT>Prev Page
12468 <!--chtml if pinemode="function_key"-->
12469 (F7)
12470 <!--chtml else-->
12472 <!--chtml endif-->
12473 </DT>
12474 <DD>
12475 Show the previous page of the current entry.
12477 <DT>Next Page
12478 <!--chtml if pinemode="function_key"-->
12479 (F8)
12480 <!--chtml else-->
12481 (Space)
12482 <!--chtml endif-->
12483 </DT>
12484 <DD>
12485 Show the next page of the current entry.
12487 <DT>Print
12488 <!--chtml if pinemode="function_key"-->
12489 (F9)
12490 <!--chtml else-->
12492 <!--chtml endif-->
12493 </DT>
12494 <DD>Print the current entry on paper.  You can select the
12495 printer or the print command via the &quot;Setup&quot; command
12496 on the MAIN MENU.
12498 <DT>WhereIs
12499 <!--chtml if pinemode="function_key"-->
12500 (F10)
12501 <!--chtml else-->
12503 <!--chtml endif-->
12504 </DT>
12505 <DD>Search the entry for a string of letters.  If it is
12506 found, move to it.  The string can be one word or a phrase.
12507 If there are multiple occurrences, the cursor moves to the
12508 first occurrence beyond the current cursor position.
12510 <DT>Fwd Email
12511 <!--chtml if pinemode="function_key"-->
12512 (F11)
12513 <!--chtml else-->
12515 <!--chtml endif-->
12516 </DT>
12517 <DD>Begin composition of a new mail message with the displayed
12518 text already inserted in the message body.
12520 <DT>Save
12521 <!--chtml if pinemode="function_key"-->
12522 (F12)
12523 <!--chtml else-->
12525 <!--chtml endif-->
12526 </DT>
12527 <DD>Save the displayed entry to one of your address books or export
12528 it to a file.
12529 </DL>
12531 &lt;End of help on this topic&gt;
12532 </BODY>
12533 </HTML>
12534 ===== h_attachment_screen =====
12535 <HTML>
12536 <HEAD>
12537 <TITLE>Attachment Index Screen Explained</TITLE>
12538 </HEAD>
12539 <BODY>
12540 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
12541 message's attachments, and allows various operations on them.  The
12542 first attachment is usually the message text, but does not include the
12543 header portion of the message.
12545 Available commands include:
12547 <DL>
12549 <DT>Help</DT>
12550 <DD>Show this help text.
12552 <DT>Msg #<I>num</I></DT>
12553 <DD>Leave this screen without displaying or saving any attachments.
12555 <DT>View</DT>
12556 <DD>View the currently selected attachment.
12558 <DT>Prev Attach</DT>
12559 <DD>Move to previous attachment.
12561 <DT>Next Attach</DT>
12562 <DD>Move to next attachment.
12564 <DT>Prev Page</DT>
12565 <DD>Previous page of the listed attachments.
12567 <DT>Next Page</DT>
12568 <DD>Next page of the listed attachments.
12570 <DT>Delete</DT>
12571 <DD>Mark the currently selected attachment for Deletion.
12572 This does not modify the current message by deleting the attachment from
12573 it, but instead the delete flag <EM>only</EM> has an effect when saving
12574 the message to a folder.
12575 Attachments marked for deletion are not copied to the destination folder
12576 along with the rest of the message when it is saved.
12577 It is ok for the destination folder to be the same as the current folder.
12578 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
12580 <DT>Undelete</DT>
12581 <DD>Turn off the Delete flag for the selected attachment.
12583 <DT>Save</DT>
12584 <DD>Save the selected attachment to a file.  If the attachment is of
12585 type &quot;RFC822/Message&quot;, then the attachment will be saved to
12586 the specified mail folder.
12588 <DT>Export</DT>
12589 <DD>If the attachment is of
12590 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12591 copy the message to a file in the same way this command works on 
12592 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12594 <DT>Pipe</DT>
12595 <DD>Pipe the attachment contents into a UNIX command (if enabled).
12596 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
12598 <DT>WhereIs</DT>
12599 <DD>Find a matching string in the attachment list.
12601 <DT>AboutAttch</DT>
12602 <DD>Examine various aspects of the selected attachment.
12604 <DT>Print</DT>
12605 <DD>Print the selected attachment.
12607 <DT>Forward</DT>
12608 <DD>Forward the selected attachment as an attachment.
12609 </DL>
12613 All attachments can be saved or piped into a UNIX command, but some may
12614 not be readily displayed by either Alpine or an external tool.  In such
12615 cases, the reason why the message cannot be displayed is displayed on
12616 Alpine's message line.
12618 &lt;End of help on this topic&gt;
12619 </BODY>
12620 </HTML>
12621 ============= h_mail_text_att_view ========================
12622 <HTML>
12623 <HEAD>
12624 <TITLE>Attachment View Screen Explained</TITLE>
12625 </HEAD>
12626 <BODY>
12627 This function allows you to view the contents of a text attachment. You
12628 can only view one attachment at a time.
12630 Available commands include:
12632 <DL>
12634 <DT>Help</DT>
12635 <DD>Display this help text
12637 <DT>AttchIndex</DT>
12638 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
12640 <DT>Prev Page</DT>
12641 <DD>Show the previous page of the current attachment.
12643 <DT>Next Page</DT>
12644 <DD>Show the next page of the current attachment by pressing the space bar.
12646 <DT>Delete</DT>
12647 <DD>Mark the viewed attachment for Deletion.  The delete
12648 flag <EM>only</EM> has affect when saving the message to a folder.
12649 Attachments marked for deletion are exluded from the messsage when
12650 it is saved.  In addition, the delete mark <EM>only</EM> applies to
12651 this Alpine session.
12653 <DT>Undelete</DT>
12654 <DD>Turn off the Delete flag for the selected attachment.
12656 <DT>Save</DT>
12657 <DD>Copy the current attachment to a file.  If you just enter
12658 a filename, the attachment will be saved with that name in
12659 your home directory 
12660 <!--chtml if pinemode="running"-->
12661 (which, in the present configuration of your system, is
12662  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12663 <!--chtml endif-->
12664 or current working directory
12665 <!--chtml if pinemode="running"-->
12666 (which, at least for your current Alpine &quot;session,&quot; 
12667 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12668 <!--chtml endif-->, depending on the
12669 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12670 configuration setting.  You may enter the full
12671 path and filename to save it in another directory instead.
12673 <DT>Export</DT>
12674 <DD>If the attachment is of
12675 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
12676 copy the message to a file in the same way this command works on 
12677 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
12678 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
12679 defined, they may affect the contents of the exported file.)
12681 <DT>Pipe</DT>
12682 <DD>Pipe the attachment contents into a UNIX command (if enabled)
12684 <DT>WhereIs</DT>
12685 <DD>Search the attachment for a string of letters.  If it is
12686 found, move to it.  The string can be one word or a phrase.
12687 If there are multiple occurrences, the cursor moves to the
12688 first occurrence beyond the current cursor position.
12690 <DT>Print</DT>
12691 <DD>Print the current attachment on paper.  You can select the
12692 printer or the print command via the &quot;Setup&quot; command
12693 on the MAIN MENU.
12695 <DT>Forward</DT>
12696 <DD>Forward the selected attachment as an attachment.
12697 </DL>
12699 &lt;End of help on this topic&gt;
12700 </BODY>
12701 </HTML>
12702 ============= h_journal ==============
12703 <HTML>
12704 <HEAD>
12705 <TITLE>Recent Message Journal Explained</TITLE>
12706 </HEAD>
12707 <BODY>
12709 The following commands are available on this screen:
12711 <DL>
12712 <DT>Help</DT>
12713 <DD>Show this help text
12715 <DT>Exit</DT>
12716 <DD>Exit Viewer, and go back to mail processing
12718 <DT>Prev Page</DT>
12719 <DD>Show the previous page text
12721 <DT>Next Page</DT>
12722 <DD>Show the next page of text by pressing the space bar
12724 <DT>Print</DT>
12725 <DD>Print the displayed text on paper.  You can select the
12726 printer or the print command via the &quot;Setup&quot; command
12727 on the MAIN MENU.
12729 <DT>Fwd Email</DT>
12730 <DD>Begin composition of a new mail message with the displayed
12731 text already inserted in the message body.
12733 <DT>Save</DT>
12734 <DD>Copy the displayed text to a file.  If you just enter
12735 a filename, the text will be saved with that name in
12736 your 
12737 home directory 
12738 <!--chtml if pinemode="running"-->
12739 (which, in the present configuration of your system, is
12740  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12741 <!--chtml endif-->
12742 or current working directory
12743 <!--chtml if pinemode="running"-->
12744 (which, at least for your current Alpine &quot;session,&quot; 
12745 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12746 <!--chtml endif-->, depending on the
12747 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12748 configuration setting.   You may enter the full
12749 path and filename to save it in another directory instead.
12751 <DT>WhereIs</DT>
12752 <DD>Search the text for a string of letters.  If it is
12753 found, move to it.  The string can be one word or a phrase.
12754 If there are multiple occurrences, the cursor moves to the
12755 first occurrence beyond the current cursor position.
12756 </DL>
12758 &lt;End of help on this topic&gt;
12759 </BODY>
12760 </HTML>
12761 ============= h_debugjournal ==============
12762 <HTML>
12763 <HEAD>
12764 <TITLE>Debug Journal Explained</TITLE>
12765 </HEAD>
12766 <BODY>
12768 The following commands are available on this screen:
12770 <DL>
12771 <DT>Help</DT>
12772 <DD>Show this help text
12774 <DT>Exit</DT>
12775 <DD>Exit Viewer, and go back to mail processing
12777 <DT>Timestamps</DT>
12778 <DD>Turn on or off timestamps.
12780 <DT>DebugView</DT>
12781 <DD>Set the level of debugging you want to see. The level may be any number
12782 in the range 0-9. Higher numbers show more debugging detail. Note that the
12783 debugging information has already been captured. This setting just causes the
12784 debugging information that you see to be filtered. If you set this to
12785 the number &quot;5&quot; then you will be shown all of the debugging information
12786 at levels 5 and below.
12787 It's actually a bit more complicated than that. A fixed amount of memory
12788 is used to store the debug information.
12789 Since the amount of memory used is limited the debugging information
12790 has to be trimmed back when it gets too large.
12792 <DT>Prev Page</DT>
12793 <DD>Show the previous page text
12795 <DT>Next Page</DT>
12796 <DD>Show the next page of text by pressing the space bar
12798 <DT>Print</DT>
12799 <DD>Print the displayed text on paper.  You can select the
12800 printer or the print command via the &quot;Setup&quot; command
12801 on the MAIN MENU.
12803 <DT>Fwd Email</DT>
12804 <DD>Begin composition of a new mail message with the displayed
12805 text already inserted in the message body.
12807 <DT>Save</DT>
12808 <DD>Copy the displayed text to a file.  If you just enter
12809 a filename, the text will be saved with that name in
12810 your 
12811 home directory 
12812 <!--chtml if pinemode="running"-->
12813 (which, in the present configuration of your system, is
12814  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12815 <!--chtml endif-->
12816 or current working directory
12817 <!--chtml if pinemode="running"-->
12818 (which, at least for your current Alpine &quot;session,&quot; 
12819 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12820 <!--chtml endif-->, depending on the
12821 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12822 configuration setting.   You may enter the full
12823 path and filename to save it in another directory instead.
12825 <DT>WhereIs</DT>
12826 <DD>Search the text for a string of letters.  If it is
12827 found, move to it.  The string can be one word or a phrase.
12828 If there are multiple occurrences, the cursor moves to the
12829 first occurrence beyond the current cursor position.
12830 </DL>
12832 &lt;End of help on this topic&gt;
12833 </BODY>
12834 </HTML>
12835 ============= h_simple_text_view ==============
12836 <HTML>
12837 <HEAD>
12838 <TITLE>Simple Text View Screen Explained</TITLE>
12839 </HEAD>
12840 <BODY>
12842 The following commands are available on this screen:
12844 <DL>
12845 <DT>Help</DT>
12846 <DD>Show this help text
12848 <DT>Exit</DT>
12849 <DD>Exit Viewer, and go back to mail processing
12851 <DT>Prev Page</DT>
12852 <DD>Show the previous page text
12854 <DT>Next Page</DT>
12855 <DD>Show the next page of text by pressing the space bar
12857 <DT>Print</DT>
12858 <DD>Print the displayed text on paper.  You can select the
12859 printer or the print command via the &quot;Setup&quot; command
12860 on the MAIN MENU.
12862 <DT>Fwd Email</DT>
12863 <DD>Begin composition of a new mail message with the displayed
12864 text already inserted in the message body.
12866 <DT>Save</DT>
12867 <DD>Copy the displayed text to a file.  If you just enter
12868 a filename, the attachment will be saved with that name in
12869 your 
12870 home directory 
12871 <!--chtml if pinemode="running"-->
12872 (which, in the present configuration of your system, is
12873  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12874 <!--chtml endif-->
12875 or current working directory
12876 <!--chtml if pinemode="running"-->
12877 (which, at least for your current Alpine &quot;session,&quot; 
12878 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12879 <!--chtml endif-->, depending on the
12880 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12881 configuration setting.   You may enter the full
12882 path and filename to save it in another directory instead.
12884 <DT>WhereIs</DT>
12885 <DD>Search the attachment for a string of letters.  If it is
12886 found, move to it.  The string can be one word or a phrase.
12887 If there are multiple occurrences, the cursor moves to the
12888 first occurrence beyond the current cursor position.
12889 </DL>
12891 &lt;End of help on this topic&gt;
12892 </BODY>
12893 </HTML>
12894 ======= h_pine_for_windows ========
12895 <HTML>
12896 <HEAD>
12897 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
12898 </HEAD>
12899 <BODY>
12900 <H1>Getting Help In PC-Alpine</H1>
12903 PC-Alpine offers general and specific help text. From the <A
12904 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
12905 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
12906 specific help for that screen is available from the toolbar Help menu or
12907 with the 
12908 <!--chtml if pinemode="function_key"-->
12909 &quot;F1&quot; key.
12910 <!--chtml else-->
12911 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
12912 typing &quot;?&quot; would be mistaken as entering text.
12913 <!--chtml endif-->
12916 Although this version of Alpine is for Microsoft Windows, it is not
12917 considered a full &quot;Graphical User Interface&quot; application. 
12918 Yet, many of the controls that Windows users are accustomed to seeing, 
12919 such as scrollbars and toolbars, are available.
12922 PC-Alpine offers considerable mouse support.  You can view what is
12923 &quot;click-able&quot; by dragging your mouse over any screen; when the
12924 arrow cursor changes into a hand, you found something. Mouse-click
12925 possibilities include navigating between screens and folders and
12926 double-clicking on hyperlinks to open your Web browser.
12927 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
12928 screen.  Examples of right-click options include &quot;copy&quot; after
12929 selecting text to copy and &quot;View in New Window&quot; when you click
12930 on a particular message in the Message Index. The menu choices available
12931 to you will vary based upon what screen is open, where on the screen your
12932 cursor is located, and even what action you have already taken.
12935 &lt;End of help on this topic&gt;
12936 </BODY>
12937 </HTML>
12938 ===== h_composer =====
12939 <HTML>
12940 <HEAD>
12941 <TITLE>COMPOSER COMMANDS</TITLE>
12942 </HEAD>
12943 <BODY>
12944 <H1>COMPOSER COMMANDS</H1>
12946 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>
12947 &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>
12948 &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>
12949 &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>
12950 &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>
12951 &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>
12952 &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>
12953 &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>
12954 &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>
12955 &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>
12956 ---------------------------------------|&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>
12957 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>
12958 &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>
12959 &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>
12960 &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>
12963 NOTE:
12964 <OL>
12965  <LI>For help on a particular command, highlight the bold text associated
12966 with it above and hit Return.
12967  <LI> The availability of certain commands
12968 is determined by Alpine configuration files and system capabilities.
12969 At some sites, certain commands may not be available due to security or
12970 support concerns.
12971  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
12972 Ctrl-&#92;, ESC.
12973  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
12974 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
12975 </OL>
12978 HINT: To move rapidly to the bottom of a message you are composing,
12979 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
12980 with the Mark and Cut commands to eliminate large amounts of unwanted
12981 text in a Reply.
12983 <H2>Description of Composer</H2>
12985 Alpine has a built-in editing program that allows you to compose messages
12986 without having to leave Alpine.  The editor is designed to be very simple to
12987 use so that you can get started writing email right away.
12990 Messages are usually just text, about 80 columns wide.  Using upper and
12991 lower case is encouraged.  On some systems the size limit of the message
12992 is about 100,000 characters, which is about 2,000 lines.  You can include
12993 punctuation and special characters found on most keyboards, but you can't
12994 include characters with diacritical marks and certain special symbols.
12997 Text automatically wraps as you type past the end of a line so you do not
12998 have to hit return.  Using the
12999 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13000 you can also reformat text explicitly, perhaps after you have
13001 deleted some text.
13004 You can include other text files with the 
13005 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13006 which will prompt you for the name of the file to insert at the
13007 current cursor postion.
13010 <UL>
13011 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13012 </UL>
13014 &lt;End of help on this topic&gt;
13015 </BODY>
13016 </HTML>
13017 ====== h_composer_browse =====
13018 <HTML>
13019 <HEAD>
13020 <TITLE>BROWSER</TITLE>
13021 </HEAD>
13022 <BODY>
13023 <H1>BROWSER</H1>
13024 This screen lets you browse your files and directories.  To go to another 
13025 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13026 choose &quot;Select&quot; (the default choice on the menu); 
13027 or choose &quot;Goto&quot; and enter the name of the directory.
13028 <!--chtml if pinemode="os_windows"-->
13029 <!--chtml else--> 
13030 In Unix Alpine, you may use 
13031 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13032 to another's home directory.  
13033 <!--chtml endif--><P>
13034 To select a file, move the cursor to it and 
13035 choose &quot;Select&quot; (the default choice on the menu).  
13037 <UL>
13038 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13039 inclusion in the 
13040 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13041 the 
13042 &quot;----- Message Text -----&quot; line
13043 while composing, then &quot;To Files&quot;):  Since the file 
13044 selected will become part of the message text, it must be in a format 
13045 suitable for that (Alpine does not check!), such as a plain text file.
13046 Files of other formats (for example, graphics, databases, software 
13047 programs) should be 
13048 <B>attached</B> to the message instead --
13049 by moving the cursor in the COMPOSE MESSAGE screen into the 
13050 message header area and pressing 
13051 <!--chtml if pinemode="function_key"-->
13053 <!--chtml else-->
13054 Ctrl-J.
13055 <!--chtml endif--> 
13057 <P><LI>
13058 Note <B>if</B> you are currently using the BROWSER for saving a message 
13059 attachment, or exporting a message, to a file: You can use the Add command to 
13060 provide the name for a new file to save/export to, and then select that name 
13061 to use it for the save/export operation.  Back at the prompt 
13062 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13063 either Overwrite or Append (it doesn't make a difference, since the file is 
13064 so far empty).  Note: If you cancel the 
13065 operation at that point, the file created with the Add command will remain 
13066 0 bytes in size.
13068 </UL>
13069 <P><UL>
13070 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13071 </UL>
13073 &lt;End of help on this topic&gt;
13074 </BODY>
13075 </HTML>
13076 ====== h_composer_ins =====
13077 <HTML>
13078 <HEAD>
13079 <TITLE>INSERT TEXT FILE</TITLE>
13080 </HEAD>
13081 <BODY>
13082 <H1>INSERT TEXT FILE</H1>
13084 Use this function to insert a text file. The file name
13085 given can be an absolute file path name for your system
13086 <!--chtml if pinemode="os_windows"-->
13087 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13088 with a relative pathname, or simply a file name without
13089 drive or directory specification.  
13090 <!--chtml else-->
13091 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13092 a file in your home directory, or a file path relative to your 
13093 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13094 your home directory or &quot;~user&quot; to refer to another
13095 account's home directory.
13096 <!--chtml endif-->
13098 No wild card characters may be used.  
13099 The file must reside on the system running Alpine.
13101 If the 
13102 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13103 feature is set, names are relative to your current working directory 
13104 <!--chtml if pinemode="running"-->
13105 (which, at least for your current Alpine &quot;session,&quot; 
13106 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13107 <!--chtml endif-->
13108 rather than your home directory
13109 <!--chtml if pinemode="running"-->
13110 (which, in the present configuration of your system, is
13111  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13112 <!--chtml endif-->
13114 <P><UL>
13115 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13116 </UL>
13118 &lt;End of help on this topic&gt;
13119 </BODY>
13120 </HTML>
13121 ====== h_composer_ins_m =====
13122 <HTML>
13123 <HEAD>
13124 <TITLE>INSERT MESSAGE</TITLE>
13125 </HEAD>
13126 <BODY>
13127 <H1>INSERT MESSAGE</H1>
13129 Type in the number of a message in the currently open folder to insert it
13130 into your message.
13131 <P><UL>
13132 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13133 </UL>
13135 &lt;End of help on this topic&gt;
13136 </BODY>
13137 </HTML>
13138 ====== h_composer_search =====
13139 <HTML>
13140 <HEAD>
13141 <TITLE>Explanation of Composer Whereis Command </TITLE>
13142 </HEAD>
13143 <BODY>
13144 <H1>Help For Whereis Command</H1>
13146 Whereis is used to search the message for a word or part of a word.
13147 When searching in the composer, only the message part of your mail is
13148 searched, and the cursor is put on the first occurrence appearing
13149 after the location of the cursor.  The search will wrap to the
13150 beginning of the message when it no longer finds matches in the
13151 remainder of the message.
13153 To search for the same string a second time, press 
13154 <!--chtml if pinemode="function_key"-->
13155 &quot;F6&quot;
13156 <!--chtml else-->
13157 &quot;^W&quot;
13158 <!--chtml endif-->
13159 to begin search and then just press RETURN to accept the previous
13160 search string shown in square brackets rather than entering a new
13161 search string.<P>
13163 The &quot;Search&quot; prompt has several sub-command available:
13165 <DL>
13166 <DT>Get Help</DT>
13167 <DD> Takes you to this help page.
13169 <DT>Cancel</DT>
13170 <DD> Cancels the prompt.  No search takes place.
13172 <DT>First Line</DT>
13173 <DD> Takes you back to the composer with the cursor on the first character
13174 of the first line of text.
13176 <DT>Last Line</DT>
13177 <DD> Takes you back to the composer with the cursor on the last character
13178 of the last line of text.
13180 <DT>Replace (Optional)</DT>
13181 <DD> This sub-command is enabled by the 
13182 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13183 feature (which is on by default); see its help screen for details on how replacing works.
13185 </DL>
13187 &lt;End of help on this topic&gt;
13188 </BODY>
13189 </HTML>
13190 ====== h_sigedit_search =====
13191 <HTML>
13192 <HEAD>
13193 <TITLE>Explanation of Whereis Command </TITLE>
13194 </HEAD>
13195 <BODY>
13196 <H1>Help For Whereis Command</H1>
13198 Whereis is used to search for a word or part of a word.
13199 When searching the cursor is put on the first occurrence appearing
13200 after the location of the cursor.  The search will wrap to the
13201 beginning of the signature when it no longer finds matches in the
13202 remainder of the signature.
13204 To search for the same string a second time, press 
13205 <!--chtml if pinemode="function_key"-->
13206 &quot;F6&quot;
13207 <!--chtml else-->
13208 &quot;^W&quot;
13209 <!--chtml endif-->
13210 to begin search and then just press RETURN to accept the previous
13211 search string shown in square brackets rather than entering a new
13212 search string.<P>
13214 The &quot;Search&quot; prompt has several sub-command available:
13216 <DL>
13217 <DT>Get Help</DT>
13218 <DD> Takes you to this help page.
13220 <DT>Cancel</DT>
13221 <DD> Cancels the prompt.  No search takes place.
13223 <DT>First Line</DT>
13224 <DD> Takes you back to the composer with the cursor on the first character
13225 of the first line of text.
13227 <DT>Last Line</DT>
13228 <DD> Takes you back to the composer with the cursor on the last character
13229 of the last line of text.
13231 <DT>Replace (Optional)</DT>
13232 <DD> This sub-command is enabled by the 
13233 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13234 feature (which is on by default); see its help screen for details on how replacing works.
13236 </DL>
13238 &lt;End of help on this topic&gt;
13239 </BODY>
13240 </HTML>
13241 ======= h_composer_to ====
13242 <HTML>
13243 <HEAD>
13244 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13245 </HEAD>
13246 <BODY>
13247 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13249 <H2>The &quot;To:&quot; field</H2>
13250 The address you enter here must be a valid email address that is reachable
13251 from your site. 
13253 <H2>Email Address Format</H2>
13254 You may enter a full name and email address, 
13255 <!--chtml if pinemode="os_windows"-->
13256 <!--chtml else-->
13257 a local (meaning, on the same 
13258 host as the one you are running Alpine on) username that Alpine will
13259 complete for you, 
13260 <!--chtml endif-->
13261 the nickname of someone in a 
13262 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13263 mail alias defined by your system administrator.  When you move the cursor
13264 out of this field, the nicknames will be expanded to the addresses in your
13265 address book, and the local usernames will be expanded to include the 
13266 persons' actual names.  You may enter as many addresses as you wish, but they 
13267 must be separated by commas.  You can move around this and other header fields
13268 with the arrow keys and use many of the usual composer editing keys.
13270 <UL>
13271 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13272 </UL>
13275 <H2>MESSAGE HEADER COMMANDS</H2>
13276 <!--chtml if pinemode="function_key"-->
13277 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13278 ^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>
13279 ^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>
13280 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13281 ^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>
13282 ^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>
13283 ^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>
13284 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>
13285 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>
13286 ^@&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>
13287 ----------------------------------------|<BR>
13288 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13289 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>
13290 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>
13291 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>
13292 <!--chtml else-->
13293 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13294 ^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>
13295 ^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>
13296 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13297 ^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>
13298 ^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>
13299 ^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>
13300 ^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>
13301 ^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>
13302 ^@&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>
13303 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13304 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>
13305 ^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>
13306 ^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>
13307 ^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>
13308 <!--chtml endif-->
13311 NOTE:
13312 <OL>
13313  <LI>For help on a particular command, highlight the bold text associated
13314 with it above and hit Return.
13315  <LI> The availability of certain commands 
13316 is determined by Alpine configuration files and system capabilities.
13317 At some sites, certain commands may not be available due to security or
13318 support concerns.
13319 </OL>
13322 <UL>   
13323 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13324 </UL><P>
13325 &lt;End of help on this topic&gt;
13326 </BODY>
13327 </HTML>
13328 ======= h_composer_cc ====
13329 <HTML>
13330 <HEAD>
13331 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13332 </HEAD>
13333 <BODY>
13334 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13335 The Cc: field is just like the To: field, except it is used for addressees
13336 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13337 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13338 them to see the message.  The only difference the recipients see is that their 
13339 name is in the Cc: field, rather than the To: field.
13341 For help with Cc: field editing
13342 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13344 <UL>
13345 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13346 </UL>
13348 <UL>   
13349 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13350 </UL><P>
13351 &lt;End of help on this topic&gt;
13352 </BODY>
13353 </HTML>
13354 ======= h_composer_bcc ====
13355 <HTML>
13356 <HEAD>
13357 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
13358 </HEAD>
13359 <BODY>
13360 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
13361 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
13362 a copy of the message to one or more people whose addresses you do not
13363 wish disclosed, either to reduce clutter or for confidentiality.
13365 The format of the Bcc: field is just the same as the To: and Cc: fields in
13366 the way the addresses are entered.  The recipients listed here will
13367 receive a copy of the message, but --assuming your site's mail transport
13368 software is properly configured-- their addresses will not show up in the
13369 headers of the message, as delivered to all of the recipients.  The To:
13370 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
13372 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
13373 will automatically generate and place in the To: field a pseudo-address of 
13374   &quot;undisclosed-recipients: ;&quot;
13375 or whatever string has been specified in the 
13376 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13377 variable.
13379 The reason for this is to avoid embarrassment caused by some Internet
13380 mail transfer software that interprets a &quot;missing&quot; To: header as 
13381 an error and replaces it with an Apparently-to: header that may contain
13382 the addresses you entered on the Bcc: line.  In addition, it may be
13383 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
13385 You can manipulate what text ends up on the (originally) empty To:
13386 field.  Just remember to put a colon and semicolon at the end of the
13387 field, which is a special notation denoting that it is not a real address.
13389 For information on message header editing
13390 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13392 <UL>
13393 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13394 </UL>
13396 <UL>   
13397 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13398 </UL><P>
13399 &lt;End of help on this topic&gt;
13400 </BODY>
13401 </HTML>
13402 ======= h_composer_lcc ====
13403 <HTML>
13404 <HEAD>
13405 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
13406 </HEAD>
13407 <BODY>
13408 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
13409 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
13410 you wish to send a message to a list of people but avoid having all
13411 of their addresses visible, in order to reduce clutter when the
13412 message is received.
13414 It is similar to the 
13415 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
13416 in that individual
13417 addressees are hidden, but Lcc is designed to work specifically with
13418 distribution lists you have created in your 
13419 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
13420 the nickname of the list on the Lcc line will result in the full name of
13421 your Alpine Address Book list being placed on the To: line of the message,
13422 using a special notation that distinguishes it from a real address. You
13423 must leave the To: line blank for your list name to appear there.
13425 For example, if you have this list entered in your Address Book:<PRE>
13427         largo         Key Largo List       DISTRIBUTION LIST:
13428                                            bogie@mgm.com
13429                                            lauren@mgm.com
13430                                            walter@mgm.com</PRE>
13433 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
13434 the result is:<PRE>
13436         To      : Key Largo List: ;
13437         Cc      :
13438         Bcc     :
13439         Fcc     : sent-mail
13440         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
13441                   lauren@mgm.com,
13442                   walter@mgm.com
13443         Subject :</PRE>
13445 Each recipient listed on the Lcc: line receives a copy of the message
13446 without their address being visible (as though they were listed on the
13447 Bcc: line). The colon-semicolon notation used to put the full-name of the
13448 list on the To: line is a special address format that doesn't specify any
13449 actual addressees, but does give some information to the recipients of the
13450 message.
13452 Note: if after entering an LCC, you delete the list name that is placed
13453 on the To: line, then recipients will see <PRE>
13454        To: undisclosed-recipients: ;</PRE>
13456 (or whatever string is defined in the 
13457 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13458 variable) just as in the BCC case. 
13460 For help with Lcc: field editing
13461 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13463 <UL>
13464 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13465 </UL>
13467 <UL>   
13468 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13469 </UL><P>
13470 &lt;End of help on this topic&gt;
13471 </BODY>
13472 </HTML>
13473 ======= h_composer_from =======
13474 <HTML>
13475 <HEAD>
13476 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
13477 </HEAD>
13478 <BODY>
13479 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
13481 This header carries your return address.  It is the address toward which
13482 replies (and often, future unrelated correspondence) will be directed,
13483 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
13484 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
13485 sure this address is correct.
13487 For help with message header editing
13488 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13490 <UL>
13491 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13492 </UL>
13494 <UL>   
13495 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13496 </UL><P>
13497 &lt;End of help on this topic&gt;
13498 </BODY>
13499 </HTML>
13500 ======= h_composer_reply_to =======
13501 <HTML>
13502 <HEAD>
13503 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
13504 </HEAD>
13505 <BODY>
13506 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
13508 Most people should not need this header. The Reply-To: header is used in
13509 cases where you would like replies to your messages to be directed to an
13510 address other than your normal &quot;From:&quot; address.  This is atypical, 
13511 but can happen when you use multiple machines and do not have the same account
13512 name on each one, or when you wish to direct certain replies to accounts
13513 or folders designated for specific classes of correspondence.
13515 For help with message header editing
13516 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13518 <UL>
13519 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13520 </UL>
13523 <UL>   
13524 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13525 </UL><P>
13526 &lt;End of help on this topic&gt;
13527 </BODY>
13528 </HTML>
13529 ======= h_composer_custom_addr ====
13530 <HTML>
13531 <HEAD>
13532 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13533 </HEAD>
13534 <BODY>
13535 <H1>CUSTOMIZED HEADER FIELD</H1>
13536 This is a customized header, i.e. not one that is part of Alpine's normal
13537 set of Compose headers.
13539 For help with message header editing
13540 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13542 <UL>
13543 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13544 </UL>
13546 <UL>   
13547 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13548 </UL><P>
13549 &lt;End of help on this topic&gt;
13550 </BODY>
13551 </HTML>
13552 ======= h_composer_custom_free ====
13553 <HTML>
13554 <HEAD>
13555 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
13556 </HEAD>
13557 <BODY>
13558 <H1>CUSTOMIZED HEADER FIELD</H1>
13559 This is a customized header, i.e. not one that is part of Alpine's normal
13560 set of Compose headers.
13562 This field consists of arbitrary text.
13564 For help with message header editing
13565 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13567 <UL>   
13568 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13569 </UL><P>
13570 &lt;End of help on this topic&gt;
13571 </BODY>
13572 </HTML>
13573 ====== h_composer_news =====
13574 <HTML>
13575 <HEAD>
13576 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
13577 </HEAD>
13578 <BODY>
13579 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
13580 Use the newsgroups line to specify any and all USENET newsgroups to which
13581 your message should be posted.  When composing a message from scratch, this
13582 line may be hidden.  If so, just press the rich headers command
13583 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
13584 to make it visible.
13586 <EM>Be aware</EM> that when you post to a newsgroup thousands of
13587 people will be reading your message.  Also, you or your system manager
13588 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
13589 in order for you to be able to post.
13591 For help with message header editing
13592 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13593 <P><UL>
13594 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13595 </UL>
13597 &lt;End of help on this topic&gt;
13598 </BODY>
13599 </HTML>
13600 ======= h_composer_fcc ====
13601 <HTML>
13602 <HEADER>
13603 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
13604 </HEADER>
13605 <BODY>
13606 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
13607 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
13608 each outgoing message.  The default value can be configured with the
13609 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
13610 the file carbon copy on any message you send by editing the FCC header.<p>
13612 You may type ^T to get a list of all your folders and select one to use as
13613 the FCC for this message.<P>
13615 For help with message header editing
13616 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13618 <UL>   
13619 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13620 </UL><P>
13621 &lt;End of help on this topic&gt;
13622 </BODY>
13623 </HTML>
13624 ======= h_composer_subject ====
13625 <HTML>
13626 <HEADER>
13627 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
13628 </HEADER>
13629 <BODY>
13630 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
13632 The subject header provides a place to enter a few words that summarize
13633 the topic of the message you are sending.  You may leave this line blank,
13634 but it is considered a courtesy to use a meaningful subject.<p>
13636 For help with message header editing
13637 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13639 <UL>   
13640 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13641 </UL><P>
13642 &lt;End of help on this topic&gt;
13643 </BODY>
13644 </HTML>
13645 ======= h_composer_attachment ====
13646 <HTML>
13647 <HEAD>
13648 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
13649 </HEAD>
13650 <BODY>
13651 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
13653 The &quot;Attchmnt:&quot; field is where you specify what file or
13654 files you'd like attached to
13655 the message you are composing.  Those files must reside on the machine
13656 running Alpine. If your file is on a PC or Mac and you run Alpine with an
13657 account on a Unix machine, you'll have to transfer it before attaching it.
13658 Contact local computer support people for assistance with transferring.
13661 The file name
13662 given can be an absolute file path name for your system
13663 <!--chtml if pinemode="os_windows"-->
13664 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13665 with a relative pathname, or simply a file name without
13666 drive or directory specification.  
13667 <!--chtml else-->
13668 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13669 a file in your home directory, or a file path relative to your 
13670 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13671 your home directory or &quot;~user&quot; to refer to another
13672 account's home directory.
13673 <!--chtml endif--><P>
13674 No wild card characters may be used.
13675 <P>If the 
13676 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13677 feature is set, names are relative to your current working directory 
13678 <!--chtml if pinemode="running"-->
13679 (which, at least for your current Alpine &quot;session,&quot; 
13680 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13681 <!--chtml endif-->
13682 rather than your home directory
13683 <!--chtml if pinemode="running"-->
13684 (which, in the present configuration of your system, is
13685  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13686 <!--chtml endif-->
13689 Alpine uses MIME encoding for attachments, so binaries and files of any
13690 length can safely be delivered to any MIME-capable mail reading program.
13691 If you send an attachment to someone who does not have a MIME-capable mail
13692 reading program yet, then the main message text will be readable, but
13693 attachments (even attachments that are just plain text) are not.
13696 Typing the filename on the Attchmnt: line achieves the same
13697 result as using the 
13698 <!--chtml if pinemode="function_key"-->
13700 <!--chtml else-->
13701 Ctrl-J
13702 <!--chtml endif--> command.
13705 If you Forward a message with attachments, you may delete them from your
13706 Forwarded message by editing the Attchmnt header line.
13709 For help with message header editing
13710 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13712 <UL>   
13713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13714 </UL><P>
13715 &lt;End of help on this topic&gt;
13716 </BODY>
13717 </HTML>
13718 ======= h_composer_ctrl_j ====
13719 <HTML>
13720 <HEAD>
13721 <TITLE>COMPOSER ATTACH</TITLE>
13722 </HEAD>
13723 <BODY>
13724 After the
13725 <!--chtml if pinemode="function_key"-->
13727 <!--chtml else-->
13728 Ctrl-J
13729 <!--chtml endif--> command:
13730 At the &quot;File to attach:&quot; prompt, enter the name of the 
13731 existing file to attach to your message.  
13732 When the feature
13733 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
13734 is set
13735 you need only enter the beginning of the filename (enough of it to uniquely 
13736 identify the file) and press TAB to complete it.
13738 Or, press ^T to use the BROWSER screen for 
13739 selecting the file.  <P>
13740 For more information on attaching files, see the help screen for the 
13741 composer's 
13742 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
13743 but can be revealed using the 
13744 <!--chtml if pinemode="function_key"-->
13746 <!--chtml else-->
13747 Ctrl-R
13748 <!--chtml endif--> 
13749 command with the cursor positioned above the
13750 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
13752 &lt;End of help on this topic&gt;
13753 </BODY>
13754 </HTML>
13755 ======= h_edit_nav_cmds =========
13756 <HTML>
13757 <HEAD>
13758 <TITLE>Composer Editing Commands Explained</TITLE>
13759 </HEAD>
13760 <BODY>
13761 <H1>EDITING and NAVIGATION COMMANDS</H1>
13762 <!--chtml if pinemode="function_key"-->
13763 <PRE>
13764 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
13765 ^B (Left Arrow)    Back character       | ^D       Delete current character
13766 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
13767 ^P (Up Arrow)      Previous line        |
13768 ^N (Down Arrow)    Next line            | F9       Cut marked text or
13769 ^A                 Beginning of line    |            delete current line
13770 ^E                 End of line          | F10      Undelete line(s)
13771 F7                 Previous page        |
13772 F8                 Next page            |-------------------------------------
13773 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
13774 ----------------------------------------|
13775 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
13776 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
13777 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
13778 </PRE>
13779 <!--chtml else-->
13780 <PRE>
13781 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
13782 ^B (Left Arrow)    Back character       | ^D       Delete current character
13783 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
13784 ^P (Up Arrow)      Previous line        |
13785 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
13786 ^A                 Beginning of line    |            delete current line
13787 ^E                 End of line          | ^U       Undelete line(s)
13788 ^Y                 Previous page        |
13789 ^V                 Next page            |-------------------------------------
13790 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
13791 ----------------------------------------|
13792 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
13793 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
13794 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
13795 </PRE>
13796 <!--chtml endif-->
13797 &lt;End of help on this topic&gt;
13798 </BODY>
13799 </HTML>
13800 ===== h_composer_sigedit =====
13801 <HTML>
13802 <HEAD>
13803 <TITLE>Signature Editor Commands Explained</TITLE>
13804 </HEAD>
13805 <BODY>
13806 <H1>SIGNATURE EDITOR COMMANDS</H1>
13807 <!--chtml if pinemode="function_key"-->
13808 <PRE>
13809 CURSOR MOTION KEYS                     |EDITING KEYS
13810   ^B (Left Arrow)   Back character     | ^D       Delete current character
13811   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13812   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13813   ^N (Down Arrow)   Next line          | F9       Cut marked text or
13814   ^A                Beginning of line  |           delete current line
13815   ^E                End of line        | F10       Paste text, undelete lines
13816   F7                Previous page      |           cut with ^K, or unjustify
13817   F8                Next page          |-------------------------------------
13818   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13819 ---------------------------------------| F6       Whereis (search for string)
13820 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
13821  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
13822                  |  ^Z    Suspend      | ^L       Redraw Screen
13823  F2   Send       |  F6    Alt. editor  | F5       Read in a file
13824 </PRE>
13825 <!--chtml else-->
13826 <PRE>
13827 CURSOR MOTION KEYS                     |EDITING KEYS
13828   ^B (Left Arrow)   Back character     | ^D       Delete current character
13829   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13830   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13831   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
13832   ^A                Beginning of line  |           delete current line
13833   ^E                End of line        | ^U        Paste text, undelete lines
13834   ^Y                Previous page      |           cut with ^K, or unjustify
13835   ^V                Next page          |-------------------------------------
13836   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13837 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
13838 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
13839  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
13840                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
13841  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
13842 </PRE>
13843 <!--chtml endif-->
13845 NOTE: The presence or absence of the following commands is determined
13846 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
13847 some of these commands may be administratively disabled by your system
13848 manager; if they don't work, please check with your local help desk
13849 before reporting a bug.
13851 <UL>
13852  <LI>Suspend (suspends Alpine and gives a system prompt)
13853  <LI>Alternate editor (allows you to compose with your own editor)
13854 </UL>
13857 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13858 Ctrl-&#92;, ESC
13861 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13862 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13864 &lt;End of help on this topic&gt;
13865 </BODY>
13866 </HTML>
13867 ===== h_composer_commentedit =====
13868 <HTML>
13869 <HEAD>
13870 <TITLE>Comment Editor Commands Explained</TITLE>
13871 </HEAD>
13872 <BODY>
13873 <H1>COMMENT EDITOR COMMANDS</H1>
13874 <!--chtml if pinemode="function_key"-->
13875 <PRE>
13876 CURSOR MOTION KEYS                     |EDITING KEYS
13877   ^B (Left Arrow)   Back character     | ^D       Delete current character
13878   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13879   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13880   ^N (Down Arrow)   Next line          | F9       Cut marked text or
13881   ^A                Beginning of line  |           delete current line
13882   ^E                End of line        | F10       Paste text, undelete lines
13883   F7                Previous page      |           cut with ^K, or unjustify
13884   F8                Next page          |-------------------------------------
13885   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13886 ---------------------------------------| F6       Whereis (search for string)
13887 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
13888  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
13889                  |  ^Z    Suspend      | ^L       Redraw Screen
13890  F2   Send       |  F6    Alt. editor  | F5       Read in a file
13891 </PRE>
13892 <!--chtml else-->
13893 <PRE>
13894 CURSOR MOTION KEYS                     |EDITING KEYS
13895   ^B (Left Arrow)   Back character     | ^D       Delete current character
13896   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
13897   ^P (Up Arrow)     Previous line      | ^^       Set a mark
13898   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
13899   ^A                Beginning of line  |           delete current line
13900   ^E                End of line        | ^U        Paste text, undelete lines
13901   ^Y                Previous page      |           cut with ^K, or unjustify
13902   ^V                Next page          |-------------------------------------
13903   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
13904 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
13905 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
13906  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
13907                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
13908  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
13909 </PRE>
13910 <!--chtml endif-->
13912 NOTE: The presence or absence of the following commands is determined
13913 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
13914 some of these commands may be administratively disabled by your system
13915 manager; if they don't work, please check with your local help desk
13916 before reporting a bug.
13918 <UL>
13919  <LI>Suspend (suspends Alpine and gives a system prompt)
13920  <LI>Alternate editor (allows you to compose with your own editor)
13921 </UL>
13924 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13925 Ctrl-&#92;, ESC
13928 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13929 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13931 &lt;End of help on this topic&gt;
13932 </BODY>
13933 </HTML>
13934 ======= h_composer_abook_nick =======
13935 <HTML>
13936 <HEAD>
13937 <TITLE>Addressbook Nickname Explained</TITLE>
13938 </HEAD>
13939 <BODY>
13940 This is a short nickname for this address book entry.  If it is used in
13941 place of an address from the composer, the composer will fill in the
13942 address(es) for the entry that matches the nickname. 
13945 Look <A HREF="h_edit_nav_cmds">here</A>
13946 to see the available Editing and Navigation commands.
13948 &lt;End of help on this topic&gt;
13949 </BODY>
13950 </HTML>
13951 ======= h_composer_abook_full =======
13952 <HTML>
13953 <HEAD>
13954 <TITLE>Addressbook Fullname Explained</TITLE>
13955 </HEAD>
13956 <BODY>
13957 This is the full name field for this entry.  If this is going to be a
13958 distribution list (more than one address), it should be a descriptive
13959 phrase describing the list.  It will be included in the mail header if you
13960 put the list in the To: or CC: field, or in the To: line if you put the
13961 list in the Lcc: field.  It's OK to leave this field blank (and OK to
13962 leave any of the other fields blank, too). If this address book entry is
13963 going to be a simple entry with just one address, then this field is the
13964 person's name. When you send mail to this entry, this is the field to the
13965 left of the brackets. That is, it is the most readable part of the 
13966 address. For example, in the sample address:
13967 <PRE>
13968        John Doe &lt;jdoe@some.domain&gt;
13969 </PRE>
13970 "John Doe" is the full name field. If you are sorting your address book
13971 with one of the options that uses full names, then it might be useful to
13972 enter the full name as "Last, First", for example:
13973 <PRE>
13974        Doe, John
13975 </PRE>
13976 so that it will be sorted using Doe instead of John. This will be changed
13977 back into John Doe when you use it.
13979 Look <A HREF="h_edit_nav_cmds">here</A>
13980 to see the available Editing and Navigation commands.
13982 &lt;End of help on this topic&gt;
13983 </BODY>
13984 </HTML>
13985 ======= h_composer_abook_fcc =======
13986 <HTML>
13987 <HEAD>
13988 <TITLE>Addressbook Fcc Explained</TITLE>
13989 </HEAD>
13990 <BODY>
13991 If this entry is the first one in the To: line of an outgoing message,
13992 this field will be used for the Fcc (File Carbon Copy) instead of whatever
13993 you would normally get (which depends on which
13994 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
13995 you've chosen). 
13997 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
13998 that you don't want any Fcc associated with this entry.
14000 Look <A HREF="h_edit_nav_cmds">here</A>
14001 to see the available Editing and Navigation commands.
14003 &lt;End of help on this topic&gt;
14004 </BODY>
14005 </HTML>
14006 ====== h_config_combined_abook_display =====
14007 <HTML>
14008 <HEAD>
14009 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14010 </HEAD>
14011 <BODY>
14012 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14014 This feature affects the address book display screens.
14015 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14016 will cause the remaining address books and directory servers to disappear
14017 from the screen, leaving only the entries of the expanded address book.
14018 If this feature is set, then the other address books will remain on the screen,
14019 so that all of the address books can be present at once.
14022 The way that commands work won't be changed.
14023 For example, the Select All command will select all of the entries in the
14024 current address book, not all of the entries in all of the address books.
14025 The WhereIs command will change a little.
14026 It will search through all of the text on the screen plus all of the entries
14027 from expanded address books.
14030 When this feature is set, the setting of the feature
14031 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14032 has an effect.
14034 &lt;End of help on this topic&gt;
14035 </BODY>
14036 </HTML>
14037 ====== h_config_titlebar_color_style =====
14038 <HTML>
14039 <HEAD>
14040 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14041 </HEAD>
14042 <BODY>
14043 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14045 This option affects the colors used to display the titlebar (the top
14046 line on the screen) when viewing a message.
14049 The available options include:
14052 <DL>
14053 <DT>default</DT>
14054 <DD>The color of the titlebar will be the color you set for the
14055 <A HREF="h_config_title_color">Title Color</A>.
14056 The Title Color may be set by using the
14057 <A HREF="h_color_setup">Setup Kolor</A> screen.
14058 </DD>
14060 <DT>indexline</DT>
14061 <DD>The color of the titlebar will be the same as the color of the
14062 index line corresponding to the message being viewed.
14063 The rules that determine what color the index line will be may be set
14064 up by going to the Setup/Rules/Indexcolor screen.
14065 If the index line for a message is not colored explicitly by the
14066 Indexcolor rules, then the titlebar will be colored the same as for
14067 the &quot;default&quot; option above (which is not the same color that
14068 the index line itself will have).
14069 </DD>
14071 <DT>reverse-indexline</DT>
14072 <DD>This is similar to the &quot;indexline&quot; option except the
14073 foreground and background colors from the corresponding index line will
14074 be reversed.
14075 For example, if the index line color is red letters on a white background,
14076 then the titlebar will be white letters on a red background.
14077 If the index line for a message is not colored explicitly by the
14078 Indexcolor rules, then the titlebar will be colored the same as for
14079 the &quot;default&quot; option above (which is not the same color that
14080 the index line itself will have).
14081 </DD>
14082 </DL>
14086 <UL>   
14087 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14088 </UL><P>
14089 &lt;End of help on this topic&gt;
14090 </BODY>
14091 </HTML>
14092 ====== h_config_index_color_style =====
14093 <HTML>
14094 <HEAD>
14095 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14096 </HEAD>
14097 <BODY>
14098 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14100 This option affects the colors used to display the current line in the
14101 MESSAGE INDEX screen.
14102 If you do not have Index Color Rules defined, then this option will
14103 have no effect in the index.
14104 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14106 If the option
14107 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14108 is turned on and the
14109 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14110 is set to something other than the default, then
14111 this option also affects the color used to display the current folder
14112 in the Incoming FOLDER LIST screen.
14115 The available options include:
14118 <DL>
14119 <DT>flip-colors</DT>
14120 <DD>This is the default.
14121 If an index line is colored because it matches one of your
14122 Index Color Rules, then its colors will be reversed when it is the currently
14123 highlighted line.
14124 For example, if the line is normally red text on a blue background, then
14125 when it is the current line it will be drawn as blue text on a red background.
14127 The rest of the option values all revert to this flip-colors behavior if
14128 there is no Reverse Color defined.
14129 </DD>
14131 <DT>reverse</DT>
14132 <DD>With this option the Reverse color is always used to highlight the
14133 current line.
14134 </DD>
14136 <DT>reverse-fg</DT>
14137 <DD>The foreground part of the Reverse Color is used to highlight
14138 the current line.
14139 If this would cause the text to be unreadable (because the foreground and
14140 background colors are the same) or if it would cause no change in the
14141 color of the index line, then the colors are flipped instead.
14143 Some people think this works particularly well if you use different
14144 background colors to emphasize &quot;interesting&quot; lines,
14145 but always with the same Normal foreground color,
14146 and you use a different foreground color for the Reverse Color.
14147 </DD>
14149 <DT>reverse-fg-no-ambiguity</DT>
14150 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14151 the resulting color will be exactly the same as the regular Reverse
14152 Color.
14153 That can lead to some possible confusion because an
14154 &quot;interesting&quot;
14155 line that is the current line will be displayed exactly the same as a
14156 non-interesting line that is current.
14157 You can't tell whether the line is just a regular current line or if it is
14158 an &quot;interesting&quot; current line by looking at the color.
14159 Setting the option to this value removes that ambiguity.
14160 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14161 interesting current line would look just like a non-interesting current line.
14162 In that case, the interesting line's colors are simply flipped (like in the
14163 default behavior).
14165 As an alternative way to preserve the line's interestingness in this case,
14166 you may find that using both a different foreground and a different
14167 background color for the interesting line will help.
14168 </DD>
14170 <DT>reverse-bg</DT>
14171 <DD>The background part of the Reverse Color is used to highlight
14172 the current line.
14173 If this would cause the text to be unreadable (because the foreground and
14174 background colors are the same) or if it would cause no change in the
14175 color of the index line, then the colors are flipped instead.
14177 Some people think this works particularly well if you use different
14178 foreground colors to emphasize &quot;interesting&quot; lines,
14179 but always with the same Normal background color,
14180 and you use a different background color for the Reverse Color.
14181 </DD>
14183 <DT>reverse-bg-no-ambiguity</DT>
14184 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14185 rule may also result in a color that is exactly the same as the regular
14186 Reverse Color.
14187 Setting the option to this value removes that ambiguity.
14188 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14189 current line has the same color as the Reverse Color.
14190 In that case, the interesting line's colors are simply flipped (like in the
14191 default behavior).
14192 </DD>
14193 </DL>
14197 <UL>   
14198 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14199 </UL><P>
14200 &lt;End of help on this topic&gt;
14201 </BODY>
14202 </HTML>
14203 ====== h_config_expanded_addrbooks =====
14204 <HTML>
14205 <HEAD>
14206 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14207 </HEAD>
14208 <BODY>
14209 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14211 If multiple address books (either personal or global) are defined, and you
14212 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14213 screen, then set this feature. This feature will have no effect unless the
14214 feature
14215 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14216 is also set.
14218 &lt;End of help on this topic&gt;
14219 </BODY>
14220 </HTML>
14221 ====== h_config_combined_folder_display =====
14222 <HTML>
14223 <HEAD>
14224 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14225 </HEAD>
14226 <BODY>
14227 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14229 This feature affects the folder list display screens.
14230 Normally, each folder list is viewed within its collection only.  This
14231 command allows folder lists to be viewed within a single screen that
14232 combines the contents of all collections.
14235 The way that commands work won't be changed.
14236 For example, the Select All command will select all of the folders in the
14237 current collection, not all of the entries in all of the collections.
14238 The WhereIs command will change a little.
14239 It will search through all of the folders in the current collection as well
14240 as all the folder in any other expanded collection.
14243 When this feature is set, the setting of the feature
14244 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14245 has an effect.
14247 &lt;End of help on this topic&gt;
14248 </BODY>
14249 </HTML>
14250 ====== h_config_combined_subdir_display =====
14251 <HTML>
14252 <HEAD>
14253 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14254 </HEAD>
14255 <BODY>
14256 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14258 This feature affects the Folder List screen when
14260 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14261 feature is enabled.  Normally, selecting a directory from the Folder
14262 List takes you into a new screen displaying only the contents of
14263 that directory.
14266 Enabling this feature will cause the contents of the selected
14267 directory to be
14268 displayed within the boundaries of the &quot;Collection&quot; it
14269 is a part of.  All previously displayed collections will remain
14270 in the screen.
14273 The way that commands work won't be changed.
14274 For example, the Select All command will select all of the folders in the
14275 directory, as opposed to all of the entries in all of the collections.
14276 The WhereIs command will change a little.
14277 It will search through all of the folders in the current collection as well
14278 as all the folder in any other expanded collection.
14281 &lt;End of help on this topic&gt;
14282 </BODY>
14283 </HTML>
14284 ====== h_config_separate_fold_dir_view =====
14285 <HTML>
14286 <HEAD>
14287 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14288 </HEAD>
14289 <BODY>
14290 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14292 This feature affects folder collections wherein a folder
14293 and directory can have the same name.  By default, Alpine displays them
14294 only once, denoting that it is both a folder and directory by appending
14295 the folder name with the hierarchy character enclosed
14296 in square brackets.
14300 Enabling this feature will cause Alpine to display such names
14301 separately marking the name representing a directory with a trailing
14302 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14305 The feature also alters the command set slightly.  By default, the
14306 right-arrow descends into the directory, while hitting the Return key will
14307 cause the folder by that name to be opened.
14310 With this feature set, the Return key will open the highlighted folder, or
14311 enter the highlighted directory.
14314 &lt;End of help on this topic&gt;
14315 </BODY>
14316 </HTML>
14317 ====== h_config_expanded_folders =====
14318 <HTML>
14319 <HEAD>
14320 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14321 </HEAD>
14322 <BODY>
14323 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14325 If multiple folder collections are defined, and you
14326 wish to have them all expanded implicitly upon entering the FOLDER LIST
14327 screen, then set this feature. This feature will have no effect unless the
14328 feature
14329 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14330 is also set.
14332 &lt;End of help on this topic&gt;
14333 </BODY>
14334 </HTML>
14335 ======= h_config_ldap_server =======
14336 <HTML>
14337 <HEAD>
14338 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14339 </HEAD>
14340 <BODY>
14341 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14342 This is the name of the host where an LDAP server is running.
14343 For redundancy, this may be a space-delimited set of server names, in which
14344 case the first server that answers is used.
14345 Each of the server names may be optionally followed by
14346 a colon and a port number.
14347 If this form is used then the port number configured below in the
14348 <EM>port</EM> field is not used.
14350 To find out whether your organization has its own LDAP server, 
14351 contact its computing support staff.
14352 <P><UL>
14353 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14354 </UL>
14356 &lt;End of help on this topic&gt;
14357 </BODY>
14358 </HTML>
14359 ======= h_config_ldap_base =======
14360 <HTML>
14361 <HEAD>
14362 <TITLE>LDAP OPTION: Search-Base</TITLE>
14363 </HEAD>
14364 <BODY>
14365 <H1>LDAP OPTION: Search-Base</H1>
14367 This is the search base to be used on this server.  It functions as a filter 
14368 by restricting your searches in the LDAP server database
14369 to the specified contents of the specified fields.  Without it, searches 
14370 submitted to this directory server may fail.  It might be something
14371 like:
14373 <PRE>
14374       O = &lt;Your Organization Name&gt;, C = US
14375 </PRE>
14376 or it might be blank.  
14377 (Some LDAP servers actually ignore anything specified here.)
14379 If in doubt what parameters you should specify here, 
14380 contact the maintainers of the LDAP server.
14381 <P><UL>
14382 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14383 </UL>
14385 &lt;End of help on this topic&gt;
14386 </BODY>
14387 </HTML>
14388 ======= h_config_ldap_port =======
14389 <HTML>
14390 <HEAD>
14391 <TITLE>LDAP OPTION: Port</TITLE>
14392 </HEAD>
14393 <BODY>
14394 <H1>LDAP OPTION: Port</H1>
14396 This is the TCP port number to be used with this LDAP server. If you leave
14397 this blank port 389 will be used.
14399 &lt;End of help on this topic&gt;
14400 </BODY>
14401 </HTML>
14402 ======= h_config_ldap_nick =======
14403 <HTML>
14404 <HEAD>
14405 <TITLE>LDAP OPTION: Nickname</TITLE>
14406 </HEAD>
14407 <BODY>
14408 <H1>LDAP OPTION: Nickname</H1>
14410 This is a nickname to be used in displays. If you don't supply a
14411 nickname the server name
14412 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
14413 will be used instead.  This option is strictly for your convenience.
14415 &lt;End of help on this topic&gt;
14416 </BODY>
14417 </HTML>
14418 ======= h_config_ldap_binddn =======
14419 <HTML>
14420 <HEAD>
14421 <TITLE>LDAP OPTION: Bind-DN</TITLE>
14422 </HEAD>
14423 <BODY>
14424 <H1>LDAP OPTION: Bind-DN</H1>
14426 You may need to authenticate to the LDAP server before you are able to use it.
14427 This is the Distinguished Name to bind to when authenticating to this server.
14428 Try leaving this blank until you know you need it.
14430 Alpine only knows about LDAP Simple authentication.
14431 It does not attempt LDAP SASL authentication.
14432 The DN and password will be sent in the clear unless TLS encryption is
14433 being used on this connection.
14434 Because of this, you may want to set the LDAP feature
14435 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
14436 or the feature
14437 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14438 if you are going to be providing a password.
14439 <P><UL>
14440 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14441 </UL>
14443 &lt;End of help on this topic&gt;
14444 </BODY>
14445 </HTML>
14446 ======= h_config_ldap_opts_impl =======
14447 <HTML>
14448 <HEAD>
14449 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
14450 </HEAD>
14451 <BODY>
14452 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
14454 Set this to have lookups done to this server implicitly from the composer.
14455 If an address doesn't look like a fully-qualified address, it will be looked
14456 up in your address books, and if it doesn't match a nickname there, then it
14457 will be looked up on the LDAP servers that have this feature set.
14458 The lookups will also be done when using the address completion feature
14459 (TAB command) in the composer if any of the serves have this feature set.
14460 Also see the LDAP feature
14461 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
14462 and the Setup/Config feature
14463 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14465 &lt;End of help on this topic&gt;
14466 </BODY>
14467 </HTML>
14468 ======= h_config_ldap_opts_tls =======
14469 <HTML>
14470 <HEAD>
14471 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
14472 </HEAD>
14473 <BODY>
14474 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
14476 When connecting to this server Alpine will attempt to use TLS encryption
14477 on the connection.
14478 Also see the closely related feature
14479 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
14481 &lt;End of help on this topic&gt;
14482 </BODY>
14483 </HTML>
14484 ======= h_config_ldap_opts_tlsmust =======
14485 <HTML>
14486 <HEAD>
14487 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
14488 </HEAD>
14489 <BODY>
14490 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
14492 When connecting to this server Alpine will attempt to use TLS encryption
14493 on the connection.
14494 If the StartTLS operation fails then the connection will not be used.
14496 &lt;End of help on this topic&gt;
14497 </BODY>
14498 </HTML>
14499 ====== h_config_ldap_opts_rhs =====
14500 <HTML>
14501 <HEAD>
14502 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
14503 </HEAD>
14504 <BODY>
14505 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
14507 Normally implicit LDAP lookups from the composer are done only for the
14508 strings you type in from the composer screen. In other words, you type in
14509 something in the To or CC field and press return, then the string is looked up.
14510 First that string is looked up in your address books. If a match is found
14511 there, then the results of that match are looked up again. If you place
14512 a string in your address book that you want to have looked up on the LDAP
14513 directory server, you need to turn on this feature. If you set this feature
14514 for a server, you almost always will also want to set the
14515 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
14516 feature. An example might serve to best illustrate this feature.
14518 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
14519 entry with an
14520 address of pres@whitehouse.gov, then you might put an entry in your address
14521 book that looks like:
14523 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
14524 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
14526 Now, when you type &quot;bill&quot; into an
14527 address field in the composer Alpine will
14528 find the &quot;bill&quot; entry in your address book.
14529 It will replace &quot;bill&quot; with
14530 &quot;William Clinton&quot;.
14531 It will then search for an entry with that nickname
14532 in your address book and not find one. If this feature
14533 is set, Alpine will then attempt to lookup
14534 &quot;William Clinton&quot; on the LDAP server and find the entry with address
14535 pres@whitehouse.gov.
14537 A better way to accomplish the same thing is probably to use the feature
14538 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
14540 &lt;End of help on this topic&gt;
14541 </BODY>
14542 </HTML>
14543 ====== h_config_ldap_opts_ref =====
14544 <HTML>
14545 <HEAD>
14546 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
14547 </HEAD>
14548 <BODY>
14549 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
14551 Normally when you save the results of an LDAP directory lookup to your
14552 address book the results of the lookup are saved. If this feature is set
14553 and the entry being saved was found on this directory server, then the
14554 search criteria is saved instead of the results of the search. When this
14555 address book entry is used in the future, instead of copying the results
14556 from the address book the directory lookup will be done again. This could
14557 be useful if the copied result might become stale because the data on
14558 the directory server changes (for example, the entry's email address changes).
14559 You probably don't want to set this feature if the server is at all slow or
14560 unreliable.
14562 The way this actually works is that instead of saving the email address
14563 in your address book, Alpine saves enough information to look up the same
14564 directory entry again. In particular, it saves the server name and the
14565 distinguished name of the entry. It's possible that the server administrators
14566 might change the format of distinguished names on the server, or that the
14567 entry might be removed from the server. If Alpine notices this, you will be warned
14568 and a backup copy of the email address will be used. You may want to create
14569 a new entry in this case, since you will get the annoying warning every
14570 time you use the old entry. You may do that by Saving the entry to a new
14571 nickname in the same address book. You will be asked whether or not you
14572 want to use the backup email address.
14574 A related feature in the Setup/Config screen is
14575 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
14577 &lt;End of help on this topic&gt;
14578 </BODY>
14579 </HTML>
14580 ======= h_config_ldap_opts_nosub =======
14581 <HTML>
14582 <HEAD>
14583 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
14584 </HEAD>
14585 <BODY>
14586 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
14588 Spaces in your input are normally handled specially.
14589 Each space character is replaced
14592 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
14594 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
14595 The reason this is done is so the input string
14597 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
14599 (which is converted to &quot;Greg* Donald&quot;) will match
14600 the names &quot;Greg Donald&quot;,
14601 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
14602 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
14603 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
14604 then it would also match the name &quot;Greg Donaldson&quot;.
14606 Turning on this feature will disable this substitution.
14608 &lt;End of help on this topic&gt;
14609 </BODY>
14610 </HTML>
14611 ====== h_config_ldap_searchtypes =======
14612 <HTML>
14613 <HEAD>
14614 <TITLE>LDAP OPTION: Search-Type</TITLE>
14615 </HEAD>
14616 <BODY>
14617 <H1>LDAP OPTION: Search-Type</H1>
14619 This affects the way that LDAP searches are done.
14620 In particular, this tells the server where to look for the string to be matched.
14621 If set to &quot;name&quot; then the string that is being searched for will
14622 be compared with the string in the
14623 &quot;Name&quot; field on the server
14624 (technically, it is the &quot;commonname&quot; field on the server).
14625 &quot;Surname&quot; means we're looking for a
14626 match in the &quot;Surname&quot; field on the
14627 server (actually the &quot;sn&quot; field).
14628 &quot;Givenname&quot; really is &quot;givenname&quot;
14629 and &quot;email&quot; is the electronic mail address (this is actually the field
14630 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
14631 The other three types are combinations of
14632 the types listed so far. &quot;Name-or-email&quot;
14633 means the string should appear
14634 in either the &quot;name&quot; field OR the &quot;email&quot; field.
14635 Likewise, &quot;surname-or-givenname&quot;
14636 means &quot;surname&quot; OR &quot;givenname&quot;
14637 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
14639 This search TYPE is combined with the
14640 search <A HREF="h_config_ldap_searchrules">RULE</A>
14641 to form the actual search query.
14643 The usual default value for this
14644 option is &quot;sur-or-given-or-name-or-email&quot;.
14645 This type of search may be slow on some servers.
14646 Try &quot;name-or-email&quot;, which is often
14647 faster, or just &quot;name&quot; if the performance seems to be a problem.
14649 Some servers have been configured with different attribute names for
14650 these four fields.
14651 In other words, instead of using the attribute name &quot;mail&quot;
14652 for the email address field, the server might be configured to use something
14653 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
14654 Alpine can be configured to use these different attribute names by using
14655 the four configuration options:
14656 <P><UL>
14657 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
14658 </UL>
14659 <P><UL>
14660 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
14661 </UL>
14662 <P><UL>
14663 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
14664 </UL>
14665 <P><UL>
14666 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
14667 </UL>
14669 &lt;End of help on this topic&gt;
14670 </BODY>
14671 </HTML>
14672 ====== h_config_ldap_searchrules =======
14673 <HTML>
14674 <HEAD>
14675 <TITLE>LDAP OPTION: Search-Rule</TITLE>
14676 </HEAD>
14677 <BODY>
14678 <H1>LDAP OPTION: Search-Rule</H1>
14680 This affects the way that LDAP searches are done.
14681 If set to &quot;equals&quot; then
14682 only exact matches count.
14683 &quot;Contains&quot; means that the string you type in
14684 is a substring of what you are matching against.
14685 &quot;Begins-with&quot; and &quot;ends-with&quot;
14686 mean that the string starts or ends with the string you type in.
14688 Spaces in your input are normally handled specially, but you can turn that
14689 special handling off with the
14690 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
14691 feature.
14693 The usual default value for this option is &quot;begins-with&quot;.
14695 &lt;End of help on this topic&gt;
14696 </BODY>
14697 </HTML>
14698 ======= h_config_ldap_email_attr =======
14699 <HTML>
14700 <HEAD>
14701 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
14702 </HEAD>
14703 <BODY>
14704 <H1>LDAP OPTION: EmailAttribute</H1>
14706 This is the name of the attribute that is searched for when looking for
14707 an email address. The default value for this option is &quot;mail&quot; or
14708 &quot;electronicmail&quot;.
14709 If the server you are using uses a different attribute name for the email
14710 address, put that attribute name here.
14712 This will affect the search filter used if your Search-Type is one that
14713 contains a search for &quot;email&quot;.
14714 It will also cause the attribute value matching this attribute name to be used
14715 as the email address when you look up an entry from the composer.
14717 &lt;End of help on this topic&gt;
14718 </BODY>
14719 </HTML>
14720 ======= h_config_ldap_sn_attr =======
14721 <HTML>
14722 <HEAD>
14723 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
14724 </HEAD>
14725 <BODY>
14726 <H1>LDAP OPTION: SurnameAttribute</H1>
14728 This is the name of the attribute that is searched for when looking for
14729 the surname of the entry. The default value for this option is &quot;sn&quot;.
14730 If the server you are using uses a different attribute name for the surname,
14731 put that attribute name here.
14732 This will affect the search filter used if your Search-Type is one that
14733 contains a search for &quot;surname&quot;.
14735 &lt;End of help on this topic&gt;
14736 </BODY>
14737 </HTML>
14738 ======= h_config_ldap_gn_attr =======
14739 <HTML>
14740 <HEAD>
14741 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
14742 </HEAD>
14743 <BODY>
14744 <H1>LDAP OPTION: GivennameAttribute</H1>
14746 This is the name of the attribute that is searched for when looking for
14747 the given name of the entry. The default value for this option is &quot;givenname&quot;.
14748 If the server you are using uses a different attribute name for the given name,
14749 put that attribute name here.
14750 This will affect the search filter used if your Search-Type is one that
14751 contains a search for &quot;givenname&quot;.
14753 &lt;End of help on this topic&gt;
14754 </BODY>
14755 </HTML>
14756 ======= h_config_ldap_cn_attr =======
14757 <HTML>
14758 <HEAD>
14759 <TITLE>LDAP OPTION: NameAttribute</TITLE>
14760 </HEAD>
14761 <BODY>
14762 <H1>LDAP OPTION: NameAttribute</H1>
14764 This is the name of the attribute that is searched for when looking for
14765 the name of the entry. The default value for this option is &quot;cn&quot;, which
14766 stands for common name.
14767 If the server you are using uses a different attribute name for the name,
14768 put that attribute name here.
14769 This will affect the search filter used if your Search-Type is one that
14770 contains a search for &quot;name&quot;.
14772 &lt;End of help on this topic&gt;
14773 </BODY>
14774 </HTML>
14775 ======= h_config_ldap_time =======
14776 <HTML>
14777 <HEAD>
14778 <TITLE>LDAP OPTION: Timelimit</TITLE>
14779 </HEAD>
14780 <BODY>
14781 <H1>LDAP OPTION: Timelimit</H1>
14783 This places a limit on the number of seconds the LDAP search will continue.
14784 The default is 30 seconds. A value of 0 means no limit. Note that some servers
14785 may place limits of their own on searches.
14787 &lt;End of help on this topic&gt;
14788 </BODY>
14789 </HTML>
14790 ======= h_config_ldap_size =======
14791 <HTML>
14792 <HEAD>
14793 <TITLE>LDAP OPTION: Sizelimit</TITLE>
14794 </HEAD>
14795 <BODY>
14796 <H1>LDAP OPTION: Sizelimit</H1>
14798 This places a limit on the number of entries returned by the LDAP server.
14799 A value of 0 means no limit. The default is 0. Note that some servers
14800 may place limits of their own on searches.
14802 &lt;End of help on this topic&gt;
14803 </BODY>
14804 </HTML>
14805 ======= h_config_ldap_cust =======
14806 <HTML>
14807 <HEAD>
14808 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
14809 </HEAD>
14810 <BODY>
14811 <H1>LDAP OPTION: Custom-Search-Filter</H1>
14813 This one is for advanced users only! If you define this, then the
14814 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
14815 However, the feature
14816 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
14817 is still in effect.
14818 That is, the space substitution will take place even in a custom filter unless
14819 you disable it.
14821 If your LDAP service stops working and you suspect it might be because
14822 of your custom filter, just delete this filter and try using the
14823 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
14824 Another option that sometimes causes trouble is the
14825 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
14827 This variable may be set to the string representation of an LDAP search
14828 filter (see RFC1960). In the places where you want the address string to be
14829 substituted in, put a '%s' in this filter string. Here are some examples:
14831 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
14832 is equivalent to the &quot;Custom-Search-Filter&quot;
14833 <PRE>
14834      (cn=%s*)
14835 </PRE>
14836 When you try to match against the string &quot;string&quot; the program replaces
14837 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
14838 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
14840 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
14841 of &quot;contains&quot; is equivalent to
14842 <PRE>
14843      (|(cn=*%s*)(mail=*%s*))
14844 </PRE>
14846 If your server uses a different attribute <EM>name</EM> than
14847 Alpine uses by default,
14848 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
14849 then you may be able to use one or more of the four attribute configuration
14850 options instead of defining a custom filter:
14851 <P><UL>
14852 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
14853 </UL>
14854 <P><UL>
14855 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
14856 </UL>
14857 <P><UL>
14858 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
14859 </UL>
14860 <P><UL>
14861 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
14862 </UL>
14864 &lt;End of help on this topic&gt;
14865 </BODY>
14866 </HTML>
14867 ======= h_composer_abook_comment =======
14868 <HTML>
14869 <HEAD>
14870 <TITLE>Addressbook Comment Explained</TITLE>
14871 </HEAD>
14872 <BODY>
14873 This is a comment to help you remember what this entry is. The WhereIs
14874 command searches comments so that it is easier to find an entry with a comment
14875 you know about attached to it. This field is not used in the outgoing message.
14877 Look <A HREF="h_edit_nav_cmds">here</A>
14878 to see the available Editing and Navigation commands.
14880 &lt;End of help on this topic&gt;
14881 </BODY>
14882 </HTML>
14883 ======= h_composer_abook_addrs =======
14884 <HTML>
14885 <HEAD>
14886 <TITLE>Addressbook Lists</TITLE>
14887 </HEAD>
14888 <BODY>
14889 <H1>Addressbook Lists</H1>
14891 This is a list of addresses to send to when sending to this address book
14892 entry.  Each member of the list may be an address or another nickname from
14893 any of your address books.  If it is an address, it is OK to include the
14894 full name field as well as the electronic address portion of that address.
14895 For example, the following are all legitimate entries in this field:
14897 <DL><DT>&nbsp;</DT>
14898 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
14899 <DD>jdoe@some.domain
14900 <DD>John Doe &lt;jdoe@some.domain&gt;
14901 </DL>
14903 The addresses should be listed separated by commas, just like you would
14904 enter them from the composer.
14908 The only difference between a distribution list and a simple entry with a
14909 single address, is that a distribution list has more than one address   
14910 listed in the Addresses: field, whereas a simple personal entry has just  
14911 one address.
14915 For individual address book entries, if there is a full name in the
14916 Fullname: field (filling in the Fullname: field is not required), it is
14917 used.  If the full name is specified in the Address: field and not in the
14918 Fullname: field, then the full name from the Address: field is used.
14922 If you type the nickname of a distribution list from one of your address 
14923 books in the Lcc: field, then the full name of that list is used in the  
14924 To: field.  If you put a list in the To: or Cc: fields, that list will be
14925 expanded into all of its addresses.  If the list has a full name, then
14926 that will appear at the beginning of the addresses.
14928 <DL><DT>&nbsp;</DT>
14929 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
14930 &lt;sal@here.there&gt;
14931 </DL>
14933 If the first address in the distribution list also has a full name, then
14934 the list full name and that full name are combined into something like the
14935 following:
14937 <DL><DT>&nbsp;</DT>
14938 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
14939 </DL>
14942 If you specify a list via Lcc, the full name is used in the To: line.  If
14943 you specify a list in the To: or Cc: fields, then it uses the same method
14944 as for individual entries for filling in the full name.
14948 For help with editing and navigation commands, check the Help for the
14949 Nickname: field.
14952 &lt;End of help on this topic&gt;
14953 </BODY>
14954 </HTML>
14955 ======= h_config_role_nick =======
14956 <HTML>
14957 <HEAD>
14958 <TITLE>Nickname Explained</TITLE>
14959 </HEAD>
14960 <BODY>
14961 <H1>Nickname Explained</H1>
14963 This is a nickname to help you.
14964 You should have a different nickname for each role you define.
14965 The nickname will be used in the SETUP ROLE RULES screen to allow you to
14966 pick a role to edit.
14967 It will also be used when you send a message to let you know you are
14968 sending with a different role than you use by default, and
14969 it will be useful for choosing a role when composing with the Role command
14970 or when composing with one of the Role Uses set to With Confirmation.
14971 This field is not used in the outgoing message.
14973 Look <A HREF="h_edit_nav_cmds">here</A>
14974 to see the available Editing and Navigation commands.
14976 &lt;End of help on this topic&gt;
14977 </BODY>
14978 </HTML>
14979 ======= h_config_role_comment =======
14980 <HTML>
14981 <HEAD>
14982 <TITLE>Comment Explained</TITLE>
14983 </HEAD>
14984 <BODY>
14985 <H1>Comment Explained</H1>
14987 This is a comment to help you.
14988 This comment does not play any functional role, it is simply an optional
14989 comment to help you remember what the rule is for.
14991 Look <A HREF="h_edit_nav_cmds">here</A>
14992 to see the available Editing and Navigation commands.
14994 &lt;End of help on this topic&gt;
14995 </BODY>
14996 </HTML>
14997 ======= h_config_other_nick =======
14998 <HTML>
14999 <HEAD>
15000 <TITLE>Nickname Explained</TITLE>
15001 </HEAD>
15002 <BODY>
15003 <H1>Nickname Explained</H1>
15005 This is a nickname to help you.
15006 You should have a different nickname for each rule you define.
15007 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15008 pick a rule to edit.
15010 Look <A HREF="h_edit_nav_cmds">here</A>
15011 to see the available Editing and Navigation commands.
15013 &lt;End of help on this topic&gt;
15014 </BODY>
15015 </HTML>
15016 ======= h_config_score_nick =======
15017 <HTML>
15018 <HEAD>
15019 <TITLE>Nickname Explained</TITLE>
15020 </HEAD>
15021 <BODY>
15022 <H1>Nickname Explained</H1>
15024 This is a nickname to help you.
15025 You should have a different nickname for each scoring rule you define.
15026 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15027 pick a rule to edit.
15029 Look <A HREF="h_edit_nav_cmds">here</A>
15030 to see the available Editing and Navigation commands.
15032 &lt;End of help on this topic&gt;
15033 </BODY>
15034 </HTML>
15035 ======= h_config_incol_nick =======
15036 <HTML>
15037 <HEAD>
15038 <TITLE>Nickname Explained</TITLE>
15039 </HEAD>
15040 <BODY>
15041 <H1>Nickname Explained</H1>
15043 This is a nickname to help you.
15044 You should have a different nickname for each color rule you define.
15045 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15046 pick a rule to edit.
15048 Look <A HREF="h_edit_nav_cmds">here</A>
15049 to see the available Editing and Navigation commands.
15051 &lt;End of help on this topic&gt;
15052 </BODY>
15053 </HTML>
15054 ======= h_config_filt_nick =======
15055 <HTML>
15056 <HEAD>
15057 <TITLE>Nickname Explained</TITLE>
15058 </HEAD>
15059 <BODY>
15060 <H1>Nickname Explained</H1>
15062 This is a nickname to help you.
15063 You should have a different nickname for each filtering rule you define.
15064 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15065 pick a rule to edit.
15067 Look <A HREF="h_edit_nav_cmds">here</A>
15068 to see the available Editing and Navigation commands.
15070 &lt;End of help on this topic&gt;
15071 </BODY>
15072 </HTML>
15073 ======= h_config_score_topat =======
15074 <HTML>
15075 <HEAD>
15076 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15077 </HEAD>
15078 <BODY>
15079 <H1>&quot;To:&quot; Pattern Explained</H1>
15081 Any text you enter as the &quot;To pattern&quot;
15082 will be compared to the recipients from the To: line of
15083 the message being scored.
15084 When the text you entered matches
15085 all or part of the To: line of a message, then the Score Value
15086 you have specified will be added to the score for the message.
15087 (Any other non-blank parts of the Pattern must match, too.)
15090 You may enter a complete email address, part of an address, or a
15091 list of addresses or partial addresses.
15092 For example:
15095 <PRE>
15096  To pattern = friend@public.com
15098  To pattern = rated.net
15100  To pattern = xxx@adults.com
15101               admin@msn.com
15102               fool@motleyfool.com
15103 </PRE>
15106 Each of those are valid To patterns.
15109 Messages match those patterns if any of the
15110 addresses in the To: line of the message contains the pattern.
15111 If the pattern is a list of patterns
15112 (like the last example above) then it is a match if any of the patterns in
15113 the list match any of the addresses in the To: line.
15114 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15115 present for a match.
15116 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15117 address2 must be present.
15118 That is exactly what using a list does.)
15121 Some messages may be &quot;bounced&quot; to you, and will
15122 have a &quot;Resent-To:&quot; header line.
15123 If the message contains a Resent-To: line
15124 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15125 Alpine will look for
15126 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15127 the original To: line.
15130 When entering a pattern, you may choose an address from your address book
15131 with the &quot;T&quot; command.
15134 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15135 &quot;!&quot; &quot;toggle NOT&quot; command.
15136 This changes the meaning of the To pattern so that it has the opposite meaning.
15137 It will be considered a match if there are no matches between the
15138 addresses in the To: line and the list of To patterns.
15140 Don't make the mistake of putting the &quot;!&quot; in the data field for
15141 the pattern.
15142 For example, if you type the characters &quot;!frizzle&quot; into the To
15143 pattern, the pattern will look like:
15145 <PRE>
15146  To pattern = !frizzle
15147 </PRE>
15149 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15150 In order to match messages that do not have &quot;frizzle&quot; in
15151 their To field, first type the characters &quot;frizzle&quot; followed
15152 by carriage return for the value of the To pattern, then negate it
15153 by typing the &quot;!&quot; command.
15154 It should end up looking like
15156 <PRE>
15157  ! To pattern = frizzle
15158 </PRE>
15160 You are not limited to using the six standard header patterns that are
15161 normally shown (To, From, Sender, Cc, News, and Subject).
15162 You may add any other header to a Pattern by
15163 using the &quot;eXtraHdr&quot; command to specify a different
15164 message header line; and then the Add or Change command to fill in
15165 a pattern for the new header line, just like you would for a standard header.
15167 A technicality: Since comma is the character used to separate multiple
15168 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15169 you want to include a literal comma in the field.
15170 In other words, if you type a backslash followed by a comma it will
15171 be interpreted as a comma by Alpine, instead of as a separator between
15172 pattern values.
15173 All other backslashes are literal backslashes and should not be escaped.
15175 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15176 for more information on Patterns.
15178 Look <A HREF="h_edit_nav_cmds">here</A>
15179 to see the available Editing and Navigation commands.
15181 &lt;End of help on this topic&gt;
15182 </BODY>
15183 </HTML>
15184 ======= h_config_incol_topat =======
15185 <HTML>
15186 <HEAD>
15187 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15188 </HEAD>
15189 <BODY>
15190 <H1>&quot;To:&quot; Pattern Explained</H1>
15192 Any text you enter as the &quot;To pattern&quot;
15193 will be compared to the recipients from the To: lines of
15194 the messages in the index.
15195 When the text you entered matches
15196 all or part of the To: line of a message, then the Index Line Color you have
15197 specified will be used for that line in the index.
15198 (Any other non-blank parts of the Pattern must match, too.)
15201 You may enter a complete email address, part of an address, or a
15202 list of addresses or partial addresses.
15203 For example:
15206 <PRE>
15207  To pattern = friend@public.com
15208  To pattern = rated.net
15209  To pattern = xxx@adults.com
15210               admin@msn.com
15211               fool@motleyfool.com
15212 </PRE>
15215 Each of those are valid To patterns.
15218 Messages match those patterns if any of the
15219 addresses in the To: line of the message contains the pattern.
15220 If the pattern is a list of patterns
15221 (like the last example above) then it is a match if any of the patterns in
15222 the list match any of the addresses in the To: line.
15223 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15224 present for a match.
15225 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15226 address2 must be present.
15227 That is exactly what using a list does.)
15230 Some messages may be &quot;bounced&quot; to you, and will
15231 have a &quot;Resent-To:&quot; header line.
15232 If the message contains a Resent-To: line
15233 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15234 Alpine will look for
15235 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15236 the original To: line.
15239 When entering a pattern, you may choose an address from your address book
15240 with the &quot;T&quot; command.
15243 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15244 &quot;!&quot; &quot;toggle NOT&quot; command.
15245 This changes the meaning of the To pattern so that it has the opposite meaning.
15246 It will be considered a match if there are no matches between the
15247 addresses in the To: line and the list of To patterns.
15249 Don't make the mistake of putting the &quot;!&quot; in the data field for
15250 the pattern.
15251 For example, if you type the characters &quot;!frizzle&quot; into the To
15252 pattern, the pattern will look like:
15254 <PRE>
15255  To pattern = !frizzle
15256 </PRE>
15258 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15259 In order to match messages that do not have &quot;frizzle&quot; in
15260 their To field, first type the characters &quot;frizzle&quot; followed
15261 by carriage return for the value of the To pattern, then negate it
15262 by typing the &quot;!&quot; command.
15263 It should end up looking like
15265 <PRE>
15266  ! To pattern = frizzle
15267 </PRE>
15270 You are not limited to using the six standard header patterns that are
15271 normally shown (To, From, Sender, Cc, News, and Subject).
15272 You may add any other header to a Pattern by
15273 using the &quot;eXtraHdr&quot; command to specify a different
15274 message header line; and then the Add or Change command to fill in
15275 a pattern for the new header line, just like you would for a standard header.
15277 A technicality: Since comma is the character used to separate multiple
15278 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15279 you want to include a literal comma in the field.
15280 In other words, if you type a backslash followed by a comma it will
15281 be interpreted as a comma by Alpine, instead of as a separator between
15282 pattern values.
15283 All other backslashes are literal backslashes and should not be escaped.
15285 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15286 for more information on Patterns.
15288 Look <A HREF="h_edit_nav_cmds">here</A>
15289 to see the available Editing and Navigation commands.
15291 &lt;End of help on this topic&gt;
15292 </BODY>
15293 </HTML>
15294 ======= h_config_other_topat =======
15295 <HTML>
15296 <HEAD>
15297 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15298 </HEAD>
15299 <BODY>
15300 <H1>&quot;To:&quot; Pattern Explained</H1>
15302 For some of the OTHER RULES actions, there is no message that is being
15303 compared against.
15304 If that is the case, then only the Current Folder Type is checked.
15305 In particular, this To pattern is ignored.
15306 Actions that fall into this category include both
15307 Sort Order and Index Format.
15309 A technicality: Since comma is the character used to separate multiple
15310 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15311 you want to include a literal comma in the field.
15312 In other words, if you type a backslash followed by a comma it will
15313 be interpreted as a comma by Alpine, instead of as a separator between
15314 pattern values.
15315 All other backslashes are literal backslashes and should not be escaped.
15317 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15318 for more information on Patterns.
15320 Look <A HREF="h_edit_nav_cmds">here</A>
15321 to see the available Editing and Navigation commands.
15323 &lt;End of help on this topic&gt;
15324 </BODY>
15325 </HTML>
15326 ======= h_config_filt_topat =======
15327 <HTML>
15328 <HEAD>
15329 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15330 </HEAD>
15331 <BODY>
15332 <H1>&quot;To:&quot; Pattern Explained</H1>
15334 Any text you enter as the &quot;To pattern&quot;
15335 will be compared to the recipients from the To: line of
15336 messages when Alpine opens folders.
15337 When the text you entered matches
15338 all or part of the To: line of a message, then the Filter Action you have
15339 specified will be carried out.
15340 (Any other non-blank parts of the Pattern must match, too.)
15343 You may enter a complete email address, part of an address, or a
15344 list of addresses or partial addresses.
15345 For example:
15348 <PRE>
15349  To pattern = friend@public.com
15350  To pattern = rated.net
15351  To pattern = xxx@adults.com
15352               admin@msn.com
15353               fool@motleyfool.com
15354 </PRE>
15357 Each of those are valid To patterns.
15360 Messages match those patterns if any of the
15361 addresses in the To: line of the message contains the pattern.
15362 If the pattern is a list of patterns
15363 (like the last example above) then it is a match if any of the patterns in
15364 the list match any of the addresses in the To: line.
15365 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15366 present for a match.
15367 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15368 address2 must be present.
15369 That is exactly what using a list does.)
15372 Some messages may be &quot;bounced&quot; to you, and will
15373 have a &quot;Resent-To:&quot; header line.
15374 If the message contains a Resent-To: line
15375 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15376 Alpine will look for
15377 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15378 the original To: line.
15381 When entering a pattern, you may choose an address from your address book
15382 with the &quot;T&quot; command.
15385 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15386 &quot;!&quot; &quot;toggle NOT&quot; command.
15387 This changes the meaning of the To pattern so that it has the opposite meaning.
15388 It will be considered a match if there are no matches between the
15389 addresses in the To: line and the list of To patterns.
15391 Don't make the mistake of putting the &quot;!&quot; in the data field for
15392 the pattern.
15393 For example, if you type the characters &quot;!frizzle&quot; into the To
15394 pattern, the pattern will look like:
15396 <PRE>
15397  To pattern = !frizzle
15398 </PRE>
15400 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15401 In order to match messages that do not have &quot;frizzle&quot; in
15402 their To field, first type the characters &quot;frizzle&quot; followed
15403 by carriage return for the value of the To pattern, then negate it
15404 by typing the &quot;!&quot; command.
15405 It should end up looking like
15407 <PRE>
15408  ! To pattern = frizzle
15409 </PRE>
15412 You are not limited to using the six standard header patterns that are
15413 normally shown (To, From, Sender, Cc, News, and Subject).
15414 You may add any other header to a Pattern by
15415 using the &quot;eXtraHdr&quot; command to specify a different
15416 message header line; and then the Add or Change command to fill in
15417 a pattern for the new header line, just like you would for a standard header.
15419 A technicality: Since comma is the character used to separate multiple
15420 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15421 you want to include a literal comma in the field.
15422 In other words, if you type a backslash followed by a comma it will
15423 be interpreted as a comma by Alpine, instead of as a separator between
15424 pattern values.
15425 All other backslashes are literal backslashes and should not be escaped.
15427 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15428 for more information on Patterns.
15430 Look <A HREF="h_edit_nav_cmds">here</A>
15431 to see the available Editing and Navigation commands.
15433 &lt;End of help on this topic&gt;
15434 </BODY>
15435 </HTML>
15436 ======= h_config_role_topat =======
15437 <HTML>
15438 <HEAD>
15439 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15440 </HEAD>
15441 <BODY>
15442 <H1>&quot;To:&quot; Pattern Explained</H1>
15444 Any text you enter as the &quot;To pattern&quot;
15445 will be compared to the recipients from the To: line of
15446 the message being replied to or forwarded.
15447 (Any other non-blank parts of the Pattern must match, too.)
15448 In the case of the Compose command, this pattern and the other header
15449 patterns are ignored.
15452 You may enter a complete email address, part of an address, or a
15453 list of addresses or partial addresses.
15454 For example:
15457 <PRE>
15458  To pattern = friend@public.com
15459  To pattern = rated.net
15460  To pattern = xxx@adults.com
15461               admin@msn.com
15462               fool@motleyfool.com
15463 </PRE>
15466 Each of those are valid To patterns.
15469 Messages match those patterns if any of the
15470 addresses in the To: line of the message contains the pattern.
15471 If the pattern is a list of patterns
15472 (like the last example above) then it is a match if any of the patterns in
15473 the list match any of the addresses in the To: line.
15474 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15475 present for a match.
15476 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15477 address2 must be present.
15478 That is exactly what using a list does.)
15481 Some messages may be &quot;bounced&quot; to you, and will
15482 have a &quot;Resent-To:&quot; header line.
15483 If the message contains a Resent-To: line
15484 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15485 Alpine will look for
15486 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15487 the original To: line.
15490 When entering a pattern, you may choose an address from your address book
15491 with the &quot;T&quot; command.
15494 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15495 &quot;!&quot; &quot;toggle NOT&quot; command.
15496 This changes the meaning of the To pattern so that it has the opposite meaning.
15497 It will be considered a match if there are no matches between the
15498 addresses in the To: line and the list of To patterns.
15500 Don't make the mistake of putting the &quot;!&quot; in the data field for
15501 the pattern.
15502 For example, if you type the characters &quot;!frizzle&quot; into the To
15503 pattern, the pattern will look like:
15505 <PRE>
15506  To pattern = !frizzle
15507 </PRE>
15509 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15510 In order to match messages that do not have &quot;frizzle&quot; in
15511 their To field, first type the characters &quot;frizzle&quot; followed
15512 by carriage return for the value of the To pattern, then negate it
15513 by typing the &quot;!&quot; command.
15514 It should end up looking like
15516 <PRE>
15517  ! To pattern = frizzle
15518 </PRE>
15521 You are not limited to using the six standard header patterns that are
15522 normally shown (To, From, Sender, Cc, News, and Subject).
15523 You may add any other header to a Pattern by
15524 using the &quot;eXtraHdr&quot; command to specify a different
15525 message header line; and then the Add or Change command to fill in
15526 a pattern for the new header line, just like you would for a standard header.
15528 A technicality: Since comma is the character used to separate multiple
15529 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15530 you want to include a literal comma in the field.
15531 In other words, if you type a backslash followed by a comma it will
15532 be interpreted as a comma by Alpine, instead of as a separator between
15533 pattern values.
15534 All other backslashes are literal backslashes and should not be escaped.
15536 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15537 for more information on Patterns.
15539 Look <A HREF="h_edit_nav_cmds">here</A>
15540 to see the available Editing and Navigation commands.
15542 &lt;End of help on this topic&gt;
15543 </BODY>
15544 </HTML>
15545 ======= h_config_role_frompat =======
15546 <HTML>
15547 <HEAD>
15548 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
15549 </HEAD>
15550 <BODY>
15551 <H1>&quot;From:&quot; Pattern Explained</H1>
15553 This is just like the &quot;To pattern&quot; except that it is compared with
15554 the address in the From: line of the message
15555 instead of the addresses from the To: line.
15556 See the help for the To pattern for more information on header patterns.
15558 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15559 for more information on Patterns.
15561 Look <A HREF="h_edit_nav_cmds">here</A>
15562 to see the available Editing and Navigation commands.
15564 &lt;End of help on this topic&gt;
15565 </BODY>
15566 </HTML>
15567 ======= h_config_role_senderpat =======
15568 <HTML>
15569 <HEAD>
15570 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
15571 </HEAD>
15572 <BODY>
15573 <H1>&quot;Sender:&quot; Pattern Explained</H1>
15575 This is just like the &quot;To pattern&quot; except that it is compared with
15576 the address from the Sender: line of the message
15577 instead of the addresses from the To: line.
15578 See the help for the To pattern for more information on header patterns.
15580 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15581 for more information on Patterns.
15583 Look <A HREF="h_edit_nav_cmds">here</A>
15584 to see the available Editing and Navigation commands.
15586 &lt;End of help on this topic&gt;
15587 </BODY>
15588 </HTML>
15589 ======= h_config_role_ccpat =======
15590 <HTML>
15591 <HEAD>
15592 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
15593 </HEAD>
15594 <BODY>
15595 <H1>&quot;Cc:&quot; Pattern Explained</H1>
15597 This is just like the &quot;To pattern&quot; except that it is compared with
15598 the addresses from the Cc: line of the message
15599 instead of the addresses from the To: line.
15600 See the help for the To pattern for more information on header patterns.
15602 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15603 for more information on Patterns.
15605 Look <A HREF="h_edit_nav_cmds">here</A>
15606 to see the available Editing and Navigation commands.
15608 &lt;End of help on this topic&gt;
15609 </BODY>
15610 </HTML>
15611 ======= h_config_role_recippat =======
15612 <HTML>
15613 <HEAD>
15614 <TITLE>Recipient Pattern Explained</TITLE>
15615 </HEAD>
15616 <BODY>
15617 <H1>Recipient Pattern Explained</H1>
15619 This is just like the &quot;To pattern&quot; except that it is compared with
15620 the addresses from both the To: line and the Cc: line of the
15621 message instead of just the addresses from the To: line.
15622 In other words, it is considered a match if the pattern matches
15623 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
15624 in the Cc: line.
15625 (Notice that defining the Recipient pattern does not have the same
15626 effect as defining both the To and Cc patterns.
15627 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
15628 It is equivalent to having two different rules;
15629 one with a To pattern and the other with the same Cc pattern.)
15631 A technicality: Since comma is the character used to separate multiple
15632 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15633 you want to include a literal comma in the field.
15634 In other words, if you type a backslash followed by a comma it will
15635 be interpreted as a comma by Alpine, instead of as a separator between
15636 pattern values.
15637 All other backslashes are literal backslashes and should not be escaped.
15639 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15640 for more information on Patterns.
15642 Look <A HREF="h_edit_nav_cmds">here</A>
15643 to see the available Editing and Navigation commands.
15645 &lt;End of help on this topic&gt;
15646 </BODY>
15647 </HTML>
15648 ======= h_config_role_particpat =======
15649 <HTML>
15650 <HEAD>
15651 <TITLE>Participant Pattern Explained</TITLE>
15652 </HEAD>
15653 <BODY>
15654 <H1>Participant Pattern Explained</H1>
15656 This is just like the &quot;To pattern&quot; except that it is compared with
15657 the addresses from the From: line, the To: line, and the Cc: line of the
15658 message instead of just the addresses from the To: line.
15659 In other words, it is considered a match if the pattern matches
15660 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
15661 in the To: line, <EM>OR</EM> an address in the Cc: line.
15662 (Notice that defining the Participant pattern does not have the same
15663 effect as defining all of the From, To, and Cc patterns.
15664 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
15665 From <EM>AND</EM> To <EM>AND</EM> Cc.
15666 It is equivalent to having three different rules;
15667 one with a From pattern, another with the same To pattern, and a third with
15668 the same Cc pattern.)
15670 A technicality: Since comma is the character used to separate multiple
15671 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15672 you want to include a literal comma in the field.
15673 In other words, if you type a backslash followed by a comma it will
15674 be interpreted as a comma by Alpine, instead of as a separator between
15675 pattern values.
15676 All other backslashes are literal backslashes and should not be escaped.
15678 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15679 for more information on Patterns.
15681 Look <A HREF="h_edit_nav_cmds">here</A>
15682 to see the available Editing and Navigation commands.
15684 &lt;End of help on this topic&gt;
15685 </BODY>
15686 </HTML>
15687 ======= h_config_role_newspat =======
15688 <HTML>
15689 <HEAD>
15690 <TITLE>News Pattern Explained</TITLE>
15691 </HEAD>
15692 <BODY>
15693 <H1>News Pattern Explained</H1>
15695 If this pattern is non-blank, then for this rule to be considered a
15696 match, at least one of the newsgroups from
15697 the Newsgroups line of the message must match this pattern.
15698 If this pattern is a list of patterns, then at least one of the
15699 newsgroups must match at least one of the patterns.
15700 (Any other non-blank parts of the Pattern must match, too.)
15702 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
15703 &quot;!&quot; &quot;toggle NOT&quot; command.
15704 This changes the meaning of the News pattern so that it has the opposite meaning.
15705 It will be considered a match if there are no matches between the
15706 addresses in the Newsgroups: line and the list of News patterns.
15708 Don't make the mistake of putting the &quot;!&quot; in the data field for
15709 the pattern.
15710 For example, if you type the characters &quot;!frizzle&quot; into the News
15711 pattern, the pattern will look like:
15713 <PRE>
15714  News pattern = !frizzle
15715 </PRE>
15717 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15718 In order to match messages that do not have &quot;frizzle&quot; in
15719 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
15720 by carriage return for the value of the News pattern, then negate it
15721 by typing the &quot;!&quot; command.
15722 It should end up looking like
15724 <PRE>
15725  ! News pattern = frizzle
15726 </PRE>
15728 A technicality: Since comma is the character used to separate multiple
15729 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15730 you want to include a literal comma in the field.
15731 In other words, if you type a backslash followed by a comma it will
15732 be interpreted as a comma by Alpine, instead of as a separator between
15733 pattern values.
15734 All other backslashes are literal backslashes and should not be escaped.
15737 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15738 for more information on Patterns.
15740 Look <A HREF="h_edit_nav_cmds">here</A>
15741 to see the available Editing and Navigation commands.
15743 &lt;End of help on this topic&gt;
15744 </BODY>
15745 </HTML>
15746 ======= h_config_role_subjpat =======
15747 <HTML>
15748 <HEAD>
15749 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
15750 </HEAD>
15751 <BODY>
15752 <H1>&quot;Subject:&quot; Pattern Explained</H1>
15754 This is similar to the other parts of the Pattern.
15755 It is compared with
15756 the contents from the Subject of the message.
15758 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15759 for more information on Patterns.
15761 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
15762 &quot;!&quot; &quot;toggle NOT&quot; command.
15763 This changes the meaning of the Subject pattern so that it has the opposite meaning.
15764 It will be considered a match if there are no matches between the
15765 text in the Subject: line and the list of Subject patterns.
15768 If you wish to have a header pattern that is not one of the six standard
15769 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
15771 A technicality: Since comma is the character used to separate multiple
15772 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15773 you want to include a literal comma in the field.
15774 In other words, if you type a backslash followed by a comma it will
15775 be interpreted as a comma by Alpine, instead of as a separator between
15776 pattern values.
15777 All other backslashes are literal backslashes and should not be escaped.
15779 Look <A HREF="h_edit_nav_cmds">here</A>
15780 to see the available Editing and Navigation commands.
15782 &lt;End of help on this topic&gt;
15783 </BODY>
15784 </HTML>
15785 ======= h_config_role_alltextpat =======
15786 <HTML>
15787 <HEAD>
15788 <TITLE>AllText Pattern Explained</TITLE>
15789 </HEAD>
15790 <BODY>
15791 <H1>AllText Pattern Explained</H1>
15793 This is similar to the header patterns.
15794 Instead of comparing with text in a particular header field it 
15795 is compared with all of the text in the message header and body.
15797 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
15798 &quot;!&quot; &quot;toggle NOT&quot; command.
15799 This changes the meaning of the AllText pattern so that it has the opposite meaning.
15800 It will be considered a match if there are no matches between the
15801 text of the message and the list of AllText patterns.
15803 Don't make the mistake of putting the &quot;!&quot; in the data field for
15804 the pattern.
15805 For example, if you type the characters &quot;!frizzle&quot; into the AllText
15806 pattern, the pattern will look like:
15808 <PRE>
15809  AllText pattern = !frizzle
15810 </PRE>
15812 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15813 In order to match messages that do not have &quot;frizzle&quot; in
15814 the text of the message, first type the characters &quot;frizzle&quot; followed
15815 by carriage return for the value of the AllText pattern, then negate it
15816 by typing the &quot;!&quot; command.
15817 It should end up looking like
15819 <PRE>
15820  ! AllText pattern = frizzle
15821 </PRE>
15823 It is possible that you may notice degraded performance when using
15824 AllText Patterns.
15826 A technicality: Since comma is the character used to separate multiple
15827 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15828 you want to include a literal comma in the field.
15829 In other words, if you type a backslash followed by a comma it will
15830 be interpreted as a comma by Alpine, instead of as a separator between
15831 pattern values.
15832 All other backslashes are literal backslashes and should not be escaped.
15834 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15835 for more information on Patterns.
15837 Look <A HREF="h_edit_nav_cmds">here</A>
15838 to see the available Editing and Navigation commands.
15840 &lt;End of help on this topic&gt;
15841 </BODY>
15842 </HTML>
15843 ======= h_config_role_bodytextpat =======
15844 <HTML>
15845 <HEAD>
15846 <TITLE>BodyText Pattern Explained</TITLE>
15847 </HEAD>
15848 <BODY>
15849 <H1>BodyText Pattern Explained</H1>
15851 This is similar to the header patterns.
15852 Instead of comparing with text in a particular header field it 
15853 is compared with all of the text in the message body.
15855 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
15856 &quot;!&quot; &quot;toggle NOT&quot; command.
15857 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
15858 It will be considered a match if there are no matches between the
15859 text of the body of the message and the list of BodyText patterns.
15861 Don't make the mistake of putting the &quot;!&quot; in the data field for
15862 the pattern.
15863 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
15864 pattern, the pattern will look like:
15866 <PRE>
15867  BdyText pattern = !frizzle
15868 </PRE>
15870 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15871 In order to match messages that do not have &quot;frizzle&quot; in
15872 their BodyText, first type the characters &quot;frizzle&quot; followed
15873 by carriage return for the value of the BodyText pattern, then negate it
15874 by typing the &quot;!&quot; command.
15875 It should end up looking like
15877 <PRE>
15878  ! BodyText pattern = frizzle
15879 </PRE>
15881 It is possible that you may notice degraded performance when using
15882 BodyText Patterns.
15884 A technicality: Since comma is the character used to separate multiple
15885 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15886 you want to include a literal comma in the field.
15887 In other words, if you type a backslash followed by a comma it will
15888 be interpreted as a comma by Alpine, instead of as a separator between
15889 pattern values.
15890 All other backslashes are literal backslashes and should not be escaped.
15892 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15893 for more information on Patterns.
15895 Look <A HREF="h_edit_nav_cmds">here</A>
15896 to see the available Editing and Navigation commands.
15898 &lt;End of help on this topic&gt;
15899 </BODY>
15900 </HTML>
15901 ======= h_config_role_charsetpat =======
15902 <HTML>
15903 <HEAD>
15904 <TITLE>Character Set Pattern Explained</TITLE>
15905 </HEAD>
15906 <BODY>
15907 <H1>Character Set Pattern Explained</H1>
15909 A message may use one or more character sets.
15910 This part of the Pattern matches messages that make use of
15911 certain specified character sets.
15912 It will be considered a match if a message uses any of the character
15913 sets in the list you give here.
15916 When filling in a value for this field, you may use
15917 the &quot;T&quot; command, which presents you with a large list of
15918 possible character sets to choose from.
15919 You may also just type in the name of a character set, and it need not
15920 be one that Alpine knows about.
15923 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
15924 GB2312) you may also use some shorthand names that Alpine provides.
15925 These names are more understandable shorthand names for sets of 
15926 character set names.
15927 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
15928 Selecting one of these shorthand names is equivalent to selecting all of
15929 the character sets that make up the set.
15930 You can see all of these shorthand names and the lists of character sets
15931 they stand for by typing the &quot;T&quot; command.
15934 For the purposes of this Pattern,
15935 Alpine will search through a message for all of the text parts and
15936 collect the character sets declared for each part.
15937 It will also look in the Subject line for a character set used there.
15938 Alpine does not actually look at the text of the message or the text
15939 of the Subject to determine if a declared character set is actually
15940 used, it looks only at the declarations themselves in the MIME part headers
15941 and in the Subject.
15944 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
15945 &quot;!&quot; &quot;toggle NOT&quot; command.
15946 This changes the meaning of the Character Set pattern so that
15947 it has the opposite meaning.
15948 It will be considered a match if none of the character sets in the
15949 list are used in a message.
15951 Don't make the mistake of putting the &quot;!&quot; in the data field for
15952 the pattern.
15953 For example, if you type the characters &quot;!GB2312&quot; into the
15954 Character Set pattern, the pattern will look like:
15956 <PRE>
15957  Charset pattern = !GB2312
15958 </PRE>
15960 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
15961 In order to match messages that do not have the
15962 character set &quot;GB2312&quot;
15963 set, first type the characters &quot;GB2312&quot; followed
15964 by carriage return for the value of the Character Set pattern, then negate it
15965 by typing the &quot;!&quot; command.
15966 It should end up looking like
15968 <PRE>
15969  ! Charset pattern = GB2312
15970 </PRE>
15972 A technicality: Since comma is the character used to separate multiple
15973 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15974 you want to include a literal comma in the field.
15975 In other words, if you type a backslash followed by a comma it will
15976 be interpreted as a comma by Alpine, instead of as a separator between
15977 pattern values.
15978 All other backslashes are literal backslashes and should not be escaped.
15980 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15981 for more information on Patterns.
15983 Look <A HREF="h_edit_nav_cmds">here</A>
15984 to see the available Editing and Navigation commands.
15986 &lt;End of help on this topic&gt;
15987 </BODY>
15988 </HTML>
15989 ======= h_config_role_keywordpat =======
15990 <HTML>
15991 <HEAD>
15992 <TITLE>Keyword Pattern Explained</TITLE>
15993 </HEAD>
15994 <BODY>
15995 <H1>Keyword Pattern Explained</H1>
15997 A folder may have user-defined keywords.
15998 These are similar to the Important flag, which the user may set using the
15999 Flag command.
16000 The difference is that the Important flag is always present for each folder.
16001 User-defined keywords are picked by the user.
16002 You may add new keywords by defining them in the
16003 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16004 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16005 the Flag command may be used to set or clear the keyword on individual messages.
16006 If you have given a keyword a nickname when configuring it,
16007 that nickname may be used instead of the actual keyword.
16010 When filling in a value for this field, it may be easiest to use
16011 the &quot;T&quot; command, which presents you with a list of the keywords
16012 you have defined to choose from.
16015 This part of the Pattern matches messages with certain keywords set.
16016 It will be considered a match if a message has any of the keywords in the
16017 list set.
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.
16023 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16024 &quot;!&quot; &quot;toggle NOT&quot; command.
16025 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16026 It will be considered a match if none of the keywords in the list are set
16027 for a message.
16028 A keyword that you have not defined using the
16029 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16030 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16032 Don't make the mistake of putting the &quot;!&quot; in the data field for
16033 the pattern.
16034 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16035 pattern, the pattern will look like:
16037 <PRE>
16038  Keyword pattern = !frizzle
16039 </PRE>
16041 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16042 In order to match messages that do not have the keyword &quot;frizzle&quot;
16043 set, first type the characters &quot;frizzle&quot; followed
16044 by carriage return for the value of the Keyword pattern, then negate it
16045 by typing the &quot;!&quot; command.
16046 It should end up looking like
16048 <PRE>
16049  ! Keyword pattern = frizzle
16050 </PRE>
16052 A technicality: Since comma is the character used to separate multiple
16053 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16054 you want to include a literal comma in the field.
16055 In other words, if you type a backslash followed by a comma it will
16056 be interpreted as a comma by Alpine, instead of as a separator between
16057 pattern values.
16058 All other backslashes are literal backslashes and should not be escaped.
16060 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16061 for more information on Patterns.
16063 Look <A HREF="h_edit_nav_cmds">here</A>
16064 to see the available Editing and Navigation commands.
16066 &lt;End of help on this topic&gt;
16067 </BODY>
16068 </HTML>
16069 ======= h_config_role_arbpat =======
16070 <HTML>
16071 <HEAD>
16072 <TITLE>Extra Header Patterns Explained</TITLE>
16073 </HEAD>
16074 <BODY>
16075 <H1>Extra Header Patterns Explained</H1>
16077 The header patterns that come after the Participant pattern but before the 
16078 AllText pattern are extra header patterns that you have added to a rule's
16079 Pattern. These are just like the other header patterns except that
16080 the contents of the particular header listed on the left hand side will
16081 be used for comparisons.
16083 The &quot;eXtraHdr&quot; command may be used to add more of these
16084 header patterns to the rule you are editing.
16086 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16087 extra header pattern from the rule you are editing.
16089 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16090 &quot;!&quot; &quot;toggle NOT&quot; command.
16091 This changes the meaning of the pattern so that it has the opposite meaning.
16092 It will be considered a match if there are no matches between the
16093 text in the header line and the list of patterns.
16095 Don't make the mistake of putting the &quot;!&quot; in the data field for
16096 the pattern.
16097 For example, if you type the characters &quot;!frizzle&quot; into the
16098 pattern, the pattern will look like:
16100 <PRE>
16101  Xyz pattern = !frizzle
16102 </PRE>
16104 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16105 In order to match messages that do not have &quot;frizzle&quot; in
16106 their Xyz field, first type the characters &quot;frizzle&quot; followed
16107 by carriage return for the value of the pattern, then negate it
16108 by typing the &quot;!&quot; command.
16109 It should end up looking like
16111 <PRE>
16112  ! Xyz pattern = frizzle
16113 </PRE>
16116 A technicality: Since comma is the character used to separate multiple
16117 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16118 you want to include a literal comma in the field.
16119 In other words, if you type a backslash followed by a comma it will
16120 be interpreted as a comma by Alpine, instead of as a separator between
16121 pattern values.
16122 All other backslashes are literal backslashes and should not be escaped.
16124 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16125 for more information on Patterns.
16127 Look <A HREF="h_edit_nav_cmds">here</A>
16128 to see the available Editing and Navigation commands.
16130 &lt;End of help on this topic&gt;
16131 </BODY>
16132 </HTML>
16133 ======= h_config_role_cat_cmd =======
16134 <HTML>
16135 <HEAD>
16136 <TITLE>Categorizer Command Explained</TITLE>
16137 </HEAD>
16138 <BODY>
16139 <H1>Categorizer Command Explained</H1>
16141 This is a command that is run with its standard input set to the message
16142 being checked and its standard output discarded.
16143 The full directory path should be specified.
16144 The command will be run and then its exit status will be checked against
16145 the Exit Status Interval, which defaults to just the value zero.
16146 If the exit status of the command falls in the interval, it is considered
16147 a match, otherwise it is not a match.
16150 This option may actually be a list of commands.
16151 The first one that exists and is executable is used.
16152 That makes it possible to use the same configuration with Unix Alpine and
16153 PC-Alpine.
16156 If none of the commands in the list exists and is executable then the rule
16157 is <EM>not</EM> a match.
16158 If it is possible that the command may not exist, you should be careful
16159 to structure your rules so that nothing destructive
16160 happens when the command does not exist.
16161 For example, you might have a filter that filters away spam when there is
16162 a match but does nothing when there is not a match.
16163 That would cause no harm if the command didn't exist.
16164 However, if you have a filter that filters away spam when there is not
16165 a match and keeps it when there is a match, that would filter everything
16166 if the categorizer command didn't exist.
16168 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16169 setup for the bogofilter filter.
16172 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16173 for more information on Patterns.
16175 Look <A HREF="h_edit_nav_cmds">here</A>
16176 to see the available Editing and Navigation commands.
16178 &lt;End of help on this topic&gt;
16179 </BODY>
16180 </HTML>
16181 ======= h_config_role_cat_cmd_example =======
16182 <HTML>
16183 <HEAD>
16184 <TITLE>Categorizer Command Example</TITLE>
16185 </HEAD>
16186 <BODY>
16187 <H1>Categorizer Command Example</H1>
16189 Bogofilter
16190 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16191 is a mail filter that attempts to classify mail as spam or
16192 non-spam using statistical analysis of the message content.
16193 When run with no arguments and a message as standard input, it exits with
16194 exit status 0 if it thinks a message is spam and 1 if it thinks
16195 it is not spam.
16196 To use bogofilter as your Categorizer Command you would simply set Command to
16197 the pathname of the bogofilter program.
16198 For example,
16200 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16202 Exit status of zero is what you are interested in, so you'd set the
16203 Exit Status Interval to
16205 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16208 In order to prevent downloading an entire huge message to check for spam, you
16209 might want to set the Character Limit to a few thousand characters (the
16210 assumption being that the spam will reveal itself in those characters)
16212 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16215 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16216 be to move the message to a spam folder.
16217 It would usually be wise to also check the &quot;Message is Recent&quot;
16218 part of the rule so that messages are only checked when they first arrive,
16219 and to restrict the Current Folder Type to just your INBOX.
16220 The reason for checking only Recent messages is to save the time it takes
16221 to run bogofilter on each message.
16222 As an experiment, you might start out by using this in an Indexcolor Rule
16223 instead of a Filter Rule.
16224 In that case, you probably wouldn't check the Recent checkbox.
16226 The use described above assumes that you are somehow maintaining bogofilter's
16227 database of words associated with spam and non-spam messages.
16228 One way to start your database would be to select a bunch of spam messages
16229 in Alpine (you might Save spam messages to a special folder or use Alpine's
16230 Select command to select several) and then Apply
16231 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16232 a pipe command to the spam messages.
16233 For example, you could have a shell script or an alias
16234 called <EM>this_is_spam</EM>, which would simply be the command
16236 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16239 It is probably best to use the pipe command's Raw Text, With Delimiter,
16240 and Free Output options,
16241 which are at the bottom of the screen when you type the pipe command.
16242 That's because bogofilter expects the raw message as input, and uses
16243 the Delimiters to tell when a new message starts.
16244 You would not need to use a separate pipe for each message, because
16245 bogofilter can handle multiple messages at once.
16247 Similarly, you would select a group of non-spam messages
16248 and run them through a <EM>this_is_nonspam</EM> script
16249 that was something like
16251 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16254 For the more adventurous, the next step might be to automate the upkeep of
16255 the bogofilter database.
16256 It might make more sense to have bogofilter be part of the delivery process,
16257 but it is also possible to do it entirely from within Alpine.
16258 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16259 the &quot;-u&quot; argument will cause bogofilter to update the database.
16261 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16263 You'd want a couple more aliases or shell scripts called something like
16264 <EM>change_to_spam</EM>
16266 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16269 <EM>change_to_nonspam</EM>
16271 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16273 When you run across a message in your INBOX that should have been
16274 classified as spam you would pipe it to the change_to_spam script, and
16275 when you run across a message in your spam folder that should have been
16276 left in your INBOX you would pipe it through change_to_nonspam.
16279 There is a technical problem with this approach.
16280 Alpine may check your filters more than once.
16281 In particular, every time you start Alpine the filters will be checked for
16282 each message.
16283 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16284 then Alpine will recheck for matches in messages that have changed state
16285 at the time you close the folder and before expunging.
16286 This is usually ok.
16287 However, in this case it is a problem because the command
16289 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16291 has the side effect of updating the database.
16292 So you run the risk of updating the database multiple times for a single
16293 message instead of updating it just once per message.
16294 There are some ways to work around this problem.
16295 What you need is a way to mark the message after you have run the filter.
16296 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16297 Besides having the filter move the message to a spam folder, also have it
16298 set the Bogo keyword.
16299 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16300 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16301 This rule can only set the Bogo keyword for the messages that it matches.
16302 You will also need to add a second rule right after this one that
16303 matches all the messages that don't have the Bogo keyword set
16304 (put the keyword in the Keyword pattern and toggle
16305 the Not with the ! command)
16306 and takes the action of setting it.
16307 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16308 (and so it won't re-run the bogofilter command) if the keyword is already
16309 set.
16311 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16312 on all messages that don't have the Bogo keyword set.
16313 This will have the side effect of inserting that message in the bogofilter
16314 database, match or not.
16315 If this rule matches (it is spam), the Bogo keyword will be set and
16316 the message will be moved to a spam folder.
16317 If it does not match, the
16318 following rule will mark the message by turning on the keyword.
16319 This second rule should be a non-terminating
16320 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
16321 rule so that it doesn't stop the filtering process before the rest of
16322 your rules are consulted.
16325 In summary, the first rule is something like
16326 <PRE>
16327   Nickname          = bogofilter -u rule
16328   Current Folder Type =
16329                (*) Specific
16330                    Folder = INBOX
16332   ! Keyword pattern = Bogo
16334   External Categorizer Commands =
16335        Command              = /usr/local/bin/bogofilter -u
16336        Exit Status Interval = (0,0)
16337        Character Limit      = <No Value Set: using "-1">  (optionally set this)
16339   Filter Action =
16340        (*) Move
16341            Folder = spam
16342   
16343   Set These Keywords   = Bogo
16344 </PRE>
16346 and the following rule is
16347 <PRE>
16348   Nickname          = Set Bogo Keyword
16349   Current Folder Type =
16350                (*) Specific
16351                    Folder = INBOX
16353   ! Keyword pattern = Bogo
16355   Filter Action =
16356        (*) Just Set Message Status
16358   Set These Keywords   = Bogo
16360   Features =
16361       [X]  dont-stop-even-if-rule-matches
16362 </PRE>
16364 If it is possible for you to insert bogofilter in the delivery process instead
16365 of having it called from Alpine you could prevent having to wait
16366 for the bogofilter processing while you read your mail.
16367 You would have bogofilter add a header to the message at the time of delivery
16368 that identified it as spam or nonspam.
16369 With this method, you could avoid using a Categorizer Command while running Alpine,
16370 and just match on the header instead.
16371 You might still want to use the scripts mentioned above to initialize the
16372 database or to re-classify wrongly classified messages.
16375 Finally, it isn't for the faint-hearted,
16376 but it is also possible to run bogofilter from PC-Alpine.
16377 You can install Cygwin from
16378 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
16379 then compile bogofilter in the cygwin environment, and run it from
16380 within PC-Alpine.
16381 You would end up with a Categorizer command that looked something like
16383 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
16385 Note that the &quot;.exe&quot; extension is explicit,
16386 and that the bogofilter.exe executable should be in the same directory
16387 as cygwin1.dll.
16390 &lt;End of help on this topic&gt;
16391 </BODY>
16392 </HTML>
16393 ======= h_config_role_cat_status =======
16394 <HTML>
16395 <HEAD>
16396 <TITLE>Exit Status Interval Explained</TITLE>
16397 </HEAD>
16398 <BODY>
16399 <H1>Exit Status Interval Explained</H1>
16401 The categorizer command is run and the result is the exit status of
16402 that command.
16403 If that exit status falls in the Exit Status Interval
16404 then it is considered a match, otherwise it is not a match.
16405 Of course for the entire rule to match, it must also be checked against
16406 the other defined parts of the Pattern.
16408 The Exit Status Interval defaults to the single value 0 (zero).
16409 If you define it, it should be set to something like:
16411 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
16413 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
16414 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
16415 positive and negative integers.
16417 Actually, a list of intervals may be used if you wish.
16418 A list would look like
16420 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
16422 When there is an Exit Status Interval defined, it is a match if the exit status
16423 of the categorizer command is contained in any of the intervals.
16424 The intervals include both endpoints.
16426 The default interval is
16428 <CENTER><SAMP>(0,0)</SAMP></CENTER>
16430 and it matches only if the command exits with exit status equal to zero.
16433 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16434 for more information on Patterns.
16436 Look <A HREF="h_edit_nav_cmds">here</A>
16437 to see the available Editing and Navigation commands.
16439 &lt;End of help on this topic&gt;
16440 </BODY>
16441 </HTML>
16442 ======= h_config_role_cat_limit =======
16443 <HTML>
16444 <HEAD>
16445 <TITLE>Character Limit Explained</TITLE>
16446 </HEAD>
16447 <BODY>
16448 <H1>Character Limit Explained</H1>
16450 Setting this option makes it possible to limit how much of the message
16451 is made available to the categorizer command as input.
16452 The default value (-1) means that the entire message is fed to the
16453 command.
16454 A value of 0 (zero) means that only the headers of the message are
16455 made available.
16456 A positive integer means that the headers plus that many characters from
16457 the body of the message are passed to the categorizer.
16460 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16461 for more information on Patterns.
16463 Look <A HREF="h_edit_nav_cmds">here</A>
16464 to see the available Editing and Navigation commands.
16466 &lt;End of help on this topic&gt;
16467 </BODY>
16468 </HTML>
16469 ======= h_config_role_age =======
16470 <HTML>
16471 <HEAD>
16472 <TITLE>Age Interval Explained</TITLE>
16473 </HEAD>
16474 <BODY>
16475 <H1>Age Interval Explained</H1>
16477 The Age Interval, if defined, is part of the Pattern.
16478 If you use this, it should be set to something like:
16480 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
16482 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
16483 The special value &quot;INF&quot; may be used for the max value.
16484 It represents infinity.
16486 In rare cases it may be useful to use the more general form of the value,
16487 which is a comma-separated list of intervals.
16488 It would look something like:
16490 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
16492 When there is an Age Interval defined, it is a match if the age, in days, of
16493 the message is contained in the interval.
16494 The interval includes both endpoints.
16495 If the option is set to a list of intervals then it is a match if the
16496 age of the message is contained in any of the intervals.
16498 Even though this option is called Age, it isn't actually
16499 the <EM>age</EM> of the message.
16500 Instead, it is how many days ago the message arrived in one of your folders.
16501 If the current time is a little past midnight, then a message that arrived
16502 just before midnight arrived yesterday, even though the message is only
16503 a few minutes old.
16504 By default, the date being used is not the date in the Date
16505 header of the message.
16506 It is the date that the message arrived in one of your folders.
16507 When you Save a message from one folder to another that arrival date
16508 is preserved.
16509 If you would like to use the date in the Date header that is possible.
16510 Turn on the option
16511 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
16512 near the bottom of the rule definition.
16514 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
16515 The age interval
16517 <CENTER><SAMP>(2,2)</SAMP></CENTER>
16519 matches all messages that arrived on the day before yesterday.
16520 The interval
16522 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
16524 matches all messages that arrived at least 180 days before today.
16525 The interval
16527 <CENTER><SAMP>(0,1)</SAMP></CENTER>
16529 matches all messages that arrived today or yesterday.
16532 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16533 for more information on Patterns.
16535 Look <A HREF="h_edit_nav_cmds">here</A>
16536 to see the available Editing and Navigation commands.
16538 &lt;End of help on this topic&gt;
16539 </BODY>
16540 </HTML>
16541 ======= h_config_role_size =======
16542 <HTML>
16543 <HEAD>
16544 <TITLE>Size Interval Explained</TITLE>
16545 </HEAD>
16546 <BODY>
16547 <H1>Size Interval Explained</H1>
16549 The Size Interval, if defined, is part of the Pattern.
16550 If you use this, it should be set to something like:
16552 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
16554 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
16555 The special value &quot;INF&quot; may be used for the max value.
16556 It represents infinity.
16558 In rare cases it may be useful to use the more general form of the value,
16559 which is a comma-separated list of intervals.
16560 It would look something like:
16562 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
16564 When there is a Size Interval defined, it is a match if the size of
16565 the message is contained in the interval.
16566 The interval includes both endpoints.
16567 If the option is set to a list of intervals then it is a match if the
16568 size of the message is contained in any of the intervals.
16570 The size interval
16572 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
16574 matches all messages with sizes greater than or equal to 10000, and less
16575 than or equal to 50000.
16576 The interval
16578 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
16580 matches all messages with sizes greater than or equal to 100000.
16583 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16584 for more information on Patterns.
16586 Look <A HREF="h_edit_nav_cmds">here</A>
16587 to see the available Editing and Navigation commands.
16589 &lt;End of help on this topic&gt;
16590 </BODY>
16591 </HTML>
16592 ======= h_config_role_scorei =======
16593 <HTML>
16594 <HEAD>
16595 <TITLE>Score Interval Explained</TITLE>
16596 </HEAD>
16597 <BODY>
16598 <H1>Score Interval Explained</H1>
16600 The Score Interval, if defined, is part of the Pattern.
16601 If you use this, it should be set to something like:
16603 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
16605 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
16606 -32000 and 32000.
16607 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
16608 the min and max values.
16609 These represent negative and positive infinity.
16611 Actually, the value may be a list of intervals rather than just a
16612 single interval if that is useful.
16613 The elements of the list are separated by commas like:
16615 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
16617 When there is a Score Interval defined, it is a match if the score for
16618 the message is contained in any of the intervals.
16619 The intervals include both endpoints.
16620 The score for a message is calculated by looking at every scoring rule
16621 defined and adding up the Score Values for the rules that match the message.
16622 Scoring rules are created using the
16623 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
16626 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16627 for more information on Patterns.
16629 Look <A HREF="h_edit_nav_cmds">here</A>
16630 to see the available Editing and Navigation commands.
16632 &lt;End of help on this topic&gt;
16633 </BODY>
16634 </HTML>
16635 ======= h_config_role_fldr_type =======
16636 <HTML>
16637 <HEAD>
16638 <TITLE>Current Folder Type Explained</TITLE>
16639 </HEAD>
16640 <BODY>
16641 <H1>Current Folder Type Explained</H1>
16643 The Current Folder Type is part of the role's Pattern.
16644 It refers to the type of the currently open folder, which is the folder
16645 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
16646 In order for a role to be considered a match, the current folder must
16647 be of the type you set here.
16648 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16649 all what you might think.
16651 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
16652 example, then
16653 that role will only be a match if the current folder is a newsgroup and
16654 the rest of the Pattern matches.
16655 The value &quot;Specific&quot; may be used when you want to limit the match
16656 to a specific folder (not just a specific type of folder), or to a list of
16657 specific folders.
16659 In order to match a specific folder you Select the &quot;Specific&quot;
16660 button <EM>AND</EM> fill in
16661 the name (or list of names) of
16662 the folder in the &quot;Folder List&quot; field.
16663 If the current folder is any of the folders in the list, that is considered
16664 a match.
16665 The name of each folder in the list may be either &quot;INBOX&quot;,
16666 the technical specification
16667 of the folder (like what appears in your configuration file) or, if the
16668 folder is one of your incoming folders, it may be the nickname you've given
16669 the folder.
16670 Here are a couple samples of specific folder names:
16672 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16674 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16676 The easiest way to fill in the &quot;Folder List&quot; field is to use
16677 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
16678 highlighted, or to use the &quot;Take&quot; command with the configuration
16679 feature
16680 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
16681 turned on.
16682 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16683 Current Folder Type is set to &quot;Specific&quot;, and any value that
16684 &quot;Folder List&quot; has is ignored unless the type
16685 is set to &quot;Specific&quot;.
16687 When reading a newsgroup, there may be a performance penalty
16688 incurred when collecting the information necessary to check a Pattern.
16689 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16691 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16692 for more information on Patterns.
16694 Look <A HREF="h_edit_nav_cmds">here</A>
16695 to see the available Editing and Navigation commands.
16697 &lt;End of help on this topic&gt;
16698 </BODY>
16699 </HTML>
16700 ======= h_config_filt_rule_type =======
16701 <HTML>
16702 <HEAD>
16703 <TITLE>Filter Action Explained</TITLE>
16704 </HEAD>
16705 <BODY>
16706 <H1>Filter Action Explained</H1>
16708 The Filter Action specifies the action to be taken when the Pattern is a
16709 match.
16710 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
16711 &quot;Just Set Message Status&quot;.
16713 If it is set to &quot;Delete&quot;, then the message that matches the
16714 Pattern will be deleted from the open folder.
16716 If it is set to &quot;Move&quot;, then the name of the folder to which
16717 the matching message should be moved is given in the &quot;Folder List&quot; field on the
16718 next line of the screen.
16719 A list of folders separated by commas may be given, in which case the
16720 message will be copied to all of the folders in the list before it is
16721 deleted.
16723 If it is set to neither of those two values (it is set to the value
16724 labeled &quot;Just Set Message Status&quot;) then the message status
16725 setting will happen
16726 but the message will not be deleted or moved.
16728 If you are Moving a message you may also set Message Status if you wish.
16730 The easiest way to fill in the &quot;Folder List&quot; field is to use
16731 the T command that is available when the &quot;Folder List&quot; line is
16732 highlighted.
16733 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16734 Filter Action is set to &quot;Move&quot;, and any value that
16735 &quot;Folder List&quot; has is ignored unless the type
16736 is set to &quot;Move&quot;.
16738 There are a few tokens that may be used in the names in the Folder List.
16739 They are all related to the date on which the filtering is taking place.
16740 The tokens are words surrounded by underscores.
16741 For example, if you want your filter to move messages to a folder named
16742 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
16743 you could specify the folder as
16744 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
16745 which would result in a file named something like
16746 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
16748 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
16749 which would result in a file named something like
16750 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
16751 The available tokens are listed
16752 <A HREF="h_index_tokens">here</A>.
16754 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16755 for more information on Patterns.
16757 Look <A HREF="h_edit_nav_cmds">here</A>
16758 to see the available Editing and Navigation commands.
16760 &lt;End of help on this topic&gt;
16761 </BODY>
16762 </HTML>
16763 ======= h_config_score_fldr_type =======
16764 <HTML>
16765 <HEAD>
16766 <TITLE>Current Folder Type Explained</TITLE>
16767 </HEAD>
16768 <BODY>
16769 <H1>Current Folder Type Explained</H1>
16771 The Current Folder Type is part of the scoring rule's Pattern.
16772 It refers to the type of the folder that
16773 the message being scored is in.
16774 In order for a rule to be considered a match, the current folder must
16775 be of the type you set here.
16776 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16777 all what you might think.
16779 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16780 example, then
16781 that Pattern will only match if the current folder is a newsgroup and
16782 the rest of the Pattern matches.
16783 The value &quot;Specific&quot; may be used when you want to limit the match
16784 to a specific folder (not just a specific type of folder), or to a list of
16785 specific folders.
16787 In order to match a specific folder you Select the &quot;Specific&quot;
16788 button <EM>AND</EM> fill in
16789 the name (or list of names) of
16790 the folder in the &quot;Folder List&quot; field.
16791 If the current folder is any of the folders in the list, that is considered
16792 a match.
16793 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16794 of the folder (like what appears in your configuration file) or, if the
16795 folder is one of your incoming folders, it may be the nickname you've given
16796 the folder.
16797 Here are a couple samples of specific folder names:
16799 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16801 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16803 The easiest way to fill in the &quot;Folder List&quot; field is to use
16804 the T command that is available when the &quot;Folder List&quot; line is
16805 highlighted.
16806 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16807 Current Folder Type is set to &quot;Specific&quot;, and any value that
16808 &quot;Folder List&quot; has is ignored unless the type
16809 is set to &quot;Specific&quot;.
16811 When reading a newsgroup, there may be a performance penalty
16812 incurred when collecting the information necessary to check a Pattern.
16813 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16814 For example, if you have Index Line Coloring rules that have Score Intervals
16815 defined then the scores for all the visible messages will need to be calculated.
16816 If some of your Scoring rules have 
16817 a Current Folder Type of
16818 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
16819 screen to draw more slowly when in a newsgroup.
16821 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16822 for more information on Patterns.
16824 Look <A HREF="h_edit_nav_cmds">here</A>
16825 to see the available Editing and Navigation commands.
16827 &lt;End of help on this topic&gt;
16828 </BODY>
16829 </HTML>
16830 ======= h_config_other_fldr_type =======
16831 <HTML>
16832 <HEAD>
16833 <TITLE>Current Folder Type Explained</TITLE>
16834 </HEAD>
16835 <BODY>
16836 <H1>Current Folder Type Explained</H1>
16838 The Current Folder Type is part of the rule's Pattern.
16839 It refers to the type of the folder being viewed.
16840 In order for a rule to be considered a match, the current folder must
16841 be of the type you set here.
16842 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16843 all what you might think.
16845 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16846 example, then
16847 that Pattern will only match if the current folder is a newsgroup.
16848 The value &quot;Specific&quot; may be used when you want to limit the match
16849 to a specific folder (not just a specific type of folder), or to a list of
16850 specific folders.
16852 In order to match a specific folder you Select the &quot;Specific&quot;
16853 button <EM>AND</EM> fill in
16854 the name (or list of names) of
16855 the folder in the &quot;Folder List&quot; field.
16856 If the current folder is any of the folders in the list, that is considered
16857 a match.
16858 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16859 of the folder (like what appears in your configuration file) or, if the
16860 folder is one of your incoming folders, it may be the nickname you've given
16861 the folder.
16862 Here are a couple samples of specific folder names:
16864 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16866 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16868 The easiest way to fill in the &quot;Folder List&quot; field is to use
16869 the T command that is available when the &quot;Folder List&quot; line is
16870 highlighted.
16871 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16872 Current Folder Type is set to &quot;Specific&quot;, and any value that
16873 &quot;Folder List&quot; has is ignored unless the type
16874 is set to &quot;Specific&quot;.
16876 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16877 for more information on Patterns.
16879 Look <A HREF="h_edit_nav_cmds">here</A>
16880 to see the available Editing and Navigation commands.
16882 &lt;End of help on this topic&gt;
16883 </BODY>
16884 </HTML>
16885 ======= h_config_incol_fldr_type =======
16886 <HTML>
16887 <HEAD>
16888 <TITLE>Current Folder Type Explained</TITLE>
16889 </HEAD>
16890 <BODY>
16891 <H1>Current Folder Type Explained</H1>
16893 The Current Folder Type is part of the Line Coloring rule's Pattern.
16894 It refers to the type of the folder for which the MESSAGE INDEX is
16895 being viewed.
16896 In order for a rule to be considered a match, the current folder must
16897 be of the type you set here.
16898 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16899 all what you might think.
16901 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16902 example, then
16903 that Pattern will only match if the current folder is a newsgroup and
16904 the rest of the Pattern matches.
16905 The value &quot;Specific&quot; may be used when you want to limit the match
16906 to a specific folder (not just a specific type of folder), or to a list of
16907 specific folders.
16909 In order to match a specific folder you Select the &quot;Specific&quot;
16910 button <EM>AND</EM> fill in
16911 the name (or list of names) of
16912 the folder in the &quot;Folder List&quot; field.
16913 If the current folder is any of the folders in the list, that is considered
16914 a match.
16915 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16916 of the folder (like what appears in your configuration file) or, if the
16917 folder is one of your incoming folders, it may be the nickname you've given
16918 the folder.
16919 Here are a couple samples of specific folder names:
16921 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16923 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16925 The easiest way to fill in the &quot;Folder List&quot; field is to use
16926 the T command that is available when the &quot;Folder List&quot; line is
16927 highlighted.
16928 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16929 Current Folder Type is set to &quot;Specific&quot;, and any value that
16930 &quot;Folder List&quot; has is ignored unless the type
16931 is set to &quot;Specific&quot;.
16933 When reading a newsgroup, there may be a performance penalty
16934 incurred when collecting the information necessary to check a Pattern.
16935 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
16936 For example, a rule with a non-Normal Index Line Color
16937 and a Current Folder Type of
16938 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
16939 screen to draw more slowly when in a newsgroup.
16941 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16942 for more information on Patterns.
16944 Look <A HREF="h_edit_nav_cmds">here</A>
16945 to see the available Editing and Navigation commands.
16947 &lt;End of help on this topic&gt;
16948 </BODY>
16949 </HTML>
16950 ======= h_config_filt_fldr_type =======
16951 <HTML>
16952 <HEAD>
16953 <TITLE>Current Folder Type Explained</TITLE>
16954 </HEAD>
16955 <BODY>
16956 <H1>Current Folder Type Explained</H1>
16958 The Current Folder Type is part of the Filtering rule's Pattern.
16959 It refers to the type of the folder for which the filtering is being done.
16960 In order for a rule to be considered a match, the current folder must
16961 be of the type you set here.
16962 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
16963 all what you might think.
16965 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
16966 example, then
16967 that Pattern will only match if the current folder is a newsgroup and
16968 the rest of the Pattern matches.
16969 The value &quot;Specific&quot; may be used when you want to limit the match
16970 to a specific folder (not just a specific type of folder), or to a list of
16971 specific folders.
16973 In order to match a specific folder you Select the &quot;Specific&quot;
16974 button <EM>AND</EM> fill in
16975 the name (or list of names) of
16976 the folder in the &quot;Folder List&quot; field.
16977 If the current folder is any of the folders in the list, that is considered
16978 a match.
16979 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
16980 of the folder (like what appears in your configuration file) or, if the
16981 folder is one of your incoming folders, it may be the nickname you've given
16982 the folder.
16983 Here are a couple samples of specific folder names:
16985 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
16987 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
16989 The easiest way to fill in the &quot;Folder List&quot; field is to use
16990 the T command that is available when the &quot;Folder List&quot; line is
16991 highlighted.
16992 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
16993 Current Folder Type is set to &quot;Specific&quot;, and any value that
16994 &quot;Folder List&quot; has is ignored unless the type
16995 is set to &quot;Specific&quot;.
16997 When reading a newsgroup, there may be a performance penalty
16998 incurred when collecting the information necessary to check a Pattern.
16999 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17000 For example, a rule with a Current Folder Type of either
17001 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17002 more slowly when opening a newsgroup.
17004 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17005 for more information on Patterns.
17007 Look <A HREF="h_edit_nav_cmds">here</A>
17008 to see the available Editing and Navigation commands.
17010 &lt;End of help on this topic&gt;
17011 </BODY>
17012 </HTML>
17013 ======= h_config_role_stat_imp =======
17014 <HTML>
17015 <HEAD>
17016 <TITLE>Message Important Status Explained</TITLE>
17017 </HEAD>
17018 <BODY>
17019 <H1>Message Important Status Explained</H1>
17021 This part of the Pattern may have one of three possible values.
17022 The default value is &quot;Don't care&quot;, which matches any message.
17023 The other two values are &quot;Yes&quot;, which means the message must be
17024 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17025 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17026 to be a match.
17028 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17029 for more information on Patterns.
17031 Look <A HREF="h_edit_nav_cmds">here</A>
17032 to see the available Editing and Navigation commands.
17034 &lt;End of help on this topic&gt;
17035 </BODY>
17036 </HTML>
17037 ======= h_config_role_stat_new =======
17038 <HTML>
17039 <HEAD>
17040 <TITLE>Message New Status Explained</TITLE>
17041 </HEAD>
17042 <BODY>
17043 <H1>Message New Status Explained</H1>
17045 This part of the Pattern may have one of three possible values.
17046 The default value is &quot;Don't care&quot;, which matches any message.
17047 The other two values are &quot;Yes&quot;, which means the message must be
17048 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17049 means the message must <EM>not</EM> be &quot;New&quot; in order
17050 to be a match.
17051 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17052 same as <EM>Seen</EM>.
17054 The nomenclature for New and Recent is a bit confusing:
17056 New means that the message is Unseen.
17057 It could have been in your mailbox for a long time but if you haven't looked
17058 at it, it is still considered New.
17059 That matches the default Alpine index display that shows an N for such a
17060 message.
17062 Recent means that the message was added to this folder since the last time
17063 you opened the folder.
17064 Alpine also shows an N by default for these types of messages.
17065 If you were to run two copies of Alpine that opened a folder one right after
17066 the other, a message would only show up as Recent in (at most) the first
17067 Alpine session.
17069 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17070 for more information on Patterns.
17072 Look <A HREF="h_edit_nav_cmds">here</A>
17073 to see the available Editing and Navigation commands.
17075 &lt;End of help on this topic&gt;
17076 </BODY>
17077 </HTML>
17078 ======= h_config_role_stat_recent =======
17079 <HTML>
17080 <HEAD>
17081 <TITLE>Message Recent Status Explained</TITLE>
17082 </HEAD>
17083 <BODY>
17084 <H1>Message Recent Status Explained</H1>
17086 This part of the Pattern may have one of three possible values.
17087 The default value is &quot;Don't care&quot;, which matches any message.
17088 The other two values are &quot;Yes&quot;, which means the message must be
17089 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17090 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17091 to be a match.
17092 &quot;Recent&quot; means that the message was added to the folder since
17093 the last time the folder was opened.
17094 If more than one mail client has the folder opened, the message will
17095 appear to be &quot;Recent&quot; to only one of the clients.
17097 The nomenclature for New and Recent is a bit confusing:
17099 New means that the message is Unseen.
17100 It could have been in your mailbox for a long time but if you haven't looked
17101 at it, it is still considered New.
17102 That matches the default Alpine index display that shows an N for such a
17103 message.
17105 Recent means that the message was added to this folder since the last time
17106 you opened the folder.
17107 Alpine also shows an N by default for these types of messages.
17108 If you were to run two copies of Alpine that opened a folder one right after
17109 the other, a message would only show up as Recent in (at most) the first
17110 Alpine session.
17112 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17113 for more information on Patterns.
17115 Look <A HREF="h_edit_nav_cmds">here</A>
17116 to see the available Editing and Navigation commands.
17118 &lt;End of help on this topic&gt;
17119 </BODY>
17120 </HTML>
17121 ======= h_config_role_stat_del =======
17122 <HTML>
17123 <HEAD>
17124 <TITLE>Message Deleted Status Explained</TITLE>
17125 </HEAD>
17126 <BODY>
17127 <H1>Message Deleted Status Explained</H1>
17129 This part of the Pattern may have one of three possible values.
17130 The default value is &quot;Don't care&quot;, which matches any message.
17131 The other two values are &quot;Yes&quot;, which means the message must be
17132 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17133 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17134 to be a match.
17136 If you are thinking of using this part of the Pattern as a way to prevent
17137 messages from being filtered more than once in a Filter Pattern,
17138 take a look at the Filter Option
17139 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17140 instead.
17141 It should work better than using this field since it will hide the filtered
17142 messages even if they are already Deleted.
17143 That option is at the bottom of the Filter configuration screen.
17145 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17146 for more information on Patterns.
17148 Look <A HREF="h_edit_nav_cmds">here</A>
17149 to see the available Editing and Navigation commands.
17151 &lt;End of help on this topic&gt;
17152 </BODY>
17153 </HTML>
17154 ======= h_config_role_stat_ans =======
17155 <HTML>
17156 <HEAD>
17157 <TITLE>Message Answered Status Explained</TITLE>
17158 </HEAD>
17159 <BODY>
17160 <H1>Message Answered Status Explained</H1>
17162 This part of the Pattern may have one of three possible values.
17163 The default value is &quot;Don't care&quot;, which matches any message.
17164 The other two values are &quot;Yes&quot;, which means the message must be
17165 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17166 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17167 to be a match.
17169 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17170 for more information on Patterns.
17172 Look <A HREF="h_edit_nav_cmds">here</A>
17173 to see the available Editing and Navigation commands.
17175 &lt;End of help on this topic&gt;
17176 </BODY>
17177 </HTML>
17178 ======= h_config_role_abookfrom =======
17179 <HTML>
17180 <HEAD>
17181 <TITLE>Address in Address Book Explained</TITLE>
17182 </HEAD>
17183 <BODY>
17184 <H1>Address in Address Book Explained</H1>
17186 This option gives you a way to match messages that contain an address
17187 that is in one of your address books.
17188 Only the simple entries in your address books are searched.
17189 Address book distribution lists are ignored!
17191 This part of the Pattern may have one of five possible values.
17192 The default value is &quot;Don't care&quot;, which matches any message.
17193 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17194 from the message must be in at least one of your
17195 address books in order to be a match.
17196 The value &quot;No, not in any address book&quot;
17197 means none of the addresses may
17198 be in any of your address books in order to be a match.
17200 The values &quot;Yes, in specific address books&quot; and
17201 &quot;No, not in any of specific address books&quot; are similar but instead
17202 of depending on all address books you are allowed to give a list of address
17203 books to look in.
17204 Usually this would be a single address book but it may be a
17205 list of address books as well.
17206 For each of these &quot;specific&quot; address book options you Select which
17207 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17208 name (or list of names) of the address book in the
17209 &quot;Abook List&quot; field.
17210 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17211 The easiest way to fill in the Abook List field it to use
17212 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17213 line is highlighted.
17214 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17215 option is set to one of the two &quot;Specific&quot;, values.
17217 The addresses from the message that are checked for are determined by the
17218 setting you have for &quot;Types of addresses to check for in address book&quot;.
17219 If you set this to &quot;From&quot; the From address from the message will
17220 be looked up in the address book.
17221 If you set it to &quot;To&quot; instead then the To addresses will be used.
17222 If any of the To addresses are in the address book then it is considered
17223 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17224 You could set it to both From and To, in which case all of the From and To
17225 addresses are used.
17226 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17227 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17228 exists or the From address if there is no Reply-To address.
17229 Same for the Sender address.
17231 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17232 for more information on Patterns.
17234 Look <A HREF="h_edit_nav_cmds">here</A>
17235 to see the available Editing and Navigation commands.
17237 &lt;End of help on this topic&gt;
17238 </BODY>
17239 </HTML>
17240 ======= h_config_inabook_from =======
17241 <HTML>
17242 <HEAD>
17243 <TITLE>From</TITLE>
17244 </HEAD>
17245 <BODY>
17246 <H1>From</H1>
17248 Setting the From line will cause the address from the From header line
17249 of the message to be checked for in the address book.
17251 &lt;End of help on this topic&gt;
17252 </BODY>
17253 </HTML>
17254 ======= h_config_inabook_replyto =======
17255 <HTML>
17256 <HEAD>
17257 <TITLE>Reply-To</TITLE>
17258 </HEAD>
17259 <BODY>
17260 <H1>Reply-To</H1>
17262 Setting the Reply-To line will cause the address from the Reply-To header line
17263 of the message to be checked for in the address book.
17264 However, if there is no Reply-To header line in the message the From header
17265 line will be used instead.
17266 We understand this is dumb but we don't have an easy way around it.
17268 &lt;End of help on this topic&gt;
17269 </BODY>
17270 </HTML>
17271 ======= h_config_inabook_sender =======
17272 <HTML>
17273 <HEAD>
17274 <TITLE>Sender</TITLE>
17275 </HEAD>
17276 <BODY>
17277 <H1>Sender</H1>
17279 Setting the Sender line will cause the address from the Sender header line
17280 of the message to be checked for in the address book.
17281 However, if there is no Sender header line in the message the From header
17282 line will be used instead.
17283 We understand this is dumb but we don't have an easy way around it.
17285 &lt;End of help on this topic&gt;
17286 </BODY>
17287 </HTML>
17288 ======= h_config_inabook_to =======
17289 <HTML>
17290 <HEAD>
17291 <TITLE>To</TITLE>
17292 </HEAD>
17293 <BODY>
17294 <H1>To</H1>
17296 Setting the To line will cause the address from the To header line
17297 of the message to be checked for in the address book.
17299 &lt;End of help on this topic&gt;
17300 </BODY>
17301 </HTML>
17302 ======= h_config_inabook_cc =======
17303 <HTML>
17304 <HEAD>
17305 <TITLE>CC</TITLE>
17306 </HEAD>
17307 <BODY>
17308 <H1>CC</H1>
17310 Setting the CC line will cause the address from the CC header line
17311 of the message to be checked for in the address book.
17313 &lt;End of help on this topic&gt;
17314 </BODY>
17315 </HTML>
17316 ======= h_config_role_stat_8bitsubj =======
17317 <HTML>
17318 <HEAD>
17319 <TITLE>Raw 8-bit in Subject Explained</TITLE>
17320 </HEAD>
17321 <BODY>
17322 <H1>Raw 8-bit in Subject Explained</H1>
17324 It seems that lots of unwanted email contains unencoded 8-bit characters
17325 in the Subject.
17326 Normally, characters with the 8th bit set are not allowed in the Subject
17327 header unless they are MIME-encoded.
17328 This option gives you a way to match messages that have Subjects that
17329 contain unencoded 8-bit characters.
17331 This part of the Pattern may have one of three possible values.
17332 The default value is &quot;Don't care&quot;, which matches any message.
17333 The other two values are &quot;Yes&quot;, which means the Subject of
17334 the message must contain unencoded 8-bit characters (characters with the
17335 most significant bit set)
17336 in order to be a match; or &quot;No&quot;, which
17337 means the Subject must <EM>not</EM>
17338 contain unencoded 8-bit characters in order to be a match.
17340 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17341 for more information on Patterns.
17343 Look <A HREF="h_edit_nav_cmds">here</A>
17344 to see the available Editing and Navigation commands.
17346 &lt;End of help on this topic&gt;
17347 </BODY>
17348 </HTML>
17349 ======= h_config_role_bom =======
17350 <HTML>
17351 <HEAD>
17352 <TITLE>Beginning of Month</TITLE>
17353 </HEAD>
17354 <BODY>
17355 <H1>Beginning of Month</H1>
17357 This option gives you a limited ability to take different actions depending on whether
17358 this is the first time Alpine has been run this month or not.
17359 Though it would be nice to have such an option available, this is not the
17360 same as whether or not this is the first time a paricular folder has been
17361 opened this month.
17362 If you want some action (probably Filtering) to take place in a folder each
17363 month, then you will need to be sure that the folder is opened during the
17364 first Alpine session of the month in order for this option to be helpful.
17366 This part of the Pattern may have one of three possible values.
17367 The default value is &quot;Don't care&quot;, which matches any message.
17368 The other two values are &quot;Yes&quot;, which means this is the first
17369 time Alpine has been run this month;
17370 or &quot;No&quot;, which
17371 means this is not the first time Alpine has been run this month.
17373 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17374 for more information on Patterns.
17376 Here are some technical details.
17377 The way that Alpine decides if it is the beginning of the month or not is
17378 to compare today's date with the date stored in the
17379 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17380 variable in the config file.
17381 If the month of today's date is later than the month stored in the variable,
17382 then this is considered to be the first time you have run Alpine this month, and
17383 that turns the Beginning of the Month option on.
17385 Look <A HREF="h_edit_nav_cmds">here</A>
17386 to see the available Editing and Navigation commands.
17388 &lt;End of help on this topic&gt;
17389 </BODY>
17390 </HTML>
17391 ======= h_config_role_boy =======
17392 <HTML>
17393 <HEAD>
17394 <TITLE>Beginning of Year</TITLE>
17395 </HEAD>
17396 <BODY>
17397 <H1>Beginning of Year</H1>
17399 This option gives you a limited ability to take different actions depending on whether
17400 this is the first time Alpine has been run this year or not.
17401 Though it would be nice to have such an option available, this is not the
17402 same as whether or not this is the first time a paricular folder has been
17403 opened this year.
17404 If you want some action (probably Filtering) to take place in a folder each
17405 year, then you will need to be sure that the folder is opened during the
17406 first Alpine session of the year in order for this option to be helpful.
17408 This part of the Pattern may have one of three possible values.
17409 The default value is &quot;Don't care&quot;, which matches any message.
17410 The other two values are &quot;Yes&quot;, which means this is the first
17411 time Alpine has been run this year;
17412 or &quot;No&quot;, which
17413 means this is not the first time Alpine has been run this year.
17415 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17416 for more information on Patterns.
17418 Here are some technical details.
17419 The way that Alpine decides if it is the beginning of the year or not is
17420 to compare today's date with the date stored in the
17421 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
17422 variable in the config file.
17423 If the year of today's date is later than the year stored in the variable,
17424 then this is considered to be the first time you have run Alpine this year, and
17425 that turns the Beginning of the Year option on.
17427 Look <A HREF="h_edit_nav_cmds">here</A>
17428 to see the available Editing and Navigation commands.
17430 &lt;End of help on this topic&gt;
17431 </BODY>
17432 </HTML>
17433 ======= h_config_role_inick =======
17434 <HTML>
17435 <HEAD>
17436 <TITLE>Initialize Values From Role Explained</TITLE>
17437 </HEAD>
17438 <BODY>
17439 <H1>Initialize Values From Role Explained</H1>
17441 This is a power user feature.
17442 You will usually want to leave this field empty.
17443 The value of this field is the nickname of another one of your roles.
17444 The Action values from that other role
17445 are used as the initial values of the Action items for this role.
17446 If you put something in any of the action fields for this role, that will
17447 override whatever was in the corresponding field of the initializer role.
17449 You might use this field if the &quot;Action&quot; part of one of your roles
17450 is something you want to use in more than one role.
17451 Instead of filling in those action values again for each role, you
17452 may give the nickname of the role where the values are filled in.
17453 It's just a shortcut way to define Role Actions.
17455 Here's an example to help explain how this works.
17456 Suppose you have a role with nickname &quot;role1&quot; and role1 has
17457 (among other things)
17459 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
17461 set.
17462 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
17463 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
17464 from role1 by default (and any of the other inheritable action values
17465 that are set).
17466 So if role2 had
17468 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
17470 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
17471 However, if role2 had
17473 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
17475 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
17477 If you wish,
17478 you may choose a nickname from your list of roles by using the
17479 &quot;T&quot; command.
17480 If the role you are using to initialize also has a role it initializes from,
17481 then that initialization happens first.
17482 That is, inheritance works as expected with the grandparent and
17483 great-grandparent (and so on) roles having the expected effect.
17485 Look <A HREF="h_edit_nav_cmds">here</A>
17486 to see the available Editing and Navigation commands.
17488 &lt;End of help on this topic&gt;
17489 </BODY>
17490 </HTML>
17491 ======= h_config_role_setfrom =======
17492 <HTML>
17493 <HEAD>
17494 <TITLE>Set From Explained</TITLE>
17495 </HEAD>
17496 <BODY>
17497 <H1>Set From Explained</H1>
17499 This describes part of the action to be taken if the Pattern for this
17500 role is a match.
17501 This field consists of a single address that will be used as the From
17502 address on the message you are sending.
17503 This should be a fully-qualified address like
17505 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17507 or just
17509 <CENTER><SAMP>user@domain</SAMP></CENTER>
17511 If you wish,
17512 you may choose an address from your address book with the
17513 &quot;T&quot; command.
17515 If this is left blank, then your normal From address will be used.
17517 You may also find it useful to add the changed From address to the
17518 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
17519 configuration option.
17521 Look <A HREF="h_edit_nav_cmds">here</A>
17522 to see the available Editing and Navigation commands.
17524 &lt;End of help on this topic&gt;
17525 </BODY>
17526 </HTML>
17527 ======= h_config_role_setreplyto =======
17528 <HTML>
17529 <HEAD>
17530 <TITLE>Set Reply-To Explained</TITLE>
17531 </HEAD>
17532 <BODY>
17533 <H1>Set Reply-To Explained</H1>
17535 This describes part of the action to be taken if the Pattern for this
17536 role is a match.
17537 This field consists of a single address that will be used as the Reply-To
17538 address on the message you are sending.
17539 This may be a fully-qualified address like
17541 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
17543 or just
17545 <CENTER><SAMP>user@domain</SAMP></CENTER>
17547 If you wish,
17548 you may choose an address from your address book with the
17549 &quot;T&quot; command.
17551 If this is left blank, then there won't be a Reply-To address unless
17552 you have configured one specially with the
17553 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
17554 configuration option.
17556 Look <A HREF="h_edit_nav_cmds">here</A>
17557 to see the available Editing and Navigation commands.
17559 &lt;End of help on this topic&gt;
17560 </BODY>
17561 </HTML>
17562 ======= h_config_role_setfcc =======
17563 <HTML>
17564 <HEAD>
17565 <TITLE>Set Fcc Explained</TITLE>
17566 </HEAD>
17567 <BODY>
17568 <H1>Set Fcc Explained</H1>
17570 This describes part of the action to be taken if the Pattern for this
17571 role is a match.
17572 This field consists of a single folder name that will be used in
17573 the Fcc field of the message you are sending.
17574 You may put anything here that you would normally type into the Fcc
17575 field from the composer.
17577 In addition, an fcc of &quot;&quot; (two double quotation marks) means
17578 no Fcc.
17580 A blank field here means that Alpine will use its normal rules for deciding
17581 the default value of the Fcc field.
17582 For many roles, perhaps most, it may make more sense for you to use the
17583 other Alpine facilities for setting the Fcc.
17584 In particular, if you want the Fcc to depend on who you are sending the
17585 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
17586 is probably more useful.
17587 In that case, you would want to leave the Fcc field here blank.
17588 However, if you have a role that depends on who the message you are replying
17589 to was From, or what address that message was sent to;
17590 then it might make sense to set the Fcc for that role here.
17592 If you wish,
17593 you may choose a folder from your folder collections by using the
17594 &quot;T&quot; command.
17596 Look <A HREF="h_edit_nav_cmds">here</A>
17597 to see the available Editing and Navigation commands.
17599 &lt;End of help on this topic&gt;
17600 </BODY>
17601 </HTML>
17602 ======= h_config_role_usesmtp =======
17603 <HTML>
17604 <HEAD>
17605 <TITLE>Use SMTP Server Explained</TITLE>
17606 </HEAD>
17607 <BODY>
17608 <H1>Use SMTP Server Explained</H1>
17610 This describes part of the action to be taken if the Pattern for this
17611 role is a match.
17612 If this field has a value, then it will be used as the SMTP server
17613 to send mail when this role is being used (unless the SMTP server variable
17614 is set in the system-wide fixed configuration file).
17615 It has the same semantics as the
17616 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
17617 variable in the Setup/Config screen.
17619 If you are using this to post from home when you are at home and from
17620 work when you are at work you need to be careful about postponing messages.
17621 When you postpone a composition that was using a role with this variable
17622 set, the SMTP server list will be saved
17623 with the postponed composition.
17624 It cannot be changed later.
17625 Because of this, you may want to make this a list of SMTP servers
17626 with the preferred server at the front of the list and alternate servers
17627 later in the list.
17628 In your &quot;Home&quot; role you would put the home SMTP server first and
17629 the work SMTP server last.
17630 In your &quot;Work&quot; role you would put the work SMTP server first and
17631 the home SMTP server last.
17632 Then if you start a composition as &quot;Work&quot;, postpone
17633 it, and then later resume it from home the work SMTP server will fail but
17634 the home SMTP server later in the list will succeed.
17636 You may be able to simplify things by making the regular
17637 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
17638 variable in the Setup/Config screen a list instead of using roles
17639 to set the SMTP server.
17642 Look <A HREF="h_edit_nav_cmds">here</A>
17643 to see the available Editing and Navigation commands.
17645 &lt;End of help on this topic&gt;
17646 </BODY>
17647 </HTML>
17648 ======= h_config_role_usenntp =======
17649 <HTML>
17650 <HEAD>
17651 <TITLE>Use NNTP Server Explained</TITLE>
17652 </HEAD>
17653 <BODY>
17654 <H1>Use NNTP Server Explained</H1>
17656 This describes part of the action to be taken if the Pattern for this
17657 role is a match.
17658 If this field has a value, then it will be used as the NNTP server
17659 to post to newsgroups when this role is being used (unless the NNTP server
17660 variable
17661 is set in the system-wide fixed configuration file).
17662 It has the same semantics as the
17663 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
17664 variable in the Setup/Config screen.
17666 This role setting can facilitate posting to the right nntp server for someone
17667 who reads news from various news sources.  The feature
17668 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
17669 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
17670 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
17671 nntp servers for roles may be more desirable for some people.
17673 If you are using this to post from home when you are at home and from
17674 work when you are at work you need to be careful about postponing messages.
17675 When you postpone a composition that was using a role with this variable
17676 set, the NNTP server list will be saved
17677 with the postponed composition.
17678 It cannot be changed later.
17679 Because of this, you may want to make this a list of NNTP servers
17680 with the preferred server at the front of the list and alternate servers
17681 later in the list.
17682 In your &quot;Home&quot; role you would put the home NNTP server first and
17683 the work NNTP server last.
17684 In your &quot;Work&quot; role you would put the work NNTP server first and
17685 the home NNTP server last.
17686 Then if you start a composition as &quot;Work&quot;, postpone
17687 it, and then later resume it from home the work NNTP server will fail but
17688 the home NNTP server later in the list will succeed.
17690 You may be able to simplify things by making the regular
17691 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
17692 variable in the Setup/Config screen a list instead of using roles
17693 to set the NNTP server.
17696 Look <A HREF="h_edit_nav_cmds">here</A>
17697 to see the available Editing and Navigation commands.
17699 &lt;End of help on this topic&gt;
17700 </BODY>
17701 </HTML>
17702 ======= h_config_role_setotherhdr =======
17703 <HTML>
17704 <HEAD>
17705 <TITLE>Set Other Headers Explained</TITLE>
17706 </HEAD>
17707 <BODY>
17708 <H1>Set Other Headers Explained</H1>
17710 This describes part of the action to be taken if the Pattern for this
17711 role is a match.
17712 This field gives you a way to set values for headers besides
17713 &quot;From&quot; and &quot;Reply-To&quot;.
17714 If you want to set either of those, use the specific
17715 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
17717 This field is similar to the
17718 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
17719 Each header you specify here must include the header tag 
17720 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
17721 and may optionally include a value for that header.
17722 In order to see these headers when you compose using this role you 
17723 must use the rich header
17724 <!--chtml if pinemode="function_key"-->(F5)
17725 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
17726 Here's an example that shows how you might set the To address.
17728 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
17730 Headers set in this way are different from headers set with the
17731 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
17732 will replace any value that already exists.
17733 For example, if you are Replying to a message there will already be at
17734 least one address in the To header (the address you are Replying to).
17735 However, if you Reply using a role that sets the To header, that role's
17736 To header value will be used instead.
17738 Limitation: Because commas are used to separate the list of
17739 Other Headers, it is not possible to have the value of a
17740 header contain a comma;
17741 nor is there currently an &quot;escape&quot; mechanism provided
17742 to make this work.
17744 Look <A HREF="h_edit_nav_cmds">here</A>
17745 to see the available Editing and Navigation commands.
17747 &lt;End of help on this topic&gt;
17748 </BODY>
17749 </HTML>
17750 ======= h_config_role_setlitsig =======
17751 <HTML>
17752 <HEAD>
17753 <TITLE>Set Literal Signature Explained</TITLE>
17754 </HEAD>
17755 <BODY>
17756 <H1>Set Literal Signature Explained</H1>
17758 This describes part of the action to be taken if the Pattern for this
17759 role is a match.
17760 This field contains the actual text for your signature, as opposed to
17761 the name of a file containing your signature.
17762 If this is defined it takes precedence over any value set in the
17763 &quot;Set Signature&quot; field.
17765 This is simply a different way to store the signature.
17766 The signature is stored inside your Alpine configuration file instead of in
17767 a separate file.
17768 Tokens work the same way they do with
17769 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
17770 help text there for more information.
17773 The two character sequence &#92;n (backslash followed by
17774 the character n) will be used to signify a line-break in your signature.
17775 You don't have to enter the &#92;n, but it will be visible in the
17776 CHANGE THIS ROLE RULE window after you are done editing the signature.
17778 Look <A HREF="h_edit_nav_cmds">here</A>
17779 to see the available Editing and Navigation commands.
17781 &lt;End of help on this topic&gt;
17782 </BODY>
17783 </HTML>
17784 ======= h_config_role_setsig =======
17785 <HTML>
17786 <HEAD>
17787 <TITLE>Set Signature Explained</TITLE>
17788 </HEAD>
17789 <BODY>
17790 <H1>Set Signature Explained</H1>
17792 This describes part of the action to be taken if the Pattern for this
17793 role is a match.
17795 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
17796 option from Setup/Config
17797 or the &quot;Set LiteralSig&quot; option for this role are defined,
17798 then this option will be ignored.
17799 You can tell that that is the case because the value of this
17800 option will show up as
17802 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
17804 You may either use all Literal Signatures (signatures stored in your
17805 configuration file) throughout Alpine, or all signature files.
17806 You can't mix the two.
17808 This field consists of a filename that will be used as the signature
17809 file when using this role.
17811 If the filename is followed by a vertical bar (|) then instead
17812 of reading the contents of the file the file is assumed to be a
17813 program that will produce the text to be used on its standard output.
17814 The program can't have any arguments and doesn't receive any input from Alpine,
17815 but the rest of the processing works as if the contents came from a file.
17817 Instead of storing the data in a local file, the
17818 signature data may be stored remotely in an IMAP folder.
17819 In order to do this, 
17820 you must use a remote name for the signature.
17821 A remote signature name might look like:
17823 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
17826 The syntax used here is the same as the syntax used for a remote
17827 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
17828 Note that you may not access an existing signature file remotely,
17829 you have to create a new <EM>folder</EM> that contains the signature data.
17830 If the name you use here for the signature data is a remote name, then when
17831 you edit the file using the &quot;F&quot; command the data will
17832 be saved remotely in the folder.
17833 You aren't required to do anything special to create the folder, it
17834 gets created if you use a remote name.
17837 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
17838 the name of the file) you have specified.
17839 If you type &quot;T&quot; you may use a browser to choose an existing filename.
17841 Besides containing regular text, a signature file may also
17842 contain (or a signature program may produce) tokens that are replaced with text
17843 that depends on the message you are replying to or forwarding.
17844 The tokens all look like _word_ (a word surrounded by underscores).
17845 For example, if the token
17847 <CENTER><SAMP>_DATE_</SAMP></CENTER>
17849 is included in the text of the signature file, then when you reply to
17850 or forward a message, the token will be replaced with the actual date
17851 the message you are replying to or forwarding was sent.
17853 If you use a role that has a signature file for a plain composition
17854 (that is, not a reply or forward) then there is no original message, so
17855 any tokens that depend on the message will be replaced with nothing.
17856 So if you want a signature file to be useful for new compositions it
17857 shouldn't include any of the tokens that depend on the message being
17858 replied to or forwarded.
17860 The list of available tokens is
17861 <A HREF="h_index_tokens">here</A>.
17863 Actually, for the adventurous, there is a way to conditionally include text based
17864 on whether or not a token would result in specific replacement text.
17865 For example, you could include some text based on whether or not
17866 the _NEWS_ token would result in any newsgroups if it was used.
17867 It's explained in detail
17868 <A HREF="h_reply_token_conditionals">here</A>.
17870 In the very unlikely event that you want to include a literal token in
17871 a signature file, you must precede it with a backslash character.
17872 For example, to include the literal text _DATE_ you must actually use
17873 &#92;_DATE_.
17874 It is not possible to have a literal backslash followed by an expanded token.
17876 A blank field here means that Alpine will use its normal rules for deciding
17877 which file (if any) to use for the signature file.
17879 An alternate method for storing the signature is available in
17880 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
17882 Look <A HREF="h_edit_nav_cmds">here</A>
17883 to see the available Editing and Navigation commands.
17885 &lt;End of help on this topic&gt;
17886 </BODY>
17887 </HTML>
17888 ======= h_config_role_settempl =======
17889 <HTML>
17890 <HEAD>
17891 <TITLE>Set Template Explained</TITLE>
17892 </HEAD>
17893 <BODY>
17894 <H1>Set Template Explained</H1>
17896 This describes part of the action to be taken if the Pattern for this
17897 role is a match.
17898 This field consists of a filename that will be used as the template
17899 file when using this role.
17900 The template file is a file that is included at the top of the message you
17901 are composing.
17903 If the filename is followed by a vertical bar (|) then instead
17904 of reading the contents of the file the file is assumed to be a
17905 program that will produce the text to be used on its standard output.
17906 The program can't have any arguments and doesn't receive any input from Alpine,
17907 but the rest of the processing works as if the contents came from a file.
17909 Instead of storing the data in a local file, the
17910 template may be stored remotely in an IMAP folder.
17911 In order to do this, 
17912 you must use a remote name for the template.
17913 A remote template name might look like:
17915 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
17918 The syntax used here is the same as the syntax used for a remote
17919 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
17920 Note that you may not access an existing template file remotely,
17921 you have to create a new <EM>folder</EM> that contains the template data.
17922 If the name you use here for the template is a remote name, then when
17923 you edit the file using the &quot;F&quot; command the data will
17924 be saved remotely in the folder.
17925 You aren't required to do anything special to create the folder, it
17926 gets created if you use a remote name.
17928 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
17929 the name of the file) you have specified.
17930 If you type &quot;T&quot; you may use a browser to choose an existing filename.
17932 Besides containing regular text, the template file may also
17933 contain (or a template file program may produce) tokens that are replaced with text
17934 that depends on the message you are replying to or forwarding.
17935 The tokens all look like _word_ (a word surrounded by underscores).
17936 For example, if the token
17938 <CENTER><SAMP>_DATE_</SAMP></CENTER>
17940 is included in the text of the template file, then when you reply to
17941 or forward a message, the token will be replaced with the actual date
17942 the message you are replying to or forwarding was sent.
17944 If you use a role that has a template file for a plain composition
17945 (that is, not a reply or forward) then there is no original message, so
17946 any tokens that depend on the message will be replaced with nothing.
17947 So if you want a template file to be useful for new compositions it
17948 shouldn't include any of the tokens that depend on the message being
17949 replied to or forwarded.
17951 The list of available tokens is
17952 <A HREF="h_index_tokens">here</A>.
17954 Actually, for the adventurous, there is a way to conditionally include text based
17955 on whether or not a token would result in specific replacement text.
17956 For example, you could include some text based on whether or not
17957 the _NEWS_ token would result in any newsgroups if it was used.
17958 It's explained in detail
17959 <A HREF="h_reply_token_conditionals">here</A>.
17961 In the very unlikely event that you want to include a literal token in
17962 a template file, you must precede it with a backslash character.
17963 For example, to include the literal text _DATE_ you must actually use
17964 &#92;_DATE_.
17965 It is not possible to have a literal backslash followed by an expanded token.
17967 A blank template field means that Alpine will not use a template file when
17968 this role is being used.
17970 Look <A HREF="h_edit_nav_cmds">here</A>
17971 to see the available Editing and Navigation commands.
17973 &lt;End of help on this topic&gt;
17974 </BODY>
17975 </HTML>
17976 ======= h_config_filt_stat_imp =======
17977 <HTML>
17978 <HEAD>
17979 <TITLE>Set Important Status Explained</TITLE>
17980 </HEAD>
17981 <BODY>
17982 <H1>Set Important Status Explained</H1>
17984 This describes part of the action to be taken if the Pattern for this
17985 filter is a match.
17986 If set to &quot;Don't change it&quot; then this does nothing.
17987 If set to &quot;Set this state&quot; then the Important flag is set
17988 for the matching message.
17989 If set to &quot;Clear this state&quot; then the Important flag is cleared
17990 for the matching message.
17991 The important flag usually causes an asterisk to show up in the MESSAGE
17992 INDEX.
17993 It may also be useful when selecting a set of messages
17994 with the Select command.
17996 Look <A HREF="h_edit_nav_cmds">here</A>
17997 to see the available Editing and Navigation commands.
17999 &lt;End of help on this topic&gt;
18000 </BODY>
18001 </HTML>
18002 ======= h_config_filt_stat_new =======
18003 <HTML>
18004 <HEAD>
18005 <TITLE>Set New Status Explained</TITLE>
18006 </HEAD>
18007 <BODY>
18008 <H1>Set New Status Explained</H1>
18010 This describes part of the action to be taken if the Pattern for this
18011 filter is a match.
18012 If set to &quot;Don't change it&quot; then this does nothing.
18013 If set to &quot;Set this state&quot; then the
18014 matching message is marked New.
18015 If set to &quot;Clear this state&quot; then the
18016 matching message is marked Seen.
18018 Look <A HREF="h_edit_nav_cmds">here</A>
18019 to see the available Editing and Navigation commands.
18021 &lt;End of help on this topic&gt;
18022 </BODY>
18023 </HTML>
18024 ======= h_config_filt_stat_ans =======
18025 <HTML>
18026 <HEAD>
18027 <TITLE>Set Answered Status Explained</TITLE>
18028 </HEAD>
18029 <BODY>
18030 <H1>Set Answered Status Explained</H1>
18032 This describes part of the action to be taken if the Pattern for this
18033 filter is a match.
18034 If set to &quot;Don't change it&quot; then this does nothing.
18035 If set to &quot;Set this state&quot; then the Answered flag is set
18036 for the matching message.
18037 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18038 for the matching message.
18040 Look <A HREF="h_edit_nav_cmds">here</A>
18041 to see the available Editing and Navigation commands.
18043 &lt;End of help on this topic&gt;
18044 </BODY>
18045 </HTML>
18046 ======= h_config_filt_stat_del =======
18047 <HTML>
18048 <HEAD>
18049 <TITLE>Set Deleted Status Explained</TITLE>
18050 </HEAD>
18051 <BODY>
18052 <H1>Set Deleted Status Explained</H1>
18054 This describes part of the action to be taken if the Pattern for this
18055 filter is a match.
18056 If set to &quot;Don't change it&quot; then this does nothing.
18057 If set to &quot;Set this state&quot; then the
18058 matching message is marked Deleted.
18059 If set to &quot;Clear this state&quot; then the
18060 matching message is marked UnDeleted.
18062 You should not use this option unless you are prepared to have matching
18063 messages expunged from the folder permanently.
18064 For example, if you type the Expunge command, this filter is applied
18065 before the expunge, so matching messages will be marked Deleted and then
18066 will be permanently expunged from the folder.
18067 However, since the index isn't redrawn in between the time that the message
18068 is marked Deleted and the time that you are asked to expunge, the only
18069 indication that you are expunging the message comes in the number of messages
18070 being expunged.
18071 The same thing may happen when you close a folder.
18072 It is also possible that an expunge not initiated by you will
18073 delete matching messages.
18075 Look <A HREF="h_edit_nav_cmds">here</A>
18076 to see the available Editing and Navigation commands.
18078 &lt;End of help on this topic&gt;
18079 </BODY>
18080 </HTML>
18081 ======= h_config_role_scoreval =======
18082 <HTML>
18083 <HEAD>
18084 <TITLE>Score Value Explained</TITLE>
18085 </HEAD>
18086 <BODY>
18087 <H1>Score Value Explained</H1>
18089 A message's score is the sum of the Score Values from all of the Scoring rules
18090 with Patterns that match the message.
18091 The value you give here is the Score Value associated with this rule.
18092 A Score Value is an integer between -100 and 100, with the default
18093 value of zero.
18095 Alternatively, if the
18096 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18097 field is defined
18098 (on the line right below the &quot;Score Value&quot; field)
18099 then the &quot;Score Value&quot; is ignored and
18100 the &quot;Score From Header&quot; field is used instead.
18102 Look <A HREF="h_edit_nav_cmds">here</A>
18103 to see the available Editing and Navigation commands.
18105 &lt;End of help on this topic&gt;
18106 </BODY>
18107 </HTML>
18108 ======= h_config_role_scorehdrtok =======
18109 <HTML>
18110 <HEAD>
18111 <TITLE>Score Value From Header Explained</TITLE>
18112 </HEAD>
18113 <BODY>
18114 <H1>Score Value From Header Explained</H1>
18116 This option provides a way to use a number that appears in the headers of your
18117 messages as the message's score, or as a component of that score.
18118 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18119 The idea behind this option is that there may be a score embedded in the
18120 headers of messages that has already been calculated outside of Alpine.
18121 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18122 somewhere in that header there is a score.
18124 The value for this option is the name of the header followed by parentheses
18125 with two arguments inside:
18127 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18129 No space is allowed between the comma and the start of the field_separators.
18130 It would be interpreted as the first separator if it was there.
18131 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18132 starts after that and goes to the second separator, and so on.
18133 It's easier to explain with examples.
18135 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18137 In the above example the header that is used is the &quot;X-Spam&quot; header.
18138 The value of that header (the part after the colon and the space) is split
18139 into fields separated by spaces.
18141 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18143 The second field is selected and converted to an integer. It only makes sense
18144 if Field2 really is an integer.
18146 Here's an example of a SpamAssassin header.
18147 The exact look of the header will vary, but if your incoming mail
18148 contains headers that look like the following
18150 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18152 you might want to use the hits value as a score.
18153 Since the score is an integer value you can't make use of the decimal part of
18154 the number, but
18155 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18156 and &quot;.&quot; as your separators.
18158 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18160 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18161 hits.
18162 The second field is &quot;10&quot; so the score value would be 10.
18164 Another example we've seen has headers that look like
18166 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18168 Because there are two equals before the 7% the value
18170 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18172 should capture the probability as the score.
18174 The Score From Header scoring value actually works just like the
18175 regular Score Value in that the rest of the pattern has to match before
18176 it is used and the scores from all the different scoring rules that
18177 match for a particular message are added together.
18178 When using the Score From Header method it may (or may not) make sense to
18179 use only a single scoring rule with a pattern that matches every message.
18181 Look <A HREF="h_edit_nav_cmds">here</A>
18182 to see the available Editing and Navigation commands.
18184 &lt;End of help on this topic&gt;
18185 </BODY>
18186 </HTML>
18187 ======= h_config_role_replyuse =======
18188 <HTML>
18189 <HEAD>
18190 <TITLE>Reply Use Explained</TITLE>
18191 </HEAD>
18192 <BODY>
18193 <H1>Reply Use Explained</H1>
18195 This option determines how this particular role will be used when Replying
18196 to a message.
18197 There are three possible values for this option.
18198 The value &quot;Never&quot;
18199 means that this role will not be a candidate for use when Replying.
18200 The role's Pattern will not be checked for a match, however the role will
18201 be available to be manually switched to if there is a confirmation prompt.
18204 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18205 mean that you do want to consider this role when Replying.
18206 For either of these settings, the role's Pattern will be compared with
18207 the message being replied to.
18208 If there is a match then this role will either be used without confirmation
18209 or will be the default when confirmation is asked for, depending on
18210 which of the two options is selected.
18211 If confirmation is requested, you will also have a chance to
18212 manually change the role to any one of your other roles.
18215 You won't be prompted for confirmation if none of your role Patterns
18216 match the message being replied to.
18217 This is independent of the value of the current option.
18218 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18219 feature may be used to change this behavior.
18221 &lt;End of help on this topic&gt;
18222 </BODY>
18223 </HTML>
18224 ======= h_config_role_forwarduse =======
18225 <HTML>
18226 <HEAD>
18227 <TITLE>Forward Use Explained</TITLE>
18228 </HEAD>
18229 <BODY>
18230 <H1>Forward Use Explained</H1>
18232 This option determines how this particular role will be used when Forwarding
18233 a message.
18234 There are three possible values for this option.
18235 The value &quot;Never&quot;
18236 means that this role will not be a candidate for use when Forwarding.
18237 The role's Pattern will not be checked for a match, however the role will
18238 be available to be manually switched to if there is a confirmation prompt.
18241 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18242 mean that you do want to consider this role when Forwarding.
18243 For either of these settings, the role's Pattern will be compared with
18244 the message being forwarded.
18245 If there is a match then this role will either be used without confirmation
18246 or will be the default when confirmation is asked for, depending on
18247 which of the two options is selected.
18248 If confirmation is requested, you will also have a chance to
18249 manually change the role to any one of your other roles.
18252 You won't be prompted for confirmation if none of your role Patterns
18253 match the message being forwarded.
18254 This is independent of the value of the current option.
18255 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18256 feature may be used to change this behavior.
18258 &lt;End of help on this topic&gt;
18259 </BODY>
18260 </HTML>
18261 ======= h_config_role_composeuse =======
18262 <HTML>
18263 <HEAD>
18264 <TITLE>Compose Use Explained</TITLE>
18265 </HEAD>
18266 <BODY>
18267 <H1>Compose Use Explained</H1>
18269 This option determines how this particular role will be used when Composing
18270 a new message using the &quot;Compose&quot; command.
18271 This does not affect what happens when using the &quot;Role&quot; command
18272 to compose a new message.
18273 The &quot;Role&quot; command allows you to select a role from all of the
18274 roles you have defined, regardless of what Uses you've assigned to those
18275 roles.
18278 There are three possible values for this option.
18279 The value &quot;Never&quot;
18280 means that this role will not be a candidate for use when Composing.
18281 The role's Current Folder Type will not be checked for a match, however the role
18282 will be available to be manually switched to if there is a confirmation prompt.
18285 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18286 mean that you do want to consider this role when Composing.
18287 For either of these settings,
18288 the role's Current Folder Type will be checked (since there is no message
18289 to compare with, the rest of the Pattern is considered a match).
18290 If there is a match then this role will either be used without confirmation
18291 or will be the default when confirmation is asked for, depending on
18292 which of the two options is selected.
18293 If confirmation is requested, you will also have a chance to
18294 manually change the role to any one of your other roles.
18297 When using the Compose command the role checking is a little different
18298 because there is no message being replied to or forwarded.
18299 Because of this the Current Folder Type is checked but the header pattern
18300 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18301 A role is considered to be a match if it is a candidate for Compose Use and
18302 its Current Folder Type matches the currently open folder.
18303 This could be useful if you want to set a role based on the folder you
18304 are reading, or the type of folder you are reading.
18307 You won't be prompted for confirmation if none of your role Patterns
18308 are a match.
18309 This is independent of the value of the current option.
18310 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18311 feature may be used to change this behavior.
18313 &lt;End of help on this topic&gt;
18314 </BODY>
18315 </HTML>
18316 ======= h_config_filter_folder =======
18317 <HTML>
18318 <HEAD>
18319 <TITLE>Filter Folder Explained</TITLE>
18320 </HEAD>
18321 <BODY>
18322 <H1>Filter Folder Explained</H1>
18324 When the Filter Action is set to &quot;Move&quot;,
18325 the folder or folders specified here will be used to store messages matching
18326 the provided pattern.
18329 If you set the Filter Action to &quot;Move&quot; you must give a folder name
18330 here.
18333 If you wish,
18334 you may choose a folder from your folder collections by using the
18335 &quot;T&quot; command.
18337 Besides regular text, the folder name may also contain
18338 tokens that are replaced with text representing the current date
18339 when you run Alpine.
18340 For example, if the folder name you use is
18342 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
18344 that is replaced with something like
18346 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
18350 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
18352 becomes
18354 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
18356 The token names must be surrounded by underscores in order to be recognized
18357 as tokens.
18358 The tokens that may be used are those that are derived from the current date.
18359 They're listed near the bottom of the list of tokens give
18360 <A HREF="h_index_tokens">here</A>.
18362 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18363 for more information on Patterns.
18365 Look <A HREF="h_edit_nav_cmds">here</A>
18366 to see the available Editing and Navigation commands.
18368 &lt;End of help on this topic&gt;
18369 </BODY>
18370 </HTML>
18371 ======= h_config_filter_kw_set =======
18372 <HTML>
18373 <HEAD>
18374 <TITLE>Set These Keywords Explained</TITLE>
18375 </HEAD>
18376 <BODY>
18377 <H1>Set These Keywords Explained</H1>
18379 This describes part of the action to be taken if the Pattern for this
18380 filter is a match.
18381 Read a little about keywords in the help text for the
18382 <A HREF="h_common_flag">Flag</A> command.
18383 This option is a list of keywords that will be Set when there is a match.
18384 If you wish, you may choose keywords from the list of keywords you have
18385 defined with the &quot;T&quot; command.
18386 You may add new keywords by defining them in the
18387 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18388 If you have given a keyword a nickname when configuring it,
18389 that nickname may be used instead of the actual keyword.
18392 Look <A HREF="h_edit_nav_cmds">here</A>
18393 to see the available Editing and Navigation commands.
18395 &lt;End of help on this topic&gt;
18396 </BODY>
18397 </HTML>
18398 ======= h_config_filter_kw_clr =======
18399 <HTML>
18400 <HEAD>
18401 <TITLE>Clear These Keywords Explained</TITLE>
18402 </HEAD>
18403 <BODY>
18404 <H1>Clear These Keywords Explained</H1>
18406 This describes part of the action to be taken if the Pattern for this
18407 filter is a match.
18408 Read a little about keywords in the help text for the
18409 <A HREF="h_common_flag">Flag</A> command.
18410 This option is a list of keywords that will be Cleared when there is a match.
18411 If you wish, you may choose keywords from the list of keywords you have
18412 defined with the &quot;T&quot; command.
18413 You may add new keywords by defining them in the
18414 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
18415 If you have given a keyword a nickname when configuring it,
18416 that nickname may be used instead of the actual keyword.
18419 Look <A HREF="h_edit_nav_cmds">here</A>
18420 to see the available Editing and Navigation commands.
18422 &lt;End of help on this topic&gt;
18423 </BODY>
18424 </HTML>
18425 ======= h_index_tokens =======
18426 <HTML>
18427 <HEAD>
18428 <TITLE>Tokens for Index and Replying</TITLE>
18429 </HEAD>
18430 <BODY>
18432 This set of special tokens may be used in the
18433 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
18434 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
18435 in signature files,
18436 in template files used in
18437 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
18438 that is the target of a Filter Rule.
18439 Some of them aren't available in all situations.
18441 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
18442 option, but they must be surrounded by underscores for the
18443 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
18444 and in the target of Filter Rules.
18448 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
18450 <DL>
18451 <DT>SUBJECT</DT>
18452 <DD>
18453 This token represents the Subject the sender gave the message.
18454 Alternatives for use in the index screen are
18455 SUBJKEY, SUBJKEYINIT, SUBJECTTEXT, SUBJKEYTEXT, and SUBJKEYINITTEXT.
18456 You may color the subject text in the MESSAGE INDEX screen differently by using the
18457 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
18458 <A HREF="h_config_index_opening_color">Index Opening Color</A>
18459 options available from
18460 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18461 </DD>
18463 <DT>FROM</DT>
18464 <DD>
18465 This token represents the personal name (or email address if the name
18466 is unavailable) of the person specified in the message's &quot;From:&quot;
18467 header field.
18468 You may color the from text in the MESSAGE INDEX screen differently by using the
18469 <A HREF="h_config_index_from_color">Index From Color</A>
18470 option available from
18471 the <A HREF="h_color_setup">Setup Kolor</A> screen.
18472 </DD>
18474 <DT>ADDRESS</DT>
18475 <DD>
18476 This is similar to the &quot;FROM&quot; token, only it is always the
18477 email address, never the personal name.
18478 For example, &quot;mailbox@domain&quot;.
18479 </DD>
18481 <DT>MAILBOX</DT>
18482 <DD>
18483 This is the same as the &quot;ADDRESS&quot; except that the 
18484 domain part of the address is left off.
18485 For example, &quot;mailbox&quot;.
18486 </DD>
18488 <DT>SENDER</DT>
18489 <DD>
18490 This token represents the personal name (or email address) of the person
18491 listed in the message's &quot;Sender:&quot; header field.
18492 </DD>
18494 <DT>TO</DT>
18495 <DD>
18496 This token represents the personal names (or email addresses if the names
18497 are unavailable) of the persons specified in the
18498 message's &quot;To:&quot; header field.
18499 </DD>
18501 <DT>NEWSANDTO</DT>
18502 <DD>
18503 This token represents the newsgroups from the
18504 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18505 the personal names (or email addresses if the names
18506 are unavailable) of the persons specified in the
18507 message's &quot;To:&quot; header field.
18508 </DD>
18510 <DT>TOANDNEWS</DT>
18511 <DD>
18512 Same as &quot;NEWSANDTO&quot; except in the opposite order.
18513 </DD>
18515 <DT>NEWS</DT>
18516 <DD>
18517 This token represents the newsgroups from the
18518 message's &quot;Newsgroups:&quot; header field.
18519 </DD>
18521 <DT>CC</DT>
18522 <DD>
18523 This token represents the personal names (or email addresses if the names
18524 are unavailable) of the persons specified in the
18525 message's &quot;Cc:&quot; header field.
18526 </DD>
18528 <DT>RECIPS</DT>
18529 <DD>
18530 This token represents the personal names (or email addresses if the names
18531 are unavailable) of the persons specified in both the
18532 message's &quot;To:&quot; header field and
18533 the message's &quot;Cc:&quot; header field.
18534 </DD>
18536 <DT>NEWSANDRECIPS</DT>
18537 <DD>
18538 This token represents the newsgroups from the
18539 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
18540 the personal names (or email addresses if the names
18541 are unavailable) of the persons specified in the
18542 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
18543 </DD>
18545 <DT>RECIPSANDNEWS</DT>
18546 <DD>
18547 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
18548 </DD>
18550 <DT>INIT</DT>
18551 <DD>
18552 This token represents the initials from the personal name
18553 of the person specified in the message's &quot;From:&quot;
18554 header field.
18555 If there is no personal name, it is blank.
18556 </DD>
18558 <DT>DATE</DT>
18559 <DD>
18560 This token represents the date on which the message was sent, according
18561 to the &quot;Date&quot; header field.
18562 It has the format MMM DD. For example, &quot;Oct 23&quot;.
18563 The feature
18564 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
18565 which adjusts for the timezone the message was sent from,
18566 may have an affect on the value of this token as well as the values of
18567 all of the other DATE or TIME tokens.
18568 Some of the DATE and TIME tokens are displayed in a locale-specific
18569 way unless the option
18570 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
18571 </DD>
18573 <DT>SMARTDATE</DT>
18574 <DD>
18575 This token represents the date on which the message was sent, according
18576 to the &quot;Date&quot; header field.
18577 It is &quot;Today&quot; if the message was sent today,
18578 &quot;Yesterday&quot; for yesterday,
18579 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
18580 message is from last year and is more than six months old it includes the year, as well.
18581 See the SMARTDATE alternatives below, as well.
18582 </DD>
18584 <DT>SMARTTIME</DT>
18585 <DD>
18586 This token represents the most relevant elements of the date on which
18587 the message was sent (according to the &quot;Date&quot; header field),
18588 in a compact form. If the message was sent today, only the time is used
18589 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
18590 the past week, the day of the week and the hour are used
18591 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
18592 given as date, month, and year (e.g. &quot;23Aug00&quot;,
18593 &quot;9Apr98&quot;).
18594 </DD>
18596 <DT>SMARTDATETIME</DT>
18597 <DD>
18598 This is a combination of SMARTDATE and SMARTTIME.
18599 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
18600 case it is SMARTTIME.
18601 See the SMARTDATETIME alternatives below, as well.
18602 </DD>
18604 <DT>DATEISO</DT>
18605 <DD>
18606 This token represents the date on which the message was sent, according
18607 to the &quot;Date&quot; header field.
18608 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
18609 </DD>
18611 <DT>SHORTDATEISO</DT>
18612 <DD>
18613 This token represents the date on which the message was sent, according
18614 to the &quot;Date&quot; header field.
18615 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
18616 </DD>
18618 <DT>SHORTDATE1</DT>
18619 <DD>
18620 This token represents the date on which the message was sent, according
18621 to the &quot;Date&quot; header field.
18622 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
18623 </DD>
18625 <DT>SHORTDATE2</DT>
18626 <DD>
18627 This token represents the date on which the message was sent, according
18628 to the &quot;Date&quot; header field.
18629 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
18630 </DD>
18632 <DT>SHORTDATE3</DT>
18633 <DD>
18634 This token represents the date on which the message was sent, according
18635 to the &quot;Date&quot; header field.
18636 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
18637 </DD>
18639 <DT>SHORTDATE4</DT>
18640 <DD>
18641 This token represents the date on which the message was sent, according
18642 to the &quot;Date&quot; header field.
18643 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
18644 </DD>
18646 <DT>LONGDATE</DT>
18647 <DD>
18648 This token represents the date on which the message was sent, according
18649 to the &quot;Date&quot; header field.
18650 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
18651 </DD>
18653 <DT>SMARTDATE alternatives</DT>
18654 <DD>
18655 There are several versions of SMARTDATE that are all the same except
18656 for the way they format dates far in the past.
18657 SMARTDATE formats the date using the information from your locale settings
18658 to format the date string. It may end up formatting dates so that they look
18659 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
18660 The feature
18661 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
18662 may have an affect on the values of these tokens.
18663 If you want more control you may use one of the following.
18664   <DL>
18665   <DT>SMARTDATE</DT> <DD>If the option
18666 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
18667 then this will be locale specific. Control this with the
18668 LC_TIME locale setting on a UNIX system. On Windows
18669 the Regional Options control panel may be used to set the Short date
18670 format. At the programming level, the strftime routine is what Alpine
18671 uses to print the date.
18672 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
18673 to SMARTDATES1.</DD>
18674   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
18675   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
18676   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
18677   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
18678   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
18679   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
18680   </DL>
18681 </DD>
18683 <DT>SMARTDATETIME alternatives</DT>
18684 <DD>
18685 There are several versions of SMARTDATETIME that are all very similar.
18686 The ones that end in 24 use a 24-hour clock for Today's messages instead
18687 of a 12-hour clock.
18688 The other variation is
18689 for the way they format dates far in the past.
18690 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
18691 to format the date string. It may end up formatting dates so that they look
18692 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
18693 The feature
18694 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
18695 may have an affect on the values of these tokens.
18696 The possible choices are:
18697   <DL>
18698   <DT>SMARTDATETIME</DT> <DD>If the option
18699 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
18700 then this will be locale specific. Control this with the
18701 LC_TIME locale setting on a UNIX system. On Windows
18702 the Regional Options control panel may be used to set the Short date
18703 format. At the programming level, the strftime routine is what Alpine
18704 uses to print the date.
18705 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
18706 to SMARTDATETIMES1.</DD>
18707   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
18708   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
18709   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
18710   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
18711   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
18712   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
18713   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
18714   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
18715   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
18716   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
18717   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
18718   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
18719   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
18720   </DL>
18721 </DD>
18723 <DT>DAYDATE</DT>
18724 <DD>
18725 This token represents the date on which the message was sent, according
18726 to the &quot;Date&quot; header field.
18727 It looks like &quot;Sat, 23 Oct 1998&quot;.
18728 This token is never converted in any locale-specific way.
18729 </DD>
18731 <DT>PREFDATE</DT>
18732 <DD>
18733 This token represents the date on which the message was sent, according
18734 to the &quot;Date&quot; header field.
18735 It is your operating system's idea of the preferred date representation for the current locale.
18736 Internally it uses the %x version of the date from the strftime routine.
18737 </DD>
18739 <DT>PREFTIME</DT>
18740 <DD>
18741 This token represents the time at which the message was sent, according
18742 to the &quot;Date&quot; header field.
18743 It is the preferred time representation for the current locale.
18744 Internally it uses the %X version of the time from the strftime routine.
18745 </DD>
18747 <DT>PREFDATETIME</DT>
18748 <DD>
18749 This token represents the date and time at which the message was sent, according
18750 to the &quot;Date&quot; header field.
18751 It is the preferred date and time representation for the current locale.
18752 Internally it uses the %c version of the time from the strftime routine.
18753 </DD>
18755 <DT>DAY</DT>
18756 <DD>
18757 This token represents the day of the month on which the message was sent,
18758 according to the &quot;Date&quot; header field.
18759 For example, &quot;23&quot; or &quot;9&quot;.
18760 </DD>
18762 <DT>DAY2DIGIT</DT>
18763 <DD>
18764 This token represents the day of the month on which the message was sent,
18765 according to the &quot;Date&quot; header field.
18766 For example, &quot;23&quot; or &quot;09&quot;.
18767 It is always 2 digits.
18768 </DD>
18770 <DT>DAYORDINAL</DT>
18771 <DD>
18772 This token represents the ordinal number that is the day of
18773 the month on which the message was sent,
18774 according to the &quot;Date&quot; header field.
18775 For example, &quot;23rd&quot; or &quot;9th&quot;.
18776 </DD>
18778 <DT>DAYOFWEEK</DT>
18779 <DD>
18780 This token represents the day of the week on which the message was sent,
18781 according to the &quot;Date&quot; header field.
18782 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
18783 </DD>
18785 <DT>DAYOFWEEKABBREV</DT>
18786 <DD>
18787 This token represents the day of the week on which the message was sent,
18788 according to the &quot;Date&quot; header field.
18789 For example, &quot;Sun&quot; or &quot;Wed&quot;.
18790 </DD>
18792 <DT>MONTHABBREV</DT>
18793 <DD>
18794 This token represents the month the message was sent, according
18795 to the &quot;Date&quot; header field.
18796 For example, &quot;Oct&quot;.
18797 </DD>
18799 <DT>MONTHLONG</DT>
18800 <DD>
18801 This token represents the month in which the message was sent, according
18802 to the &quot;Date&quot; header field.
18803 For example, &quot;October&quot;.
18804 </DD>
18806 <DT>MONTH</DT>
18807 <DD>
18808 This token represents the month in which the message was sent, according
18809 to the &quot;Date&quot; header field.
18810 For example, &quot;10&quot; or &quot;9&quot;.
18811 </DD>
18813 <DT>MONTH2DIGIT</DT>
18814 <DD>
18815 This token represents the month in which the message was sent, according
18816 to the &quot;Date&quot; header field.
18817 For example, &quot;10&quot; or &quot;09&quot;.
18818 It is always 2 digits.
18819 </DD>
18821 <DT>YEAR</DT>
18822 <DD>
18823 This token represents the year the message was sent, according
18824 to the &quot;Date&quot; header field.
18825 For example, &quot;1998&quot; or &quot;2001&quot;.
18826 </DD>
18828 <DT>YEAR2DIGIT</DT>
18829 <DD>
18830 This token represents the year the message was sent, according
18831 to the &quot;Date&quot; header field.
18832 For example, &quot;98&quot; or &quot;01&quot;.
18833 It is always 2 digits.
18834 </DD>
18836 <DT>TIME24</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 There is no adjustment made for different time zones, so you'll get
18841 the time the message was sent according to the time zone the sender
18842 was in.
18843 It has the format HH:MM. For example, &quot;17:28&quot;.
18844 </DD>
18846 <DT>TIME12</DT>
18847 <DD>
18848 This token represents the time at which the message was sent, according
18849 to the &quot;Date&quot; header field.
18850 This time is for a 12 hour clock.
18851 It has the format HH:MMpm.
18852 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
18853 </DD>
18855 <DT>TIMEZONE</DT>
18856 <DD>
18857 This token represents the numeric timezone from
18858 the &quot;Date&quot; header field.
18859 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
18860 </DD>
18862 </DL>
18865 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
18867 <DL>
18868 <DT>MSGNO</DT>
18869 <DD>
18870 This token represents the message's current position in the folder that,
18871 of course, may change as the folder is sorted or new mail arrives.
18872 </DD>
18874 <DT>STATUS</DT>
18875 <DD>
18876 This token represents a three character wide field displaying various
18877 aspects of the message's state.
18878 The first character is either blank,
18879 a '*' for message marked Important, or a '+' indicating a message
18880 addressed directly to you (as opposed to your having received it via a
18881 mailing list, for example).
18882 When the feature
18883 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
18884 is set, if the first character would have been
18885 blank then it will instead be a '-' if the message is cc'd to you.
18886 The second character is typically blank,
18887 though the arrow cursor may occupy it if either the 
18888 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
18889 or the
18890 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
18891 is set (or you actually are on a slow link).
18892 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
18893 '<A HREF="h_flag_answered">A</A>' (Answered),
18894 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
18895 '<A HREF="h_flag_new">N</A>' (New), or blank.
18897 If you are using a threaded view of the index and this message is at the
18898 top of a collapsed portion of a thread,
18899 then this token refers to all of the messages in the collapsed portion of
18900 the thread instead of just the top message.
18901 The first character will be a '*' if <EM>any</EM> of the messages in the thread
18902 are marked Important, else a '+' if any of the messages are addressed
18903 to you, else a '-' if any of the messages are cc'd to you.
18904 The third character will be a 'D' if <EM>all</EM> of the messages
18905 in the collapsed thread are marked deleted,
18906 an 'A' if <EM>all</EM> of the messages
18907 in the collapsed thread are marked answered,
18908 it will be an 'N' if any of
18909 the messages are undeleted and unseen, and it will be blank otherwise.
18910 </DD>
18912 <DT>FULLSTATUS</DT>
18913 <DD>
18914 This token represents a less abbreviated alternative
18915 to the &quot;STATUS&quot; token.
18916 It is six characters wide.
18917 The first character is '+', '-', or blank, the
18918 second blank, the third either '*' or blank, the fourth
18919 '<A HREF="h_flag_new">N</A>' or blank,
18920 the fifth '<A HREF="h_flag_answered">A</A>'
18921 or blank, and the sixth character is
18922 either '<A HREF="h_flag_deleted">D</A>' or
18923 blank.
18925 If you are using a threaded view of the index and this message is at the
18926 top of a collapsed portion of a thread,
18927 then this token refers to all of the messages in the collapsed portion of
18928 the thread instead of just the top message.
18929 The first character is '+', '-', or blank depending on whether <EM>any</EM>
18930 of the messages in the collapsed thread are addressed to you or cc'd to you.
18931 The third character will be '*' if any of the messages are marked
18932 Important.
18933 The fourth character will be 'N' if all of the messages in the thread
18934 are New, else 'n' if some of the messages in the thread are New, else blank.
18935 The fifth character will be 'A' or 'a' or blank, and the sixth character
18936 will be 'D' or 'd' or blank.
18937 </DD>
18939 <DT>IMAPSTATUS</DT>
18940 <DD>
18941 This token represents an even less abbreviated alternative to the
18942 &quot;STATUS&quot; token.
18943 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
18944 an 'N' if the message is new to this folder since the last time
18945 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
18946 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
18947 new to the folder since it was last opened <EM>but</EM> has not been
18948 viewed, or a blank if the message has been in the folder since it was
18949 last opened and has been viewed.
18951 If you are using a threaded view of the index and this message is at the
18952 top of a collapsed portion of a thread,
18953 then the fourth character will be
18954 'N' if all of the messages in the thread are unseen and recent;
18955 else 'n' if some of the messages in the thread are unseen and recent;
18956 else 'U' if all of the messages in the thread are unseen and not recent;
18957 else 'u' if some of the messages in the thread are unseen and not recent;
18958 else 'R' if all of the messages in the thread are seen and recent;
18959 else 'r' if some of the messages in the thread are seen and recent;
18960 else blank.
18961 </DD>
18963 <DT>SHORTIMAPSTATUS</DT>
18964 <DD>
18965 This is the same as the last four of the six characters of IMAPSTATUS,
18966 so the '+' To Me information will be missing.
18967 </DD>
18969 <DT>SIZE</DT>
18970 <DD>
18971 This token represents the total size, in bytes, of the message.
18972 If a &quot;K&quot; (Kilobyte)
18973 follows the number, the size is approximately 1,000
18974 times that many bytes (rounded to the nearest 1,000).
18975 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
18976 1,000,000 times that many bytes.
18977 Commas are not used in this field.
18978 This field is seven characters wide, including the enclosing parentheses.
18979 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
18980 The progression of sizes used looks like:
18983 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
18985 </DD>
18987 <DT>SIZECOMMA</DT>
18988 <DD>
18989 This token represents the total size, in bytes, of the message.
18990 If a &quot;K&quot; (Kilobyte)
18991 follows the number, the size is approximately 1,000
18992 times that many bytes (rounded to the nearest 1,000).
18993 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
18994 1,000,000 times that many bytes.
18995 Commas are used if the number shown is 1,000 or greater.
18996 The SIZECOMMA field is one character wider than the SIZE field.
18997 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
18998 The progression of sizes used looks like:
19001 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19003 </DD>
19005 <DT>KSIZE</DT>
19006 <DD>
19007 This token represents the total size of the message, expressed in
19008 kilobytes or megabytes, as most appropriate.
19009 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19010 The progression of sizes used looks like:
19013 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19015 </DD>
19017 <DT>SIZENARROW</DT>
19018 <DD>
19019 This token represents the total size, in bytes, of the message.
19020 If a &quot;K&quot; (Kilobyte)
19021 follows the number, the size is approximately 1,000
19022 times that many bytes.
19023 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19024 1,000,000 times that many bytes.
19025 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19026 1,000,000,000 times that many bytes.
19027 This field uses only five characters of screen width, including the enclosing
19028 parentheses.
19029 The progression of sizes used looks like:
19032 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19034 </DD>
19036 <DT>DESCRIPSIZE</DT>
19037 <DD>
19038 This token is intended to represent a more useful description of the
19039 message than just its size, but it isn't very useful at this point.
19040 The plus sign in this view means there are attachments.
19041 Note that including this token in
19042 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19043 display a little while Alpine collects the necessary information.
19044 </DD>
19046 <DT>SUBJKEY</DT>
19047 <DD>
19048 This token is the same as the SUBJECT token unless keywords are set for
19049 the message.
19050 In that case, a list of keywords enclosed in braces will be prepended to
19051 the subject of the message.
19052 Only those keywords that you have defined in your
19053 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19054 in Setup/Config are considered in the list.
19055 In other words, keywords that have been set by some other means, perhaps
19056 by another email program, won't show up unless included in
19057 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19058 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19059 prepended to the subject in the MESSAGE TEXT screen.
19060 If you have given a keyword a nickname
19061 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19062 instead of the actual keyword.
19063 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19064 option may be used to modify this token slightly.
19065 It is also possible to color keywords in the index using the
19066 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19067 </DD>
19069 <DT>SUBJKEYINIT</DT>
19070 <DD>
19071 This token is the same as the SUBJKEY token except that instead of
19072 prepending a list of keywords to the subject, a list of first initials
19073 of keywords will be prepended instead.
19074 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19075 set (or Work and Now are the Alpine nicknames of keywords that are set)
19076 then the SUBJKEY token would cause a result like
19078 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19080 whereas the SUBJKEYINIT token would give
19082 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19084 Only those keywords that you have defined in your
19085 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19086 in Setup/Config are considered in the list.
19087 In other words, keywords that have been set by some other means, perhaps
19088 by another email program, won't show up unless included in
19089 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19090 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19091 option may be used to modify this token slightly.
19092 It is also possible to color keywords in the index using the
19093 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19094 </DD>
19096 <DT>SUBJECTTEXT</DT>
19097 <DD>
19098 Same as SUBJECT but if there is room in the Subject field for more text,
19099 the opening part of the text of the message is displayed after the subject.
19100 The time needed to fetch the text may cause a performance problem
19101 which can, of course, be avoided by using the SUBJECT version of
19102 the Subject instead.
19103 You may color this opening text differently by using the
19104 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19105 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19106 You may adjust the characters that are displayed between the Subject and the
19107 opening text with the option
19108 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19109 </DD>
19111 <DT>SUBJKEYTEXT</DT>
19112 <DD>
19113 Same as SUBJKEY but with the opening message text.
19114 </DD>
19116 <DT>OPENINGTEXT</DT>
19117 <DD>
19118 This is similar to SUBJECTTEXT.
19119 Instead of combining the Subject and the opening text in a single
19120 field in the index screen this token allows you to allocate a
19121 separate column just for the opening text of the message.
19122 The time needed to fetch this text may cause a performance problem.
19123 You may color this opening text differently by using the
19124 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19125 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19126 </DD>
19128 <DT>OPENINGTEXTNQ</DT>
19129 <DD>
19130 This is very similar to OPENINGTEXT.
19131 The NQ stands for No Quotes.
19132 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19133 For some messages this may be confusing.
19134 For example, a message might have a line preceding some quoted
19135 text that reads something like &quot;On May 8th person A said.&quot;
19136 That no longer makes sense after the quoted text is deleted and it
19137 will appear that person A said whatever the text after the quote
19138 is, even though that is really person B talking.
19139 </DD>
19141 <DT>SUBJKEYINITTEXT</DT>
19142 <DD>
19143 Same as SUBJKEYINIT but with the opening message text.
19144 </DD>
19146 <DT>KEY</DT>
19147 <DD>
19148 This is a space-delimited list of keywords that are set for the message.
19149 Only those keywords that you have defined in your
19150 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19151 in Setup/Config are considered in the list.
19152 In other words, keywords that have been set by some other means, perhaps
19153 by another email program, won't show up unless included in
19154 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19155 If you have given a keyword a nickname
19156 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19157 instead of the actual keyword.
19158 It is also possible to color keywords in the index using the
19159 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19160 This token defaults to an arbitrary width of 5.
19161 You should set it to whatever width suits you using something
19162 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19163 </DD>
19165 <DT>KEYINIT</DT>
19166 <DD>
19167 This is a list of keyword initials that are set for the message.
19168 If you have given a keyword a nickname
19169 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19170 is displayed instead of the initial of the actual keyword.
19171 It is also possible to color keyword initials in the index using the
19172 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19173 This token defaults to an arbitrary width of 2.
19174 You should set it to whatever width suits you using something
19175 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19176 </DD>
19178 <DT>PRIORITY</DT>
19179 <DD>
19180 The X-Priority header is a non-standard header that is used in a
19181 somewhat standard way by many mail programs.
19182 Alpine expects the value of this header to be a digit with a value
19183 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19184 Since this priority is something that the sender sets it is only an indication
19185 of the priority that the sender attaches to the mail and it is therefore almost
19186 totally unreliable for use as a filtering criterion.
19187 This token will display the numeric value of the priority if it is between
19188 1 and 5.
19189 It will be suppressed (blank) if the value is 3, which is normal priority.
19190 This token may be colored with the
19191 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19192 </DD>
19194 <DT>PRIORITYALPHA</DT>
19195 <DD>
19196 This is a more verbose interpretation of the X-Priority field.
19197 Once again nothing is displayed unless the value of the field
19198 is 1, 2, 4, or 5.
19199 The values displayed for those values are:
19201 <TABLE>
19202 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19203 <TR> <TD>2</TD> <TD>High</TD> </TR>
19204 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19205 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19206 </TABLE>
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>PRIORITY!</DT>
19213 <DD>
19214 This is a one character, non-numeric version of the X-Priority field.
19215 If the value of the X-Priority header is 1 or 2 an exclamation
19216 point is displayed.
19217 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19218 This token may be colored with the
19219 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19220 </DD>
19222 <DT>ATT</DT>
19223 <DD>
19224 This is a one column wide field that represents the number of attachments
19225 a message has. It will be blank if there are no attachments, a single
19226 digit for one to nine attachments, or an asterisk for more than nine.
19227 Note that including this token in
19228 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19229 display a little while Alpine collects the necessary information.
19230 </DD>
19232 <DT>FROMORTO</DT>
19233 <DD>
19234 This token represents <EM>either</EM> the personal name (or email address) of
19235 the person listed in the message's &quot;From:&quot; header
19236 field, <EM>or</EM>, if that address is yours or one of your
19237 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19238 the first person specified in the
19239 message's &quot;To:&quot; header field
19240 with the prefix &quot;To: &quot; prepended.
19241 If the from address is yours and there is also no &quot;To&quot; address,
19242 Alpine will use the address on the &quot;Cc&quot; line.
19243 If there is no address there, either, Alpine will look for a newsgroup name
19244 from the &quot;Newsgroups&quot; header field and put
19245 that after the &quot;To: &quot; prefix.
19246 </DD>
19248 <DT>FROMORTONOTNEWS</DT>
19249 <DD>
19250 This is almost the same as <EM>FROMORTO</EM>.
19251 The difference is that newsgroups aren't considered.
19252 When a message is from you, doesn't have a To or Cc, and does have
19253 a Newsgroups header; this token will be your name instead of the name
19254 of the newsgroup (like it would be with FROMORTO).
19255 </DD>
19257 <DT>TEXT</DT>
19258 <DD>
19259 This is a different sort of token.
19260 It allows you to display a label within each index line.
19261 It will be the same fixed text for each line.
19262 It is different from all the other tokens in that there is no space column
19263 displayed after this token.
19264 Instead, it is butted up against the following field.
19265 It also has a different syntax.
19266 The text to display is given following a colon after the
19267 word &quot;TEXT&quot;.
19268 For example,
19270 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19272 would insert the literal text &quot;abc=&quot; (without the quotes)
19273 into the index display line.
19274 You must quote the text if it includes space characters, like
19276 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19278 </DD>
19280 <DT>HEADER</DT>
19281 <DD>
19282 This allows you to display the text from a particular header line in the
19283 message.
19284 The syntax for this token is substantially different from all the others
19285 in order that you might be able to display a portion of the text following
19286 a particular header.
19287 The header name you are interested in is given following a colon
19288 after the word &quot;HEADER&quot;.
19289 For example,
19291 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
19293 would display the text of the X-Spam header, if any.
19294 Like for other index tokens a width field may (and probably should)
19295 follow this.
19297 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
19299 displays the first ten characters of the X-Spam header.
19300 Unlike other index tokens, the syntax for HEADER is more flexible.
19301 An optional second argument comes after a comma inside the parentheses.
19302 It specifies the &quot;field&quot; number.
19303 By default, the field separator is a space character.
19304 No extra space characters are allowed in the argument list.
19306 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
19308 would display the second field, left-justified, in a 10 character
19309 wide field.
19310 The second field would consist of all the text after the first space
19311 up to the next space or the end of the header.
19312 The default field number is zero, which stands for the entire line.
19313 There is also an optional third argument that is a list of field
19314 separators. It defaults to a space character.
19315 The example
19317 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
19319 would cause the field separators to be any of colon, percent,
19320 or space (there is a space character between the percent and the
19321 right parenthesis).
19322 The first field runs from the start of the header value up to the first
19323 colon, percent, or space; the second goes from there to the next; and so on.
19324 In order to use a comma character as a field separator you must escape
19325 it by preceding it with a backslash (&#92;).
19326 The same is true of the backslash character itself.
19327 There is one further optional argument.
19328 It is an R or an L to specify right or left adjustment of the text
19329 within the field.
19330 The default is to left justify, however if you are displaying numbers
19331 you might prefer to right justify.
19333 Here's an example of a SpamAssassin header.
19334 The exact look of the header will vary, but if your incoming mail
19335 contains headers that look like the following
19337 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19339 you might want to display the hits value.
19340 The first field starts with the Y in Yes.
19341 To get what you're interested in you might use &quot;=&quot; and
19342 space as the field separators and display the third field, like
19344 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
19346 or maybe you would break at the dot instead
19348 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
19350 Another example we've seen has headers that look like
19352 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19354 Because there are two equals and a comma before the 7% and a comma
19355 after it, the token
19357 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
19359 should display the probability (for example 7% or 83%) right justified
19360 in a 3-wide field.
19361 </DD>
19363 <DT>ARROW</DT>
19364 <DD>
19365 This gives an alternative way to display the current message in the
19366 MESSAGE INDEX screen.
19367 Usually the current message is indicated by the line being shown in
19368 reverse video.
19369 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
19370 the current line will include an &quot;arrow&quot; that
19371 looks like
19373 <CENTER><SAMP>-&gt;</SAMP></CENTER>
19375 in the ARROW token's field.
19376 For all of the non-current messages, the ARROW field will be filled
19377 with blanks.
19378 If you use the fixed-field width feature the length of the &quot;arrow&quot;
19379 may be adjusted.
19380 The arrow will be drawn as width-1 dashes followed by a greater than sign.
19381 For example, if you use ARROW(3) you will get
19383 <CENTER><SAMP>--&gt;</SAMP></CENTER>
19385 and ARROW(1) will give you just
19387 <CENTER><SAMP>&gt;</SAMP></CENTER>
19389 It is also possible to set the color of the ARROW field.
19390 By default (and for non-current messages) the arrow is colored the same
19391 as the index line it is part of.
19392 You may set it to be another color with the 
19393 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
19394 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19395 </DD>
19397 <DT>SCORE</DT>
19398 <DD>
19399 This gives the
19400 <a href="h_rules_score">score</a>
19401 of each message.
19402 This will be six columns wide to accomodate the widest possible score.
19403 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
19404 to limit the width of the field to the widest score that
19405 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
19406 If you have not defined any score rules the scores will all be zero.
19407 If any of your score rules contain AllText or BodyText patterns
19408 then including SCORE in the <!--#echo var="VAR_index-format"-->
19409 may slow down the display of the MESSAGE INDEX screen.
19410 </DD>
19411 </DL>
19414 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
19416 <DL>
19417 <DT>CURNEWS</DT>
19418 <DD>
19419 This token represents the current newsgroup if there is one.
19420 For example, &quot;comp.mail.pine&quot;.
19421 </DD>
19423 <DT>MSGID</DT>
19424 <DD>
19425 This token represents the message ID of the message.
19426 This token does not work with Filter Rule folder names.
19427 </DD>
19429 <DT>CURDATE</DT>
19430 <DD>
19431 This token represents the current date.
19432 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19433 </DD>
19435 <DT>CURDATEISO</DT>
19436 <DD>
19437 This token represents the current date.
19438 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19439 </DD>
19441 <DT>CURDATEISOS</DT>
19442 <DD>
19443 This token represents the current date.
19444 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19445 </DD>
19447 <DT>CURPREFDATE</DT>
19448 <DD>
19449 This token represents the current date.
19450 It is your operating system's idea of the preferred date representation for the current locale.
19451 Internally it uses the %x version of the date from the strftime routine.
19452 </DD>
19454 <DT>CURPREFTIME</DT>
19455 <DD>
19456 This token represents the current time.
19457 It is the preferred time representation for the current locale.
19458 Internally it uses the %X version of the time from the strftime routine.
19459 </DD>
19461 <DT>CURPREFDATETIME</DT>
19462 <DD>
19463 This token represents the current date and time.
19464 It is the preferred date and time representation for the current locale.
19465 Internally it uses the %c version of the time from the strftime routine.
19466 </DD>
19468 <DT>CURTIME24</DT>
19469 <DD>
19470 This token represents the current time.
19471 It has the format HH:MM. For example, &quot;17:28&quot;.
19472 </DD>
19474 <DT>CURTIME12</DT>
19475 <DD>
19476 This token represents the current time.
19477 This time is for a 12 hour clock.
19478 It has the format HH:MMpm.
19479 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19480 </DD>
19482 <DT>CURDAY</DT>
19483 <DD>
19484 This token represents the current day of the month.
19485 For example, &quot;23&quot; or &quot;9&quot;.
19486 </DD>
19488 <DT>CURDAY2DIGIT</DT>
19489 <DD>
19490 This token represents the current day of the month.
19491 For example, &quot;23&quot; or &quot;09&quot;.
19492 It is always 2 digits.
19493 </DD>
19495 <DT>CURDAYOFWEEK</DT>
19496 <DD>
19497 This token represents the current day of the week.
19498 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19499 </DD>
19501 <DT>CURDAYOFWEEKABBREV</DT>
19502 <DD>
19503 This token represents the current day of the week.
19504 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19505 </DD>
19507 <DT>CURMONTH</DT>
19508 <DD>
19509 This token represents the current month.
19510 For example, &quot;10&quot; or &quot;9&quot;.
19511 </DD>
19513 <DT>CURMONTH2DIGIT</DT>
19514 <DD>
19515 This token represents the current month.
19516 For example, &quot;10&quot; or &quot;09&quot;.
19517 It is always 2 digits.
19518 </DD>
19520 <DT>CURMONTHLONG</DT>
19521 <DD>
19522 This token represents the current month.
19523 For example, &quot;October&quot;.
19524 </DD>
19526 <DT>CURMONTHABBREV</DT>
19527 <DD>
19528 This token represents the current month.
19529 For example, &quot;Oct&quot;.
19530 </DD>
19532 <DT>CURYEAR</DT>
19533 <DD>
19534 This token represents the current year.
19535 For example, &quot;1998&quot; or &quot;2001&quot;.
19536 </DD>
19538 <DT>CURYEAR2DIGIT</DT>
19539 <DD>
19540 This token represents the current year.
19541 For example, &quot;98&quot; or &quot;01&quot;.
19542 It is always 2 digits.
19543 </DD>
19545 <DT>LASTMONTH</DT>
19546 <DD>
19547 This token represents last month.
19548 For example, if this is November (the 11th month),
19549 it is equal to &quot;10&quot; or if this is October (the 10th month),
19550 it is &quot;9&quot;.
19551 It is possible that this and the other tokens beginning with LASTMONTH
19552 below could be useful when used with a Filtering Rule that
19553 has the &quot;Beginning of Month&quot; option set.
19554 </DD>
19556 <DT>LASTMONTH2DIGIT</DT>
19557 <DD>
19558 This token represents last month.
19559 For example, if this is November (the 11th month),
19560 it is equal to &quot;10&quot; or if this is October (the 10th month),
19561 it is &quot;09&quot;.
19562 It is always 2 digits.
19563 </DD>
19565 <DT>LASTMONTHLONG</DT>
19566 <DD>
19567 This token represents last month.
19568 For example, if this is November the value is &quot;October&quot;.
19569 </DD>
19571 <DT>LASTMONTHABBREV</DT>
19572 <DD>
19573 This token represents last month.
19574 For example, if this is November the value is &quot;Oct&quot;.
19575 </DD>
19577 <DT>LASTMONTHYEAR</DT>
19578 <DD>
19579 This token represents what the year was a month ago.
19580 For example, if this is October, 1998, it is &quot;1998&quot;.
19581 If this is January, 1998, it is &quot;1997&quot;.
19582 </DD>
19584 <DT>LASTMONTHYEAR2DIGIT</DT>
19585 <DD>
19586 This token represents what the year was a month ago.
19587 For example, if this is October, 1998, it is &quot;98&quot;.
19588 If this is January, 1998, it is &quot;97&quot;.
19589 </DD>
19591 <DT>LASTYEAR</DT>
19592 <DD>
19593 This token represents last year.
19594 For example, if this is 1998, it equals &quot;1997&quot;.
19595 It is possible that this
19596 could be useful when used with a Filtering Rule that
19597 has the &quot;Beginning of Year&quot; option set.
19598 </DD>
19600 <DT>LASTYEAR2DIGIT</DT>
19601 <DD>
19602 This token represents last year.
19603 For example, if this is 1998, it equals &quot;97&quot;.
19604 It is always 2 digits.
19605 </DD>
19607 <DT>ROLENICK</DT>
19608 <DD>
19609 This token represents the nickname of the
19610 role currently being used.  If no role is being used,
19611 then no text will be printed for this token.
19612 This token does not work with Filter Rule folder names.
19613 </DD>
19614 </DL>
19617 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
19618 See the help for the
19619 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
19620 to see why you might want to use this.
19621 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
19622 must be surrounded by underscores when used.
19624 <DL>
19625 <DT>NEWLINE</DT>
19626 <DD>
19627 This is an end of line marker.
19628 </DD>
19629 </DL>
19632 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
19634 <DL>
19635 <DT>CURSORPOS</DT>
19636 <DD>
19637 This token is different from the others.
19638 When it is replaced it is replaced with nothing, but it sets an Alpine
19639 internal variable that tells the composer to start with the cursor
19640 positioned at the position where this token was.
19641 If both the template file and the signature file contain
19642 a &quot;CURSORPOS&quot; token, then the position in the template file
19643 is used.
19644 If there is a template file and neither it nor the signature file contains
19645 a &quot;CURSORPOS&quot; token, then the cursor is positioned
19646 after the end of the contents of the
19647 template file when the composer starts up.
19648 </DD>
19649 </DL>
19652 &lt;End of help on this topic&gt;
19653 </BODY>
19654 </HTML>
19655 ======= h_reply_token_conditionals =======
19656 <HTML>
19657 <HEAD>
19658 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
19659 </HEAD>
19660 <BODY>
19661 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
19663 Conditional text inclusion may be used with
19664 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19665 in signature files, and in template files used in
19666 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
19667 It may <EM>not</EM> be used with the
19668 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
19671 There is a limited if-else capability for including text.
19672 The if-else condition is based
19673 on whether or not a given token would result in replacement text you
19674 specify.
19675 The syntax of this conditional inclusion is
19677 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
19679 The left parenthesis must follow the underscore immediately, with no
19680 intervening space.
19681 It means the token is expanded and the results of that expansion are
19682 compared against the &quot;match_this&quot; argument.
19683 If there is an exact match, then the &quot;if_matched&quot; text is used
19684 as the replacement text.
19685 Otherwise, the &quot;if_not_matched&quot; text is used.
19686 One of the most useful values for the &quot;match_this&quot; argument is
19687 the empty string, &quot;&quot;.
19688 In that case the expansion is compared against the empty string.
19690 Here's an example to make it clearer.
19691 This text could be included in one of your template files:
19693 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
19695 If that is included in a template file that you are using while replying
19696 to a message (because you chose to use the role it was part of),
19697 and that message has a newsgroup header and a newsgroup in that header,
19698 then the text
19700 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
19702 will be included in the message you are about to compose.
19703 On the other hand, if the message you are replying to does not have
19704 a newsgroup, then the text
19706 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
19708 would be included instead.
19709 This would also work in signature files and in
19710 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
19711 If the &quot;match_this&quot;, &quot;if_matched&quot;,
19712 or &quot;if_not_matched&quot; arguments contain
19713 spaces, parentheses, or commas;
19714 they have to be quoted with double quotation marks (like in the example
19715 above).
19716 If you want to include a literal quote (&quot;) in the text you must escape the
19717 quote by preceding it with a backslash (&#92;) character.
19718 If you want to include a literal backslash character you must escape it
19719 by preceding it with another backslash.
19721 The comma followed by &quot;if_not_matched&quot; is optional.
19722 If there is no &quot;if_not_matched&quot;
19723 present then no text is included if the not_matched case is true.
19724 Here's another example:
19726 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
19728 Here you can see that tokens may appear in the arguments.
19729 The same is true for tokens with the conditional parentheses.
19730 They may appear in arguments,
19731 though you do have to be careful to get the quoting and escaping of
19732 nested double quotes correct.
19733 If this was in the signature file being used and you were replying to a message
19734 sent to comp.mail.pine the resulting text would be:
19736 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
19738 If you were replying to a message that wasn't sent to any newsgroup the
19739 resulting text would be a single blank line.
19740 The reason you'd get a blank line is because the end of the line is
19741 outside of the conditional, so is always included.
19742 If you wanted to get rid of that blank line you could do so by moving
19743 the end of line inside the conditional.
19744 In other words, it's ok to have multi-line
19745 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
19746 template file.
19747 The text just continues until the next double quotation, even if it's not
19748 on the same line.
19750 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
19752 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
19754 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
19755 while reading the newsgroup comp.mail.pine the resulting text would be:
19757 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
19759 If you were replying to a message while reading an email folder instead
19760 of a newsgroup the resulting leadin text would be
19762 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
19764 Here's one more (contrived) example illustrating a matching argument
19765 that is not the empty string.
19767 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
19769 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
19770 were replying to
19771 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
19772 would be
19774 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
19776 But if you were replying to a message sent on Oct. 27 (and that wasn't
19777 today) you would get
19779 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
19782 &lt;End of help on this topic&gt;
19783 </BODY>
19784 </HTML>
19785 ======= h_composer_cntxt_nick =======
19786 <HTML>
19787 <HEAD>
19788 <TITLE>Collection Nickname Explained</TITLE>
19789 </HEAD>
19790 <BODY>
19791 <H1>Collection Edit Help -- Nickname Field</H1>
19793 This field is provided so you can add a short nickname to use when
19794 referring to this collection within Alpine.  Spaces are allowed, and
19795 you don't need to use double-quotes.  However, the double-quote
19796 character is not allowed.
19798 Look <A HREF="h_edit_nav_cmds">here</A>
19799 to see the available Editing and Navigation commands.
19801 &lt;End of help on this topic&gt;
19802 </BODY>
19803 </HTML>
19804 ======= h_folder_server_syntax =======
19805 <HTML>
19806 <HEAD>
19807 <TITLE>Server Name Syntax</TITLE>
19808 </HEAD>
19809 <BODY>
19810 <H1>Server Name Syntax</H1>
19812 This help describes the syntax that may be used for server names
19813 that may be associated with remote folders or SMTP servers.
19816 A server name is the hostname of the server.
19817 It's a good idea to use the host's fully-qualified network name.
19820 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
19823 However, IP addresses are allowed if surrounded
19824 with square-brackets.
19827 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
19830 An optional network port number may be supplied by appending
19831 a colon (:) followed by the port number
19832 to the server name.
19833 By default, the IMAP port number, 143, is used.
19836 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
19839 Besides server name and optional port number, various other optional
19840 parameters may be supplied that alter Alpine's interaction with the server.
19841 A parameter is supplied by appending a slash (/) character followed by
19842 the parameter's name and,
19843 depending on the particular parameter, the value assigned to that
19844 name, to the server name (and optional port number).
19845 Parameter names are <EM>not</EM> case sensitive.
19846 Currently supported parameters include:
19848 <DL>
19850 <DT>User</DT>
19851 <DD>This parameter requires an associated value, and is intended to
19852 provide the username identifier with which to establish the server
19853 connection.
19854 If your SMTP server offers SMTP AUTH authentication, adding this 
19855 parameter to the
19856 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
19857 option will cause Alpine to attempt to authenticate to the server using the
19858 supplied username.
19859 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
19860 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
19861 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
19862 option (or to the server name for any folder collection using NNTP)
19863 will cause Alpine to attempt
19864 to authenticate to the server using the supplied username.
19865 An example might be:
19868 <CENTER><SAMP>/user=katie</SAMP></CENTER>
19871 </DD>
19873 <DT>TLS</DT>
19874 <DD>
19875 Normally, when a new connection is made an attempt is made to 
19876 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
19877 If that fails then a non-encrypted connection will be attempted instead.
19878 This is a unary parameter indicating communication with the server must 
19879 take place over a TLS connection. If the attempt to use TLS fails then
19880 this parameter will cause the connection to fail instead of falling
19881 back to an unsecure connection.
19884 <CENTER><SAMP>/tls</SAMP></CENTER>
19887 </DD>
19889 <DT>SSL</DT>
19890 <DD>
19891 This is a unary parameter indicating communication with the server should 
19892 take place over a Secure Socket Layer connection.  The server must support
19893 this method, and be prepared to accept connections on the appropriate
19894 port (993 by default).
19895 Alpine must be linked with an SSL library for this option to be operational.
19898 <CENTER><SAMP>/ssl</SAMP></CENTER>
19901 </DD>
19903 <DT>TLS1</DT>
19904 <DD>
19905 This parameter indicates that the connection to the server will be made
19906 over the SSL port, but using the TLSv1 protocol, instead of the usual
19907 SSLv3 or SSLv2 protocols.
19908 Alpine must be linked with an SSL library for this option to be operational.
19911 <CENTER><SAMP>/tls1</SAMP></CENTER>
19914 </DD>
19916 <DT>DTLS1</DT>
19917 <DD>
19918 This parameter indicates that the connection to the server will be made
19919 over the SSL port, but using the DTLSv1 protocol, instead of the usual
19920 SSLv3 or SSLv2 protocols.
19921 Alpine must be linked with an SSL library for this option to be operational.
19924 <CENTER><SAMP>/dtls1</SAMP></CENTER>
19927 </DD>
19929 <DT>TLS1_1</DT>
19930 <DD>
19931 This parameter indicates that the connection to the server will be made
19932 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
19933 SSLv3 or SSLv2 protocols.
19934 Alpine must be linked with an SSL library for this option to be operational.
19937 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
19940 </DD>
19942 <DT>TLS1_2</DT>
19943 <DD>
19944 This parameter indicates that the connection to the server will be made
19945 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
19946 SSLv3 or SSLv2 protocols.
19947 Alpine must be linked with an SSL library for this option to be operational.
19950 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
19953 </DD>
19956 <DT>NoValidate-Cert</DT>
19957 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
19958 This is needed if the server uses self-signed certificates or if Alpine
19959 cannot validate the certificate for some other known reason.
19961 </DD>
19963 <DT>Anonymous</DT>
19964 <DD>This is a unary parameter (that means it does not have a value)
19965 indicating that the connection be logged in as
19966 &quot;anonymous&quot; rather than a specific user.
19967 Not all servers offer anonymous
19968 access; those which do generally only offer read-only access to certain
19969 &quot;public&quot; folders.
19972 <CENTER><SAMP>/anonymous</SAMP></CENTER>
19975 </DD>
19977 <DT>Secure</DT>
19978 <DD>This is a unary parameter indicating that the connection use the
19979 most secure authentication method mutually supported by Alpine and the
19980 server.
19981 Alpine is capable of authenticating connections to 
19982 the server using several methods.
19983 By default, Alpine will attempt each
19984 method until either a connection is established or the
19985 list of methods is exhausted.
19986 This parameter causes Alpine to instead fail 
19987 the connection if the first (generally most &quot;secure&quot;) method fails.
19990 <CENTER><SAMP>/secure</SAMP></CENTER>
19993 </DD>
19995 <DT>Submit</DT>
19996 <DD>This is a unary parameter for use with the
19997 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
19998 It indicates that the connection should be made to the Submit server
19999 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20000 (port 587) instead of the SMTP port (25).
20001 At the time this help was written the submit option was equivalent to
20002 specifying port 587.
20005 <CENTER><SAMP>/submit</SAMP></CENTER>
20009 <CENTER><SAMP>host:587</SAMP></CENTER>
20012 </DD>
20014 <DT>Debug</DT>
20015 <DD>This is a unary parameter indicating that the connection be established
20016 in a verbose mode.  Basically, it causes Alpine to log the communication with
20017 the server in Alpine's debug file.
20018 Normally, the pine -d command-line flag would be used instead.
20020 </DD>
20022 <DT>NoRsh</DT>
20023 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20024 the UNIX remote shell program.
20025 Including &quot;NoRsh&quot; will cause connections to this server to skip
20026 the &quot;rsh&quot; attempt.
20027 This might be useful to avoid long timeouts caused by rsh firewalls, for
20028 example.
20030 </DD>
20032 <DT>Loser</DT>
20033 <DD>This option makes sense only for IMAP servers that do not perform
20034 a SEARCH command correctly. If your filtering rules
20035 fail to filter some messages, that should have been filtered, then this
20036 option will make Alpine download all data necessary to perform that search.
20037 There is a performance penalty when using this option. Downloading the
20038 data to perfom the search will take longer than requesting the IMAP
20039 server to perform the filtering, but the filtering will be done correctly.
20041 </DD>
20044 <DT>Service</DT>
20045 <DD>This parameter requires an associated value.  The default value is
20046 &quot;IMAP&quot; which indicates communication with the server based
20047 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20048 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20050 Other service values include:
20051  <DL>
20052  <DT>NNTP</DT>
20053  <DD>This value indicates communication with the server takes place via
20054 the Network News Transfer Protocol.  Use this to define a collection
20055 of newsgroups on a remote news server.  So
20058 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20060 or just
20062 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20065 is the way to specify NNTP access.
20067  </DD>
20069  <DT>POP3</DT>
20070  <DD>This value indicates communication with the server takes place via the
20071 Post Office Protocol 3 protocol.
20074 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20076 or just
20078 <CENTER><SAMP>/POP3</SAMP></CENTER>
20081 Note that there are several important issues
20082 to consider when selecting this option:
20083 <OL>
20084  <LI> POP3 provides access to only your INBOX.  In other words,
20085 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20086  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20087 model and will leave your mail on the server. Refer to the
20088 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20089  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20090 </OL>
20091 </DD>
20092 </DL>
20093 </DL>
20096 Note that it is possible to include more than one parameter in a server
20097 specification by concatenating the parameters. For example:
20100 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20104 &lt;End of help on this topic&gt;
20105 </BODY>
20106 </HTML>
20107 ======= h_composer_cntxt_server =======
20108 <HTML>
20109 <HEAD>
20110 <TITLE>Collection Server: Explained</TITLE>
20111 </HEAD>
20112 <BODY>
20113 <H1>Collection Edit Help -- Server Field</H1>
20115 This collection's &quot;Server:&quot; definition indicates the
20116 hostname of the server providing access to the folders in this
20117 collection.
20118 The syntax of this server name is the same as for other server names used
20119 in remote folder names in
20120 Alpine and is described
20121 <A HREF="h_folder_server_syntax">here</A>.
20124 &lt;End of help on this topic&gt;
20125 </BODY>
20126 </HTML>
20127 ======= h_composer_cntxt_path =======
20128 <HTML>
20129 <HEAD>
20130 <TITLE>Collection Path: Explained</TITLE>
20131 </HEAD>
20132 <BODY>
20133 <H1>Collection Edit Help -- Path Field</H1>
20135 The collection's &quot;Path:&quot; definition indicates the location
20136 of the folders in this collection.  If the path or any of its components
20137 do not exist, Alpine will prompt you for their creation when exiting the
20138 Add/Change screen.
20140 <P> 
20141 By default the path is interpreted as defining a section of your personal
20142 folder area.  This area and how you specify it are defined by the
20143 server, if one is specified in the collection, or, typically, the home
20144 directory if no server is defined.
20147 To define a collection outside the default &quot;area&quot;, prefix
20148 the path with the &quot;namespace&quot; to use when interpreting the
20149 given path.  If a namespace is specified, the Path begins with the
20150 sharp, &quot;#&quot;, character followed by the name of the namespace
20151 and then the namespace's path-element-delimiter.  Aside from the
20152 path's format, namespaces can also imply access rights, content
20153 policy, audience, location, and, occasionally, access methods.
20156 Each server exports its own set (possibly of size one) of 
20157 namespaces.  Hence, it's likely communication with your server's
20158 administrator will be required for specific configurations.  Some of
20159 the more common namespaces, however, include:
20161 <DL>
20162 <DT>#news.</DT>
20163 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20164 names are hierarchically defined with each level delimited by a period.
20165 </DD>
20166 <DT>#public/</DT>
20167 <DD>This specifies a folder area that the server may export to the general
20168 public.
20169 </DD>
20170 <DT>#shared/</DT>
20171 <DD>This specifies a folder area that the folder may export to groups
20172 of users.
20173 </DD>
20174 <DT>#ftp/</DT>
20175 <DD>This specifies a folder area that is the same as that it may have 
20176 exported via the &quot;File Transfer Protocol&quot;.
20177 </DD>
20178 <DT>#mh/</DT>
20179 <DD>This specifies the personal folder area associated with folders
20180 and directories that were created using the MH message handling system.
20181 </DD>
20182 </DL>
20185 In addition, the server may support access to other user's folders,
20186 provided you have suitable permissions.  Common methods use a prefix
20187 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20188 indicate the root of the other user's folder area.
20191 No, nothing's simple.
20194 &lt;End of help on this topic&gt;
20195 </BODY>
20196 </HTML>
20197 ======= h_composer_cntxt_view =======
20198 <HTML>
20199 <HEAD>
20200 <TITLE>Collection View: Explained</TITLE>
20201 </HEAD>
20202 <BODY>
20203 <H1>Collection Edit Help -- View Field</H1>
20205 The collection's &quot;View:&quot; definition provides a way to limit
20206 the displayed list of folders within a collection.  By default, only
20207 folders that contain the specified characters anywhere in their name
20208 are shown in the collection's folder list.
20211 Additionally, you can use a wildcard character to better control
20212 the list of folders selected for display.  The wildcard specifier is
20213 the star, &quot;*&quot;, character.
20216 So, for example, to define a collection of all folders ending with
20217 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20218 quote characters!).  Or, similarly, to define a collection of folders
20219 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20220 specify a view of &quot;a*z&quot;.
20223 &lt;End of help on this topic&gt;
20224 </BODY>
20225 </HTML>
20226 ======= h_composer_abook_add_server =======
20227 <HTML>
20228 <HEAD>
20229 <TITLE>Addressbook Server Name Field Explained</TITLE>
20230 </HEAD>
20231 <BODY>
20232 This field should be left blank if the address book is stored in a regular
20233 file on this system.  If it is a remote address book stored on an IMAP
20234 server then this is the name of that IMAP server.
20236 Look <A HREF="h_edit_nav_cmds">here</A>
20237 to see the available Editing and Navigation commands.
20239 &lt;End of help on this topic&gt;
20240 </BODY>
20241 </HTML>
20242 ======= h_composer_abook_add_folder =======
20243 <HTML>
20244 <HEAD>
20245 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20246 </HEAD>
20247 <BODY>
20248 For a remote address book (one for which the Server Name is filled in)
20249 this is the name of a folder on the remote server. The address book data
20250 will be stored in this folder. This folder should be used only for
20251 storing this single address book, not for other address books or for
20252 other messages.
20254 For a local address book (one for which the Server Name is not filled in)
20255 this is the name of a file in which the address book will be stored.
20256 The file is in the same directory as the Alpine configuration file if the
20257 configuration file is local.
20258 If the configuration file is remote, then this will be in the home directory
20259 for Unix Alpine and in the directory specified by the
20260 &quot;-aux local_directory&quot; command line argument.
20262 Look <A HREF="h_edit_nav_cmds">here</A>
20263 to see the available Editing and Navigation commands.
20265 &lt;End of help on this topic&gt;
20266 </BODY>
20267 </HTML>
20268 ======= h_composer_abook_add_nick =======
20269 <HTML>
20270 <HEAD>
20271 <TITLE>Addressbook NickName Field Explained</TITLE>
20272 </HEAD>
20273 <BODY>
20274 This is just an optional nickname for this address book. If present, it
20275 is used in some of the displays and error messages in the address book
20276 maintenance screens. It is for your convenience only and serves no
20277 other purpose.
20279 Look <A HREF="h_edit_nav_cmds">here</A>
20280 to see the available Editing and Navigation commands.
20282 &lt;End of help on this topic&gt;
20283 </BODY>
20284 </HTML>
20285 ======= h_composer_qserv_cn =======
20286 <HTML>
20287 <HEAD>
20288 <TITLE>Directory Query Form Explained</TITLE>
20289 </HEAD>
20290 <BODY>
20292 Fill in as many of these fields as you wish to narrow down your
20293 search. All the fields you fill in must match in order for an entry
20294 to be returned. You may use the wildcard character &quot;*&quot; in
20295 any of the fields, it matches any zero or more characters at that
20296 point in the string. There are no implicit wildcards, so the match is
20297 exact unless you include wildcards.
20300 Note that if an attribute isn't present at all, then the match will fail.
20301 For example, if a server doesn't support the Locality attribute, then no
20302 matter what you put in the Locality field (other than leaving it empty)
20303 the search will fail.
20306 This field, the Common Name field, is typically a person's full name.
20309 <H1>EDITING and NAVIGATION COMMANDS</H1>
20310 <!--chtml if pinemode="function_key"-->
20311 <PRE>
20312 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20313 ^B (Left Arrow)    Back character       | ^D       Delete current character
20314 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20315 ^P (Up Arrow)      Previous line        |
20316 ^N (Down Arrow)    Next line            | F9       Cut marked text or
20317 ^A                 Beginning of line    |            delete current line
20318 ^E                 End of line          | F10      Undelete line(s)
20319 F7                 Previous page        |
20320 F8                 Next page            |-------------------------------------
20321 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20322 ----------------------------------------|
20323 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
20324 F2   Cancel      |   F1    Get help     |
20325 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
20326 </PRE>
20327 <!--chtml else-->
20328 <PRE>
20329 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20330 ^B (Left Arrow)    Back character       | ^D       Delete current character
20331 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20332 ^P (Up Arrow)      Previous line        |
20333 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
20334 ^A                 Beginning of line    |            delete current line
20335 ^E                 End of line          | ^U       Undelete line(s)
20336 ^Y                 Previous page        |
20337 ^V                 Next page            |-------------------------------------
20338 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20339 ----------------------------------------|
20340 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
20341 ^C   Cancel      |   ^G    Get help     |
20342 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
20343 </PRE>
20344 <!--chtml endif-->
20345 <P><UL>
20346 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20347 </UL><P>
20348 &lt;End of help on this topic&gt;
20349 </BODY>
20350 </HTML>
20351 ======= h_composer_qserv_sn =======
20353 The Surname is usually the family name of a person.
20355 <End of help on this topic>
20356 ======= h_composer_qserv_gn =======
20358 This is the part of a person's name that isn't the surname or initials.
20360 <End of help on this topic>
20361 ======= h_composer_qserv_mail =======
20363 This is the email address of a person.
20365 <End of help on this topic>
20366 ======= h_composer_qserv_org =======
20368 This is the organization a person belongs to.
20370 <End of help on this topic>
20371 ======= h_composer_qserv_unit =======
20373 This is the organizational unit a person belongs to.
20375 <End of help on this topic>
20376 ======= h_composer_qserv_country =======
20378 This is the country a person belongs to.
20380 <End of help on this topic>
20381 ======= h_composer_qserv_state =======
20383 This is the state a person belongs to.
20385 <End of help on this topic>
20386 ======= h_composer_qserv_locality =======
20388 This is the locality a person belongs to.
20390 <End of help on this topic>
20391 ======= h_composer_qserv_custom =======
20393 This one is for advanced users only! If you put something in this field,
20394 then the rest of the fields are ignored.
20396 This field may be set to the string representation of an LDAP search
20397 filter (see RFC1960). Here are some examples:
20399 To search for an entry with a surname equal to "clinton" you could set
20400 the custom filter to:
20402      (sn=clinton)
20403     
20404 This is equivalent to putting "clinton" in the SurName field.
20405 To search for an entry that has a surname that begins with "clint" and
20406 has a givenname equal to "william" you could use:
20408      (&(sn=clint*)(givenname=william))
20409     
20410 This is equivalent to setting the SurName field to "clint*" and the
20411 GivenName field to "william".
20412 To search for an entry where either the common name OR the email address
20413 contains "abcde" you could use:
20415      (|(cn=*abcde*)(mail=*abcde*))
20417 That isn't equivalent to anything you can do by setting the other fields
20418 because of the OR.
20420 <End of help on this topic>
20421 ======= h_composer_qserv_qq =======
20423 This one is a little different from the rest of the categories.  It causes
20424 a search to be formed from the configured search filter that you filled
20425 in when you added the directory server to your configuration. It can also
20426 be combined with the other fields if you'd like.
20428 <End of help on this topic>
20429 ======= h_address_format =======
20430 <HTML>
20431 <HEAD>
20432 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
20433 </HEAD>
20434 <BODY>
20435 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
20437 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
20438 and then a domain, with no spaces.  
20439 For example, jsmith@art.example.com might be the email address
20440 of a person  
20441 with the username &quot;jsmith&quot; who has an account in the domain
20442 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
20443 right of the &quot;@&quot; sign can vary - a shorter example would be 
20444 isabelle@elsewhere.edu (the shortest possible form: here, only the 
20445 organization's domain is specified after the &quot;@&quot; sign); a longer 
20446 example would be 
20447  jsingh@shakti.edutech.example.com
20448 (here, the name of the host &quot;shakti&quot; in the domain 
20449 edutech.example.com is also specified).  
20450 <P>  
20451 If you do not know the exact email address of someone you want to write 
20452 to, ask them what it is using other means of communication than email; or 
20453 use the tools for 
20454 finding people's addresses that are available on the Internet.
20456 If you are sending to someone on the same system as you are, you can leave
20457 the &quot;@&quot; sign and all the information to its right off of the 
20458 address, and Alpine will fill it in automatically, 
20459 unless the feature 
20460 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
20463 When an email address you send a message to is not reachable -- either because 
20464 it is simply an incorrect address, or because email can temporarily not be 
20465 delivered to it due to a technical problem on the way to or at the recipient's 
20466 end -- you will almost always get an error notification email message back.
20468 If you encounter problems with, or have questions about, email delivery or
20469 email address syntax, contact your local network computing consultants.
20470 <P><UL>
20471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20472 </UL>
20474 &lt;End of help on this topic&gt;
20475 </BODY>
20476 </HTML>
20477 ======= h_flag_user_flag =======
20478 <HTML>
20479 <HEAD>
20480 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
20481 </HEAD>
20482 <BODY>
20483 <H1>STATUS FLAG: User Defined Keyword</h1>
20485 This is a keyword that is defined for this folder.
20486 It was most likely defined by the owner of the folder.
20487 Alpine will not set or clear this flag on its own.
20489 <P><UL>
20490 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20491 </UL><P>
20492 &lt;End of help on this topic&gt;
20493 </BODY>
20494 </HTML>
20495 ======= h_flag_important =======
20496 <html>
20497 <title>STATUS FLAG: Important</title>
20498 <body>
20499 <h1>STATUS FLAG: Important</h1>
20502 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
20503 MESSAGE&nbsp;INDEX
20504 screen, can only be set by the user, and is intended to be used in
20505 whatever fashion makes sense to you.  You are the only one that can set or
20506 clear it. 
20509 &lt;End of help on this topic&gt;
20510 </BODY>
20511 </HTML>
20512 ======= h_flag_new =======
20513 <html>
20514 <title>STATUS FLAG: New</title>
20515 <body>
20516 <h1>STATUS FLAG: New</h1>
20519 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
20520 MESSAGE&nbsp;INDEX screen,
20521 is automatically set when messages are delivered to your Inbox (or other
20522 folder specified outside of Alpine).  Likewise, it is cleared automatically
20523 the first time you read the message it is associated with.
20526 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
20527 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
20528 you'd like to be reminded of it next time you read mail.  This can be done
20529 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
20533 &lt;End of help on this topic&gt;
20534 </BODY>
20535 </HTML>
20536 ======= h_flag_answered =======
20537 <html>
20538 <title>STATUS FLAG: Answered</title>
20539 <body>
20540 <h1>STATUS FLAG: Answered</h1>
20542 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
20543 MESSAGE&nbsp;INDEX
20544 screen, is automatically set when you reply to a message.  This flag is not
20545 automatically cleared.
20548 &lt;End of help on this topic&gt;
20549 </BODY>
20550 </HTML>
20551 ======= h_flag_forwarded =======
20552 <html>
20553 <title>STATUS FLAG: Forwarded</title>
20554 <body>
20555 <h1>STATUS FLAG: Forwarded</h1>
20557 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
20558 MESSAGE&nbsp;INDEX
20559 screen, is automatically set when you forward a message.  This flag is not
20560 automatically cleared.
20563 &lt;End of help on this topic&gt;
20564 </BODY>
20565 </HTML>
20566 ======= h_flag_deleted =======
20567 <html>
20568 <title>STATUS FLAG: Deleted</title>
20569 <body>
20570 <h1>STATUS FLAG: Deleted</h1>
20572 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
20573 MESSAGE&nbsp;INDEX
20574 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
20575 It is cleared
20576 when you use the &quot;U&nbsp;Undelete&quot; command.
20579 Messages marked with this flag will be permanently removed from
20580 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
20581 command, or
20582 when you indicate acceptance of their removal upon leaving the folder.
20585 Note, there can be other actions implicit in the
20586 &quot;D&nbsp;Delete&quot; command,
20587 such as advancing to the next message, that may be momentarily undesirable.
20588 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
20589 flag <A HREF="h_common_flag">explicitly</A>.
20592 &lt;End of help on this topic&gt;
20593 </BODY>
20594 </HTML>
20595 ====== h_config_incoming_timeo ======
20596 <HTML>
20597 <HEAD>
20598 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
20599 </HEAD>
20600 <BODY>
20601 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
20603 This option has no effect unless the feature
20604 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20605 is set, which in turn has no effect unless
20606 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20607 is set.
20609 Sets the time in seconds that Alpine will
20610 attempt to open a network connection used for monitoring for Unseen
20611 messages in Incoming Folders. The default is 5.
20612 If a connection has not completed within this many seconds Alpine will
20613 give up and consider it a failed connection.
20615 <UL>   
20616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20617 </UL><P>
20618 &lt;End of help on this topic&gt;
20619 </BODY>
20620 </HTML>
20621 ====== h_config_psleep ======
20622 <HTML>
20623 <HEAD>
20624 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
20625 </HEAD>
20626 <BODY>
20627 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
20630 In the good old days a mailcap viewer was used to examine an 
20631 attachment before saving it, and after viewing the attachment control 
20632 would return to the operating system when the viewer was closed. Therefore, 
20633 when the mailcap viewer returned control to the operating system, it 
20634 could be assumed that the user who opened the attachment was done
20635 examining it, and the copy of the attachment that was used, could be removed.
20638 However, today this assumption is not longer valid. Some viewers return 
20639 control to the operating system before they actually read the attachment
20640 to be examined. This causes Alpine to delete the attachment before it 
20641 is read by the viewer, causing the viewer to fail opening the attachment.
20644 In order to work around this problem, Alpine checks, after the viewer has 
20645 returned control to the operating system, if there is any process that is 
20646 using the attachment. This variable controls the number of seconds that 
20647 must elapse between checks. Once it is found that no process is using the 
20648 attachment, this is removed.
20651 The minimum value for this variable is 60 (checks will be made once per 
20652 minute), and the maximum value is 600 (checks will be made once every 10 
20653 minutes). The default value is 60.
20656 <UL>   
20657 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20658 </UL><P>
20659 &lt;End of help on this topic&gt;
20660 </BODY>
20661 </HTML>
20662 ====== h_config_incoming_interv ======
20663 <HTML>
20664 <HEAD>
20665 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
20666 </HEAD>
20667 <BODY>
20668 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
20670 This option has no effect unless the feature
20671 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20672 is set, which in turn has no effect unless
20673 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20674 is set.
20676 This option specifies, in seconds, how often Alpine will check
20677 for new mail and state changes in Incoming Folders when Incoming Folders
20678 Checking is turned on.
20679 The default is 3 minutes (180).
20680 This value applies only to folders that are local to the system that
20681 Alpine is running on or that are accessed using the IMAP protocol.
20682 The similar option
20683 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
20684 applies to all other monitored folders.
20686 <UL>   
20687 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20688 </UL><P>
20689 &lt;End of help on this topic&gt;
20690 </BODY>
20691 </HTML>
20692 ====== h_config_incoming_second_interv ======
20693 <HTML>
20694 <HEAD>
20695 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
20696 </HEAD>
20697 <BODY>
20698 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
20700 This option has no effect unless the feature
20701 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20702 is set, which in turn has no effect unless
20703 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20704 is set.
20706 This option together with the option
20707 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
20708 specifies, in seconds, how often Alpine will check
20709 for new mail and state changes in Incoming Folders when Incoming Folders
20710 Checking is turned on.
20711 The default for this option is 3 minutes (180).
20712 For folders that are local to this system or
20713 that are accessed using the IMAP protocol
20714 the value of the option
20715 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
20716 is used.
20717 For all other monitored folders, the value of this option is used.
20719 The reason there are two separate options is because it is usually
20720 less expensive to check local and IMAP folders than it is to check
20721 other types, like POP or NNTP folders.
20722 You may want to set this secondary value to a higher number than
20723 the primary check interval.
20725 <UL>   
20726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20727 </UL><P>
20728 &lt;End of help on this topic&gt;
20729 </BODY>
20730 </HTML>
20731 ====== h_config_incoming_list ======
20732 <HTML>
20733 <HEAD>
20734 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
20735 </HEAD>
20736 <BODY>
20737 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
20739 This option has no effect unless the feature
20740 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
20741 is set, which in turn has no effect unless
20742 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
20743 is set.
20745 When monitoring the Incoming Message Folders for Unseen messages Alpine will
20746 normally monitor all Incoming Folders.
20747 You may use this option to restrict the list of monitored folders to a
20748 subset of all Incoming Folders.
20750 <UL>   
20751 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20752 </UL><P>
20753 &lt;End of help on this topic&gt;
20754 </BODY>
20755 </HTML>
20756 ====== h_config_pers_name ======
20757 <HTML>
20758 <HEAD>
20759 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
20760 </HEAD>
20761 <BODY>
20762 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
20764 This value is used to determine the full name part of the "From" address
20765 on messages you send.
20766 <!--chtml if pinemode="os_windows"-->
20767  PC-Alpine requires that this be set in order to properly construct the "From" address.
20768 <!--chtml else-->
20769  If unset, Unix Alpine will obtain your full name from
20770  the system password file. PC-Alpine, on the other hand, requires that this be set.
20771 <!--chtml endif-->
20773 If you want to change the value of what gets included in the From header
20774 in messages you send (other than just the Personal Name)
20775 look <A HREF="h_config_change_your_from">here</A> for a description.
20776 <P><UL>
20777 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20778 </UL><P>
20779 &lt;End of help on this topic&gt;
20780 </BODY>
20781 </HTML>
20782 ====== h_config_pruned_folders ======
20783 <html>
20784 <header>
20785 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
20786 </header>
20787 <body>
20788 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
20790 This variable allows you to define a list of one or more folders that
20791 Alpine will offer to prune for you in the same way it automatically offers
20792 to prune your "sent-mail" folder each month.
20793 Each folder in this list must be a folder in your default folder collection
20794 (the first folder collection if you have more than one), and it is just
20795 the relative name of the folder in the collection, not the fully-qualified name.
20796 It is similar to sent-mail.
20797 Instead of something like
20799 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
20801 the correct value to use would be
20803 <CENTER><SAMP>folder</SAMP></CENTER>
20805 There is an assumption here that your first collection is the folders in
20807 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
20810 Once a month, for each folder listed, Alpine will offer to move
20811 the contents of the folder to a new folder of the same name but with
20812 the previous month's date appended.  Alpine will then look for any such
20813 date-appended folder names created for a previous month, and offer each
20814 one it finds for deletion.
20817 If you decline the first offer, no mail is moved and no new folder is
20818 created.
20821 The new folders will be created
20822 in your default folder collection.
20825 <UL>   
20826 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20827 </UL><P>
20828 &lt;End of help on this topic&gt;
20829 </body>
20830 </html>
20831 ====== h_config_upload_cmd ======
20832 <HTML>
20833 <HEAD>
20834 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
20835 </HEAD>
20836 <BODY>
20837 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
20839 This option affects the behavior of the Composer's &quot;Read File&quot; 
20840 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
20841 commands.  It specifies
20842 a Unix program name, and any necessary command line arguments, that Alpine can
20843 use to transfer files from your personal computer into messages that you are
20844 composing.<P>
20846 <B>Note:</B> this facility is intended for use with serial line transfer 
20847 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
20848 to work with TCP/IP file transfer programs such as ftp.<P>
20850 If a program is specified, the commands listed above are modified to offer a
20851 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
20852 specified here must match the transfer program or protocol available on the
20853 personal computer.<P>
20855 Alpine expects to exchange uploaded data via a file on your Unix system.  When
20856 the specified upload program finishes, Alpine expects the uploaded data to be
20857 contained in this file.<P>
20859 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
20860 generates a
20861 temporary file name that it will pass to the specified Unix program.  Alpine
20862 will read the resulting uploaded text from this file and then delete it when
20863 the upload command is finished.<P>
20865 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
20866 prompt
20867 you for the name of the file that is to contain the uploaded information that
20868 it is to attach.  Alpine will attach this file to the composition, but will
20869 <B>not</B> delete this file after the upload command is finished.<P>
20871 The special token &quot;_FILE_&quot; may be included among the Unix program's 
20872 command
20873 line arguments.  Alpine will replace this symbol with the name of the file
20874 being used to exchange the uploaded information.  This token allows you to
20875 position the file name where it is required in the Unix program's command
20876 line arguments.<P>
20878 If the &quot;_FILE_&quot; token is not present in the specified command, the
20879 temporary file's name is automatically appended to the specified Unix
20880 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
20881 <B>last</B> command line argument.
20882 <P><UL>
20883 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20884 </UL><P>
20885 &lt;End of help on this topic&gt;
20886 </BODY>
20887 </HTML>
20888 ====== h_config_upload_prefix ======
20889 <HTML>
20890 <HEAD>
20891 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
20892 </HEAD>
20893 <BODY>
20894 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
20896 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
20897 It defines text to be written to the terminal emulator (via standard output)
20898 immediately prior to starting upload command.  This is useful for
20899 integrated serial line file transfer agents that permit command passing
20900 (e.g., Kermit's APC method).<P>
20902 The special token &quot;_FILE_&quot; may be included in the string specification.
20903 That symbol will be replaced with the (Alpine-created) name of the temporary
20904 file in which Alpine will expect to find the uploaded file.
20905 <P><UL>
20906 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20907 </UL><P>
20908 &lt;End of help on this topic&gt;
20909 </BODY>
20910 </HTML>
20911 ====== h_config_download_cmd ======
20912 <HTML>
20913 <HEAD>
20914 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
20915 </HEAD>
20916 <BODY>
20917 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
20919 This option affects the behavior of the Export command.  It specifies a Unix
20920 program name, and any necessary command line arguments, that Alpine can use to
20921 transfer the exported message to your personal computer's disk.<P>
20922 Note: this facility is intended for use with serial line transfer 
20923 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
20924 to work with TCP/IP file transfer programs such as ftp.<P>
20925 If a program is specified, the Export command is modified to offer a
20926 subcommand (^V) to activate the transfer (in lieu of saving it to
20927  the machine where Alpine is running).  Obviously, the Unix program
20928 specified here must match the transfer program or protocol available on the
20929 personal computer.<P>
20931 When this subcommand is selected and before Alpine invokes the specified Unix
20932 program, Alpine will create a temporary file containing the text of the
20933 exported message.  Alpine uses this file to pass the exported message text to
20934 the specified Unix program.<P>
20936 The special token &quot;_FILE_&quot; may be included among the Unix program's command
20937 line arguments.  Alpine will replace this symbol with the temporary file's name
20938 before executing the Unix program.  This token allows you to position the
20939 file name where it is required in the Unix program's command line arguments.
20941 If the &quot;_FILE_&quot; token is not present in the specified command, the
20942 temporary file's name is automatically appended to the specified Unix
20943 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
20944 <B>last</B> command line argument.
20945 <P><UL>
20946 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20947 </UL><P>
20948 &lt;End of help on this topic&gt;
20949 </BODY>
20950 </HTML>
20951 ====== h_config_download_prefix ======
20952 <HTML>
20953 <HEAD>
20954 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
20955 </HEAD>
20956 <BODY>
20957 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
20959 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
20960 It defines text to be written to the terminal emulator (via standard output)
20961 immediately prior to starting the download command.  This is useful for
20962 integrated serial line file transfer agents that permit command passing
20963 (e.g., Kermit's APC method).
20965 The special token &quot;_FILE_&quot; may be included in the string 
20966 specification.
20967 That symbol will be replaced with the (Alpine-created) name of the temporary
20968 file into which Alpine will place the message to be downloaded.
20969 <P><UL>
20970 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20971 </UL><P>
20972 &lt;End of help on this topic&gt;
20973 </BODY>
20974 </HTML>
20975 ====== h_config_mailcap_path ======
20976 <HTML>
20977 <HEAD>
20978 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
20979 </HEAD>
20980 <BODY>
20981 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
20982 This variable is used to replace Alpine's default mailcap file search path.
20983 It takes one or more file names (full paths must be specified) in which to
20984 look for mail capability data.  The default search path can be found in this
20985 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
20986 If there is more than one file name listed, list members should be delimited
20987 by 
20988 <!--chtml if pinemode="os_windows"-->
20989 a semi-colon (;) under Windows; for example:<PRE>
20990         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
20991 </PRE>
20992 <!--chtml else-->
20993 a colon (:) under UNIX; for example:<PRE>
20994         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
20995 </PRE>
20996 <!--chtml endif-->
20997 <P><UL>
20998 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
20999 </UL>
21001 &lt;End of help on this topic&gt;
21002 </BODY>
21003 </HTML>
21004 ====== h_config_mimetype_path ======
21005 <HTML>
21006 <HEAD>
21007 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21008 </HEAD>
21009 <BODY>
21010 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21012 This variable is used to replace Alpine's default mime.types file search path.
21013 It takes one or more file names (full paths must be specified) in which to
21014 look for file-name-extension to MIME type mapping data.  The default search
21015 path can be found in this
21016 <A HREF="h_news_config">Alpine Configuration</A> help.
21020 If there is more than one file name listed, list members should be delimited
21021 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21023 &lt;End of help on this topic&gt;
21024 </BODY></HTML>
21025 ====== h_config_set_att_ansi ======
21026 <HTML><HEAD>
21027 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21028 </HEAD>
21029 <BODY>
21030 <H1>OPTION: Set printer to attached ansi printer</H1>
21032 Type "S" to set your printer to "attached-to-ansi".<BR>
21033 It is OK to include "attached-to-ansi" in your personal list below.
21035 &lt;End of help on this topic&gt;
21036 </BODY></HTML>
21037 ====== h_config_set_att_ansi2 ======
21038 <HTML><HEAD>
21039 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21040 </HEAD>
21041 <BODY>
21042 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21044 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21045 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21046 list below.
21050 This is the same as the "attached-to-ansi" option except that a
21051 formfeed character will not be appended to the end of the print job.
21052 If your printer already ejects the paper by itself at the end of the
21053 job, you may prefer the "no-formfeed" form of this printer so that you
21054 don't get an extra blank page between print jobs.
21057 &lt;End of help on this topic&gt;
21058 </BODY></HTML>
21059 ====== h_config_set_att_wyse ======
21060 <HTML><HEAD>
21061 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21062 </HEAD>
21063 <BODY>
21064 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21066 Type "S" to set your printer to "attached-to-wyse".<BR>
21067 It is OK to include "attached-to-wyse" in your personal list below.
21069 This is very similar to "attached-to-ansi".
21070 The only difference is in the control characters sent to turn the printer
21071 on and off.
21072 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21073 to turn on the printer and ESC LEFT_BRACKET 4 i
21074 to turn it off.
21075 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21076 &lt;End of help on this topic&gt;
21077 </BODY></HTML>
21078 ====== h_config_set_att_wyse2 ======
21079 <HTML><HEAD>
21080 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21081 </HEAD>
21082 <BODY>
21083 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21085 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21086 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21087 list below.
21091 This is the same as the "attached-to-wyse" option except that a
21092 formfeed character will not be appended to the end of the print job.
21093 If your printer already ejects the paper by itself at the end of the
21094 job, you may prefer the "no-formfeed" form of this printer so that you
21095 don't get an extra blank page between print jobs.
21098 &lt;End of help on this topic&gt;
21099 </BODY></HTML>
21100 ====== h_config_set_stand_print ======
21101 <HTML>
21102 <HEAD>
21103 <TITLE>OPTION: Set default printer</TITLE>
21104 </HEAD>
21105 <H1>OPTION: Set default printer</H1>
21106 <BODY>
21107 Move to the printer you want and type "S" to set it to be your
21108 default printer.  This list is not modifiable by you and has been
21109 set up by the system administrators.  If there is more than one printer
21110 listed in the Command List, you will be able to cycle through that
21111 whole list at the time you print, starting with your default.
21112 It is OK to include entries from this Standard list in your personal
21113 list below.
21115 &lt;End of help on this topic&gt;
21116 </BODY>
21117 </HTML>
21118 ====== h_config_set_custom_print ======
21119 <HTML>
21120 <HEAD>
21121 <TITLE>OPTION: Set default printer</TITLE>
21122 </HEAD>
21123 <H1>OPTION: Set default printer</H1>
21124 <BODY>
21125 You may add as many print commands as you want to your personal list.
21126 Specify one of them as your default printer by moving to the printer
21127 you want and typing "S".  If there is more than one printer listed
21128 in the Command List, you will be able to cycle through that list at
21129 the time you print, starting with your default.  It is OK to include
21130 entries from the Standard list above or to include the command
21131 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21132 "attached-to-wyse-no-formfeed" as one of the entries here.
21134 &lt;End of help on this topic&gt;
21135 </BODY>
21136 </HTML>
21137 ====== h_config_user_id =====
21138 <HTML>
21139 <HEAD>
21140 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21141 </HEAD>
21142 <BODY>
21143 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21145 This value is used as part of the "From" address on messages you send.
21146 It is also the default login name for remote IMAP server access.  Set this
21147 to the username part you want to appear on outgoing email.
21149 If you want to change the value of what gets included in the From header
21150 in messages you send (other than just the User ID)
21151 look <A HREF="h_config_change_your_from">here</A> for a description.
21153 <P><UL>   
21154 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21155 </UL><P>
21156 &lt;End of help on this topic&gt;
21157 </BODY>
21158 </HTML>
21159 ====== h_config_user_dom =====
21160 <HTML>
21161 <HEAD>
21162 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21163 </HEAD>
21164 <BODY>
21165 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21167 This value specifies the domain part (right-hand side) of your return
21168 address on outgoing email and is also used as the default domain for email
21169 composed to a local user.
21170 <!--chtml if pinemode="os_windows"-->
21171  This value is required for PC-Alpine. If you are unsure as to what this should be,
21172  contact your local help desk, system administrator, or Internet Service Provider.
21173 <!--chtml else-->
21174  If unset, Unix Alpine will obtain the domain from
21175  the system.  Often this value will be set for your whole site by the
21176  system administrator.<P>
21177 <!--chtml endif-->
21178 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21179 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21181 If you want to change the value of what gets included in the From header
21182 in messages you send (other than just the User Domain)
21183 look <A HREF="h_config_change_your_from">here</A> for a description.
21184 <P><UL>
21185 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21186 </UL><P>
21187 &lt;End of help on this topic&gt;
21188 </BODY>
21189 </HTML>
21190 ====== h_config_smtp_server =====
21191 <HTML>
21192 <HEAD>
21193 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21194 </HEAD>
21195 <BODY>
21196 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21197 This value specifies the name of one or more SMTP 
21198 (Simple Mail Transfer Protocol) servers for sending mail. 
21199 <!--chtml if pinemode="os_windows"-->
21200 You must have an SMTP server for use with PC-Alpine.
21201 SMTP servers are
21202 normally set up by a system administrator for use by all members of a given
21203 campus or department.
21204 Contact your local help desk to ask what SMTP
21205 servers you should use.  
21206 <!--chtml else-->
21207 Unix Alpine users may not need to set an SMTP server.
21208 Alpine will attempt to execute the program (usually sendmail) that is used
21209 to insert mail into the mail system.
21210 If this works for you, you may leave this option blank.
21211 If there is an SMTP server running on the Unix host you may be able to
21212 improve sending performance slightly by setting the SMTP server option
21213 to &quot;localhost&quot; or to the actual name of the Unix host.
21215 If the Unix host doesn't work the way Alpine was expecting you will need to
21216 set the value of this option.
21217 SMTP servers are
21218 normally set up by a system administrator for use by all members of a given
21219 campus or department.
21220 Contact your local help desk to ask what SMTP
21221 servers you should use.  
21222 <!--chtml endif-->
21224 Your SMTP server may offer SMTP AUTH authentication.
21225 It may even require it.
21226 If your SMTP server offers SMTP AUTH authentication you may specify a
21227 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21228 This parameter requires an associated value,
21229 the username identifier with which to establish the server
21230 connection.
21231 An example might be:
21234 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21237 If AUTH authentication is offered by the server, this will cause Alpine to
21238 attempt to use it.
21239 If AUTH authentication is not offered by the server, this will cause Alpine
21240 to fail sending with an error similar to:
21243 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21246 Another type of authentication that is used by some ISPs is called
21247 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21248 which means that you have to authenticate
21249 yourself to the POP or IMAP server by opening a mailbox before you
21250 can send mail.
21251 To do this, you usually only have to open your INBOX.
21254 You may tell Alpine to use the
21255 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21256 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21257 parameter
21258 in this option.
21259 At this time &quot;/submit&quot; is simply equivalent to specifying
21260 port 587, though it may imply more than that at some point in the future.
21261 Some ISPs are blocking port 25 in order to reduce the amount of spam
21262 being sent to their users.
21263 You may find that the submit option allows you to get around such a block.
21266 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21269 To specify any non-standard port number on the SMTP server you may follow
21270 the hostname with a colon followed by the portnumber.
21273 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21276 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21277 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21278 If that fails then a non-encrypted connection will be attempted instead.
21279 You may specify that a TLS connection is required if you wish.
21280 If you append &quot;/tls&quot; to the name then the connection will fail
21281 instead of falling back to a non-secure connection.
21284 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
21288 For more details about server name possibilities see
21289 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21292 <UL>
21293 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21294 </UL>
21296 &lt;End of help on this topic&gt;
21297 </BODY>
21298 </HTML>
21299 ====== h_config_nntp_server =====
21300 <HTML>
21301 <HEAD>
21302 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
21303 <BODY>
21304 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
21306 This value specifies the name of one or more NNTP
21307 (Network News Transfer Protocol)
21308 servers for reading and posting USENET news.
21309 NNTP servers are normally
21310 set up by a system administrator for use by all members of a given campus
21311 or department.
21312 Contact your local help desk to ask what NNTP servers you should use.  
21313 <!--chtml if pinemode="os_windows"--><!--chtml else-->
21314 Often Unix Alpine users will find that this variable has been
21315 set for the whole system (and they don't have to worry about it).  
21316 <!--chtml endif-->
21317 When you define an NNTP server here, Alpine implicitly defines a news
21318 collection for you, assuming that server as the news server and assuming
21319 that you will use the NNTP protocol and a local newsrc configuration file
21320 for reading news.
21321 For more about reading news with Alpine, see
21322 <A HREF="h_reading_news">how to use Alpine to read news</A>.
21324 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
21325 or &quot;AUTHINFO USER&quot; authentication.
21326 It may even require it.
21327 If your NNTP server does offer such authentication you may specify a user name
21328 parameter to cause Alpine to attempt to authenticate.
21329 The same is true for the server name in a folder collection that uses NNTP.
21330 This parameter requires an associated value,
21331 the username identifier with which to establish the server connection.
21332 An example might be:
21335 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
21338 If authentication is offered by the server, this will cause Alpine to
21339 attempt to use it.
21340 If authentication is not offered by the server, this will cause Alpine
21341 to fail with an error similar to:
21344 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
21346 For more details about the server name possibilities see
21347 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21348 <P><UL>
21349 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21350 </UL><P>
21351 &lt;End of help on this topic&gt;
21352 </BODY>
21353 </HTML>
21354 ====== h_config_inbox_path =====
21355 <HTML>
21356 <HEAD>
21357 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
21358 </HEAD>
21359 <BODY>
21360 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
21362 This value overrides the default value of your INBOX name/path/location.
21363 <!--chtml if pinemode="os_windows"-->
21364 PC-Alpine users must specify an inbox path and it must be a folder on an
21365 IMAP server.  
21366 <!--chtml else-->
21367 Unix and VMS Alpine users will often find that this variable
21368 has been pre-configured by your system administrator.  
21369 <!--chtml endif-->
21370 You may be able to specify an alternate INBOX that is either a local folder 
21371 or a folder on an IMAP server.
21373 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
21374 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
21375 mail server.
21377 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21378 details on the syntax of folder definitions.
21380 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
21381 mail is disappearing.
21382 <P><UL>
21383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21384 </UL><P>
21385 &lt;End of help on this topic&gt;
21386 </BODY>
21387 </HTML>
21388 ====== h_config_change_your_from =====
21389 <HTML>
21390 <HEAD>
21391 <TITLE>How to Change your From Address</TITLE>
21392 </HEAD>
21393 <BODY>
21394 <H1>How to Change your From Address</H1>
21396 If the From address that Alpine includes in mail that you send is not correct,
21397 you may want to configure a different default value for the From address.
21398 You may follow these directions to change the default:
21401 <UL>
21402   <LI> Go to the Main Alpine Menu
21403   <LI> From there type the Setup Command
21404   <LI> From there type the Config Command
21405 </UL>
21408 You've probably already seen this SETUP CONFIGURATION screen.
21409 If not, there are many options you may want to set here.
21410 To set the value of the From header you may use the
21411 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
21412 Find it by scrolling down a few pages or use the WhereIs command to
21413 search for &quot;customized&quot;.
21414 You may want to read the help text associated with the option.
21416 To add a custom From header, type the Add command and enter the
21417 full header line, including the leading &quot;From:&nbsp;&quot;.
21418 For example:
21420 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
21422 Now exit the Setup command and try sending mail to yourself to see
21423 what the From line looks like.
21425 When you are in the composer you may edit the custom From line by typing
21426 Ctrl-R while your cursor is in the headers of the message and then moving
21427 to the From line and editing.
21428 If you want to leave the default value the same but add the possibility
21429 of being able to edit the header when you compose, add just the header
21430 name without a value.
21431 For example:
21433 <CENTER><SAMP>From:</SAMP></CENTER>
21435 If you change your From address you may also find it useful to add the
21436 changed From address to the
21437 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
21438 configuration option.
21440 <UL>   
21441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21442 </UL><P>
21443 &lt;End of help on this topic&gt;
21444 </BODY>
21445 </HTML>
21446 ====== h_config_default_fcc =====
21447 <HTML>
21448 <HEAD>
21449 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
21450 </HEAD>
21451 <BODY>
21452 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
21454 This value specifies where a copy of outgoing mail should be saved.  If
21455 this is not a path name, it will be in the default collection for saves.
21456 Any valid folder specification, local or IMAP, is allowed.  This default
21457 folder carbon copy only applies when the 
21458 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
21459 is set to use the default folder.  
21460 <!--chtml if pinemode="os_windows"-->
21461 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
21462 <!--chtml else-->
21463 Unix Alpine default
21464 is normally &quot;sent-mail&quot; in the default folder collection. 
21465 <!--chtml endif-->
21467 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
21468 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
21469 IMAP server (remember that in order to later access this remote folder through Alpine, it
21470 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21471 for more information). An example:<p>
21472 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
21474 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
21476 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21477 details on the syntax of folder definitions.
21479 <UL>   
21480 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21481 </UL><P>
21482 &lt;End of help on this topic&gt;
21483 </BODY>
21484 </HTML>
21485 ====== h_config_def_save_folder =====
21486 <HTML>
21487 <HEAD>
21488 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
21489 </HEAD>
21490 <BODY>
21491 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
21493 This option determines the default folder name for save-message operations 
21494 (&quot;saves&quot;).
21496 If this is not a path name, it will be in the default collection for saves.
21497 Any valid folder specification, local or IMAP, is allowed.  This default
21498 folder only applies when the
21499 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
21500 doesn't override it.  
21501 <!--chtml if pinemode="os_windows"-->
21502 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
21503 <!--chtml else-->
21504 Unix Alpine default
21505 is normally &quot;saved-messages&quot; in the default folder collection.
21506 <!--chtml endif-->
21507 If you access your email through an IMAP server, especially if you often switch between Unix
21508 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
21509 IMAP server (remember that in order to later access this remote folder through Alpine, it
21510 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
21511 for more information). An example:<p>
21512 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
21514 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21515 details on the syntax of folder definitions.
21517 <UL>   
21518 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21519 </UL><P>
21520 &lt;End of help on this topic&gt;
21521 </BODY>
21522 </HTML>
21523 ====== h_config_postponed_folder =====
21524 <HTML>
21525 <HEAD>
21526 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
21527 </HEAD>
21528 <BODY>
21529 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
21531 This value overrides the default name for the folder where postponed
21532 messages are saved.  If this is not a path name, it will be in the default
21533 collection for message Saves.  Any valid folder specification, local or
21534 remote, is allowed. 
21535 PC-Alpine default
21536 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
21537 The Unix Alpine default is normally &quot;postponed-msgs&quot;
21538 in the default collection. 
21540 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
21541 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
21542 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
21543 in all Alpine copies you use. 
21544 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
21545 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
21546 for more information). An
21547 example:<p> 
21548 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
21550 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21551 details on the syntax of folder definitions.
21553 <UL>   
21554 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21555 </UL><P>
21556 &lt;End of help on this topic&gt;
21557 </BODY>
21558 </HTML>
21559 ====== h_config_read_message_folder =====
21560 <HTML>
21561 <HEAD>
21562 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
21563 </HEAD>
21564 <BODY>
21565 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
21567 By virtue of specifying a folder name here, Alpine will be configured to
21568 save all messages that you have read during a session into the designated
21569 &quot;read messages&quot; folder.  This allows you to more easily distinguish
21570 between your really new email (in your INBOX) and those that you have
21571 already read.  Depending on how you define the 
21572 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21573 setting, you may or may not be asked when you quit
21574 Alpine if you want read messages to be moved to this folder.  In either
21575 case, moving the messages means they will be deleted from your INBOX.
21577 If this is not a path name, it will be in the default collection for
21578 saves.  Any valid folder specification, local or remote (via IMAP), is
21579 allowed.  There is no default for the name of the read message folder.
21581 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21582 details on the syntax of folder definitions.
21584 <UL>   
21585 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21586 </UL><P>
21587 &lt;End of help on this topic&gt;
21588 </BODY>
21589 </HTML>
21590 ====== h_config_form_folder =====
21591 <HTML>
21592 <HEAD>
21593 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
21594 </HEAD>
21595 <BODY>
21596 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
21598 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
21599 contain messages that you have composed and that are intended to be
21600 sent in their original form repeatedly.
21603 Setting this variable will alter Alpine's usual behavior when you
21604 execute the Compose command.  Normally, Alpine offers a chance to
21605 continue a postponed or interrupted message should one or the other
21606 exist.  When this variable is set to a folder name that exists, Alpine
21607 will also offer the chance to select a message from the folder to
21608 insert into the composer (much like when continuing a postponed message).
21609 The difference, however, is that Alpine will not automatically delete
21610 the selected message from the Form Letter Folder.
21612 Setting this variable will also affect Alpine's behavior when you
21613 Postpone a message from the composer.  Normally, Alpine simply stashes
21614 the message away in your
21615 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
21616 Regardless of the specified folder's existence, Alpine will ask which
21617 folder you intend the message to be stored in.  Choose the
21618 &quot;F&quot; option to store the message in your Form Letter Folder.
21619 This is the most common way to add a message to the folder.
21622 Another method of adding messages to the folder is via the Alpine
21623 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
21624 you expect to send in the same form again, you can enter the Form
21625 Letter Folder's name in this field.  Alpine, as usual, will copy the
21626 message as it's sent.  Note, when you later select this message from 
21627 your Form Letter Folder, it will have the same recipients as the original
21628 message.
21631 To delete a message from the Form Letter Folder, you can either select
21632 the folder from a suitable FOLDER LIST screen, or use the Delete
21633 command in the MESSAGE INDEX offered when selecting from the folder as
21634 part of the Compose command.  You can delete a Form Letter Folder just
21635 as any other folder from a suitable FOLDER LIST screen.
21638 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
21639 facility can be used
21640 to replace the Form Letter Folder.
21643 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21644 details on the syntax of folder definitions.
21647 <UL>   
21648 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21649 </UL><P>
21650 &lt;End of help on this topic&gt;
21651 </BODY>
21652 </HTML>
21653 ====== h_config_archived_folders =====
21654 <HTML>
21655 <HEAD>
21656 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
21657 </HEAD>
21658 <BODY>
21659 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
21661 This is like
21662 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
21663 only more general.  You may archive
21664 any of the folders in your incoming collection.  This is a list of folder
21665 pairs, with the first separated from the second in the pair by a space.
21666 The first folder in a pair is the folder you want to archive, and the
21667 second folder is the folder that read messages from the first should be
21668 moved to.  Depending on how you define the
21669 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
21670 setting, you may or may not be asked when you
21671 leave the first folder if you want read messages to be moved to the
21672 second folder.  In either case, moving the messages means they will be
21673 deleted from the first folder.
21675 The name of the first folder in each pair can be either the technical
21676 specification of the folder (like what appears in your configuration file)
21677 or (much easier) the nickname that you gave the folder when you made it
21678 an incoming folder.
21680 For example:<p>
21681 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
21682 <p>or, using nicknames:<p>
21683 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
21685 If these are not path names, they will be in the default collection for
21686 saves. Any valid folder specification, local or remote (via IMAP), is
21687 allowed. There is no default.
21689 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
21690 details on the syntax of folder definitions.
21692 <UL>   
21693 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21694 </UL><P>
21695 &lt;End of help on this topic&gt;
21696 </BODY>
21697 </HTML>
21698 ====== h_config_newsrc_path ======
21699 <HTML>
21700 <HEAD>
21701 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
21702 </HEAD>
21703 <BODY>
21704 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
21706 This option overrides the default name Alpine uses for your "newsrc" news
21707 status and subscription file.  If set, Alpine will take this value as the
21708 full pathname for the desired newsrc file.<P>
21710 If this option is <B>not</B> set, 
21711 <!--chtml if pinemode="os_windows"-->
21712 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
21713 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
21714 directory as your pinerc file for NEWSRC.
21715 <!--chtml else-->
21716 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
21717 your account's home directory).
21718 <!--chtml endif-->
21719 <P><UL>
21720 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21721 </UL>
21723 &lt;End of help on this topic&gt;
21724 </BODY>
21725 </HTML>
21726 ====== h_config_literal_sig =====
21727 <HTML>
21728 <HEAD>
21729 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
21730 </HEAD>
21731 <BODY>
21732 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
21734 With this option your actual signature, as opposed to
21735 the name of a file containing your signature,
21736 is stored in the Alpine configuration file.
21737 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
21740 This is simply a different way to store the signature.
21741 The signature is stored inside your Alpine configuration file instead of in
21742 a separate file.
21743 Tokens work the same way they do with the
21744 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
21745 help.
21748 The Setup/Signature command on Alpine's MAIN MENU will edit
21749 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
21750 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
21751 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
21752 instead.
21755 The two character sequence &#92;n (backslash followed by
21756 the character n) will be used to signify a line-break in your signature.
21757 You don't have to enter the &#92;n, but it will be visible in the
21758 SETUP CONFIGURATION window after you are done editing the signature.
21761 <UL>   
21762 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21763 </UL><P>
21764 &lt;End of help on this topic&gt;
21765 </BODY>
21766 </HTML>
21767 ====== h_config_signature_file =====
21768 <HTML>
21769 <HEAD>
21770 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
21771 </HEAD>
21772 <BODY>
21773 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
21775 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
21776 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
21777 You can tell that that is the case because the value of the
21778 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
21780 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
21782 You may either use all Literal Signatures (signatures stored in your
21783 configuration file) throughout Alpine, or all signature files.
21784 You can't mix the two.
21786 This is the name of a file that will be automatically inserted into
21787 outgoing messages.
21788 It typically contains information such as your
21789 name, email address and organizational affiliation.
21790 Alpine adds the
21791 signature into the message as soon as you enter the composer so you
21792 can choose to remove it or edit it on a message by message basis.
21793 Signature file placement in message replies is controlled by the
21794 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
21795 setting in the feature list.
21798 The default file name is
21799 <!--chtml if pinemode="os_windows"-->
21800 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
21801 PINERC file is a local file.
21802 If your PINERC file is remote, then it will be in the directory specified
21803 by the &quot;-aux local_directory&quot; command line option.
21804 <!--chtml else-->
21805 &quot;.signature&quot;.
21806 <!--chtml endif-->
21809 To create or edit your signature file choose Setup from the MAIN MENU
21810 and then select S for Signature (Main/Setup/Signature).  This puts you
21811 into the Signature Editor where you can enter a <EM>few</EM> lines of
21812 text containing your identity and affiliation.
21815 If the filename is followed by a vertical bar (|) then instead
21816 of reading the contents of the file the file is assumed to be a
21817 program that will produce the text to be used on its standard output.
21818 The program can't have any arguments and doesn't receive any input from Alpine,
21819 but the rest of the processing works as if the contents came from a file.
21822 Instead of storing the data in a local file, the
21823 signature data may be stored remotely in an IMAP folder.
21824 In order to do this, 
21825 you must use a remote name for the file.
21826 A remote <!--#echo var="VAR_signature-file"--> name might look like:
21828 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
21831 The syntax used here is the same as the syntax used for remote configuration
21832 files from the command line.
21833 Note that you may not access an existing signature file remotely,
21834 you have to create a new <EM>folder</EM> that contains the signature data.
21835 If the name you use here for the signature file is a remote name, then when
21836 you edit the file from the Setup/Signature command the data will be stored
21837 remotely in the folder.
21838 You aren't required to do anything special to create the folder, it
21839 gets created automatically if you use a remote name.
21842 Besides regular text, the signature file may also contain
21843 (or a signature program may produce) tokens that
21844 are replaced with text that usually depends on the message you are replying
21845 to or forwarding.
21846 For example, if the signature file contains the token
21848 <CENTER><SAMP>_DATE_</SAMP></CENTER>
21850 anywhere in the text, then that token is replaced by the date
21851 the message you are replying to or forwarding was sent.
21852 If it contains
21854 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
21856 that is replaced with the current date.
21857 The first is an example of a token that depends on the message you
21858 are replying to (or forwarding) and the second is an example which
21859 doesn't depend on anything other than the current date.
21860 You have to be a little careful with this facility since tokens that
21861 depend on the message you are replying to or forwarding will be replaced
21862 by nothing in the case where you are composing a new message from scratch.
21863 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
21864 in this respect.
21865 It allows you to use different signature files in different cases.
21868 The list of tokens available for use in the signature file is
21869 <A HREF="h_index_tokens">here</A>.
21872 Instead of, or along with the use of &quot;roles&quot; to give you
21873 different signature files in different situations, there is also
21874 a way to conditionally include text based
21875 on whether or not a token would result in specific replacement text.
21876 For example, you could include some text based on whether or not
21877 the _NEWS_ token would result in any newsgroups if it was used.
21878 This is explained in detail
21879 <A HREF="h_reply_token_conditionals">here</A>.
21880 This isn't for the faint of heart.
21882 In the very unlikely event that you want to include a literal token
21883 in the signature you must precede it with a backslash character.
21884 For example,
21886 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
21888 would produce something like
21890 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
21892 It is not possible to have a literal backslash followed by an expanded token.
21894 An alternate method for storing the signature data is available by using the
21895 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
21896 This variable will be used by default.
21898 <UL>   
21899 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21900 </UL><P>
21901 &lt;End of help on this topic&gt;
21902 </BODY>
21903 </HTML>
21904 ====== h_config_init_cmd_list =====
21905 <HTML>
21906 <HEAD>
21907 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
21908 </HEAD>
21909 <BODY>
21910 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
21912 The initial keystroke--or command--list option lets you start Alpine at
21913 any place you like.
21914 Whatever keystrokes you specify here will be executed
21915 by Alpine upon startup as a macro.
21916 The words SPACE, TAB, DOWN, UP, LEFT, and
21917 RIGHT indicate the pressing of those keys.
21918 CR indicates the pressing of the RETURN key.
21919 F1 through F12 represent the function keys, and ^ followed
21920 by a character indicates that key pressed along with the control key (in
21921 other words, ^P means Ctrl-P).
21922 As a shortcut notation, an element of the list may be several characters
21923 surrounded by double-quotes (").
21924 That will be expanded into the individual keystrokes
21925 (excluding the double-quote characters).
21926 For example, the quoted-string
21928 <P><CENTER>"ABC"</CENTER>
21931 is interpreted the same as the three separate list members
21933 <P><CENTER>A and B and C</CENTER>
21936 which is also the same as
21938 <P><CENTER>A,B,C</CENTER>
21941 An example: To view message 1 on startup,
21942 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
21944 <P><CENTER>I,J,1,CR,V</CENTER>
21947 An equivalent version of this is
21949 <P><CENTER>"IJ1",CR,V</CENTER>
21952 Restrictions: You cannot pre-type into the composer with the initial
21953 keystroke list, and you cannot mix function key commands with letter
21954 commands.
21956 <P><UL>   
21957 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21958 </UL>
21960 &lt;End of help on this topic&gt;
21961 </BODY>
21962 </HTML>
21963 ====== h_config_comp_hdrs =====
21964 <html>
21965 <header>
21966 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
21967 </header>
21968 <body>
21969 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
21971 You can control which headers you want visible when composing outgoing
21972 email using this option.
21973 You can specify any of the regular set, any
21974 <A HREF="h_compose_richhdr">Rich Header</A>,
21975 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
21976 that you have already defined.
21977 If you use this setting at all, you must specify all the
21978 headers you want to see, you can't just add to the regular header set.
21979 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
21981 Note that the "Newsgroups:" header will be abbreviated in the Composer
21982 display, but should be spelled out in full here.<p>
21983 <UL>   
21984 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21985 </UL><P>
21986 &lt;End of help on this topic&gt;
21987 </body>
21988 </html>
21989 ====== h_config_custom_hdrs =====
21990 <HTML>
21991 <HEAD>
21992 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
21993 </HEAD>
21994 <BODY>
21995 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
21997 You may add your own custom headers to outgoing messages.
21998 Each header you specify here must include the header tag 
21999 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22000 and may optionally include a value for that header.
22001 If you want to see these custom headers each time you compose a message,
22002 you must add them to your
22003 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22004 otherwise they become part
22005 of the rich header set that you only see when you press the
22006 <A HREF="h_compose_richhdr">Rich Header</A>
22007 <!--chtml if pinemode="function_key"-->(F5)
22008 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22009 (If you are looking for a way to change which headers are <EM>displayed</EM>
22010 when you view a message, take a look at the
22011 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22012 option instead.)
22013 Here's an example that shows how you might set your From address
22015 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22017 and another showing how you might set a Reply-To address
22019 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22021 You may also set non-standard header values here.
22022 For example, you could add
22024 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22026 or even
22028 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22030 If you include a value after the colon then that header will be included
22031 in your outgoing messages unless you delete it before sending.
22032 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22033 it will not be included in outgoing messages unless you edit a value
22034 in manually.
22035 For example, if
22037 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22039 is in the list, then the Reply-To header will be available for editing
22040 but won't be included unless a value is added while in the composer.
22042 It's actually a little more complicated than that.
22043 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22044 defaults.
22045 If the message you are about to compose already has a value for a header,
22046 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22047 For example, if you are Replying to a message the Subject field
22048 will already be filled in.
22049 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22050 custom subject will <EM>NOT</EM> be used.
22051 The subject derived from the subject of the message you are Replying
22052 to will be used instead.
22054 It is also possible to make header setting even more complicated and more
22055 automatic by using
22056 <A HREF="h_rules_roles">Roles</A>,
22057 but if all you want to do is set a default value for a header, you don't
22058 need to think about Roles.
22060 If you change your From address you may also find it useful to add the
22061 changed From address to the
22062 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22063 configuration option.
22065 Limitation: Because commas are used to separate the list of
22066 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22067 header contain a comma.
22068 Nor is there currently an &quot;escape&quot; mechanism provided
22069 to make this work.
22070 <P><UL>
22071 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22072 </UL>
22074 &lt;End of help on this topic&gt;
22075 </BODY>
22076 </HTML>
22077 ====== h_config_viewer_headers =====
22078 <HTML>
22079 <HEAD>
22080 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22081 </HEAD>
22082 <BODY>
22083 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22085 You may change the default list of headers that are viewed by listing
22086 the headers you want to view here.  If the headers in your
22087 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22088 will be shown.  The order of the headers you list will be honored.  If
22089 the special value &quot;all-except&quot; is included as the first
22090 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22091 message except those in the list will be shown.  The values are all
22092 case insensitive.
22095 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22096 then the original default headers are ignored.  So, if you just wanted
22097 to add the header Organization to the list, you would have to list
22098 Organization plus all of the other headers originally in the default
22099 list.  If you just included Organization and nothing else, then you
22100 would see only the Organization header, nothing else.
22103 The default list of headers includes:
22104 <UL>
22105   <LI>From
22106   <LI>Resent-From
22107   <LI>To
22108   <LI>Resent-To
22109   <LI>Cc
22110   <LI>Resent-cc
22111   <LI>Bcc
22112   <LI>Newsgroups
22113   <LI>Followup-To
22114   <LI>Date
22115   <LI>Resent-Date
22116   <LI>Subject
22117   <LI>Resent-Subject
22118   <LI>Reply-To
22119 </UL>
22122 If you are looking for a way to control which headers are included in
22123 outgoing mail and are visible or not in the composer, take a look at the
22124 options
22125 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22126 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22127 this option.
22129 <UL>   
22130 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22131 </UL><P>
22132 &lt;End of help on this topic&gt;
22133 </BODY>
22134 </HTML>
22135 ====== h_config_viewer_margin_left =====
22136 <HTML>
22137 <HEAD>
22138 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22139 </HEAD>
22140 <BODY>
22141 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22143 This variable controls the left-hand vertical margin's width in
22144 Alpine's Message Viewing screen.
22145 Its value is the number of space characters preceding each displayed line.
22146 For consistency with
22147 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22148 you may specify the column number to start in
22149 (column numbering begins with number 1)
22150 instead of the width of the margin by appending a lower case letter
22151 &quot;c&quot; to the number.
22152 For example, a value of &quot;2c&quot; means to start the text in column two,
22153 which is entirely equivalent to a value of &quot;1&quot;, which means to
22154 leave a margin of 1 space.
22156 The default is a left margin of 0 (zero).
22157 Misconfigurations (for example, negative values or values with starting
22158 left columns greater than the ending right column)
22159 are silently ignored.
22160 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22161 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22162 instead.
22165 &lt;End of help on this topic&gt;
22166 </BODY>
22167 </HTML>
22168 ====== h_config_viewer_margin_right =====
22169 <HTML>
22170 <HEAD>
22171 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22172 </HEAD>
22173 <BODY>
22174 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22176 This variable controls the right-hand vertical margin's width in
22177 Alpine's Message Viewing screen.
22178 Its value is the number of space characters following each displayed line.
22179 You may specify the column number to end the text in
22180 (column numbering begins with number 1)
22181 instead of the width of the margin by appending a lower case letter
22182 &quot;c&quot; to the number.
22183 For example, a value of &quot;76c&quot; means to end the text in column 76.
22184 If the screen is 80 characters wide, this is equivalent to a value
22185 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22186 However, if you use different size screens at different times, then these
22187 two values are not equivalent.
22189 The default right margin is 4.
22190 Misconfigurations (for example, negative values or values with starting
22191 left columns greater than the ending right column)
22192 are silently ignored.
22193 If the number of columns for text between the
22194 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22195 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22196 instead.
22199 &lt;End of help on this topic&gt;
22200 </BODY>
22201 </HTML>
22202 ====== h_config_quote_suppression =====
22203 <HTML>
22204 <HEAD>
22205 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22206 </HEAD>
22207 <BODY>
22208 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22210 This option should be used with care.
22211 It will cause some of the quoted text to be eliminated from the
22212 display when viewing a message in the MESSAGE TEXT screen.
22213 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22214 value &quot;5&quot;,
22215 this will cause quoted text that is longer than five lines to be truncated.
22216 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22217 Quoted text of more than six lines will have the first five lines displayed
22218 followed by a line that looks something like
22220 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22222 As a special case, if exactly one line of quoted text would be hidden, the
22223 entire quote will be shown instead.
22224 So for the above example, quoted text that is exactly six lines long will
22225 will be shown in its entirety.
22226 (In other words, instead of hiding a single line and adding a line
22227 that announces that one line was hidden, the line is just shown.)
22229 If the sender of a message has carefully chosen the quotes that he or she
22230 includes, hiding those quotes may change the meaning of the message.
22231 For that reason, Alpine requires that when you want to set the value of this
22232 variable to something less than four lines, you actually have to set it
22233 to the negative of that number.
22234 So if you want to set this option to &quot;3&quot;, you actually have to
22235 set it to &quot;-3&quot;.
22236 The only purpose of this is to get you to think about whether or not you
22237 really want to do this!
22238 If you want to delete all quoted text you set the value of this option
22239 to the special value &quot;-10&quot;.
22241 The legal values for this option are
22243 <TABLE>   
22244 <TR>
22245   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22246   <TD> Default, don't hide anything </TD>
22247 </TR>
22248 <TR>
22249   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22250   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22251 </TR>
22252 <TR>
22253   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22254   <TD> Suppress if more than that many lines </TD>
22255 </TR>
22256 <TR>
22257   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22258   <TD> Suppress all quoted lines </TD>
22259 </TR>
22260 </TABLE>
22262 If you set this option to a non-default value you may sometimes wish to
22263 view the quoted text that is not shown.
22264 When this is the case, the
22265 <A HREF="h_common_hdrmode">HdrMode Command</A>
22266 may be used to show the hidden text.
22267 Typing the &quot;H&quot; command once will show the hidden text.
22268 Typing a second &quot;H&quot; will also turn on Full Header mode.
22269 The presence or absence of the HdrMode command is determined by the
22270 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22271 Feature-List option in your Alpine configuration, so you will want to
22272 be sure that is turned on if you use quote suppression.
22274 For the purposes of this option, a quote is a line that begins with the
22275 character &quot;&gt;&quot;.
22277 Quotes are only suppressed when displaying a message on the screen.
22278 The entire quote will be left intact when printing or forwarding or something
22279 similar.
22281 &lt;End of help on this topic&gt;
22282 </BODY>
22283 </HTML>
22284 ====== h_config_saved_msg_name_rule =====
22285 <HTML>
22286 <HEAD>
22287 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
22288 </HEAD>
22289 <BODY>
22290 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
22292 This option determines the default folder name when saving
22293 a message.
22296 The default option is &quot;default-folder&quot;, which is the folder
22297 called &quot;saved-messages&quot; in Unix Alpine and
22298 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
22299 the Alpine option called
22300 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
22303 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
22304 get the chosen option's value for the message being saved (or for the
22305 first message being saved if using an aggregrate save).
22306 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
22307 value of who the message came from (i.e. the from address).
22308 Alpine then attempts to save the message to a folder matching that value.
22309 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
22310 &quot;by-sender&quot;.
22311 The opposite is also true.
22312 If &quot;by-recipient&quot; is chosen and the message was posted to a
22313 newsgroup, Alpine will use the newsgroup name.
22314 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
22315 &quot;by-from&quot;.
22318 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
22319 to use the personal name part of the address instead of the mailbox part.
22320 If any of the &quot;by-nick&quot; options are chosen, the
22321 address is looked up in your address book and if found, the
22322 nickname for that entry is used.
22323 Only simple address book entries are checked, not distribution lists.
22324 Similarly, if any of the
22325 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
22326 address book entry is used.
22327 If by-realname, or the by-nick or by-fcc lookups result in no value,
22328 then if the chosen option ends with the &quot;then-from&quot;,
22329 &quot;then-sender&quot;, &quot;then-replyto&quot;,
22330 or &quot;then-recip&quot; suffix, Alpine
22331 reverts to the same behavior as &quot;by-from&quot;,
22332 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
22333 depending on which option was specified.
22334 If the chosen option doesn't end with one of
22335 the &quot;then-&quot; suffixes, then Alpine reverts to the default
22336 folder when no match is found in the address book.
22339 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
22340 to save to the folder that you saved to the last time you saved a
22341 message.  The first time you save a message in an Alpine session, Alpine
22342 attempts to save the message to the default folder.
22345 Here is an example to make some of the options clearer.
22346 If the message is From
22348 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
22350 and this rule is set to &quot;by-from&quot;, then the default folder offered
22351 in the save dialog would be &quot;flint&quot;.
22353 If this rule is set to &quot;by-realname-of-from&quot; then the default would
22354 be &quot;Fred Flintstone&quot;.
22356 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
22357 for the address &quot;flint@bedrock.org&quot; in your address book.
22358 If an entry is found and it has a nickname associated with it, that nickname
22359 will be offered as the default folder.
22360 If not, the default saved message folder will be offered as the default.
22362 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
22363 for the address &quot;flint@bedrock.org&quot; in your address book.
22364 If an entry is found and it has an Fcc associated with it, that Fcc
22365 will be offered as the default folder.
22366 If not, the default saved message folder will be offered as the default.
22368 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
22369 for the address &quot;flint@bedrock.org&quot; in your address book.
22370 If an entry is found and it has a nickname associated with it, that nickname
22371 will be offered as the default folder.
22372 If it is not found (or has no nickname) then the default offered will be
22373 the same as it would be for the &quot;by-from&quot; rule.
22374 That is, it would be &quot;flint&quot;
22376 <UL>   
22377 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22378 </UL><P>
22379 &lt;End of help on this topic&gt;
22380 </BODY>
22381 </HTML>
22382 ====== h_config_fcc_rule =====
22383 <HTML>
22384 <HEAD>
22385 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
22386 </HEAD>
22387 <BODY>
22388 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
22390 This option determines the default name for folder carbon copy. Choose
22391 one:
22393 <DL>
22394 <DT>default-fcc</DT>
22395 <DD>This is the normal default, the value of which is set in the
22396 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
22397 configuration.
22398 </DD>
22400 <DT>last-fcc-used</DT>
22401 <DD> Causes Alpine to use the folder that was last
22402 used in the fcc field
22403 </DD>
22405 <DT>by-nickname</DT>
22406 <DD>Means that Alpine will use the nickname
22407 from your address book that matches the first address in the To line.
22408 If there is no match, it will use the value of the
22409 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
22410 </DD>
22412 <DT>by-recipient</DT>
22413 <DD>Means Alpine will form a folder name
22414 based on the left hand side of the first address in the To line.
22415 </DD>
22417 <DT>by-nick-then-recip</DT>
22418 <DD>Means that it will use the
22419 matching nickname from your address book if there is one, otherwise it
22420 will extract the recipient name from the address and use that (like
22421 by-recipient).
22422 </DD>
22424 <DT>current-folder</DT>
22425 <DD>Causes a copy to be written to
22426 the currently open folder, unless that is the INBOX.  In the case
22427 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
22428 used instead.
22429 </DD>
22430 </DL>
22433 Note: Whatever the fcc specified by the rule here, it will be
22434 over-ridden by any fcc entries you have in your address book.
22437 <UL>   
22438 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22439 </UL><P>
22440 &lt;End of help on this topic&gt;
22441 </BODY>
22442 </HTML>
22443 ====== h_config_sort_key =====
22444 <HTML>
22445 <HEAD>
22446 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
22447 </HEAD>
22448 <BODY>
22449 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
22451 This option determines the order in which messages will be displayed in
22452 the MESSAGE INDEX screen.  Choose from:
22454 <UL>
22455  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22456  <LI> <A HREF="h_index_sort_date">Date</A>
22457  <LI> <A HREF="h_index_sort_subj">Subject</A>
22458  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22459  <LI> <A HREF="h_index_sort_thread">Thread</A>
22460  <LI> <A HREF="h_index_sort_from">From</A>
22461  <LI> <A HREF="h_index_sort_size">Size</A>
22462  <LI> <A HREF="h_index_sort_score">Score</A>
22463  <LI> <A HREF="h_index_sort_to">To</A>
22464  <LI> <A HREF="h_index_sort_cc">Cc</A>
22465 </UL>
22468 Each type of sort may also be reversed.
22469 Normal default is by &quot;Arrival&quot;.
22472 A possible point of confusion arises when you change the configuration
22473 of the <!--#echo var="VAR_sort-key"-->.
22474 The folder will normally be re-sorted when you go back to viewing the
22475 index.
22476 However, if you have manually sorted the folder with the
22477 Sort
22478 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22479 command, then it will not be re-sorted until the next time it is opened.
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_other_startup =====
22489 <HTML>
22490 <HEAD>
22491 <TITLE>OPTION: Set Startup Rule</TITLE>
22492 </HEAD>
22493 <BODY>
22494 <H1>OPTION: Set Startup Rule</H1>
22496 This option determines which message will be the <EM>current message</EM> when
22497 the folder is first opened.
22498 It works the same way that the option
22499 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
22500 works, so look there for help.
22501 It may be used for any folder, not just incoming folders.
22504 <UL>   
22505 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22506 </UL><P>
22507 &lt;End of help on this topic&gt;
22508 </BODY>
22509 </HTML>
22510 ====== h_config_perfolder_sort =====
22511 <HTML>
22512 <HEAD>
22513 <TITLE>Set Sort Order</TITLE>
22514 </HEAD>
22515 <BODY>
22516 <H1>Set Sort Order</H1>
22518 This option determines the order in which messages will be displayed in
22519 the MESSAGE INDEX screen when the Current Folder Type set in the
22520 Pattern is a match. Choose from:
22522 <UL>
22523  <LI> <A HREF="h_index_sort_default">Default</A>
22524  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
22525  <LI> <A HREF="h_index_sort_date">Date</A>
22526  <LI> <A HREF="h_index_sort_subj">Subject</A>
22527  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
22528  <LI> <A HREF="h_index_sort_thread">Thread</A>
22529  <LI> <A HREF="h_index_sort_from">From</A>
22530  <LI> <A HREF="h_index_sort_size">Size</A>
22531  <LI> <A HREF="h_index_sort_score">Score</A>
22532  <LI> <A HREF="h_index_sort_to">To</A>
22533  <LI> <A HREF="h_index_sort_cc">Cc</A>
22534 </UL>
22537 Each type of sort may also be reversed.
22538 Normal default is by &quot;Arrival&quot;.
22541 A possible point of confusion arises when you change the configuration
22542 of the Sort Order for the currently open folder.
22543 The folder will normally be re-sorted when you go back to viewing the
22544 index.
22545 However, if you have manually sorted the folder with the
22546 Sort
22547 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
22548 command, then it will not be re-sorted until the next time it is opened.
22551 <UL>   
22552 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22553 </UL><P>
22554 &lt;End of help on this topic&gt;
22555 </BODY>
22556 </HTML>
22557 ====== h_config_fld_sort_rule =====
22558 <HTML>
22559 <HEAD>
22560 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
22561 </HEAD>
22562 <BODY>
22563 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
22565 This option controls the order in which folder list entries will be
22566 presented in the FOLDER LIST screen.  Choose one of the following:
22568 <DL>
22569 <DT>Alphabetical</DT>
22570 <DD>sort by alphabetical name independent of type
22571 </DD>
22573 <DT>Alpha-with-dirs-last</DT>
22574 <DD>sort by alphabetical name grouping directory entries
22575 to the end of the list
22576 </DD>
22578 <DT>Alpha-with-dirs-first</DT>
22579 <DD>sort by alphabetical name grouping directory entries
22580 to the start of the list
22581 </DD>
22582 </DL>
22584 The normal default is &quot;Alphabetical&quot;.
22587 <UL>   
22588 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22589 </UL><P>
22590 &lt;End of help on this topic&gt;
22591 </BODY>
22592 </HTML>
22593 ====== h_config_ab_sort_rule =====
22594 <HTML>
22595 <HEAD>
22596 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
22597 </HEAD>
22598 <BODY>
22599 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
22601 This option controls the order in which address book entries will be
22602 presented.  Choose one of the following:
22604 <DL>
22605 <DT>fullname</DT>
22606 <DD>use fullname field, lists mixed in
22607 </DD>
22609 <DT>fullname-with-lists-last</DT>
22610 <DD>use fullname field, but put lists at end
22611 </DD>
22613 <DT>nickname</DT>
22614 <DD>use nickname field, lists mixed in
22615 </DD>
22617 <DT>nickname-with-lists-last</DT>
22618 <DD>use nickname field, but put lists at end
22619 </DD>
22621 <DT>dont-sort</DT>
22622 <DD>don't change order of file
22623 </DD>
22624 </DL>
22627 The normal default is &quot;fullname-with-lists-last&quot;.
22628 If you use an address book from more than one computer and those
22629 computers sort the address book differently then the sort order
22630 will be the order where the last change to the address book was
22631 made.
22632 There are two reasons the sorting might be different on different
22633 systems.
22634 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
22635 places.
22636 Second, the collation rules on the two computers may be different.
22637 For example, one system might ignore special characters while the other
22638 doesn't or one may sort upper and lower case letters together while
22639 the other doesn't.
22640 In any case, the order you see is the order on the system where the
22641 last change was made, for example by an address book edit or a
22642 Take Address command.
22645 <UL>   
22646 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22647 </UL><P>
22648 &lt;End of help on this topic&gt;
22649 </BODY>
22650 </HTML>
22651 ====== h_config_post_char_set =====
22652 <HTML>
22653 <HEAD>
22654 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
22655 </HEAD>
22656 <BODY>
22657 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
22659 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
22660 when sending messages.
22664 When sending a message the text typed in the composer is
22665 labeled with the character set specified by this option.
22666 If the composed text is not fully representable in the 
22667 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
22668 instead;
22671 Attachments are labeled with your
22672 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
22675 Generally, there should be little need to set this option.
22676 If left unset, the
22677 default behavior is to label composed text as specifically as
22678 possible.  That is, if the composed text has no non-ASCII characters,
22679 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
22680 only ISO-8859-15 characters, it is labeled as such.  Alpine will
22681 attempt to automatically detect a number of character sets including ISO-8859-15,
22682 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
22683 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
22684 If the message contains a mix of character sets,
22685 it is labeled as &quot;UTF-8.&quot;
22689 This setting is provided to allow you to force a particular character set that
22690 Alpine does not automatically detect. For example, if a message is representable
22691 in more than one character set then Alpine may choose a different default
22692 than you want.
22693 Lastly, by setting this option explicitly to
22694 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
22695 &quot;UTF-8&quot; instead of something more specific.
22698 In the Setup/Config screen you may choose from a list of all the
22699 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22702 The options
22703 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
22704 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
22705 are closely related.
22706 Setting the feature
22707 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22708 should cause this option to be ignored.
22711 <UL>   
22712 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22713 </UL><P>
22714 &lt;End of help on this topic&gt;
22715 </BODY>
22716 </HTML>
22717 ====== h_config_unk_char_set =====
22718 <HTML>
22719 <HEAD>
22720 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
22721 </HEAD>
22722 <BODY>
22723 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
22725 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
22726 when reading or replying to messages.
22730 A text message should either be made up of all US-ASCII characters
22731 or it should contain a charset label which tells the software which
22732 character set encoding to use to interpret the message.
22733 Sometimes a malformed message may be unlabeled but contain non-ascii text.
22734 This message is outside of the standards so any attempt to read it could fail.
22735 When Alpine attempts to read such a message it will try to interpret the
22736 text in the character set you specify here.
22737 For example, if you have correspondents who send you unlabeled messages that
22738 are usually made up of characters from the WINDOWS-1251 character set, setting
22739 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
22740 allow you to read those messages.
22741 Of course, if the unlabeled message is actually in some other character set,
22742 then you may see garbage on your screen.
22744 Instead of just unlabeled text, this option also affects text which is labeled
22745 with the charsets &quot;X-Unknown&quot; or &quot;US-ASCII&quot;.
22748 In the Setup/Config screen you may choose from a list of all the
22749 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22752 <UL>   
22753 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22754 </UL><P>
22755 &lt;End of help on this topic&gt;
22756 </BODY>
22757 </HTML>
22758 ====== h_config_char_set =====
22759 <HTML>
22760 <HEAD>
22761 <TITLE>OPTION: Display Character Set</TITLE>
22762 </HEAD>
22763 <BODY>
22764 <H1>OPTION: Display Character Set</H1>
22766 The Display Character Set configuration option is used when viewing messages.
22768 Alpine uses Unicode characters internally and 
22769 it is a goal for Alpine to handle email in many different languages.
22770 Alpine will properly display only left-to-right character sets
22771 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
22772 font is in use, in the sense that
22773 characters are assumed to take up zero, one, or two character cell
22774 widths from left to right on the screen. This is true even in PC-Alpine.
22777 Alpine recognizes some local character sets that are right-to-left
22778 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
22779 (Arabic) and properly converts texts in these character sets to/from
22780 Unicode; however, there are known display bugs with these character
22781 sets.
22784 There are three possible configuration character settings and some
22785 environment variable settings that can affect how Alpine
22786 handles international characters.
22787 The first two of these are only available in UNIX Alpine.
22788 The three configuration options are
22789 Display Character Set,
22790 Keyboard Character Set, and
22791 <!--#echo var="VAR_posting-character-set"-->.
22792 The Keyboard Character Set defaults to being the same value
22793 as the Display Character Set, and that is usually correct, because
22794 the keyboard almost always produces characters in the same character set
22795 as the display displays.
22796 The Display Character Set is the character set that Alpine
22797 will attempt to use when sending characters to the display.
22800 By default, the Display Character Set variable is not set and UNIX Alpine
22801 will attempt to get this information from the environment.
22802 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
22803 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
22804 An explicit configuration setting for Display Character Set will,
22805 of course, override any default setting.
22807 For PC-Alpine the Display Character Set
22808 and the Keyboard Character Set
22809 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
22812 It is probably best to use UNIX Alpine in a terminal emulator
22813 capable of displaying UTF-8 characters, since that will allow you to
22814 view just about any received text that is correctly formatted (note,
22815 however, the above comments about known index display bugs with certain
22816 character sets). You'll need to have an emulator that uses a UTF-8 font
22817 and you'll need to set up your environment to use a UTF-8 charmap. For
22818 example, on a Linux system you might include
22820 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
22823 or something similar in your UNIX startup files.
22824 You'd also have to select a UTF-8 font in your terminal emulator.
22827 The types of values that the character set variables may be set to are
22828 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
22829 The <CODE>ISO-2022</CODE> character sets are not supported for input or
22830 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
22831 for use only as a <!--#echo var="VAR_posting-character-set"-->.
22832 In the Setup/Config screen you may choose from a list of all the
22833 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22834 Here is a list of many of the possible character sets:
22837 <TABLE>
22838 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
22839 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
22840 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
22841 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
22842 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
22843 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
22844 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
22845 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
22846 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
22847 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
22848 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
22849 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
22850 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
22851 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
22852 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
22853 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
22854 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
22855 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
22856 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
22857 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
22858 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
22859 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
22860 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
22861 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22862 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22863 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
22864 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
22865 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
22866 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
22867 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
22868 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
22869 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
22870 </TABLE>
22873 When reading incoming email, Alpine understands many different
22874 character sets and is able to convert the incoming mail into Unicode.
22875 The Unicode will be converted to the Display Character Set
22876 for display on your terminal.
22877 Characters typed at the keyboard will be converted from the
22878 Keyboard Character Set to Unicode for Alpine's internal
22879 use.
22880 You may find that you can read some malformed messages that do not
22881 contain a character set label by setting the option
22882 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
22885 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
22886 The default behavior obtained by leaving this variable unset is usually
22887 what is wanted. In that default case, Alpine will attempt
22888 to label the message with the most specific character set from the
22889 rather arbitrary set
22891 US-ASCII, ISO-8859-15,
22892 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
22893 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
22896 For example, if the message is made up of only US-ASCII characters, it
22897 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
22898 that will be the label. If that doesn't work the same is tried for the
22899 remaining members of the list.
22902 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
22903 explicit value instead.
22904 For example, if you usually send messages in Greek, setting this
22905 option to ISO-8859-7 will result in messages being labeled as
22906 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
22907 are only Greek characters, or UTF-8 if there are some characters
22908 that aren't representable in ISO-8859-7.
22909 Another possibility is to set this option explicitly to UTF-8.
22910 In that case
22911 Alpine labels only ascii messages as US-ASCII and all other
22912 messages as UTF-8.
22915 The options
22916 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
22917 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
22918 are closely related to this option.
22919 Setting the feature
22920 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22921 should cause this option to be ignored.
22924 When displaying a message, Alpine compares this setting to the character
22925 set specified in the message.  If not all of the
22926 characters in the message can be displayed using the Display Character Set
22927 then Alpine places an editorial
22928 comment in the displayed text (enclosed in square-brackets) indicating
22929 that some characters may not be displayed correctly.
22930 This comment may be eliminated by turning on the option
22931 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
22934 <UL>   
22935 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22936 </UL><P>
22937 &lt;End of help on this topic&gt;
22938 </BODY>
22939 </HTML>
22940 ====== h_config_key_char_set =====
22941 <HTML>
22942 <HEAD>
22943 <TITLE>OPTION: Keyboard Character Set</TITLE>
22944 </HEAD>
22945 <BODY>
22946 <H1>OPTION: Keyboard Character Set</H1>
22948 UNIX Alpine only.
22950 The Keyboard Character Set identifies the character set of the characters
22951 coming from your keyboard.
22952 It defaults to having the same value as your
22953 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
22954 which in turn defaults to a value obtained from your environment.
22955 It is unlikely that you will need to use this option, because the keyboard
22956 almost always produces the same kind of characters as the display displays.
22959 This character set is also used when accessing files in your local
22960 file system.
22961 The names of the files are assumed to be in the same character set as
22962 what the keyboard produces, as well as the contents of the files.
22965 In the Setup/Config screen you may choose from a list of all the
22966 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
22969 The options
22970 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
22971 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
22972 are closely related.
22973 Setting the feature
22974 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
22975 should cause this option to be ignored.
22978 <UL>   
22979 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22980 </UL><P>
22981 &lt;End of help on this topic&gt;
22982 </BODY>
22983 </HTML>
22984 ====== h_config_editor =====
22985 <HTML>
22986 <HEAD>
22987 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
22988 </HEAD>
22989 <BODY>
22990 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
22992 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
22993 normally an alternative to Alpine's internal composer (Pico).  You could use
22994 this setting to specify an alternate editor to use occasionally or if you
22995 have a favorite editor and want to use it all the time (see the 
22996 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
22997 If you specify multiple editors for this option, ^_ will invoke the first one 
22998 of those specified that exists and is executable.  When specifying a program 
22999 for use here, make sure that the format of the text it saves -- which, when 
23000 you exit it, will become the message body in Alpine -- is appropriate 
23001 for the body of an email message; avoid proprietary formats that may result in 
23002 a message body that the recipient of your message will be unable to decipher.
23004 <!--chtml if pinemode="os_windows"-->
23005 <!--chtml else-->
23006 If you are in doubt about what editors are available on your system, or which 
23007 of them may be appropriate for specification here, ask your local computing 
23008 support staff.  
23009 <!--chtml endif-->
23011 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23012 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23013 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23014 use that.
23016 <P><UL>
23017 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23018 </UL>
23020 &lt;End of help on this topic&gt;
23021 </BODY>
23022 </HTML>
23023 ====== h_config_speller =====
23024 <HTML>
23025 <HEAD>
23026 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23027 </HEAD>
23028 <BODY>
23029 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23031 UNIX Alpine only.
23033 For PC-Alpine, you must install the aspell library code that you
23034 may get from
23035 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23037 This option affects the behavior of the ^T (spell check) command in the
23038 Composer.  It specifies the program invoked by ^T in the Composer.
23039 By default, Alpine uses
23041 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23043 if it knows where to find &quot;aspell&quot;.
23044 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23045 then the command used is
23047 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23049 Otherwise, the ancient &quot;spell&quot; command is used.
23051 If you specify a value for this command (with full pathname) then that is what
23052 will be used instead of any of the defaults.
23053 When invoking this
23054 spell-checking program, Alpine appends a tempfile name (where the message is
23055 passed) to the command line. Alpine expects the speller to correct the
23056 spelling in that file. When you exit from that program Alpine will read the
23057 tempfile back into the composer.
23059 Don't set this speller option to the standard Unix spell command.
23060 That won't work because spell works in a different way.
23063 <UL>   
23064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23065 </UL><P>
23066 &lt;End of help on this topic&gt;
23067 </BODY>
23068 </HTML>
23069 ====== h_config_display_filters =====
23070 <HTML>
23071 <HEAD>
23072 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23073 </HEAD>
23074 <BODY>
23075 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23077 This option defines a list of text-filtering commands (programs or
23078 scripts) that may be used to filter text portions of received messages
23079 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23080 display screen, exporting to a text file).  
23081 For security reasons, the full path name of the
23082 filter command must be specified.
23085 The command is executed and the message is piped into its standard input. 
23086 The standard output of the command is read back by Alpine.  The
23087 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23089 <P> 
23090 The filter's use is based on the configured &quot;trigger&quot; string.  The
23091 format of a filter definition is:
23093 <P>   
23094 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23097 You can specify as many filters as you wish, separating them with a comma.  
23098 Each filter can have only one trigger and command.  Thus, two trigger 
23099 strings that invoke the same command require separate filter 
23100 specifications. 
23102 <P> 
23103 The &quot;trigger&quot; is simply text that, if found in the message,
23104 will invoke the associated command.  If the trigger contains any space
23105 characters, it must be placed within quotes.  Likewise, should you
23106 wish a filter to be invoked unconditionally, define the trigger as the
23107 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23108 trigger string is found anywhere in the text of the message the filter
23109 is invoked.  Placing the trigger text within the tokens defined below
23110 changes where within the text the trigger must be before considering
23111 it a match.
23113 <P>  
23114 Trigger Modifying Tokens:
23115 <DL>
23116 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23117 <DD>This token tells Alpine to invoke the supplied command
23118 if the text is in a character set matching <VAR>string</VAR>
23119 (e.g., ISO-8859-2 or ISO-2022-JP).
23120 </DD>
23123 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23124 <DD>This token tells Alpine to invoke the supplied command
23125 if the enclosed <VAR>string</VAR> is found to be the first
23126 non-whitespace text.
23127 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23128 the space character.
23129 </DD>
23131 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23132 <DD>This token tells Alpine to invoke the supplied command
23133 if the enclosed <VAR>string</VAR> is found at the beginning
23134 of any line in the text.
23135 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23136 the space character.
23137 </DD>
23138 </DL>
23141 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23142 the command line to be invoked if the trigger string is found.  Below
23143 are tokens that Alpine will recognize and replace with special values
23144 when the command is actually invoked.
23147 Command Modifying Tokens:
23149 <DL>
23150 <DT>_TMPFILE_</DT>
23151 <DD>When the command is executed, this token is 
23152 replaced with the path and name of the temporary 
23153 file containing the text to be filtered.  Alpine 
23154 expects the filter to replace this data with the 
23155 filter's result.
23158 NOTE: Use of this token implies that the text to 
23159 be filtered is not piped into standard input of the 
23160 executed command and its standard output is ignored. 
23161 Alpine restores the tty modes before invoking the
23162 filter in case the filter interacts with the user
23163 via its own standard input and output.  
23164 </DD>
23165                         
23166 <DT>_RESULTFILE_</DT>
23167 <DD>When the command is executed, this token is 
23168 replaced with the path and name of a temporary 
23169 file intended to contain a status message from the 
23170 filter.  Alpine displays this in the message status 
23171 field. 
23172 </DD>
23174 <DT>_DATAFILE_</DT>
23175 <DD>When the command is executed, this token is 
23176 replaced with the path and name of a temporary 
23177 file that Alpine creates once per session and deletes 
23178 upon exit.  The file is intended to be used by the 
23179 filter to store state information between instances 
23180 of the filter.
23181 </DD>
23182    
23183 <DT>_PREPENDKEY_</DT>
23184 <DD>When the command is executed, this token indicates that a random
23185 number will be passed down the input stream before the message text.
23186 This number could be used as a session key.  It is sent in this way to
23187 improve security.  The number is unique to the current Alpine session
23188 and is only generated once per session.
23189 </DD>
23191 <DT>_SILENT_</DT>
23192 <DD>When the filter is executed, this token tells Alpine not to repaint
23193 the screen while the command is being executed. This can be used with 
23194 filters that do not interact with the user, and therefore repainting 
23195 the screen is not necessary. 
23196 </DD>
23197 </DL>
23200 The feature
23201 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23203 Performance caveat/considerations:
23204 <BR>
23205 Testing for the trigger and invoking the filter doesn't come for free.
23206 There is overhead associated with searching for the trigger string, testing
23207 for the filter's existence and actually piping the text through the filter.
23208 The impact can be reduced if the Trigger Modifying Tokens above are 
23209 employed.
23211 &lt;End of help on this topic&gt;
23212 </BODY>
23213 </HTML>
23214 ====== h_config_sending_filter =====
23215 <HTML>
23216 <HEAD>
23217 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23218 </HEAD>
23219 <BODY>
23220 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23221       
23222 This option defines a list of text-filtering commands (programs and
23223 scripts) that may be selectively invoked to process a message just before
23224 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23225 select which filter (or none) to apply to the message before it is sent. 
23226 For security reasons, the full path of the filter program must be
23227 specified.
23230 Command Modifying Tokens:
23232 <DL>
23233 <DT>_RECIPIENTS_</DT>
23234 <DD>When the command is executed, this token is replaced 
23235 with the space delimited list of recipients of the 
23236 message being sent. 
23237 </DD>
23238         
23239 <DT>_TMPFILE_</DT>
23240 <DD>
23241 When the command is executed, this token is 
23242 replaced with the path and name of the temporary 
23243 file containing the text to be filtered.  Alpine 
23244 expects the filter to replace this data with the 
23245 filter's result.
23248 NOTE: Use of this token implies that the text to 
23249 be filtered is not piped into standard input of the 
23250 executed command and its standard output is ignored. 
23251 Alpine restores the tty modes before invoking the
23252 filter in case the filter interacts with the user
23253 via its own standard input and output.  
23254 </DD>
23255                         
23256 <DT>_RESULTFILE_</DT>
23257 <DD>When the command is executed, this token is 
23258 replaced with the path and name of a temporary 
23259 file intended to contain a status message from the 
23260 filter.  Alpine displays this in the message status 
23261 field. 
23262 </DD>
23264 <DT>_DATAFILE_</DT>
23265 <DD>When the command is executed, this token is replaced 
23266 in the command line with the path and name of a 
23267 temporary file that Alpine creates once per session 
23268 and deletes upon exit.  The file is intended to be 
23269 used by the filter to store state information between 
23270 instances of the filter.
23271 </DD>
23272    
23273 <DT>_PREPENDKEY_</DT>
23274 <DD>When the command is executed, this token indicates 
23275 that a random number will be passed down the input 
23276 stream before the message text.  This number could 
23277 be used as a session key.  It is sent in this way 
23278 to improve security.  The number is unique to the 
23279 current Alpine session and is only generated once per 
23280 session. 
23281 </DD>
23283 <DT>_INCLUDEALLHDRS_</DT>
23284 <DD>When the command is executed, this token indicates 
23285 that the headers of the message will be passed down the input stream
23286 before the message text.
23287 </DD>
23289 <DT>_MIMETYPE_</DT>
23290 <DD>When the command is executed, this token is replaced in the
23291 command name with a temporary file name used to accept any new MIME
23292 Content-Type information necessitated by the output of the filter.
23293 Upon the filter's exit, if the file contains new MIME type
23294 information, Alpine verifies its format and replaces the outgoing
23295 message's MIME type information with that contained in the file. This
23296 is basically a cheap way of sending something other than Text/Plain.
23297 </DD>
23298 </DL>
23300 <P>   
23301 NOTE: Only the body text, which is visible in the Composer, is piped
23302 through this filter.  Attachments are not sent to the filter.
23303 <P>   
23304 Sending filters are not used if the feature
23305 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
23307 <UL>   
23308 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23309 </UL><P>
23310 &lt;End of help on this topic&gt;
23311 </BODY>
23312 </HTML>
23313 ====== h_config_keywords =====
23314 <HTML>
23315 <HEAD>
23316 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
23317 </HEAD>
23318 <BODY>
23319 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
23321 You may define your own set of keywords and optionally set them on a
23322 message by message basis.
23323 These are similar to the &quot;Important&quot; flag which the user
23324 may set using the Flag command.
23325 The difference is that the Important flag is always present for each folder.
23326 User-defined keywords are chosen by the user.
23327 You may set up the list of possible keywords here, or you may add keywords
23328 from the Flag Details screen that you
23329 can get to after typing the
23330 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
23331 command.
23332 After the keywords have been defined,
23333 then you use the <A HREF="h_common_flag">Flag command</A>
23334 to set or clear the keywords in each message.
23335 The behavior of the flag command may be modified by using the
23336 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
23337 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
23340 Keywords may be used when Selecting messages (Select Keyword).
23341 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
23342 Filter Rules may be used to set keywords automatically.
23343 Keywords may be displayed as part of the Subject of a message by using
23344 the SUBJKEY or SUBJKEYINIT tokens in the
23345 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
23346 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
23347 option may be used to modify the display of keywords using
23348 SUBJKEY and SUBJKEYINIT slightly.
23349 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
23350 screen by using the KEY or KEYINIT tokens.
23351 It is also possible to color keywords in the index using the
23352 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
23353 Keywords are not supported by all mail servers.
23356 You may give keywords nicknames if you wish.
23357 If the keyword definition you type in contains a SPACE character, then the
23358 actual value of the keyword is everything after the last SPACE and the
23359 nickname for that keyword is everything before the last SPACE.
23360 For example, suppose you are trying to interoperate with another email program
23361 that uses a particular keyword with an unpleasant name.
23362 Maybe it uses a keyword called
23364 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
23366 but for you that keyword means that the message is work-related.
23367 You could define a keyword to have the value
23369 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
23371 and then you would use the name &quot;Work&quot; when dealing with
23372 that keyword in Alpine.
23373 If you defined it as
23375 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
23377 the nickname would be everything before the last SPACE, that is the nickname
23378 would be &quot;My Work&quot;.
23380 Some commonly used keywords begin with dollar signs.
23381 This presents a slight complication, because the dollar sign is normally used
23382 to signify
23383 <A HREF="h_news_config">environment variable expansion</A>
23384 in the Alpine configuration.
23385 In order to specify a keyword that begins with a dollar sign you must
23386 precede the dollar sign with a second dollar sign to escape its special
23387 meaning.
23388 For example, if you want to include the keyword
23390 <CENTER><SAMP>$Label1</SAMP></CENTER>
23392 as one of your possible keywords, you must enter the text
23394 <CENTER><SAMP>$$Label1</SAMP></CENTER>
23397 instead.
23399 There are a couple limitations.
23400 First, not all servers support keywords.
23401 Second, some servers (including the IMAP server included with Alpine)
23402 have a per folder limit on the number of keywords that may be defined.
23403 This count commonly includes every keyword you have ever used in the
23404 folder, even if it is no longer being used.
23405 In other words, you can add keywords but you cannot remove them easily.
23406 If you have changed keywords over the life of a folder and find that
23407 you have reached such a limit, one possible solution might be to copy
23408 all of the messages to a newly created folder (using Alpine) and then
23409 delete the original and rename the new folder.
23410 The reason this might work is that only the keywords currently set in
23411 any of the messages will be used in the new folder, hopefully putting you
23412 under the limit.
23415 <UL>   
23416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23417 </UL><P>
23418 &lt;End of help on this topic&gt;
23419 </BODY>
23420 </HTML>
23421 ====== h_config_alt_addresses =====
23422 <HTML>
23423 <HEAD>
23424 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
23425 </HEAD>
23426 <BODY>
23427 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
23429 This option provides a place for you to list alternate email addresses
23430 you may have.
23431 Each address in the list should be the actual email address part of an
23432 address, without the full name field or the angle brackets.
23433 For example:
23436 <CENTER><SAMP>user@example.com</SAMP></CENTER>
23439 The matching is case-insensitive, so this would match any of
23440 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
23441 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
23444 If set, the option affects the behavior of the Reply
23445 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
23446 a message has been addressed specifically to you.
23449 In the default INDEX display
23450 the personal name (or email address) of
23451 the person listed in the message's &quot;From:&quot; header
23452 field is usually displayed except when that address is yours or one of your
23453 alternate addresses.
23454 In that case you will usually see the name of
23455 the first person specified in the
23456 message's &quot;To:&quot; header field
23457 with the prefix &quot;To: &quot; prepended.
23460 With respect to Reply, the reply-to-all option will exclude addresses
23461 listed here.
23464 The feature
23465 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
23466 is somewhat related to this option.
23469 In addition to a list of actual addresses,
23470 you may use regular expressions (as used with egrep with the ignore case flag)
23471 to describe the addresses you want to match.
23472 Alpine will somewhat arbitrarily interpret your entry as a regular
23473 expression if it contains any of the characters
23474 *, |, +, ?, {, [, ^, $, or &#92;.
23475 Otherwise, it will be treated literally.
23476 The feature
23477 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
23478 may be used to turn off regular expression processing regardless of whether or not
23479 special characters appear in the entry.
23482 A description of how regular expressions work is beyond the
23483 scope of this help text, but some examples follow.
23486 The entry
23489 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
23492 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
23493 address with a domain name of <SAMP>example.com</SAMP> (such as
23494 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
23495 one of your alternate addresses.
23496 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
23497 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
23498 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
23499 Complicating things further, the dollar sign
23500 is special in the Alpine configuration (it signifies environment variable expansion)
23501 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
23502 Quotes around the whole expression will not escape the dollar sign successfully.
23503 So this example should look like
23506 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
23510 The entry
23513 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
23516 would match
23517 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
23518 as <SAMP>fred@example.com</SAMP>.
23521 You could match all addresses that look like
23522 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
23523 entry
23526 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
23529 Notice that you have to escape the plus sign with a backslash because plus
23530 is a special character in regular expressions.
23531 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
23532 the expression
23535 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
23538 would do it, but it would be easier to just add fred@example.com as a
23539 separate entry.
23542 One more example, a match of all first-level subdomains, is given by
23545 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
23549 Because the regular expression matching is based on an old library
23550 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
23551 but they should be close.
23554 <UL>   
23555 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23556 </UL><P>
23557 &lt;End of help on this topic&gt;
23558 </BODY>
23559 </HTML>
23560 ====== h_config_abook_formats =====
23561 <HTML>
23562 <HEAD>
23563 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
23564 </HEAD>
23565 <BODY>
23566 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
23568 This option specifies the format that address books are displayed in.
23569 Normally, address books are displayed with the nicknames in the first
23570 column, the fullnames in the second column, and addresses in the third
23571 column.  The system figures out reasonable defaults for the widths of
23572 the columns.  An address book may be given a different format by
23573 listing special tokens in the order you want them to display.  The
23574 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
23575 So, for example, to get the default behavior you could list
23578 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
23581 (You can also use the token DEFAULT to get the default behavior for
23582 an address book format.)
23585 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
23586 is a list, so if you have more than one address book you may have a
23587 separate format for each by putting its format at the corresponding
23588 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
23592 Listed first are the personal address books, then the global address
23593 books.  So, if you have two personal address books and one global
23594 address book, you may have up to three formats in the
23595 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
23596 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
23597 are address books, the last element is used repeatedly.
23601 Each of the tokens may also be optionally followed by parentheses with
23602 either a number or a percentage inside the parentheses.  For example,
23603 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
23604 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
23605 of the available space (the screen width minus the space for
23606 inter-column spaces) to the fullnames column, while plain
23607 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
23608 reasonable number of columns.
23611 There are always 2 spaces between every column, so if you use
23612 fixed column widths (like 13) you should remember to take that into
23613 account.
23616 <UL>   
23617 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23618 </UL><P>
23619 &lt;End of help on this topic&gt;
23620 </BODY>
23621 </HTML>
23622 ====== h_config_set_index_format =====
23623 <HTML>
23624 <HEAD>
23625 <TITLE>Set Index Format</TITLE>
23626 </HEAD>
23627 <BODY>
23628 <H1>Set Index Format</H1>
23630 This option is used to customize the content of lines in the
23631 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
23632 This action works exactly like the regular
23633 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
23634 except that you can have a folder-specific value for it if you specify it here.
23635 Consult the help for
23636 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
23637 for more information.
23640 <UL>   
23641 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23642 </UL><P>
23643 &lt;End of help on this topic&gt;
23644 </BODY>
23645 </HTML>
23646 ====== h_config_index_format =====
23647 <HTML>
23648 <HEAD>
23649 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
23650 </HEAD>
23651 <BODY>
23652 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
23654 This option is used to customize the content of lines in the
23655 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
23656 to convey some amount of immediately relevant information about each 
23657 message in the current folder.
23660 Alpine provides a pre-defined set of informational fields with
23661 reasonable column widths automatically computed.  You can, however,
23662 replace this default set by listing special tokens in the order you
23663 want them displayed.
23666 The list of available tokens is
23667 <A HREF="h_index_tokens">here</A>.
23670 Spaces are used to separate listed tokens.  Additionally, you can
23671 specify how much of the screen's width the token's associated data
23672 should occupy on the index line by appending to the token a pair of
23673 parentheses enclosing either a number or percentage.  For example,
23674 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
23675 column, and &quot;SUBJECT(20%)&quot; means to
23676 allocate 20% of the available space
23677 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
23678 attempt to figure out a reasonable amount of space.
23681 There is always one space between every pair of columns, so if you use fixed
23682 column widths (like 13) you should remember to take that into account.
23683 Several of the fields are virtually fixed-width, so it doesn't make
23684 much sense to specify the width for them.  The fields STATUS,
23685 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
23686 and DESCRIPSIZE all fall into that category.
23687 You <EM>may</EM> specify widths for those if you wish, but
23688 you're probably better off letting the system pick those widths.  <P>
23691 The default is equivalent to:
23694 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
23697 This means that the four fields without percentages will be allocated
23698 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
23699 the from and subject fields.  If one of those two fields is specified
23700 as a percentage and the other is left for the system to choose, then
23701 the percentage is taken as an absolute percentage of the screen, not
23702 of the space remaining after allocating the first four columns.  It
23703 doesn't usually make sense to do it that way.  If you leave off all
23704 the widths, then the subject and from fields (if both are present) are
23705 allocated space in a 2 to 1 ratio, which is almost exactly the same as
23706 the default.
23709 What you are most likely to do with this configuration option is to
23710 specify which fields appear at all, which order they appear in, and the
23711 percentage of screen that is used for the from and subject fields if you
23712 don't like the 2 to 1 default.
23715 If you want to retain the default format that Pine 4.64 had, use
23718 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
23720 <EM>and</EM> set the feature
23721 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
23722 <UL>   
23723 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23724 </UL><P>
23725 &lt;End of help on this topic&gt;
23726 </BODY>
23727 </HTML>
23728 ====== h_config_reply_intro =====
23729 <HTML>
23730 <HEAD>
23731 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
23732 </HEAD>
23733 <BODY>
23734 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
23736 This option is used to customize the content of the introduction line
23737 that is included when replying to a message and including the original
23738 message in the reply.
23739 The normal default (what you will get if you delete this variable) looks
23740 something like:
23742 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
23744 where the day of the week is only included if it is available in the
23745 original message.
23746 You can replace this default with text of your own.
23747 The text may contain tokens that are replaced with text
23748 that depends on the message you are replying to.
23749 For example, the default is equivalent to:
23751 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
23754 Since this variable includes regular text mixed with special tokens
23755 the tokens have to be surrounded by underscore characters.
23756 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
23757 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
23758 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
23760 The list of available tokens is
23761 <A HREF="h_index_tokens">here</A>.
23764 By default, the text is all on a single line and is followed by a blank line.
23765 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
23766 than 80 characters when replying to a particular message, it is shortened.
23767 However, if you use the token
23769 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
23772 anywhere in the value, no end of line or blank line is appended, and no
23773 shortening is done.
23774 The _NEWLINE_ token may be used to get rid of the blank line following
23775 the text, to add more blank lines, or to form a multi-line
23776 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
23777 To clarify how _NEWLINE_ works recall that the default value is:
23779 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
23782 That is equivalent to
23784 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
23787 In the former case, two newlines are added automatically because
23788 no _NEWLINE_ token appears in the value of the option (for backwards
23789 compatibility). In the latter case, the newlines are explicit.
23790 If you want to remove the blank line that follows the
23791 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
23792 _NEWLINE_ token like
23794 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
23797 Because of the backwards compatibility problem, it is not possible to
23798 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
23799 and that will cause the automatic adding of two newlines!
23800 If you want, you may embed newlines in the middle of the text, as well,
23801 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
23804 By default, no attempt is made to localize the date.
23805 If you prefer a localized form you may find that one of the tokens
23806 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
23807 If you want more control one of the many other date tokens, such as _DATEISO_,
23808 might be better.
23811 For the adventurous, there is a way to conditionally include text based
23812 on whether or not a token would result in specific replacement text.
23813 For example, you could include some text based on whether or not
23814 the _NEWS_ token would result in any newsgroups if it was used.
23815 It's explained in detail
23816 <A HREF="h_reply_token_conditionals">here</A>.
23819 In the very unlikely event that you want to include a literal token
23820 in the introduction line you must precede it with a backslash character.
23821 For example,
23823 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
23825 would produce something like
23827 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
23829 It is not possible to have a literal backslash followed by an expanded token.
23831 <UL>   
23832 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23833 </UL><P>
23834 &lt;End of help on this topic&gt;
23835 </BODY>
23836 </HTML>
23837 ====== h_config_remote_abook_history =====
23838 <HTML>
23839 <HEAD>
23840 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
23841 </HEAD>
23842 <BODY>
23843 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
23845 Sets how many extra copies of
23846 remote address book
23847 data will be kept in each remote address book folder.
23848 The default is three.
23849 These extra copies are simply old versions of the data. Each time a change
23850 is made a new copy of the address book data is appended to the folder. Old
23851 copies are trimmed, if possible, when Alpine exits.
23852 An old copy can be put back into use by
23853 deleting and expunging newer versions of the data from the folder.
23854 Don't delete the first message from the folder. It is a special header
23855 message for the remote address book and it must be there.
23856 This is to prevent regular folders from being used as remote address book
23857 folders and having their data destroyed.
23859 This option is also used to determine how many extra copies of remote
23860 Alpine configuration files are kept.
23862 <UL>   
23863 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23864 </UL><P>
23865 &lt;End of help on this topic&gt;
23866 </BODY>
23867 </HTML>
23868 ====== h_config_remote_abook_validity =====
23869 <HTML>
23870 <HEAD>
23871 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
23872 </HEAD>
23873 <BODY>
23874 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
23876 Sets the minimum number of minutes that a
23877 remote address book will be considered up to date.
23878 Whenever an entry contained in a remote address book is used,
23879 if more than this many minutes have
23880 passed since the last check the remote server will be queried to see if the
23881 address book has changed.
23882 If it has changed, the local copy is updated.
23883 The default value is five minutes.
23884 The special value of -1 means never check.
23885 The special value of zero means only check when the address book is first
23886 opened.
23888 No matter what the value, the validity check is always done when the
23889 address book is about to be changed by the user.
23890 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
23891 while in the address book maintenance screen for the remote address book.
23893 <UL>   
23894 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23895 </UL><P>
23896 &lt;End of help on this topic&gt;
23897 </BODY>
23898 </HTML>
23899 ====== h_config_user_input_timeo =====
23900 <HTML>
23901 <HEAD>
23902 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
23903 </HEAD>
23904 <BODY>
23905 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
23907 If this is set to an integer greater than zero, then this is the number
23908 of <EM>hours</EM> to wait for user input before Alpine times out.
23909 If Alpine is
23910 in the midst of composing a message or is waiting for user response to
23911 a question, then it will not timeout.
23912 However, if Alpine is sitting idle waiting for
23913 the user to tell it what to do next and the user does not give any
23914 input for this many hours, Alpine will exit.
23915 No expunging or moving of read
23916 messages will take place.
23917 It will exit similarly to the way it would exit
23918 if it received a hangup signal.
23919 This may be useful for cleaning up unused Alpine sessions that have been
23920 forgotten by their owners.
23921 The Alpine developers envision system administrators
23922 setting this to a value of several hours (24?) so that it won't surprise
23923 a user who didn't want to be disconnected.
23925 <UL>   
23926 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23927 </UL><P>
23928 &lt;End of help on this topic&gt;
23929 </BODY>
23930 </HTML>
23931 ====== h_config_ssh_open_timeo =====
23932 <HTML>
23933 <HEAD>
23934 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
23935 </HEAD>
23936 <BODY>
23937 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
23939 Sets the time in seconds that Alpine will
23940 attempt to open a UNIX secure shell connection.
23941 The default is 15, the minimum non-zero value is 5,
23942 and the maximum is unlimited. If this is set to zero ssh connections
23943 will be completely disabled.
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_rsh_open_timeo =====
23952 <HTML>
23953 <HEAD>
23954 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
23955 </HEAD>
23956 <BODY>
23957 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
23959 Sets the time in seconds that Alpine will
23960 attempt to open a UNIX remote shell connection.
23961 The default is 15, the minimum non-zero value is 5,
23962 and the maximum is unlimited. If this is set to zero rsh connections
23963 will be completely disabled.
23964 This might be useful if rsh connections will never work in your environment
23965 but are causing delays due to firewalls or some other reason.
23967 <UL>   
23968 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23969 </UL><P>
23970 &lt;End of help on this topic&gt;
23971 </BODY>
23972 </HTML>
23973 ====== h_config_tcp_open_timeo =====
23974 <HTML>
23975 <HEAD>
23976 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
23977 </HEAD>
23978 <BODY>
23979 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
23981 Sets the time in seconds that Alpine will
23982 attempt to open a network connection. The default is 30, the minimum is 5,
23983 and the maximum is system defined (typically 75). If a connection has not
23984 completed within this many seconds Alpine will give up and consider it a
23985 failed connection.
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_readwarn_timeo =====
23994 <HTML>
23995 <HEAD>
23996 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
23997 </HEAD>
23998 <BODY>
23999 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24001 Sets the time in seconds that Alpine will
24002 wait for a network read before warning you that things are moving slowly
24003 and possibly giving you the option to break the connection.
24004 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24005 1000 seconds.
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_writewarn_timeo =====
24016 <HTML>
24017 <HEAD>
24018 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24019 </HEAD>
24020 <BODY>
24021 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24023 Sets the time in seconds that Alpine will
24024 wait for a network write before warning you that things are moving slowly
24025 and possibly giving you the option to break the connection.
24026 The default is 0 which means it is unset. If set to a non-zero value, the
24027 minimum is 5 and the maximum is 1000.
24029 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24031 <UL>   
24032 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24033 </UL><P>
24034 &lt;End of help on this topic&gt;
24035 </BODY>
24036 </HTML>
24037 ====== h_config_tcp_query_timeo =====
24038 <HTML>
24039 <HEAD>
24040 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24041 </HEAD>
24042 <BODY>
24043 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24045 When Alpine times out a network read or write it will normally just display
24046 a message saying &quot;Still waiting&quot;.
24047 However, if enough time has elapsed since it started waiting it will offer
24048 to let you break the connection.
24049 That amount of time is set by this option, which defaults to 60 seconds,
24050 has a minimum of 5 seconds, and a maximum of 1000 seconds.
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_incoming_folders =====
24059 <HTML>
24060 <HEAD>
24061 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24062 </HEAD>
24063 <BODY>
24064 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24066 This is a list of one or more folders other than <EM>INBOX</EM> that
24067 may receive new messages.
24068 It is related to the
24069 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24070 feature.
24071 This variable is normally manipulated with the Add, Delete, and Rename
24072 commands in the FOLDER LIST for the Incoming Message Folders collection.
24074 <UL>   
24075 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24076 </UL><P>
24077 &lt;End of help on this topic&gt;
24078 </BODY>
24079 </HTML>
24080 ====== h_config_folder_spec =====
24081 <HTML>
24082 <HEAD>
24083 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24084 </HEAD>
24085 <BODY>
24086 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24088 This is a list of one or more collections where saved mail is stored. 
24089 The first collection in this list is the default
24090 collection for <EM>Save</EM>s,
24091 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24093 This variable is normally manipulated using the Setup/collectionList screen.
24095 <UL>   
24096 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24097 </UL><P>
24098 &lt;End of help on this topic&gt;
24099 </BODY>
24100 </HTML>
24101 ====== h_config_news_spec =====
24102 <HTML>
24103 <HEAD>
24104 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24105 </HEAD>
24106 <BODY>
24107 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24109 This is a list of collections where news folders are located.
24111 This variable is normally manipulated using the Setup/collectionList screen.
24113 <UL>   
24114 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24115 </UL><P>
24116 &lt;End of help on this topic&gt;
24117 </BODY>
24118 </HTML>
24119 ====== h_config_address_book =====
24120 <HTML>
24121 <HEAD>
24122 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24123 </HEAD>
24124 <BODY>
24125 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24127 A list of personal address books.
24128 Each entry in the list is an
24129 optional nickname followed by a pathname or file name relative to the home
24130 directory.
24131 The nickname is separated from the rest of the line with whitespace.
24132 Instead of a local pathname or file name, a remote folder name can be given.
24133 This causes the address book to
24134 be a Remote address book.
24136 Use the Setup/AddressBook screen to modify this variable.
24138 <UL>   
24139 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24140 </UL><P>
24141 &lt;End of help on this topic&gt;
24142 </BODY>
24143 </HTML>
24144 ====== h_config_glob_addrbook =====
24145 <HTML>
24146 <HEAD>
24147 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24148 </HEAD>
24149 <BODY>
24150 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24152 A list of shared address books.  Each entry in the list is an
24153 optional nickname followed by a pathname or file name relative to the home
24154 directory.
24155 A SPACE character separates the nickname from the rest of the line.
24156 Instead of a local pathname or file name, a remote folder name can be given.
24157 This causes the address book to
24158 be a Remote address book.
24159 Global address books are
24160 defined to be ReadOnly.
24162 Use the Setup/AddressBook screen to modify this variable.
24164 <UL>   
24165 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24166 </UL><P>
24167 &lt;End of help on this topic&gt;
24168 </BODY>
24169 </HTML>
24170 ====== h_config_last_vers =====
24171 <HTML>
24172 <HEAD>
24173 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24174 </HEAD>
24175 <BODY>
24176 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24178 This is set automatically by Alpine. 
24179 It is used to keep track of the last version of Alpine that
24180 was run by the user.
24181 Whenever the version number increases, a new version message is printed out.
24182 This may not be set in the system-wide configuration files.
24184 <UL>   
24185 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24186 </UL><P>
24187 &lt;End of help on this topic&gt;
24188 </BODY>
24189 </HTML>
24190 ====== h_config_printer =====
24191 <HTML>
24192 <HEAD>
24193 <TITLE>OPTION: Printer</TITLE>
24194 </HEAD>
24195 <BODY>
24196 <H1>OPTION: Printer</H1>
24198 Your default printer selection.
24200 Use the Setup/Printer screen to modify this variable.
24202 <UL>   
24203 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24204 </UL><P>
24205 &lt;End of help on this topic&gt;
24206 </BODY>
24207 </HTML>
24208 ====== h_config_print_cat =====
24209 <HTML>
24210 <HEAD>
24211 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24212 </HEAD>
24213 <BODY>
24214 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24216 This is an internal Alpine variable.
24217 It will be equal to 1, 2, or 3 depending on whether the default printer is
24218 attached, standard, or a personal print command.
24220 Use the Setup/Printer screen to modify this variable.
24222 <UL>   
24223 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24224 </UL><P>
24225 &lt;End of help on this topic&gt;
24226 </BODY>
24227 </HTML>
24228 ====== h_config_print_command =====
24229 <HTML>
24230 <HEAD>
24231 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24232 </HEAD>
24233 <BODY>
24234 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24236 List of personal print commands.
24238 Use the Setup/Printer screen to modify this 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_old =====
24247 <HTML>
24248 <HEAD>
24249 <TITLE>OPTION: Patterns</TITLE>
24250 </HEAD>
24251 <BODY>
24252 <H1>OPTION: Patterns</H1>
24254 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24255 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24256 and Patterns-Other.
24257 Patterns-Scores and Patterns-Filters have been replaced since then by
24258 Patterns-Scores2 and Patterns-Filters2.
24260 Use the Setup/Rules screens to modify these variable.
24262 <UL>   
24263 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24264 </UL><P>
24265 &lt;End of help on this topic&gt;
24266 </BODY>
24267 </HTML>
24268 ====== h_config_pat_roles =====
24269 <HTML>
24270 <HEAD>
24271 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
24272 </HEAD>
24273 <BODY>
24274 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
24276 List of rules used for roles.
24277 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
24278 other options.
24280 Use the Setup/Rules/Roles screen to modify this variable.
24282 <UL>   
24283 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24284 </UL><P>
24285 &lt;End of help on this topic&gt;
24286 </BODY>
24287 </HTML>
24288 ====== h_config_pat_filts =====
24289 <HTML>
24290 <HEAD>
24291 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
24292 </HEAD>
24293 <BODY>
24294 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
24296 List of rules used for filters.
24298 Use the Setup/Rules/Filters screen to modify this variable.
24300 <UL>   
24301 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24302 </UL><P>
24303 &lt;End of help on this topic&gt;
24304 </BODY>
24305 </HTML>
24306 ====== h_config_pat_scores =====
24307 <HTML>
24308 <HEAD>
24309 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
24310 </HEAD>
24311 <BODY>
24312 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
24314 List of rules used for scoring.
24316 Use the Setup/Rules/SetScores screen to modify this variable.
24318 <UL>   
24319 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24320 </UL><P>
24321 &lt;End of help on this topic&gt;
24322 </BODY>
24323 </HTML>
24324 ====== h_config_pat_other =====
24325 <HTML>
24326 <HEAD>
24327 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
24328 </HEAD>
24329 <BODY>
24330 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
24332 List of rules used for miscellaneous configuration.
24334 Use the Setup/Rules/Other screen to modify this variable.
24336 <UL>   
24337 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24338 </UL><P>
24339 &lt;End of help on this topic&gt;
24340 </BODY>
24341 </HTML>
24342 ====== h_config_pat_incols =====
24343 <HTML>
24344 <HEAD>
24345 <TITLE>OPTION: patterns-indexcolors</TITLE>
24346 </HEAD>
24347 <BODY>
24348 <H1>OPTION: patterns-indexcolors</H1>
24350 List of rules used for coloring lines in the index.
24352 Use the Setup/Rules/Indexcolor screen to modify this variable.
24354 <UL>   
24355 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24356 </UL><P>
24357 &lt;End of help on this topic&gt;
24358 </BODY>
24359 </HTML>
24360 ====== h_config_pat_srch =====
24361 <HTML>
24362 <HEAD>
24363 <TITLE>OPTION: patterns-search</TITLE>
24364 </HEAD>
24365 <BODY>
24366 <H1>OPTION: patterns-search</H1>
24368 List of rules used only for searching with the Select command in the MESSAGE INDEX.
24370 Use the Setup/Rules/searCh screen to modify this variable.
24372 <UL>   
24373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24374 </UL><P>
24375 &lt;End of help on this topic&gt;
24376 </BODY>
24377 </HTML>
24378 ====== h_config_font_name =====
24379 <HTML>
24380 <HEAD>
24381 <TITLE>OPTION: Font Name</TITLE>
24382 </HEAD>
24383 <BODY>
24384 <H1>OPTION: Font Name</H1>
24386 PC-Alpine only.
24388 Name of normal font.
24390 Use the pulldown Config menu to modify this variable.
24392 <UL>   
24393 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24394 </UL><P>
24395 &lt;End of help on this topic&gt;
24396 </BODY>
24397 </HTML>
24398 ====== h_config_font_size =====
24399 <HTML>
24400 <HEAD>
24401 <TITLE>OPTION: Font Size</TITLE>
24402 </HEAD>
24403 <BODY>
24404 <H1>OPTION: Font Size</H1>
24406 PC-Alpine only.
24408 Size of normal font.
24410 Use the pulldown Config menu to modify this variable.
24412 <UL>   
24413 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24414 </UL><P>
24415 &lt;End of help on this topic&gt;
24416 </BODY>
24417 </HTML>
24418 ====== h_config_font_style =====
24419 <HTML>
24420 <HEAD>
24421 <TITLE>OPTION: Font Style</TITLE>
24422 </HEAD>
24423 <BODY>
24424 <H1>OPTION: Font Style</H1>
24426 PC-Alpine only.
24428 Style of normal font.
24430 Use the pulldown Config menu to modify this variable.
24432 <UL>   
24433 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24434 </UL><P>
24435 &lt;End of help on this topic&gt;
24436 </BODY>
24437 </HTML>
24438 ====== h_config_font_char_set =====
24439 <HTML>
24440 <HEAD>
24441 <TITLE>OPTION: Font Character Set</TITLE>
24442 </HEAD>
24443 <BODY>
24444 <H1>OPTION: Font Character Set</H1>
24446 PC-Alpine only.
24448 Character set of normal font.
24450 Use the pulldown Config menu to modify this variable.
24452 <UL>   
24453 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24454 </UL><P>
24455 &lt;End of help on this topic&gt;
24456 </BODY>
24457 </HTML>
24458 ====== h_config_print_font_name =====
24459 <HTML>
24460 <HEAD>
24461 <TITLE>OPTION: Print-Font-Name</TITLE>
24462 </HEAD>
24463 <BODY>
24464 <H1>OPTION: Print-Font-Name</H1>
24466 PC-Alpine only.
24468 Name of printer font.
24470 Use the pulldown Config menu to modify this variable.
24472 <UL>   
24473 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24474 </UL><P>
24475 &lt;End of help on this topic&gt;
24476 </BODY>
24477 </HTML>
24478 ====== h_config_print_font_size =====
24479 <HTML>
24480 <HEAD>
24481 <TITLE>OPTION: Print-Font-Size</TITLE>
24482 </HEAD>
24483 <BODY>
24484 <H1>OPTION: Print-Font-Size</H1>
24486 PC-Alpine only.
24488 Size of printer font.
24490 Use the pulldown Config menu to modify this variable.
24492 <UL>   
24493 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24494 </UL><P>
24495 &lt;End of help on this topic&gt;
24496 </BODY>
24497 </HTML>
24498 ====== h_config_print_font_style =====
24499 <HTML>
24500 <HEAD>
24501 <TITLE>OPTION: Print-Font-Style</TITLE>
24502 </HEAD>
24503 <BODY>
24504 <H1>OPTION: Print-Font-Style</H1>
24506 PC-Alpine only.
24508 Style of printer font.
24510 Use the pulldown Config menu to modify this variable.
24512 <UL>   
24513 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24514 </UL><P>
24515 &lt;End of help on this topic&gt;
24516 </BODY>
24517 </HTML>
24518 ====== h_config_print_font_char_set =====
24519 <HTML>
24520 <HEAD>
24521 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
24522 </HEAD>
24523 <BODY>
24524 <H1>OPTION: Print-Font-Char-Set</H1>
24526 PC-Alpine only.
24528 Character set of printer font.
24530 Use the pulldown Config menu to modify this variable.
24532 <UL>   
24533 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24534 </UL><P>
24535 &lt;End of help on this topic&gt;
24536 </BODY>
24537 </HTML>
24538 ====== h_config_window_position =====
24539 <HTML>
24540 <HEAD>
24541 <TITLE>OPTION: Window-Position</TITLE>
24542 </HEAD>
24543 <BODY>
24544 <H1>OPTION: Window-Position</H1>
24546 PC-Alpine only.
24548 Position on the screen of the Alpine window.
24550 Alpine normally maintains this variable itself, and it is set automatically. 
24551 This variable is provided to those who wish to use the same window position 
24552 across different machines from the same configuration.
24553 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
24554 must also be set for this setting to be used.
24556 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
24557 C is the number of columns, R is the number of rows, and X and Y specify the
24558 top left corner of the window.
24560 <UL>   
24561 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24562 </UL><P>
24563 &lt;End of help on this topic&gt;
24564 </BODY>
24565 </HTML>
24566 ====== h_config_cursor_style =====
24567 <HTML>
24568 <HEAD>
24569 <TITLE>OPTION: Cursor Style</TITLE>
24570 </HEAD>
24571 <BODY>
24572 <H1>OPTION: Cursor Style</H1>
24574 PC-Alpine only.
24576 Cursor style.
24578 Use the pulldown Config menu to modify this variable.
24580 <UL>   
24581 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24582 </UL><P>
24583 &lt;End of help on this topic&gt;
24584 </BODY>
24585 </HTML>
24586 ====== h_config_ldap_servers =====
24587 <HTML>
24588 <HEAD>
24589 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
24590 </HEAD>
24591 <BODY>
24592 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
24594 List of LDAP servers and associated data.
24596 Use the Setup/Directory screen to modify this variable.
24598 <UL>   
24599 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24600 </UL><P>
24601 &lt;End of help on this topic&gt;
24602 </BODY>
24603 </HTML>
24604 ====== h_config_sendmail_path =====
24605 <HTML>
24606 <HEAD>
24607 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
24608 </HEAD>
24609 <BODY>
24610 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
24612 This names the path to an
24613 alternative program, and any necessary arguments, to be used in posting
24614 mail messages. See the Technical notes for more information.
24616 <UL>   
24617 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24618 </UL><P>
24619 &lt;End of help on this topic&gt;
24620 </BODY>
24621 </HTML>
24622 ====== h_config_oper_dir =====
24623 <HTML>
24624 <HEAD>
24625 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
24626 </HEAD>
24627 <BODY>
24628 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
24630 This names the root of the
24631 tree to which you are restricted when reading and writing folders and
24632 files. It is usually used in the system-wide,
24633 <EM>fixed</EM> configuration file.
24635 <UL>   
24636 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24637 </UL><P>
24638 &lt;End of help on this topic&gt;
24639 </BODY>
24640 </HTML>
24641 ====== h_config_rshpath =====
24642 <HTML>
24643 <HEAD>
24644 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
24645 </HEAD>
24646 <BODY>
24647 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
24649 Sets the name of the command used to open a UNIX remote shell
24650 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
24652 <UL>   
24653 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24654 </UL><P>
24655 &lt;End of help on this topic&gt;
24656 </BODY>
24657 </HTML>
24658 ====== h_config_rshcmd =====
24659 <HTML>
24660 <HEAD>
24661 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
24662 </HEAD>
24663 <BODY>
24664 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
24666 Sets the format of the command used to
24667 open a UNIX remote shell connection. The default is
24668 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
24669 provided command. The first is for the command's pathname, the second is
24670 for the host to connnect to, the third is for the user to connect as, and
24671 the fourth is for the connection method (typically <CODE>imap</CODE>).
24673 <UL>   
24674 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24675 </UL><P>
24676 &lt;End of help on this topic&gt;
24677 </BODY>
24678 </HTML>
24679 ====== h_config_sshpath =====
24680 <HTML>
24681 <HEAD>
24682 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
24683 </HEAD>
24684 <BODY>
24685 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
24687 Sets the name of the command used to open a UNIX secure shell
24688 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
24690 <UL>   
24691 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24692 </UL><P>
24693 &lt;End of help on this topic&gt;
24694 </BODY>
24695 </HTML>
24696 ====== h_config_sshcmd =====
24697 <HTML>
24698 <HEAD>
24699 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
24700 </HEAD>
24701 <BODY>
24702 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
24704 Sets the format of the command used to
24705 open a UNIX secure shell connection. The default is
24706 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
24707 provided command. The first is for the command's pathname, the second is
24708 for the host to connnect to, the third is for the user to connect as, and
24709 the fourth is for the connection method (typically <CODE>imap</CODE>).
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_new_ver_quell =====
24718 <HTML>
24719 <HEAD>
24720 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
24721 </HEAD>
24722 <BODY>
24723 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
24725 When a new version of Alpine is run for the first time it offers a
24726 special explanatory screen to the user upon startup.  This option
24727 helps control when and if that special screen appears for users that
24728 have previously run Alpine.  It takes as its value an Alpine version
24729 number.  Alpine versions less than the specified value will supress this
24730 special screen while versions equal to or greater than that specified
24731 will behave normally.
24733 <UL>   
24734 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24735 </UL><P>
24736 &lt;End of help on this topic&gt;
24737 </BODY>
24738 </HTML>
24739 ====== h_config_disable_drivers =====
24740 <HTML>
24741 <HEAD>
24742 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
24743 </HEAD>
24744 <BODY>
24745 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
24747 This variable is a list of mail drivers that will be disabled.
24748 The candidates for disabling are listed below.
24749 There may be more in the future if you compile Alpine with
24750 a newer version of the c-client library.
24753 <UL>
24754 <LI> mbox
24755 <LI> mbx
24756 <LI> mh
24757 <LI> mmdf
24758 <LI> mtx
24759 <LI> mx
24760 <LI> news
24761 <LI> phile
24762 <LI> tenex
24763 <LI> unix
24764 </UL>
24767 The <EM>mbox</EM> driver enables the following behavior: if there is a
24768 file called <CODE>mbox</CODE>
24769 in your home directory, and if that file is either empty or in Unix mailbox
24770 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
24771 will automatically transfer mail from the system mail spool directory into the
24772 <CODE>mbox</CODE> file and
24773 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
24774 this will not happen.
24777 It is not recommended to disable the driver that supports the system default
24778 mailbox format. On most non-SCO systems, that driver is the
24779 <EM>unix</EM> driver.
24780 On most SCO systems, it is the <EM>mmdf</EM> driver.
24781 The system default driver may be
24782 configured to something else on your system; check with your system manager
24783 for additional information.
24786 It is most likely not very useful for you to disable any of the drivers other
24787 than possibly <EM>mbox</EM>.
24788 You could disable some of the others if you know for
24789 certain that you don't need them but the performance gain in doing so
24790 is very modest.
24792 <UL>   
24793 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24794 </UL><P>
24795 &lt;End of help on this topic&gt;
24796 </BODY>
24797 </HTML>
24798 ====== h_config_disable_auths =====
24799 <HTML>
24800 <HEAD>
24801 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
24802 </HEAD>
24803 <BODY>
24804 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
24806 This variable is a list of SASL (Simple Authentication and Security
24807 Layer) authenticators that will be disabled.
24808 SASL is a mechanism for
24809 authenticating to IMAP, POP3, SMTP, and other network servers.
24812 Alpine matches its list of supported authenticators with the server to
24813 determine the most secure authenticator that is supported by both.
24814 If no matching authenticators are found, Alpine will revert to plaintext
24815 login (or, in the case of SMTP, will be unable to authenticate at all).
24817 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
24820 Normally, you will not disable any authenticators.
24821 There are two exceptions:
24823 <OL>
24824 <LI> You use a broken server that advertises an authenticator,
24825 but does not actually implement it.
24826 <LI> You have a Kerberos-capable version of Alpine and the server is
24827 also Kerberos-capable, but you can not obtain Kerberos
24828 credentials on the server machine, thus you desire to disable
24829 GSSAPI (which in turn disables Alpine's Kerberos support).
24830 </OL>
24832 It is never necessary to disable authenticators, since Alpine will try
24833 other authenticators before giving up.
24834 However, disabling the relevant authenticator avoids annoying error messages.
24836 <UL>   
24837 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24838 </UL><P>
24839 &lt;End of help on this topic&gt;
24840 </BODY>
24841 </HTML>
24842 ====== h_config_abook_metafile =====
24843 <HTML>
24844 <HEAD>
24845 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
24846 </HEAD>
24847 <BODY>
24848 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
24850 This is usually set by Alpine and is the name of a file
24851 that contains data about
24852 remote address books and remote configuration files.
24854 <UL>   
24855 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24856 </UL><P>
24857 &lt;End of help on this topic&gt;
24858 </BODY>
24859 </HTML>
24860 ====== h_config_composer_wrap_column =====
24861 <HTML>
24862 <HEAD>
24863 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
24864 </HEAD>
24865 <BODY>
24866 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
24869 This option specifies an aspect of Alpine's Composer.  This gives the
24870 maximum width that auto-wrapped lines will have.  It's also the maximum
24871 width of lines justified using the <A HREF="h_compose_justify">^J
24872 Justify</A> command.  The normal default
24873 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
24874 in order to
24875 prevent very long lines from being sent in outgoing mail.  When the mail
24876 is actually sent, trailing spaces will be stripped off of each line.
24879 <UL>   
24880 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24881 </UL><P>
24882 &lt;End of help on this topic&gt;
24883 </BODY>
24884 </HTML>
24885 ====== h_config_deadlets =====
24886 <HTML>
24887 <HEAD>
24888 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
24889 </HEAD>
24890 <BODY>
24891 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
24894 This option affects Alpine's behavior when you cancel a message being
24895 composed.  Alpine's usual behavior is to write the canceled message to
24896 a file named 
24897 <!--chtml if pinemode="os_windows"-->
24898 &quot;DEADLETR&quot;,
24899 <!--chtml else-->
24900 &quot;dead.letter&quot; in your home directory,
24901 <!--chtml endif-->
24902 overwriting any previous message.
24904 If you set this option to a value higher than one, then that many copies
24905 of dead letter files will be saved.
24906 For example, if you set this option to &quot;3&quot; then you may have
24907 files named
24908 <!--chtml if pinemode="os_windows"-->
24909 &quot;DEADLETR&quot;,
24910 &quot;DEADLETR2&quot;, and
24911 &quot;DEADLETR3&quot;.
24912 <!--chtml else-->
24913 &quot;dead.letter&quot;,
24914 &quot;dead.letter2&quot;, and
24915 &quot;dead.letter3&quot; in your home directory.
24916 <!--chtml endif-->
24917 In this example, the most recently cancelled message will be in
24918 <!--chtml if pinemode="os_windows"-->
24919 &quot;DEADLETR&quot;,
24920 <!--chtml else-->
24921 &quot;dead.letter&quot;,
24922 <!--chtml endif-->
24923 and the third most recently cancelled message will be in
24924 <!--chtml if pinemode="os_windows"-->
24925 &quot;DEADLETR3&quot;.
24926 <!--chtml else-->
24927 &quot;dead.letter3&quot;.
24928 <!--chtml endif-->
24929 The fourth most recently cancelled message will no longer be saved.
24932 If you set this option to zero, then NO record of canceled messages is
24933 maintained.
24935 If the feature
24936 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
24937 is set, that overrides whatever you set for this option.
24938 If this option had existed at the time, then the Quell feature would not
24939 have been added, but it is still there for backwards compatibility.
24940 So, in order for this option to have the desired effect, make sure the
24941 Quell feature is turned off.
24944 <UL>   
24945 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24946 </UL><P>
24947 &lt;End of help on this topic&gt;
24948 </BODY>
24949 </HTML>
24950 ====== h_config_maxremstream =====
24951 <HTML>
24952 <HEAD>
24953 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
24954 </HEAD>
24955 <BODY>
24956 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
24958 This option affects low-level behavior of Alpine.
24959 The default value for this option is <EM>3</EM>.
24960 If your INBOX is accessed using the IMAP protocol
24961 from an IMAP server, that connection is kept open throughout the
24962 duration of your Alpine session, independent of the value of this option.
24963 The same is true of any 
24964 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
24965 you have defined.
24966 This option controls Alpine's behavior when connecting to remote IMAP folders
24967 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
24968 It specifies the maximum number of remote IMAP connections (other than
24969 those mentioned above) that Alpine will use for accessing the rest of your
24970 folders.
24971 If you set this option to zero, you will turn off most remote connection
24972 re-use.
24973 It's difficult to understand exactly what this option does, and it is usually
24974 fine to leave it set to its default value.
24975 It is probably more likely that you will be interested in setting the
24976 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
24977 instead of changing the value of this option.
24978 A slightly longer explanation of what is going on with this option
24979 is given in the next paragraphs.
24982 There are some time costs involved in opening and closing remote IMAP 
24983 folders, the main costs being the time you have to wait for the connection
24984 to the server and the time for the folder to open.
24985 Opening a folder may involve not only the time the server takes to do its
24986 processing but time that Alpine uses to do filtering.
24987 These times can vary widely.
24988 They depend on how loaded the server is, how large
24989 the folder being opened is, and how you set up filtering, among other things.
24990 Once Alpine has opened a connection to a particular folder, it will attempt
24991 to keep that connection open in case you use it again.
24992 In order to do this,
24993 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
24994 this option) IMAP connections you have alloted for this purpose.
24996 For example, suppose the value of this option is set to &quot;2&quot;.
24997 If your INBOX is accessed on a remote server using the IMAP protocol, that
24998 doesn't count as one of the remote connections but it is always kept open.
24999 If you then open another IMAP folder, that would be your first
25000 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25001 If you open a third folder the second will be left open, in case you
25002 return to it.
25003 You won't be able to tell it has been left open.
25004 It will appear to be closed when you leave the folder but the connection
25005 will remain in the background.
25006 Now suppose you go back to the second folder (the first folder after the
25007 INBOX).
25008 A connection to that folder is still open so you won't have to wait
25009 for the startup time to open it.
25010 Meanwhile, the connection to the third folder will be left behind.
25011 Now, if you open a fourth folder, you will bump into the
25012 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25013 than INBOX and you have the option set to &quot;2&quot;.
25014 The connection that is being used for
25015 the third folder will be re-used for this new fourth folder.
25016 If you go back to the third folder after this, it is no longer already
25017 connected when you get there.
25018 You'll still save some time since Alpine will re-use the connection to the
25019 fourth folder and you have already logged in on that connection,
25020 but the folder will have to be re-opened from scratch.
25022 If a folder is large and the startup cost is dominated by the time it takes
25023 to open that folder or to run filters on it, then it will pay to make the
25024 value of this option large enough to keep it open.
25025 On the other hand, if you only revisit a handful of folders or if
25026 the folders are small, then it might
25027 make more sense to keep this number small so that the reconnect
25028 time (the time to start up a new connection and authenticate)
25029 is eliminated instead.
25031 You may also need to consider the impact on the server.
25032 On the surface, a larger number here may cause a larger impact on the
25033 server, since you will have more connections open to the server.
25034 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25035 associated with reopening a folder, but the <EM>server</EM> will be
25036 avoiding those costs as well.
25038 When twenty five minutes pass without any active use of an IMAP connection
25039 being saved for possible re-use, that connection will be shut down,
25042 <UL>   
25043 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25044 </UL><P>
25045 &lt;End of help on this topic&gt;
25046 </BODY>
25047 </HTML>
25048 ====== h_config_permlocked =====
25049 <HTML>
25050 <HEAD>
25051 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25052 </HEAD>
25053 <BODY>
25054 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25056 This option affects low-level behavior of Alpine.
25057 There is no default value for this option.
25058 It is related to the options
25059 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25060 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25061 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25064 Note: changes made to this list take effect the next time you open a
25065 folder in the list.
25068 This is a list of folders that will be permanently kept open once they
25069 are first opened.
25070 The names in this list may be either the nickname of an Incoming folder
25071 or the full technical specification of a folder.
25072 The folders in this list need not be remote IMAP folders, they could usefully
25073 be local folders, as well.
25074 If a folder in the list is a newsgroup or is not accessed either locally
25075 or via IMAP, then the entry will be ignored.
25076 For example, folders accessed via NNTP or POP3 will not be kept open, since
25077 the way that new mail is found with those protocols involves closing and
25078 reopening the connection.
25080 Once a Stay Open folder has been opened, new-mail checking will continue
25081 to happen on that folder for the rest of the Alpine session.
25082 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25083 need to be added explicitly.
25085 Another difference that you may notice between a Stay Open folder and a
25086 non-Stay Open folder is which message is selected as the current message
25087 when you enter the folder index.
25088 Normally, the starting position for an incoming folder (which most Stay Open
25089 folders will likely be) is controlled by the
25090 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25091 However, if a folder is a Stay Open folder, when you re-enter the folder
25092 after the first time the current message will be the same as it was when
25093 you left the folder.
25094 An exception is made if you use the TAB command to get to the folder.
25095 In that case, the message number will be incremented by one from what it
25096 was when you left the folder.
25098 The above special behavior is thought to be useful.
25099 However, it is special and different from what you might at first expect.
25100 The feature
25101 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25102 may be used to turn off this special treatment.
25104 If the message that was current when you left the folder no longer exists,
25105 then the regular startup rule will be used instead.
25108 <UL>   
25109 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25110 </UL><P>
25111 &lt;End of help on this topic&gt;
25112 </BODY>
25113 </HTML>
25114 ====== h_config_viewer_overlap =====
25115 <html>
25116 <header>
25117 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25118 </header>
25119 <body>
25120 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25122 This option specifies an aspect of Alpine's Message Viewing screen.  When
25123 the space bar is used to page forward in a message, the number of lines
25124 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25125 bottom of the screen.  That is, if this was set to two lines, then the
25126 bottom two lines of the screen would be repeated on the top of the next
25127 screen.  The normal default value is "2".<p>
25128 <UL>   
25129 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25130 </UL><P>
25131 &lt;End of help on this topic&gt;
25132 </body>
25133 </html>
25134 ====== h_config_scroll_margin =====
25135 <HTML>
25136 <HEAD>
25137 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25138 </HEAD>
25139 <BODY>
25140 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25142 This option controls when Alpine's line-by-line scrolling occurs.
25143 Typically, when a selected item is at the top or bottom screen edge
25144 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25145 displayed items are scrolled down or up by a single line.
25148 This option allows you to tell Alpine the number of lines from the top and
25149 bottom screen edge that line-by-line paging should occcur.  For example,
25150 setting this value to one (1) will cause Alpine to scroll the display
25151 vertically when you move to select an item on the display's top or
25152 bottom edge.
25155 By default, this variable is zero, indicating that scrolling happens
25156 when you move up or down to select an item immediately off the display's
25157 top or bottom edge.
25160 <UL>   
25161 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25162 </UL><P>
25163 &lt;End of help on this topic&gt;
25164 </BODY>
25165 </HTML>
25166 ====== h_config_wordseps =====
25167 <HTML>
25168 <HEAD>
25169 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25170 </HEAD>
25171 <BODY>
25172 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25174 This option affects how a &quot;word&quot; is defined in the composer.
25175 The definition of a word is used when using the Forward Word and Backward
25176 Word commands in the composer, as well as when using the spell checker.
25177 Whitespace is always considered a word separator.
25178 Punctuation (like question marks, periods, commas, and so on) is always
25179 a word separator if it comes at the end of a word.
25180 By default, a punctuation character that is in the middle of a word does
25181 not break up that word as long as the character before and the character
25182 after it are both alphanumeric.
25183 If you add a character to this option it will be considered a
25184 word separator even when it occurs in the middle of an alphanumeric word.
25185 For example, if you want to skip through each part of an address instead
25186 of skipping the whole address at once you might want to include &quot;@&quot;
25187 and &quot;.&quot; in this list.
25188 If you want the word-skipper to stop on each part of a UNIX filename you
25189 could add &quot;/&quot; to the list.
25190 The equal sign and dash are other possibilities you might find helpful.
25192 <UL>   
25193 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25194 </UL><P>
25195 &lt;End of help on this topic&gt;
25196 </BODY>
25197 </HTML>
25198 ====== h_config_reply_indent_string =====
25199 <HTML>
25200 <HEAD>
25201 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25202 </HEAD>
25203 <BODY>
25204 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25206 This option specifies an aspect of Alpine's Reply command.
25207 When a message is replied to and the text of the message is included, the
25208 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25209 to each line indicating it is quoted text.
25210 (In case you haven't seen this before, &quot;string&quot; is a technical term
25211 that means chunk of text.)
25214 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25215 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25216 use one of the standard values,
25217 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25220 This option specifies a different value for that string.
25221 If you wish to use a string that begins or ends with a space,
25222 enclose the string in double quotes.
25225 Besides simple text, the prepended string can be based
25226 on the message being replied to.
25227 The following tokens are substituted for the message's corresponding value:
25229 <DL>
25230 <DT>_FROM_</DT>
25231 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25232 If the name is longer than six characters, only the first six characters are
25233 used.
25234 </DD>
25236 <DT>_NICK_</DT>
25237 <DD>This token gets replaced with the nickname of the message sender's
25238 address as found in your addressbook.
25239 If no addressbook entry is found,
25240 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25241 If the nickname is longer than six characters, only the first six characters are
25242 used.
25243 </DD>
25245 <DT>_INIT_</DT>
25246 <DD>This token gets replaced with the initials of the sender of the message.
25247 </DD>
25249 </DL>
25251 NOTE: When the
25252 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25253 feature is enabled, you are given the opportunity to edit the string, whether 
25254 it is the default or one automatically generated using the above tokens.
25256 If you change your <!--#echo var="VAR_reply-indent-string"-->
25257 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25258 quoted text will not be flowed
25259 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
25260 when you reply.
25261 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
25262 set to the default value.
25264 <UL>   
25265 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25266 </UL><P>
25267 &lt;End of help on this topic&gt;
25268 </BODY>
25269 </HTML>
25270 ====== h_config_quote_replace_string =====
25271 <HTML>
25272 <HEAD>
25273 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
25274 </HEAD>
25275 <BODY>
25276 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
25278 This option specifies what string to use as a quote when <b>viewing</b> a
25279 message.  The standard way of quoting messages when replying is the string
25280 &quot;&gt;&nbsp;&quot; (quote space).
25281 With this variable set, viewing a message will
25282 replace occurrences of 
25283 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
25284 This setting works best when
25285 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
25286 or the equivalent setting in your correspondents' mail programs
25287 is set to the default
25288 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
25289 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
25291 By default, this setting will only work on messages that are flowed, which is
25292 the default way of sending messages for many mail clients including
25293 Alpine.  Enable the feature
25294 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
25295 to also have quote-replacement performed on non-flowed messages.
25298 Setting this option will replace  &quot;&gt;&quot; and 
25299 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
25300 spaces. To preserve those spaces enclose the full string in double quotes.
25302 No padding to separate the text of the message from the quote string is
25303 added. This means that if you do not add trailing spaces to the value of
25304 this variable, text will be displayed right next to the quote string,
25305 which may be undesirable. This can be avoided by adding a new string
25306 separated by a space from your selection of quote string replacement. This
25307 last string will be used for padding. For example, setting this variable to 
25308 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
25309 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
25310 a space from the last quote string to make it more readable.
25312 One possible setting for this variable could be
25313 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
25314 would have the effect of indenting each level of quoting four spaces and
25315 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
25316 more discernible by setting colors for quoted text.
25318 Replying to or forwarding the viewed message will preserve the original
25319 formatting of the message, so quote-replacement will not be performed on
25320 messages that are being composed.
25322 <UL>   
25323 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25324 </UL><P>
25325 &lt;End of help on this topic&gt;
25326 </BODY>
25327 </HTML>
25328 ====== h_config_empty_hdr_msg =====
25329 <HTML>
25330 <HEAD>
25331 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
25332 </HEAD>
25333 <BODY>
25334 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
25336 When sending, if both the To and Cc fields are empty and you
25337 are sending the message to a Bcc,
25338 Alpine will put a special address in the To line.  The default value is:
25341 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
25344 The reason for this is to avoid embarrassment caused by some Internet
25345 mail transfer software that interprets a &quot;missing&quot;
25346 <SAMP>To:</SAMP> header as an error and replaces it with an
25347 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
25348 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
25349 Bcc.  You may change the part of this message that comes before the
25350 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
25351 variable to something else.
25354 The normal default is &quot;undisclosed-recipients&quot;.
25357 <UL>   
25358 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25359 </UL><P>
25360 &lt;End of help on this topic&gt;
25361 </BODY>
25362 </HTML>
25363 ====== h_config_status_msg_delay =====
25364 <HTML>
25365 <HEAD>
25366 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
25367 </HEAD>
25368 <BODY>
25369 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
25371 This option has evolved over time, causing the possible values to be
25372 counter-intuitive.
25373 Read carefully before you set this option.
25374 First we explain what the option does, then there is a longer discussion
25375 following that.
25377 If this is set to zero, the default value, it has <EM>no</EM> effect.
25378 Positive and negative values serve two similar, but different purposes.
25380 If it is set to a positive number, it causes the cursor to move to the
25381 status line whenever a status message is printed and pause there for this
25382 many seconds.
25383 It will probably only be useful if the 
25384 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
25385 also turned on.
25386 Setting this option to a positive number can only be used to
25387 <EM>increase</EM> the status message delay.
25388 This may be useful for Braille displays, or other non-traditional displays.
25390 If it is set to a negative number the interpretation is a bit complicated.
25391 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
25392 allow you to read important status messages.
25393 Of course, this may cause you to miss some important messages.
25394 If you see a message flash by but miss what it says you can use the
25395 Journal command from the MAIN MENU to read it.
25396 If you set this option to a negative value, the delay will be
25397 no more than one second less than the absolute value
25398 of the value you set.
25399 So if you set it to -1, the delay will be no more than zero seconds, no
25400 delay at all.
25401 If you set it to -2, the delay will be no more than 1 second.
25402 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
25403 If the delay that Alpine would have used by default is less than this delay,
25404 then the smaller delay set by Alpine will be used.
25405 Setting this option to a negative value can only reduce the amount of
25406 delay, never increase it.
25408 Here is a more detailed explanation.
25409 Status messages are the messages that show up spontaneously in the
25410 status message line, usually the third line from the bottom of the screen.
25411 By default, Alpine assigns each status message it produces a minimum
25412 display time.
25413 Some status messages have a minimum display time of zero.
25414 You can see an example of such a message by paging up in this help text
25415 until you reach the top of the screen.
25416 If you try to page past the top you will see the message
25418 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
25420 in the status line.
25421 If there is another more important use of the status message line this message
25422 might be replaced quickly, or it even might not be shown at all.
25423 However, if there is no reason to get rid of the message, it might stay
25424 there for several seconds while you read the help.
25425 An example where it is replaced immediately happens when you page up in
25426 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
25427 command right after paging up.
25428 The message will disappear immediately without causing a delay (unless you
25429 have set this option to a positive value) to allow you to type input for
25430 the &quot;WhereIs&quot; command.
25431 Since it isn't a very important message, Alpine has set its minimum display
25432 time to zero seconds.
25434 Other messages have minimum display times of three or more seconds.
25435 These are usually error messages that Alpine thinks you ought to see.
25436 For example, it might be a message about a failed Save or a failed folder open.
25437 It is often the case that this minimum display time won't delay you in
25438 any way because the status message line is not needed for another reason.
25439 However, there are times when Alpine has to delay what it is doing in
25440 order to display a status message for the minimum display time.
25441 This happens when a message is being displayed and Alpine wants to ask
25442 for input from the keyboard.
25443 For example, when you Save a message you use the status message line.
25444 You get a prompt there asking for the name of the folder to save to.
25445 If there is a status message being displayed that has not
25446 yet displayed for its minimum
25447 time Alpine will display that status message surrounded with the characters
25448 &gt; and &lt; to show you that it is delaying.
25449 That might happen, for example, if you tried to save to a folder that
25450 caused an error, then followed that immediately with another Save command.
25451 You might find yourself waiting for a status message like
25453 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
25455 to finish displaying for three seconds.
25456 If that is something you find happening to you frequently, you may use
25457 negative values of this option to decrease or eliminate that delay, at
25458 the risk of missing the message.
25460 <UL>   
25461 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25462 </UL><P>
25463 &lt;End of help on this topic&gt;
25464 </BODY>
25465 </HTML>
25466 ====== h_config_active_msg_interval =====
25467 <HTML>
25468 <HEAD>
25469 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
25470 </HEAD>
25471 <BODY>
25472 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
25474 When Alpine is delayed for some reason it usually shows that
25475 something is happening with a small animated display in the status
25476 message line near the bottom of the screen.
25477 This option sets how frequently the characters (for example, a spinning bar)
25478 in the active status message lines are updated.
25479 At most, it can be set to be udpated 20 times per second. 
25482 Setting this value to zero will prevent display of the animations
25483 altogether.
25486 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
25487 can be used to remove the randomness from this animated display.
25490 <UL>   
25491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25492 </UL><P>
25493 &lt;End of help on this topic&gt;
25494 </BODY>
25495 </HTML>
25496 ====== h_config_mailchecknoncurr =====
25497 <HTML>
25498 <HEADER>
25499 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
25500 </HEADER>
25501 <BODY>
25502 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
25504 This option is closely related to the
25505 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25506 option, as well as the
25507 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
25508 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
25509 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
25510 new-mail checking is disabled and this option will have no effect.
25512 Normally this option is set to zero, which means that the value used will be
25513 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
25514 If you set this option to a value different from zero
25515 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
25516 then that is the check interval that will be used
25517 for folders that are not the currently open folder or the INBOX.
25518 You may not even have any folders that are noncurrent and not the INBOX.
25519 If you do, it is likely that they are due to
25520 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25521 you have configured.
25522 This option also affects the rate of mail checking done on cached
25523 connections to folders you previously had open but are no longer actively
25524 using.
25525 You aren't expected to understand that last sentence, but if you are interested
25526 take a look at
25527 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
25528 and the related options.
25530 <UL>   
25531 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25532 </UL><P>
25533 &lt;End of help on this topic&gt;
25534 </BODY>
25535 </HTML>
25536 ====== h_config_fifopath =====
25537 <HTML>
25538 <HEADER>
25539 <TITLE>OPTION: NewMail FIFO Path</TITLE>
25540 </HEADER>
25541 <BODY>
25542 <H1>OPTION: NewMail FIFO Path</H1>
25544 This option is only available in UNIX Alpine.
25545 However, there is a very similar feature built in to PC-Alpine.
25546 In PC-Alpine's Config menu at the top of the screen
25547 is an option called &quot;New Mail Window&quot;.
25549 You may have Alpine create a FIFO special file (also called a named pipe) where
25550 it will send a one-line message each time a new message is received in
25551 the current folder, the INBOX, or any open
25552 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
25553 To protect against two different Alpines both writing to the same FIFO, Alpine
25554 will only create the FIFO and write to it if it doesn't already exist.
25556 A possible way to use this option would be to have a separate window
25557 on your screen running the command
25559 <CENTER><SAMP>cat filename</SAMP></CENTER>
25561 where &quot;filename&quot; is the name of the file given for this option.
25562 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
25563 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
25564 You may be tempted to use &quot;tail -f filename&quot; to view the new
25565 mail log.
25566 However, the common implementations of the tail command will not do what you
25567 are hoping.
25569 The width of the messages produced for the FIFO may be altered with the
25570 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
25572 On some systems, fifos may only be created in a local filesystem.
25573 In other words, they may not be in NFS filesystems.
25574 This requirement is not universal.
25575 If the system you are using supports it, it should work.
25576 (It is often the case that your home directory is in an NFS filesystem.
25577 If that is the case, you might try using a file in the &quot;/tmp&quot;
25578 filesystem, which is usually a local filesytem.)
25579 Even when it is possible to use an NFS-mounted filesystem as a place to name
25580 the fifo (for example, your home directory), it will still be the case that
25581 the reader (probably the &quot;cat&quot; command) and the
25582 writer (Alpine) of the fifo must be running on the same system.
25584 <UL>   
25585 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25586 </UL><P>
25587 &lt;End of help on this topic&gt;
25588 </BODY>
25589 </HTML>
25590 ====== h_config_newmailwidth =====
25591 <HTML>
25592 <HEADER>
25593 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
25594 </HEADER>
25595 <BODY>
25596 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
25598 For UNIX Alpine, this option is only useful if you have turned on the
25599 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
25600 That option causes new mail messages to be sent to a fifo file.
25601 Those messages will be 80 characters wide by default.
25602 You can change the width of those messages by changing this option.
25603 For example, if you are reading those messages in another window you might
25604 want to set this width to the width of that other window.
25606 If you are using PC-Alpine, it has an option in the Config menu to turn
25607 on the &quot;New Mail Window&quot;.
25608 This present option also controls the width of that window.
25610 <UL>   
25611 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25612 </UL><P>
25613 &lt;End of help on this topic&gt;
25614 </BODY>
25615 </HTML>
25616 ====== h_config_mailcheck =====
25617 <HTML>
25618 <HEADER>
25619 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
25620 </HEADER>
25621 <BODY>
25622 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
25624 This option specifies, in seconds,
25625 how often Alpine will check for new mail.
25626 If set to zero, new-mail checking is disabled.
25627 (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
25628 current message is the last message of the folder.)
25629 There is a minimum value for this option, normally 15 seconds.
25630 The default value is normally 150 seconds.
25631 The higher you set this option, the easier it is on the server.
25633 There are some situations where automatic new-mail checking does not work.
25634 See the discussion about new-mail checking in
25635 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
25637 The new-mail checking will not happen exactly at the frequency that you specify.
25638 For example, Alpine may elect to defer a non-INBOX mail check if you
25639 are busy typing.
25640 Or, it may check more frequently than you have specified if that is
25641 thought to be necessary to keep the server from closing the connection
25642 to the folder due to inactivity.
25643 If Alpine checks for new mail as a side effect of another command, it will reset
25644 the timer, so that new-mail checking may seem to happen irregularly instead of
25645 every X seconds like clockwork.
25647 If you are anxious to know about new mail as soon as possible, set the check
25648 interval low, and you'll know about the new mail by approximately
25649 that amount of time after it arrives.
25650 If you aren't so worried about knowing right away, set this option to a
25651 higher value.
25652 That will save the server some processing time and may save you some of
25653 the time you spend waiting for new-mail checks to happen if you are
25654 dealing with a slow server or slow network connection.
25656 If you suspect that new-mail checking is causing slow downs for you,
25657 you may want to look into the options
25658 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
25659 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
25660 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
25661 which refine when mail checking is done.
25663 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
25664 there is a minimum time
25665 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
25666 between new-mail checks.
25667 Because of this minimum you may notice that new mail does not
25668 appear promptly when you expect it.
25669 The reason for this is to protect the server from over-zealous opening and
25670 closing of the Mail Drop folder, since that is a costly operation.
25672 <UL>   
25673 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25674 </UL><P>
25675 &lt;End of help on this topic&gt;
25676 </BODY>
25677 </HTML>
25678 ====== h_config_quell_checks_comp =====
25679 <HTML>
25680 <HEAD>
25681 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
25682 </HEAD>
25683 <BODY>
25684 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
25686 This option is closely related to the
25687 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25688 option, the
25689 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
25690 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
25692 If this option is set, then the normal new-mail checking that happens
25693 while you are composing will not happen for folders other than your
25694 INBOX (which depends on the setting
25695 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
25697 You might want to set this option if you are experiencing delays while
25698 composing that you think might be related to the speed of the new-mail
25699 checks.
25701 Even with this option turned on, an occasional new-mail check may be done
25702 in order to keep the server from killing the connection to the folder.
25703 For example, IMAP servers may remove a connection to a folder if there
25704 has been no activity on the connection for 30 minutes or more.
25705 Instead of letting that happen, Alpine will check for new mail before the
25706 30 minutes is up even though you have turned on this feature to quell
25707 those checks.
25709 Besides new-mail checks, checkpoint operations on the folders
25710 will also be quelled when you set this option.
25711 The purpose of checkpointing is to write the changes to a folder out to
25712 disk periodically in order to avoid losing those changes when system or
25713 software problems occur.
25714 New-mail checking and checkpointing while you are not composing are not
25715 affected by this option.
25718 &lt;End of help on this topic&gt;
25719 </BODY>
25720 </HTML>
25721 ====== h_config_quell_checks_comp_inbox =====
25722 <HTML>
25723 <HEAD>
25724 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
25725 </HEAD>
25726 <BODY>
25727 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
25729 This option is closely related to the
25730 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
25731 option, the
25732 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
25733 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
25735 If this option is set, then the normal new-mail checking that happens
25736 while you are composing will not happen for your INBOX.
25737 Checking of other folders is controlled in a similar way with the
25738 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
25740 You might want to set this option if you are experiencing delays while
25741 composing that you think might be related to the speed of the new-mail
25742 checks.
25744 Even with this option turned on, an occasional new-mail check may be done
25745 in order to keep the server from killing the connection to the folder.
25746 For example, IMAP servers may remove a connection to a folder if there
25747 has been no activity on the connection for 30 minutes or more.
25748 Instead of letting that happen, Alpine will check for new mail before the
25749 30 minutes is up even though you have turned on this feature to quell
25750 those checks.
25752 Besides new-mail checks, checkpoint operations on the INBOX
25753 will also be quelled when you set this option.
25754 The purpose of checkpointing is to write the changes to a folder out to
25755 disk periodically in order to avoid losing those changes when system or
25756 software problems occur.
25757 New-mail checking and checkpointing while you are not composing are not
25758 affected by this option.
25760 &lt;End of help on this topic&gt;
25761 </BODY>
25762 </HTML>
25763 ====== h_config_maildropcheck =====
25764 <HTML>
25765 <HEADER>
25766 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
25767 </HEADER>
25768 <BODY>
25769 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
25771 New-mail checking for a
25772 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
25773 mail checking for a regular folder.
25774 One of the differences is that the connection to the Mail Drop is not
25775 kept open and so the cost of checking
25776 (delay for you and additional load for the server) may be significant.
25777 Because of this additional cost we set a minimum time that
25778 must pass between checks.
25779 This minimum only applies to the automatic checking done by Alpine.
25780 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
25781 at the end of a folder index, then the check is done right away.
25783 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
25784 new-mail checks.
25785 You may want to set this minimum high in order to avoid experiencing some
25786 of the delays associated with the checks.
25787 Note that the time between checks is still controlled by the regular
25788 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
25789 When Alpine is about to do an automatic check for new mail (because
25790 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
25791 new-mail check
25792 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
25793 the Mail Drop is checked for new mail as well.
25794 Therefore, it is only useful to set this option to a value that is higher
25795 than the <!--#echo var="VAR_mail-check-interval"-->.
25797 If this option is set to zero, automatic Mail Drop new-mail
25798 checking is disabled.
25799 There is a minimum value, normally 60 seconds.
25800 The default value is normally 60 seconds as well.
25801 This applies to the INBOX and to the currently open folder if that is
25802 different from the INBOX.
25805 <UL>   
25806 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25807 </UL><P>
25808 &lt;End of help on this topic&gt;
25809 </BODY>
25810 </HTML>
25811 ====== h_config_nntprange =====
25812 <HTML>
25813 <HEADER>
25814 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
25815 </HEADER>
25816 <BODY>
25817 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
25819 This option applies only to newsgroups accessed using the NNTP protocol.
25820 It does not, for example,
25821 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
25824 When you open a connection to a News server using the NNTP protocol, you
25825 normally have access to all of the articles in each newsgroup.
25826 If a server keeps a large backlog of messages it may speed performance
25827 some to restrict attention to only the newer messages in a group.
25828 This option allows you to set how many article numbers should be checked
25829 when opening a newsgroup.
25830 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
25831 of messages you ever want to see.
25832 For example, if you only ever wanted to look at the last 500 messages in each
25833 newsgroup you could set this option to 500.
25834 In actuality, it isn't quite that.
25835 Instead, for performance reasons, it specifies the range of article
25836 numbers to be checked, beginning
25837 with the highest numbered article and going backwards from there.
25838 If there are messages that have been canceled or deleted
25839 their article numbers are still counted as part of the range.
25841 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
25842 numbers
25843 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
25845 to be considered when reading a newsgroup.
25846 The number of messages that show up in your index will be less than or equal
25847 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
25850 The purpose of this option is simply to speed up access when reading news.
25851 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
25852 numbers, and can avoid downloading any information about the ignored articles.
25853 There is a cost you pay for this speedup.
25854 That cost is that there is no way for you to see those ignored articles.
25855 The articles that come before the range you specify are invisible to you and
25856 to Alpine, as if they did not exist at all.
25857 There is no way to see those messages using, for example, an unexclude command
25858 or something similar.
25859 The only way to see those articles is to set this option high enough (or
25860 set it to zero) and then to reopen the newsgroup.
25863 If this option is set to 0 (which is also the default),
25864 then the range is unlimited.
25865 This option applies globally to all NNTP servers and to all newsgroups
25866 on those servers.
25867 There is no way to set different values for different newsgroups or servers.
25870 <UL>   
25871 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25872 </UL><P>
25873 &lt;End of help on this topic&gt;
25874 </BODY>
25875 </HTML>
25876 ====== h_config_news_active =====
25877 <html>
25878 <header>
25879 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
25880 </header>
25881 <body>
25882 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
25884 This option tells Alpine where to look for the "active file" for newsgroups
25885 when accessing news locally, rather than via NNTP.  The default path is
25886 usually "/usr/lib/news/active".<p>
25887 <UL>   
25888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25889 </UL><P>
25890 &lt;End of help on this topic&gt;
25891 </body>
25892 </html>
25893 ====== h_config_news_spool =====
25894 <html>
25895 <header>
25896 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
25897 </header>
25898 <body>
25899 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
25901 This option tells Alpine where to look for the "news spool" for newsgroups
25902 when accessing news locally, rather than via NNTP.  The default path is
25903 usually "/var/spool/news".<p>
25904 <UL>   
25905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25906 </UL><P>
25907 &lt;End of help on this topic&gt;
25908 </body>
25909 </html>
25910 ====== h_config_image_viewer =====
25911 <html>
25912 <header>
25913 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
25914 </header>
25915 <body>
25916 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
25917 <body>
25918 This option specifies the program Alpine should call to view MIME
25919 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
25920 no longer needed, but remains for backward compatibility.  The more
25921 general method for associating external printing and viewing programs with
25922 specific MIME data types is to use the system's (or your personal)
25923 "mailcap" configuration file.<p>
25924 <UL>   
25925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25926 </UL><P>
25927 &lt;End of help on this topic&gt;
25928 </body>
25929 </html>
25930 ====== h_config_domain_name =====
25931 <HTML>
25932 <HEAD>
25933 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
25934 </HEAD>
25935 <BODY>
25936 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
25938 This option is used only if the 
25939 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
25940 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
25941 strips the hostname from your return (&quot;From&quot;) address and when 
25942 completing unqualified addresses that you enter into the composer.
25944 If you set this, see also the <A HREF="h_config_quell_local_lookup">
25945 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
25948 <!--chtml if pinemode="os_windows"-->
25949 <P>This option is not applicable to PC-Alpine.
25950 <!--chtml else-->
25952 <!--chtml endif-->
25953 <UL>
25954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25955 </UL>
25957 &lt;End of help on this topic&gt;
25958 </BODY>
25959 </HTML>
25960 ====== h_config_prune_date =====
25961 <HTML>
25962 <HEAD>
25963 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
25964 </HEAD>
25965 <BODY>
25966 <H1>OPTION: Last-Time-Prune Question</H1>
25968 This value records the last time you were asked about deleting old
25969 sent-mail.
25970 It is set automatically by Alpine at the beginning of each month.
25971 In the past, if you wished to suppress the monthly sent-mail
25972 pruning feature, you could set this to a date in the future.
25973 This value is relative to the year 1900, so 
25974 to set this, for example, to October 2005, use 105.10.
25976 You can still do that if you wish, or you can use the
25977 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
25978 a little more convenient to use.
25980 <UL>   
25981 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25982 </UL><P>
25983 &lt;End of help on this topic&gt;
25984 </BODY>
25985 </HTML>
25986 ====== h_config_goto_default =====
25987 <HTML>
25988 <HEAD>
25989 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
25990 </HEAD>
25991 <BODY>
25992 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
25994 This value affects Alpine's behavior when you use the Goto command.
25995 Alpine's usual behavior has two parts.  If your current folder is
25996 &quot;Inbox&quot;, Alpine will offer the last open folder as the
25997 default.  If the current folder is other than &quot;Inbox&quot;,
25998 &quot;Inbox&quot; is offered as the default.
26001 The available options include:
26003 <DL>
26005  <DT>folder-in-first-collection</DT>
26007  <DD> Alpine will offer the most recently visited folder in the default
26008 collection found in the &quot;Collection List&quot; screen as the default.
26009 </DD>
26011  <DT> inbox-or-folder-in-first-collection</DT>
26013  <DD> If the current folder is &quot;Inbox&quot;,
26014 Alpine will offer the most recently visited folder in the
26015 default collection found in the &quot;Collection List&quot; screen.
26016 If the current folder is other than &quot;Inbox&quot;,
26017 &quot;Inbox&quot; is offered as the default.
26018 </DD>
26020  <DT> inbox-or-folder-in-recent-collection</DT>
26022  <DD> This is Alpine's default behavior.
26023 If the current folder is &quot;Inbox&quot;,
26024 Alpine will offer the last open
26025 folder as the default.
26026 If the current folder is other than &quot;Inbox&quot;,
26027 &quot;Inbox&quot; is offered as the default.
26028 </DD>
26030  <DT> first-collection-with-inbox-default</DT>
26032  <DD> Instead of offering the most recently visited folder in the default
26033 collection, the default collection is offered but with &quot;Inbox&quot; as
26034 the default folder.
26035 If you type in a folder name it will be in the default collection.
26036 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26037 </DD>
26039  <DT> most-recent-folder</DT>
26041  <DD> The last accepted value simply causes the most recently opened
26042 folder to be offered as the default regardless of the currently opened
26043 folder.
26044 </DD>
26045 </DL>
26048 NOTE: The default while a newsgroup is open remains the same; the last
26049 open newsgroup.
26052 <UL>   
26053 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26054 </UL><P>
26055 &lt;End of help on this topic&gt;
26056 </BODY>
26057 </HTML>
26058 ====== h_config_thread_lastreply_char =====
26059 <HTML>
26060 <HEAD>
26061 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26062 </HEAD>
26063 <BODY>
26064 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26066 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26067 INDEX display when using a
26068 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26069 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26070 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26071 The value of this option is a single character.
26072 This character is used instead of the vertical line character when there are
26073 no more replies directly to the parent of the current message.
26074 It can be used to &quot;round-off&quot; the bottom of the vertical line
26075 by setting it to a character such as a backslash (&#92;) or
26076 a backquote (&#96;).
26077 The default value of this option is the backslash character (&#92;).
26078 This option may not be set to the Empty Value.
26079 In that case, the default will be used instead.
26082 <UL>   
26083 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26084 </UL><P>
26085 &lt;End of help on this topic&gt;
26086 </BODY>
26087 </HTML>
26088 ====== h_config_thread_indicator_char =====
26089 <HTML>
26090 <HEAD>
26091 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26092 </HEAD>
26093 <BODY>
26094 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26096 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26097 INDEX display when using a
26098 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26099 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26100 The value of this option is a single character.
26101 This character is used to indicate that part of a thread (a conversation) is
26102 hidden beneath a message.
26103 The message could be expanded
26104 if desired with the &quot;/&quot; Collapse/Expand command.
26105 By default, the value of this option is the greater than sign (&gt;).
26107 If this option is set to the Empty Value, then the column (and the following
26108 blank column) will be deleted from the display.
26111 This option is closely related to the
26112 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26113 Another similar option that affects the thread display is the
26114 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26117 <UL>   
26118 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26119 </UL><P>
26120 &lt;End of help on this topic&gt;
26121 </BODY>
26122 </HTML>
26123 ====== h_config_thread_exp_char =====
26124 <HTML>
26125 <HEAD>
26126 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26127 </HEAD>
26128 <BODY>
26129 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26131 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26132 INDEX display when using a
26133 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26134 than &quot;none&quot;.
26135 The value of this option is a single character.
26136 This character is used to indicate that part of a thread has been expanded
26137 and could be collapsed if desired with
26138 the &quot;/&quot; Collapse/Expand command.
26139 By default, the value of this option is a dot (.).
26141 If this option is set to the Empty Value, then the column (and the following
26142 blank column) will be deleted from the display.
26145 This option is closely related to the
26146 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26147 Another similar option that affects the thread display is the
26148 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26151 <UL>   
26152 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26153 </UL><P>
26154 &lt;End of help on this topic&gt;
26155 </BODY>
26156 </HTML>
26157 ====== h_config_thread_index_style =====
26158 <HTML>
26159 <HEAD>
26160 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26161 </HEAD>
26162 <BODY>
26163 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26165 When a folder is sorted by Threads or OrderedSubject,
26166 this option will affect the INDEX displays.
26169 The possible values for this option are:
26171 <DL>
26172 <DT>regular-index-with-expanded-threads</DT>
26173 <DD>This is the default display.
26174 If the configuration option
26175 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26176 is set to something other than &quot;none&quot;, then this setting
26177 will cause Alpine to start off with a MESSAGE INDEX with all of
26178 the threads expanded.
26179 That is, each message will have a line in the MESSAGE INDEX display.
26180 The Collapse/Expand command (/) may be used to manually collapse or
26181 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26183 This setting affects the display when the folder is first threaded.
26184 The collapsed state may also be re-initialized by re-sorting the folder manually
26185 using the SortIndex command ($).
26186 After re-sorting the threads will once again all be expanded, even if you
26187 have previously collapsed some of them.
26189 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26190 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26191 in a different order.
26192 </DD>
26194 <DT>regular-index-with-collapsed-threads</DT>
26195 <DD>If the configuration option
26196 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26197 is set to something other than &quot;none&quot;, then this setting
26198 will cause Alpine to start out with all of the threads collapsed instead of
26199 starting out with all of the threads expanded.
26200 The Collapse/Expand command (/) may be used to manually collapse or
26201 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26203 This setting affects the display when the folder is first threaded.
26204 The collapsed state may also be re-initialized by re-sorting the folder manually
26205 using the SortIndex command ($).
26206 After re-sorting the threads will once again all be collapsed, even if you
26207 have previously expanded some of them.
26208 </DD>
26210 <DT>separate-index-screen-always</DT>
26211 <DD>With this setting and the next, you will see an index of threads
26212 instead of an
26213 index of messages, provided you have sorted by Threads or OrderedSubject.
26215 The THREAD INDEX contains a '*' in the first column if any message in the thread
26216 is marked Important.
26217 If not, it contains a '+' if any message in the thread is to you.
26218 The second column is blank. The third column contains a 'D' if all of the
26219 messages in the thread are deleted.
26220 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26222 When you view a particular thread from the THREAD INDEX you will be
26223 in the MESSAGE INDEX display
26224 but the index will only contain messages from the thread you are viewing.
26225 </DD>
26227 <DT>separate-index-screen-except-for-single-messages</DT>
26228 <DD>This is very similar to the option above.
26229 When you are in the THREAD INDEX, one of the available commands
26230 is &quot;ViewThd&quot;.
26231 With the setting &quot;separate-index-screen-always&quot; (the option above)
26232 when you view a particular thread you will be in the
26233 MESSAGE INDEX display and the index will only contain messages from
26234 the thread you are viewing.
26235 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26236 will be an index with only one message in it.
26237 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26238 setting instead, then that index that contains a single message
26239 will be skipped and you will go directly from the THREAD INDEX into the
26240 MESSAGE TEXT screen.
26241 </DD>
26243 </DL>
26246 <UL>   
26247 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26248 </UL><P>
26249 &lt;End of help on this topic&gt;
26250 </BODY>
26251 </HTML>
26252 ====== h_config_thread_disp_style =====
26253 <HTML>
26254 <HEAD>
26255 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26256 </HEAD>
26257 <BODY>
26258 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
26260 When a folder is sorted by Threads or OrderedSubject,
26261 this option will affect the MESSAGE INDEX display.
26262 By default, Alpine will display the MESSAGE INDEX in the
26263 &quot;show-thread-structure&quot; style if a folder is sorted
26264 by Threads or OrderedSubject.
26267 The possible values for this option are:
26269 <DL>
26270 <DT>none</DT>
26271 <DD>Regular index display.
26272 The same index line as would be displayed without threading is used.
26273 The only difference will be in the order of the messages.
26274 </DD>
26276 <DT>show-thread-structure</DT>
26277 <DD>Threaded Subjects will be indented and vertical bars and horizontal
26278 lines will be added to make it easier to see the relationships among
26279 the messages in a thread (a conversation).
26280 </DD>
26282 <DT>mutt-like</DT>
26283 <DD>This is the same as the option above except that the Subject
26284 is suppressed (is blank) if it matches the previous Subject in the thread.
26285 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
26286 Here is an example of what a mutt-like index might look like.
26287 In this example, the first column represents the message number, the
26288 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
26289 is set to &quot;regular-index-with-expanded-threads&quot;, and the
26290 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
26291 is set to a backslash:
26292 <PRE>
26293 &nbsp;&nbsp;&nbsp;1    Some topic
26294 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
26295 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
26296 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
26297 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
26298 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
26299 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
26300 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
26301 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
26302 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
26303 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
26304 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
26305 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
26306 &nbsp;&nbsp;&nbsp;14    Next topic
26307 </PRE>
26308 </DD>
26310 <DT>indent-subject-1</DT>
26311 <DD>Threaded Subjects will be indented one space per level of the conversation.
26312 The bars and lines that show up in the show-thread-structure display will
26313 not be there with this style.
26314 </DD>
26316 <DT>indent-subject-2</DT>
26317 <DD>Same as above but indent two spaces per level instead of one space.
26318 </DD>
26320 <DT>indent-from-1</DT>
26321 <DD>Similar to indent-subject-1, except that instead of indenting the
26322 Subject field one space the From field of a thread will be indented one
26323 space per level of the conversation.
26324 </DD>
26326 <DT>indent-from-2</DT>
26327 <DD>Same as above but indent two spaces per level instead of one space.
26328 </DD>
26330 <DT>show-structure-in-from</DT>
26331 <DD>The structure of the thread is illustrated with indenting, vertical bars,
26332 and horizontal lines just like with the show-thread-structure option, but
26333 the From field is used to show the relationships instead of the Subject field. 
26334 </DD>
26336 </DL>
26339 <UL>   
26340 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26341 </UL><P>
26342 &lt;End of help on this topic&gt;
26343 </BODY>
26344 </HTML>
26345 ====== h_config_pruning_rule =====
26346 <HTML>
26347 <HEAD>
26348 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
26349 </HEAD>
26350 <BODY>
26351 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
26353 By default, Alpine will ask at the beginning of each month whether or not
26354 you want to rename your sent-mail folder to a name like sent-mail-month-year.
26355 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
26356 change the format of the folder to sent-mail-yyyy-mm.)
26357 It will also ask whether you would like to delete old sent-mail folders.
26358 If you have defined
26359 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
26361 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
26362 Alpine will also ask about pruning those folders.
26365 With this option you may provide an automatic answer to these questions.
26366 The default value is to ask you what you'd like to do.
26369 The six possible values for this option are:
26371 <DL>
26372 <DT>ask about rename, ask about deleting</DT>
26373 <DD>This is the default.
26374 Alpine will ask whether you want to rename the folders and whether you
26375 want to delete each of the old folders.
26376 </DD>
26378 <DT>ask about rename, don't delete</DT>
26379 <DD>Alpine will ask whether you want to rename the folders, but won't
26380 ask about or delete old folders.
26381 </DD>
26383 <DT>always rename, ask about deleting</DT>
26384 <DD>This means you want to always answer yes and have Alpine automatically
26385 rename the folder if possible.
26386 You will also be asked about deleting old folders.
26387 </DD>
26389 <DT>always rename, don't delete</DT>
26390 <DD>This means you want to always answer yes and have Alpine automatically
26391 rename the folder if possible.
26392 There will be no deleting of old folders.
26393 </DD>
26395 <DT>don't rename, ask about deleting</DT>
26396 <DD>This means you want to always answer no.
26397 Alpine will not rename the folder.
26398 You will be asked about deleting old folders.
26399 </DD>
26401 <DT>don't rename, don't delete</DT>
26402 <DD>This means you want to always answer no.
26403 Alpine will not rename the folder.
26404 There will be no deleting of old folders, either.
26405 </DD>
26406 </DL>
26409 <UL>   
26410 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26411 </UL><P>
26412 &lt;End of help on this topic&gt;
26413 </BODY>
26414 </HTML>
26415 ====== h_config_reopen_rule =====
26416 <HTML>
26417 <HEAD>
26418 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
26419 </HEAD>
26420 <BODY>
26421 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
26423 Alpine normally checks for new mail in the currently open folder
26424 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
26427 There are some situations where automatic new-mail checking does not work.
26428 For example, if a mail folder is opened using the POP protocol or a newsgroup
26429 is being read using the NNTP protocol, then new-mail checking is disabled.
26432 It may be possible to check for new mail in these cases by reopening the
26433 folder.
26434 Alpine does not do this for you automatically, but you may do the commands
26435 manually to cause this to happen.
26436 You reopen by going back to the folder list screen from the message
26437 index screen with the &quot;&lt;&quot; command,
26438 and then going back into the message index screen with
26439 the &quot;&gt;&quot; command.
26440 (Actually, any method you would normally use to open a folder will work the
26441 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
26442 For example, the GoTo Folder command will work, or you may use L to go to the
26443 Folder List screen and Carriage Return to reopen the folder.)
26446 There are some cases where Alpine knows that reopening the folder should
26447 be useful as a way to discover new mail.
26448 At the time of this writing, connections made using the POP protocol,
26449 news reading using the NNTP protocol, local news reading, and local
26450 ReadOnly folders that are in the traditional UNIX or the MMDF format all
26451 fall into this category.
26452 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
26453 has no way of knowing, so it might also just be an exercise in futility.
26454 All remote, ReadOnly folders other than those listed just above fall into this
26455 category.
26456 The setting of this option together with the type of folder
26457 controls how Alpine will react to the apparent attempt to reopen a folder.
26460 If you don't reopen, then you will just be back in
26461 the message index with no change.
26462 You left the index and came back, but the folder remained &quot;open&quot;
26463 the whole time.
26464 However, if you do reopen the folder, the folder is closed and then reopened.
26465 In this case, the current state of the open folder is lost.
26466 The New status, Important and Answered flags,
26467 selected state, Zoom state, collapsed or expanded state of threads,
26468 current message number,
26469 and any other temporary state is all lost when the reopen happens.
26470 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
26473 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
26474 several places.
26475 That really implies the case where Alpine knows it is a good way to discover
26476 new mail, which is more than just POP and NNTP, but POP and NNTP are
26477 the cases of most interest.
26478 This option probably has more possible values than it deserves. They are:
26480 <DL>
26481 <DT>Always reopen</DT>
26482 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
26483 whenever you type a command that implies a reopen, regardless of the
26484 access method.
26485 In other words, it is assumed you would always answer Yes if asked
26486 about reopening.
26487 </DD>
26489 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
26490 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26491 will ask you whether to reopen other remote folders,
26492 with a default answer of Yes.
26493 </DD>
26495 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
26496 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
26497 will ask you whether to reopen other remote folders,
26498 with a default answer of No.
26499 </DD>
26501 <DT>Yes for POP/NNTP, No for other remote</DT>
26502 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
26503 will assume a No answer for all other remote folders.
26504 </DD>
26506 <DT>Always ask [Yes]</DT>
26507 <DD>Alpine will not differentiate based on access method.
26508 It will always ask for all remote folders, with a default answer of Yes.
26509 </DD>
26511 <DT>Always ask [No]</DT>
26512 <DD>Alpine will not differentiate based on access method.
26513 It will always ask for all remote folders, with a default answer of No.
26514 </DD>
26516 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
26517 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
26518 of Yes.
26519 It will never attempt to reopen other remote folders.
26520 </DD>
26522 <DT>Ask about POP/NNTP [No], No for other remote</DT>
26523 <DD>This is the default.
26524 Alpine will ask if the access method is POP or NNTP, with a default answer
26525 of No.
26526 It will never attempt to reopen other remote folders.
26527 </DD>
26529 <DT>Never reopen</DT>
26530 <DD>Alpine will never attempt to reopen already open folders.
26531 </DD>
26532 </DL>
26535 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
26536 any of the other situations where it is likely that reopening is a good way
26537 to discover new mail.
26540 There is an alternative that may be of useful in some situations.
26541 Instead of manually checking for new mail you can set up a
26542 <A HREF="h_maildrop">Mail Drop</A>
26543 and automatically check for new mail.
26546 <UL>   
26547 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26548 </UL><P>
26549 &lt;End of help on this topic&gt;
26550 </BODY>
26551 </HTML>
26552 ====== h_config_inc_startup =====
26553 <HTML>
26554 <HEAD>
26555 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
26556 </HEAD>
26557 <BODY>
26558 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
26560 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
26561 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
26562 It determines which message will be the <EM>current message</EM> when
26563 the folder is first opened.
26564 The default value is &quot;first-unseen&quot;.
26567 The seven possible values for this option are:
26569 <DL>
26570 <DT>first-unseen</DT>
26571 <DD>The current message is set to the first
26572 unseen message that has not been marked deleted, or the last message if
26573 all of the messages have been seen previously.
26574 Messages which have not been seen or which have been seen but re-marked
26575 as New are considered unseen messages.
26576 See the note at the bottom of this help about newsgroups.
26577 </DD>
26579 <DT>first-recent</DT>
26580 <DD>Similar to the default, but rather than starting on the first
26581 unseen message Alpine starts on the first <EM>recent</EM> message.
26582 A message is recent if it arrived since the last time the folder was
26583 open.  This value causes the current message to be set to the first
26584 recent message if there is one, otherwise to the last
26585 message in the folder.
26586 </DD>
26588 <DT>first-important</DT>
26589 <DD>This will result in the current message being set to the first
26590 message marked Important (but not Deleted).
26591 If no messages are marked Important, then it will be the last message.
26592 Messages are marked Important by <EM>you</EM>, not by the sender, using
26594 <A HREF="h_common_flag">Flag command</A>.
26595 Or they may be marked Important by an Alpine
26596 <A HREF="h_mainhelp_filtering">Filter</A>
26597 that you have set up.
26598 </DD>
26600 <DT>first-important-or-unseen</DT>
26601 <DD>This selects the first of the first unseen and the first important
26602 messages.
26603 </DD>
26605 <DT>first-important-or-recent</DT>
26606 <DD>This selects the first of the first recent and the first important
26607 messages.
26608 </DD>
26610 <DT>first</DT>
26611 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
26612 If all messages are deleted you start on the last message.
26613 </DD>
26615 <DT>last</DT>
26616 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
26617 If all messages are deleted you start on the last message.
26618 </DD>
26619 </DL>
26622 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
26623 &quot;first-recent&quot; are the same and are affected by whether or not the
26624 feature 
26625 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
26626 is turned on. 
26627 Also, there is no permanent storage in news for an Important flag.
26628 This means that no messages will be marked Important when a newsgroup is
26629 first opened.
26632 <UL>   
26633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26634 </UL><P>
26635 &lt;End of help on this topic&gt;
26636 </BODY>
26637 </HTML>
26638 ====== h_config_browser =====
26639 <HTML>
26640 <HEAD>
26641 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
26642 </HEAD>
26643 <BODY>
26644 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
26645 <!--chtml if pinemode="os_windows"-->
26646 PC-Alpine users do not need to enter anything here, unless:<UL>
26647 <LI> they want to override, for use with Alpine, the application defined
26648 in the Windows operating system for handling URLs; or
26649 <LI> they are (planning on) using the same configuration file with 
26650 Unix Alpine.
26651 </UL>
26653 Note that if using a viewer that has a space in its path, you should
26654 use the DOS name for that directory or file. Example:
26655 <PRE>
26656 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
26657 </PRE>
26658 <HR><P>
26659 <!--chtml endif-->
26660 This option affects Alpine's handling of URLs that are found in 
26661 messages you read.  Normally, only URLs Alpine can handle directly
26662 are automatically offered for selection in the &quot;Message
26663 Text&quot; screen.  When one or more applications
26664 capable of deciphering URLs on their command line are added here, Alpine
26665 will choose the first available to display URLs it cannot handle directly.
26666 A viewer's availability is based on its being specified with a <B>full
26667 directory path</B> and the evaluation of any optionally supplied
26668 parameters described below.
26671 Additionally, to support various connection methods and applications, each
26672 entry in this list can optionally begin with one or more of
26673 the following special tokens.  The allowed tokens include:
26676 <DL>
26677 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
26678 <DD>
26679 The <VAR>test-string</VAR> is a shell command that Alpine will run to
26680 evaluate a viewer's availability.  The command specified by the test
26681 string is run and if its resulting exit status is non-zero, Alpine will
26682 not consider the associated viewer for use.
26683 </DD>
26685 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
26686 <DD>
26687 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
26688 URL schemes that are to be used with the associated viewer.  This is
26689 the way to configure Alpine to recognize URLs other than the built-in set.
26691 It can also be used to override Alpine's built-in handlers.
26692 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
26693 and Alpine would use (provided it passed all other criteria) the associated
26694 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
26696 </DD>
26697 </DL>
26700 By default, Alpine will simply append a space character followed by the
26701 selected URL prior to launching the command in your specified SHELL.  You can
26702 optionally specify where in the command the selected URL should appear
26703 by using the &quot;_URL_&quot; token.  All occurrences found in the command
26704 will be replaced with the selected URL before the command is handed
26705 to the shell.  If such replacement occurs, the default appending of the
26706 selected URL does not take place.
26709 NOTE: If the viewer you specify has any command-line arguments,
26710 including the &quot;_URL_&quot; token, you will need to add a
26711 double-quote character before the command path and after the last
26712 argument (see the &quot;lynx&quot; example below).
26715 So, here are some example entries:
26716 <PRE>
26717 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
26718               &quot;/usr/local/bin/lynx _URL_&quot;
26719               C:&#92;BIN&#92;NETSCAPE.BAT
26720 </PRE>
26722 This example shows that for the first viewer in the list to be used
26723 the environment variable &quot;DISPLAY&quot; must be defined.  If it
26724 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
26725 If neither condition is met,
26726 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
26727 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
26728 If the path to &quot;lynx&quot; is invalid,
26729 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
26730 Note that the last
26731 entry is a DOS/Windows path.  This is one way to support Alpine running
26732 on more than one architecture with the same configuration file.<P>
26734 <!--chtml if pinemode="os_windows"-->
26735 <!--chtml else-->
26736 Note that depending on the type of browser used and the method of 
26737 its invocation (such as whether it will open in a separate window) from
26738 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
26739 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
26740 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
26741 In other words, launching the browser from Alpine may make Alpine 
26742 &quot;disappear&quot; (although it is still &quot;running&quot;)
26743 until you close the browser again.<P>  
26744 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
26745 environment: for advanced users and  systems administrators</A>
26746 </UL>
26747 <!--chtml endif-->
26748 <P>If you are unsure what browsers are available on your system or how to 
26749 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
26750 local computing support staff.
26751 <P><UL>
26752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26753 </UL>
26755 &lt;End of help on this topic&gt;
26756 </BODY>
26757 </HTML>
26758 ====== h_config_browser_xterm =====
26759 <HTML>
26760 <HEAD>
26761 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
26762 </HEAD>
26763 <BODY>
26764 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
26765 environment: for advanced users and  systems administrators</H1>
26766 If you are using Alpine with an X-terminal (emulator) and want to define an 
26767 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
26768 you may want to do so in a manner that causes any <B>already</B> 
26769 invoked viewer application to be used for viewing URLs you select from Alpine 
26770 messages, and a <B>new</B> URL-viewer process to be 
26771 started <B>only</B> if the same application has <B>not already</B> 
26772 been launched -- for one reason, to avoid file-locking contentions among 
26773 multiple invocations of the same URL-viewer application.  
26774 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
26775 option does not do this.)  A method of doing that would be:<OL>
26776 <LI> use 
26777 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
26778 check (using commands appropriate for your Unix shell
26779 in place of <VAR>test-string</VAR>) for the presence of a 
26780 lockfile created by the URL-viewer application -- which implies that the 
26781 application is already running, though this is not foolproof. 
26782 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
26783 application with its appropriate command line option(s) to 
26784 show the URL selected from the Alpine message in an already open window of 
26785 that application, or perhaps in a new window of that application.  
26787 <LI> In the 
26788 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
26789 application without those command line options, but this time using the 
26790 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
26791 is defined.
26792 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
26793 windows environment (for instance, using VT-100 terminal emulation), you 
26794 may wish to specify a non-X windows URL-viewer application such as Lynx
26795 as the last entry.
26796 </OL><BR>
26797 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
26798 the command shell, the URL-viewer application(s), and possibly the specific 
26799 version of the latter, you are using.  
26801 Relevant command 
26802 line options for the Netscape browser for showing URLs (selected from Alpine) 
26803 when Netscape is already running are discussed in the document
26804 &quot;Remote Control of UNIX Netscape&quot; 
26805 found at the URL (as of 12 Aug. 1998):
26808 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
26810 <P>(If the URL-viewer application is 
26811 <B>not</B> running on the same host as Alpine, but being launched from an 
26812 applications server, you may not be able to use the command line options for 
26813 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
26815 <!--chtml if this-method="shown-to-work"-->
26816 An example using the Korn shell and the Netscape browser (first entry wrapped 
26817 because of its length, but should all appear on one line):
26819 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
26821 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
26822               &quot;/usr/local/bin/lynx '_URL_'&quot;
26824 <!--chtml endif-->
26826 <UL>   
26827 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26828 </UL><P>
26829 &lt;End of help on this topic&gt;
26830 </BODY>
26831 </HTML>
26832 ====== h_config_enable_full_hdr =====
26833 <HTML>
26834 <HEAD>
26835 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
26836 </HEAD>
26837 <BODY>
26838 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
26840 This feature enables the &quot;H Full Headers&quot; command which toggles between
26841 the display of all headers in the message and the normal edited view of
26842 headers.  The Full Header command also controls which headers are included
26843 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
26844 Full Header mode will respect the
26845 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
26846 feature setting.)
26848 If Full Header mode is turned on and you Forward a message, you will
26849 be asked if you'd like to forward the message as an attachment, as opposed
26850 to including the text of the message in the body of your new message.
26852 If you have also turned on the
26853 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
26854 option then the Full Headers command actually rotates through three states
26855 instead of just two.
26856 The first is the normal view with long quotes suppressed.
26857 The second is the normal view but with the long quotes included.
26858 The last enables the display of all headers in the message.
26859 When using Export, Pipe, Print, Forward, or Reply the quotes are
26860 never suppressed, so the first two states are identical.
26862 Normally, the Header Mode will reset
26863 to the default behavior when moving to a new message.
26864 The mode can be made to persist from message to message by setting the feature
26865 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
26867 <UL>   
26868 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26869 </UL><P>
26870 &lt;End of help on this topic&gt;
26871 </BODY>
26872 </HTML>
26873 ====== h_config_enable_full_hdr_and_text =====
26874 <HTML>
26875 <HEAD>
26876 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
26877 </HEAD>
26878 <BODY>
26879 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
26881 This feature affects how the &quot;H Full Headers&quot; command displays
26882 message text.  If set, the raw message text will be displayed.  This
26883 especially affects MIME formatted email, where the entire MIME format
26884 will be displayed.  This feature similarly affects how messages are
26885 included for the Export, Pipe, Print, Forward, and Reply functions.
26887 When viewing a raw message that has attachments with this feature set,
26888 you will not be able to view attachments without first leaving full 
26889 headers mode.  This is because MIME parsing is not done on the raw message.
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_enable_pipe =====
26898 <HTML>
26899 <HEAD>
26900 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
26901 </HEAD>
26902 <BODY>
26903 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
26905 This feature enables the "| Pipe" command that sends the current message
26906 to the specified command for external processing.
26909 A short description of how the pipe command works is given
26910 <A HREF="h_pipe_command">here</A>.
26913 <UL>   
26914 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26915 </UL><P>
26916 &lt;End of help on this topic&gt;
26917 </BODY>
26918 </HTML>
26919 ====== h_config_quell_full_hdr_reset =====
26920 <HTML>
26921 <HEAD>
26922 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
26923 </HEAD>
26924 <BODY>
26925 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
26927 The <A HREF="h_common_hdrmode">HdrMode Command</A>
26928 normally resets to the default state when switching to a new message.
26929 For example, if you've used the &quot;H&quot; command to turn on Full
26930 Headers for a message you are viewing, and then you type the Next command
26931 to look at the next message, the full headers will no longer be shown.
26932 Setting this feature disables that reset.
26933 Instead, the Header Mode remains the same from message to message.
26936 The presence or absence of the HdrMode command is determined by the
26937 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
26938 Feature-List option.
26940 <UL>   
26941 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26942 </UL><P>
26943 &lt;End of help on this topic&gt;
26944 </BODY>
26945 </HTML>
26946 ====== h_config_enable_tab_complete =====
26947 <HTML>
26948 <HEAD>
26949 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
26950 </HEAD>
26951 <BODY>
26952 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
26954 This feature enables the TAB key when at a prompt for a filename. In this
26955 case, TAB will cause the partial name already entered to be automatically
26956 completed, provided the partial name is unambiguous.
26957 This feature is on by default.
26959 Similarly, this feature also enables TAB completion of address book
26960 nicknames when at a prompt for a nickname,
26961 or when typing in an address field in the composer.
26963 &lt;End of help on this topic&gt;
26964 </BODY>
26965 </HTML>
26966 ====== h_config_quit_wo_confirm =====
26967 <HTML>
26968 <HEAD>
26969 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
26970 </HEAD>
26971 <BODY>
26972 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
26974 This feature controls whether or not Alpine will ask for confirmation when a
26975 Quit command is received.
26977 &lt;End of help on this topic&gt;
26978 </BODY>
26979 </HTML>
26980 ====== h_config_quote_replace_noflow =====
26981 <HTML>
26982 <HEAD>
26983 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
26984 </HEAD>
26985 <BODY>
26986 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
26988 This feature, which is only active when
26989 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
26990 also set,
26991 enables quote-replacement on non-flowed messages.  It is off
26992 by default because a non-flowed message is more dependent on its format,
26993 and thus quote-replacement may cause less-than-pleasing results.
26994 Setting this feature will cause quote-replacement similar to that of flowed
26995 messages, but with the added possibility of long lines being wrapped
26996 into new lines if the Quote-Replacement-String is longer than the string
26997 it is replacing, which is &quot;&gt;&nbsp;&quot;.
26999 &lt;End of help on this topic&gt;
27000 </BODY>
27001 </HTML>
27002 ====== h_config_enable_jump =====
27003 <HTML>
27004 <HEAD>
27005 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27006 </HEAD>
27007 <BODY>
27008 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27010 When this feature is set you may enter a number (followed by RETURN)
27011 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27012 screens.  In other words, it obviates the need for typing the "J" for the
27013 Jump command.
27015 &lt;End of help on this topic&gt;
27016 </BODY>
27017 </HTML>
27018 ====== h_config_enable_alt_ed =====
27019 <HTML>
27020 <HEAD>
27021 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27022 </HEAD>
27023 <BODY>
27024 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27026 If this feature is set (the default), and the 
27027 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27028 <B>is not</B> set, entering
27029 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27030 for the name of the editor you would like to use.
27032 If the environment variable $EDITOR is set, its value will be offered as
27033 a default.
27035 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27036 <B>is</B> set, the ^_ key will activate the specified
27037 editor without prompting, in which case it is not necessary to
27038 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27040 <UL>   
27041 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27042 </UL><P>
27043 &lt;End of help on this topic&gt;
27044 </BODY>
27045 </HTML>
27046 ====== h_config_alt_ed_now =====
27047 <HTML>
27048 <HEAD>
27049 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27050 </HEAD>
27051 <BODY>
27052 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27054 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27055 variable are both set, Alpine will
27056 automatically activate the specified editor when the cursor is moved from
27057 the header of the message being composed into the message text.  For
27058 replies, the alternate editor will be activated immediately.  If this
27059 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27060 automatically ask for the name of an alternate editor when the cursor
27061 is moved out of the header being composed, or if a reply is being done.
27063 <P><UL>
27064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27065 </UL>
27067 &lt;End of help on this topic&gt;
27068 </BODY>
27069 </HTML>
27070 ====== h_config_enable_bounce =====
27071 <HTML>
27072 <HEAD>
27073 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27074 </HEAD>
27075 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27076 <BODY>
27078 Setting this feature enables the "B Bounce" command, which will prompt
27079 for an address and *remail* the message to the new recipient.  This command
27080 is used to re-direct messages that you have received in error, or need to
27081 be redirected for some other reason (e.g. list moderation).  The final
27082 recipient will see a header indicating that you have Resent the msg, but
27083 the message's From: header will show the original author of the message,
27084 and replies to it will go back to that author, and not to you.
27086 &lt;End of help on this topic&gt;
27087 </BODY>
27088 </HTML>
27089 ====== h_config_enable_agg_ops =====
27090 <HTML>
27091 <HEAD>
27092 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27093 </HEAD>
27094 <BODY>
27095 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27097 When this feature is set you may use the commands and subcommands that relate to
27098 performing operations on more than one message at a time.  We call these
27099 &quot;aggregate operations&quot;.  In particular, the 
27100 <!--chtml if pinemode="function_key"-->&quot;F5
27101 <!--chtml else-->&quot;;
27102 <!--chtml endif--> Select&quot;, 
27104 <!--chtml if pinemode="function_key"-->
27105 &quot;F6
27106 <!--chtml else-->
27107 &quot;A 
27108 <!--chtml endif-->
27109 Apply&quot;, and 
27110 <!--chtml if pinemode="function_key"-->
27111 &quot;F4
27112 <!--chtml else-->
27113 &quot;Z 
27114 <!--chtml endif-->
27115 Zoom&quot; commands are enabled by this feature.  Select is used to
27116 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27117 then be used to apply any message command to all of the selected/tagged
27118 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27119 view between just those Selected and all messages in the folder.
27121 This feature also enables the 
27122 <!--chtml if pinemode="function_key"-->
27123 &quot;F7&quot; 
27124 <!--chtml else-->
27125 &quot;^X&quot; 
27126 <!--chtml endif-->
27128 subcommand in the MESSAGE INDEX 
27129 WhereIs command that causes all messages matching the WhereIs argument to 
27130 become selected; and the Select, Select Current, and ZoomMode commands in the
27131 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27133 Some related help topics are
27134 <UL>
27135 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27136 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27137 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27138 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27139 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27140 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27141 </UL>
27143 <UL>   
27144 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27145 </UL><P>
27146 &lt;End of help on this topic&gt;
27147 </BODY>
27148 </HTML>
27150 ====== h_config_enable_flag =====
27151 <HTML>
27152 <HEAD>
27153 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27154 </HEAD>
27155 <BODY>
27156 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27158 Setting this feature enables the
27159 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27160 command that allows you to
27161 manipulate the status flags associated with a message.  By default, Flag
27162 will set the "Important" flag, which results in an asterisk being
27163 displayed in column one of the MESSAGE INDEX for such messages.
27165 &lt;End of help on this topic&gt;
27166 </BODY>
27167 </HTML>
27168 ====== h_config_flag_screen_default =====
27169 <HTML>
27170 <HEAD>
27171 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27172 </HEAD>
27173 <BODY>
27174 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27176 The feature modifies the behavior of the
27177 <a href="h_common_flag">Flag</a>
27178 command (provided it too is
27179 <A HREF="h_config_enable_flag">enabled</A>).
27180 By default, when the "* Flag" command is selected,
27181 Alpine offers a prompt to set one of several flags and also offers the
27182 option of entering the detailed flag manipulation screen via the "^T"
27183 key. Enabling this feature causes Alpine to immediately enter the detailed
27184 flag screen rather than first offer the simple prompt.
27186 <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.
27188 &lt;End of help on this topic&gt;
27189 </BODY>
27190 </HTML>
27191 ====== h_config_flag_screen_kw_shortcut =====
27192 <HTML>
27193 <HEAD>
27194 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27195 </HEAD>
27196 <BODY>
27197 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27199 This feature modifies the behavior of the
27200 <a href="h_common_flag">Flag</a> command
27201 and the <A HREF="h_index_cmd_select">Select</A> command.
27202 This feature is set by default.
27203 When this feature is not set, when the "* Flag" command is selected,
27204 Alpine offers a prompt to set one of several flags and also offers the
27205 option of entering the detailed flag manipulation screen via the "^T"
27206 key.
27207 If you have
27208 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27209 defined, then enabling this feature adds a shortcut way to set or unset
27210 keywords.
27211 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27212 a keyword if you've given it a nickname) and that will set the keyword.
27214 An example is easier to understand than the explanation.
27215 The flag command can always be used to set the system flags.
27216 For example, to set the Answered flag you would type
27218 <CENTER><SAMP>* A</SAMP></CENTER>
27220 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27221 option in the Config screen.
27222 By default, to set a keyword like &quot;Work&quot; you would usually
27223 have to go to the Flag Details screen using
27224 the &quot;^T To Flag Details&quot; command.
27225 Instead, if you have enabled this feature, you may type
27227 <CENTER><SAMP>* W</SAMP></CENTER>
27229 to set the Work flag, or
27231 <CENTER><SAMP>* ! W</SAMP></CENTER>
27233 to unset it.
27234 Just like for the other flag setting commands, the case of the letter does
27235 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
27236 keyword.
27238 Notice that you can only use this trick for one keyword that begins
27239 with &quot;W&quot;.
27240 If you happen to have a &quot;Work&quot; keyword and another keyword that is
27241 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
27242 your list of keywords.
27243 Also, there are five letters that are reserved for system
27244 flags and the NOT command.
27245 If you type &quot;* A&quot; it will always set the Answered flag, not
27246 your &quot;Aardvark&quot; keyword.
27247 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
27248 the Flag Details screen.
27250 Because enabling the
27251 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
27252 option causes Alpine to skip directly to the Flag Details screen when the
27253 Flag command is used, 
27254 setting it will cause this feature to have no effect at all.
27256 Similarly, when Selecting by Keyword, setting this option will allow you
27257 to use Keyword initials instead of full keywords.
27259 &lt;End of help on this topic&gt;
27260 </BODY>
27261 </HTML>
27262 ====== h_config_can_suspend =====
27263 <HTML>
27264 <HEAD>
27265 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
27266 </HEAD>
27267 <BODY>
27268 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
27270 Setting this feature will allow you to type ^Z (Control Z) to 
27271 <!--chtml if pinemode="os_windows"-->
27272 minimize Alpine into its icon, bringing into focus whatever
27273 application is running behind the PC-Alpine window.
27274 <!--chtml else-->
27275 temporarily suspend Alpine.
27278 This does not exit Alpine, but puts it in the background to watch
27279 for new mail and such.  Normally, you type a command, such
27280 as &quot;fg&quot; at your system prompt to return to your Alpine session.
27283 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
27284 adjusts whether Alpine is placed into the background of the shell its 
27285 running in or starts a news shell.
27286 <!--chtml endif-->
27289 <UL>   
27290 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27291 </UL><P>
27292 &lt;End of help on this topic&gt;
27293 </BODY>
27294 </HTML>
27295 ====== h_config_take_lastfirst ======
27296 <HTML>
27297 <HEAD>
27298 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
27299 </HEAD>
27300 <BODY>
27301 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
27303 Normally, when TakeAddr is used to copy an address from a message into
27304 an address book entry, Alpine will attempt to rewrite the full name of the
27305 address in the form
27308 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
27310 instead of<P>
27312 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
27315 It does this because many people find it useful to sort by Last name
27316 instead of First name.  If this feature is set, then the TakeAddr command
27317 will not attempt to reverse the name in this manner.
27319 &lt;End of help on this topic&gt;
27320 </BODY></HTML>
27321 ====== h_config_disable_regex ======
27322 <HTML>
27323 <HEAD>
27324 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
27325 </HEAD>
27326 <BODY>
27327 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
27329 Normally, the
27330 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
27331 option is interpreted as a regular expression.
27332 One type of address that might cause trouble is an address that
27333 contains a plus sign.
27334 If you want to have an address with a plus as one of your
27335 <!--#echo var="VAR_alt-addresses"-->
27336 and you don't want to use regular expressions, then setting this
27337 feature will cause Alpine to treat the addresses you list literally instead.
27339 &lt;End of help on this topic&gt;
27340 </BODY></HTML>
27341 ====== h_config_take_fullname ======
27342 <HTML>
27343 <HEAD>
27344 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
27345 </HEAD>
27346 <BODY>
27347 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
27349 Normally, when TakeAddr is used to copy an address or addresses
27350 from a message into an address book entry, Alpine will try to preserve
27351 the full name associated with each address in the list of addresses.
27352 The reason for this is so that if the entry is a list or later becomes a
27353 list, then information about the individual addresses in the list
27354 is preserved.
27355 If you would rather just have the simple addresses in the list of addresses,
27356 set this feature. For example, with the default setting you might
27357 see something like this in the ADDRESS BOOK editor after you type TakeAddr
27359 <PRE>
27360  Nickname  : nick
27361  Fullname  : Bedrock Elders
27362  Fcc       :
27363  Comment   :
27364  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
27365              Barney Rubble &lt;rubble@bedrock.org&gt;
27366 </PRE>
27368 but with this feature set it would look like
27370 <PRE>
27371  Nickname  : nick
27372  Fullname  : Bedrock Elders
27373  Fcc       :
27374  Comment   :
27375  Addresses : flint@bedrock.org,
27376              rubble@bedrock.org
27377 </PRE>
27379 instead. Note the difference in the Addresses field.
27381 &lt;End of help on this topic&gt;
27382 </BODY></HTML>
27383 ====== h_config_print_from ======
27384 <HTML>
27385 <HEAD>
27386 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
27387 </HEAD>
27388 <BODY>
27389 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
27391 If this feature is set, then the Berkeley-mail style From line is included
27392 at the start of each message that is printed.  This line looks something
27393 like the following, with the address replaced by the address from the
27394 From line of the message being printed:
27396 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
27397 14:11:06 1998
27399 &lt;End of help on this topic&gt;
27400 </BODY>
27401 </HTML>
27402 ====== h_config_expanded_distlists ======
27403 <HTML>
27404 <HEAD>
27405 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
27406 </HEAD>
27407 <BODY>
27408 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
27409 If this feature is set, then distribution lists in the address book
27410 screen will always be expanded automatically.
27412 &lt;End of help on this topic&gt;
27413 </BODY>
27414 </HTML>
27415 ====== h_config_compose_news_wo_conf ======
27416 <HTML>
27417 <HEAD>
27418 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
27419 </HEAD>
27420 <BODY>
27421 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
27422 This feature controls one aspect of Alpine's Composer.  If you enter the
27423 composer while reading a newsgroup, you will normally be prompted to
27424 determine whether you intend the new message to be posted to the current
27425 newsgroup or not.  If this feature is set, Alpine will not prompt you
27426 in this situation, and will assume that you do indeed wish to post
27427 to the newsgroup you are reading.
27429 &lt;End of help on this topic&gt;
27430 </BODY>
27431 </HTML>
27432 ====== h_config_compose_rejects_unqual ======
27433 <HTML>
27434 <HEAD>
27435 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
27436 </HEAD>
27437 <BODY>
27438 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
27440 This feature controls one aspect of the message composer; in particular,
27441 what happens when an unqualified name is entered into an address header.
27442 If set, unqualified names entered as addresses will be treated as errors
27443 unless they match an addressbook nickname.  Alpine will not attempt to turn
27444 them into complete addresses by adding your local domain.<P>
27446 A complete (fully qualified) address is one containing a username followed
27447 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
27448 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
27449 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
27451 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
27455 When you enter a fully qualified address, Alpine does not interpret or
27456 modify it, but simply passes it on to the mail-transport-agent (MTA) for
27457 your system.  Alpine conforms to the Internet standards governing message
27458 headers and will not send an unqualifed name to the MTA.  Therefore, when
27459 you enter an unqualified name, Alpine will normally attempt to turn it into
27460 a fully qualified address, first by checking to see if you have entered a
27461 matching nickname in your addressbook, or failing that, by simply adding
27462 your own domain to the name entered.  So if your address is
27463 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
27464 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
27465 that into &quot;fred@example.com&quot;.<P>
27467 There are situations where it is not desirable for Alpine to interpret such
27468 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
27469 turned out to be a typo (intended to be an addressbook nickname), but
27470 there actually was a &quot;fred&quot; in your local domain, the message might 
27471 be mis-delivered without your realizing it.  In order to reduce the likelihood
27472 of such accidents, setting this feature will cause Alpine to treat such
27473 addresses as errors, and require that you explicitly enter the full local
27474 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
27475 matches an address book nickname.<P>
27477 Consider this a safety feature against mis-directed mail.
27479 <UL>   
27480 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27481 </UL><P>
27482 &lt;End of help on this topic&gt;
27483 </BODY>
27484 </HTML>
27485 ====== h_config_quell_local_lookup ======
27486 <HTML>
27487 <HEAD>
27488 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
27489 </HEAD>
27490 <BODY>
27491 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
27493 This feature controls an aspect of Alpine's Composer, and if needed, will
27494 usually be set by your system manager in Alpine's system-wide configuration
27495 file. Specifically, if this feature is set, Alpine will not attempt to look
27496 in the system password file to find a Full Name for the entered address.
27498 Normally, names you enter into address fields (e.g. To: or Cc:) are
27499 checked against your address book(s) to see if they match an address book
27500 nickname.  Failing that, (in Unix Alpine) the name is then checked against
27501 the Unix password file.  If the entered name matches a username in the
27502 system password file, Alpine extracts the corresponding Full Name information
27503 for that individual, and adds that to the address being entered.
27505 However, password file matching can have surprising (incorrect) results if
27506 other users of the system do not receive mail at the domain you are using.
27507 That is, if either the 
27508 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
27509 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
27510 option
27511 is set such that the administrative domain of other users on the system
27512 isn't accurately reflected, Alpine should be told that a passwd file match
27513 is coincidental, and Full Name info will be incorrect.  For example, a
27514 personal name from the password file could get falsely paired with the
27515 entered name as it is turned into an address in the configured domain.
27517 If you are seeing this behavior, enabling this feature will prevent Unix
27518 Alpine from looking up names in the password file to find the Full Name
27519 for incomplete addresses you enter.<P>
27520 <UL>
27521 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27522 </UL>
27524 &lt;End of help on this topic&gt;
27525 </BODY>
27526 </HTML>
27527 ====== h_config_tab_checks_recent ======
27528 <HTML>
27529 <HEAD>
27530 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
27531 </HEAD>
27532 <BODY>
27533 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
27535 In a FOLDER LIST screen, the TAB key usually just changes which
27536 folder is highlighted.
27537 If this feature is set, then the TAB key will cause the number of
27538 recent messages and the total number of messages in the highlighted folder
27539 to be displayed instead.
27542 &lt;End of help on this topic&gt;
27543 </BODY>
27544 </HTML>
27545 ====== h_config_maildrops_preserve_state ======
27546 <HTML>
27547 <HEAD>
27548 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
27549 </HEAD>
27550 <BODY>
27551 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
27553 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
27554 Normally, when mail is moved from a Mail Drop folder to a destination
27555 folder, it is delivered as new mail.
27556 Any Seen/New, Answered, Important/Flagged state that has changed will be
27557 ignored.
27558 All of the mail will be considered unSeen, unAnswered, and unImportant after
27559 it is moved.
27561 If this feature is set, then the state changes that have been made
27562 to the messages in the Mail Drop folder will be preserved.
27564 In any case, messages that are already marked Deleted when the
27565 mail is to be moved from the Mail Drop will be ignored.
27567 &lt;End of help on this topic&gt;
27568 </BODY>
27569 </HTML>
27570 ====== h_config_preopen_stayopens ======
27571 <HTML>
27572 <HEAD>
27573 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
27574 </HEAD>
27575 <BODY>
27576 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
27578 This feature is related to the option
27579 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
27580 Normally, Stay Open folders are only opened on demand, when the user
27581 asks to open them.
27582 From then on they are kept open for the duration of the session.
27583 However, if this feature is set, then the Stay Open folders will all be
27584 opened at startup, at the same time that the INBOX is opened.
27587 &lt;End of help on this topic&gt;
27588 </BODY>
27589 </HTML>
27590 ====== h_config_expunge_inbox ======
27591 <HTML>
27592 <HEAD>
27593 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
27594 </HEAD>
27595 <BODY>
27596 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
27598 The INBOX is normally treated differently from regular folders in several
27599 ways.
27600 One of the differences is that the normal &quot;close&quot; sequence of
27601 events is deferred until Alpine is exited, instead of happening when you
27602 leave the INBOX to view another folder.
27603 The &quot;close&quot; sequence normally includes the Expunging
27604 of deleted messages
27605 (either automatically or after a prompt, controlled by the features
27606 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
27607 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
27608 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
27609 handling of the
27610 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
27613 If this feature is set the &quot;close&quot; sequence handling will take
27614 place every time you leave the INBOX.
27615 The INBOX will still be kept open, but the offer to Expunge and the archiving
27616 to the <!--#echo var="VAR_read-message-folder"-->
27617 will take place each time you leave the INBOX instead of only once at the
27618 end of the session.
27621 &lt;End of help on this topic&gt;
27622 </BODY>
27623 </HTML>
27624 ====== h_config_expunge_stayopens ======
27625 <HTML>
27626 <HEAD>
27627 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
27628 </HEAD>
27629 <BODY>
27630 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
27632 This feature is related to the option
27633 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
27634 Stay Open folders are treated differently from regular folders in several
27635 ways.
27636 One of the differences is that the normal &quot;close&quot; sequence of
27637 events is deferred until Alpine is exited, instead of happening when you
27638 leave the folder to view another folder.
27639 The &quot;close&quot; sequence normally includes the Expunging
27640 of deleted messages
27641 (either automatically or after a prompt, controlled by the features
27642 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
27643 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
27644 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
27645 handling of
27646 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
27649 If this feature is set the &quot;close&quot; sequence handling will take
27650 place when you leave the Stay Open folder.
27651 The folder will still be kept open, but the offer to Expunge and the archiving
27652 will take place each time you leave the folder instead of only once at the
27653 end of the session.
27654 This feature does not affect the INBOX, which will still only be processed
27655 when you exit Alpine.
27656 However, there is a similar feature that affects only the INBOX called
27657 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
27660 &lt;End of help on this topic&gt;
27661 </BODY>
27662 </HTML>
27663 ====== h_config_preserve_start_stop ======
27664 <HTML>
27665 <HEAD>
27666 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
27667 </HEAD>
27668 <BODY>
27669 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
27671 This feature controls how special control key characters, typically
27672 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
27673 are known as the "stop" and "start" characters and are sometimes used in
27674 communications paths to control data flow between devices that operate at
27675 different speeds.
27679 By default, Alpine turns the system's handling of these special characters
27680 off except during printing.  However, if you see Alpine reporting input errors
27681 such as:
27683 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
27685 and, at the same time, see your display become garbled, then it is likely
27686 that setting this option will solve the problem.  Be aware, though, that
27687 enabling this feature will also cause Alpine to ostensibly "hang" 
27688 whenever the Ctrl-S key combination is entered as the system is now
27689 interpreting such input as a "stop output" command.  To "start
27690 output"  again, simply type Ctrl-Q. 
27692 &lt;End of help on this topic&gt;
27693 </BODY>
27694 </HTML>
27695 ====== h_config_enable_incoming ======
27696 <HTML>
27697 <HEAD>
27698 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
27699 </HEAD>
27700 <BODY>
27701 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
27703 Alpine's Incoming Message Folders collection
27704 provides a convenient way to access multiple incoming folders.
27705 It is also useful if you have accounts on multiple computers.
27708 If set, this feature defines a pseudo-folder collection called
27709 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
27710 in this collection will be your INBOX, which will no longer show up in
27711 your Default folder collection.
27714 You may add more folders to the Incoming Message Folders collection by
27715 using the
27716 <!--chtml if pinemode="function_key"-->
27717 &quot;F10
27718 <!--chtml else-->
27719 &quot;A
27720 <!--chtml endif-->
27721 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
27722 the host the folder is stored on (which defaults to the same host used
27723 for your INBOX), a nickname, and the actual folder name.  Once a set
27724 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
27725 or MESSAGE TEXT screens) may be used to scan the folders for those
27726 with Recent messages.  If you add more folders to
27727 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
27728 no effect.
27730 NOTE: Normally the software that actually delivers mail (the stuff that happens
27731 before Alpine is involved) is in a better position to do delivery filtering
27732 than is Alpine itself.
27733 If possible, you may want to look at programs such as
27734 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
27735 filtering programs.
27736 If you'd prefer to have Alpine do the filtering for you, you may set that
27738 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
27740 <UL>   
27741 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27742 </UL><P>
27743 &lt;End of help on this topic&gt;
27744 </BODY>
27745 </HTML>
27746 ====== h_config_enable_incoming_checking ======
27747 <HTML>
27748 <HEAD>
27749 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
27750 </HEAD>
27751 <BODY>
27752 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
27754 This feature is only operational if you have enabled the optional
27755 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
27756 If you do have Incoming Message Folders and you also set this feature,
27757 then the number of Unseen messages in each folder will be displayed
27758 in the FOLDER LIST screen for the Incoming Message Folders.
27759 The number of Unseen messages in a folder will be displayed in parentheses
27760 to the right of the name of each folder.
27761 If there are no Unseen messages in a folder then only the name
27762 is displayed, not a set of parentheses with zero inside them.
27763 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
27764 the Incoming Message Folders to cause an immediate update.
27766 If a check for Unseen messages fails for a particular folder then Alpine
27767 will no longer attempt to check that folder for the duration of the
27768 session and this will be indicated by a question mark inside the
27769 parentheses.
27771 The features
27772 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
27773 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
27774 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
27775 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
27776 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
27777 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
27778 all affect how this feature behaves.
27780 <UL>   
27781 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27782 </UL><P>
27783 &lt;End of help on this topic&gt;
27784 </BODY>
27785 </HTML>
27786 ====== h_config_incoming_checking_total ======
27787 <HTML>
27788 <HEAD>
27789 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
27790 </HEAD>
27791 <BODY>
27792 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
27794 This option has no effect unless the feature
27795 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
27796 is set, which in turn has no effect unless
27797 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
27798 is set.
27800 When incoming folder checking is turned on the default is to display
27801 the number of unseen messages in each folder.
27802 More precisely, it is the number of undeleted unseen messages.
27803 Using this option you may also display the total number of messages
27804 in each folder.
27805 Instead of a single number representing the number of unseen messages
27806 you will get two numbers separated by a slash character.
27807 The first is the number of unseen messages and the second is the
27808 total number of messages.
27810 You may also use the recent message count instead of the unseen message
27811 count by turning on the feature
27812 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
27814 <UL>   
27815 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27816 </UL><P>
27817 &lt;End of help on this topic&gt;
27818 </BODY>
27819 </HTML>
27820 ====== h_config_incoming_checking_recent ======
27821 <HTML>
27822 <HEAD>
27823 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
27824 </HEAD>
27825 <BODY>
27826 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
27828 This option has no effect unless the feature
27829 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
27830 is set, which in turn has no effect unless
27831 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
27832 is set.
27834 When incoming folder checking is turned on the default is to display
27835 the number of unseen messages in each folder.
27836 More precisely, it is the number of undeleted unseen messages.
27837 Using this option you may display the number of recent messages instead
27838 of the number of unseen messages.
27839 A message is only counted as recent if this is the first session to
27840 see it, so the recent count might be less than the unseen count.
27841 The difference between the two would be accounted for by the unseen messages
27842 in the folder which were there previously but have not been looked at yet.
27844 If you simultaneously run more than one email client at a time
27845 (for example, you run more than one Alpine in parallel) then turning
27846 this feature on can cause some confusion.
27847 The confusion stems from the fact that each message is only considered to be
27848 recent in one session.
27849 That means that the counts of new messages may be different in the two
27850 Alpines running side by side, because each incoming message will only be
27851 counted as recent in one of the two sessions.
27853 You may also display the total number of messages
27854 in each folder by using the
27855 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
27856 option.
27858 <UL>   
27859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27860 </UL><P>
27861 &lt;End of help on this topic&gt;
27862 </BODY>
27863 </HTML>
27864 ====== h_config_attach_in_reply ======
27865 <HTML>
27866 <HEAD>
27867 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
27868 </HEAD>
27869 <BODY>
27870 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
27872 This feature controls an aspect of Alpine's Reply command. If set, any MIME
27873 attachments that were part of the original message will automatically be
27874 included in the Reply.
27876 &lt;End of help on this topic&gt;
27877 </BODY>
27878 </HTML>
27879 ====== h_config_include_header =====
27880 <HTML>
27881 <HEAD>
27882 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
27883 </HEAD>
27884 <BODY>
27885 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
27887 This feature controls an aspect of Alpine's Reply command. If set, and the
27888 original message is being included in the reply, then headers from that
27889 message will also be part of the reply.
27891 &lt;End of help on this topic&gt;
27892 </HEAD>
27893 </HTML>
27894 ====== h_config_sig_at_bottom =====
27895 <HTML>
27896 <HEAD>        
27897 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
27898 </HEAD>
27899 <BODY>
27900 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
27902 This feature controls an aspect of Alpine's Reply command.  If this feature
27903 is set, and the original message is being included in the reply, then the
27904 contents of your signature file (if any) will be inserted after the included
27905 message.
27907 This feature does not affect the results of a Forward command.
27909 &lt;End of help on this topic&gt;
27910 </BODY>
27911 </HTML>
27912 ====== h_config_sigdashes =====
27913 <HTML>
27914 <HEAD>
27915 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
27916 </HEAD>
27917 <BODY>
27918 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
27920 This feature enables support for the common USENET news convention 
27921 of preceding a message signature with the special line consisting of 
27922 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
27925 When enabled and a
27926 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
27927 Alpine will insert the special line before including the file's text (unless
27928 the special line already exists somewhere in the file's text).
27931 In addition, when you Reply or Followup to a message containing one of
27932 these special lines and choose to include its text, Alpine will observe
27933 the convention of not including text beyond the special line in your
27934 reply.
27935 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
27936 mode is enabled and turned on, then Alpine <EM>will</EM>
27937 include the text beyond the special line regardless of the setting of
27938 this feature.
27941 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
27942 for a related feature.
27945 <UL>   
27946 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27947 </UL><P>
27948 &lt;End of help on this topic&gt;
27949 </BODY>
27950 </HTML>
27951 ====== h_config_new_thread_blank_subject =====
27952 <HTML>
27953 <HEAD>
27954 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
27955 </HEAD>
27956 <BODY>
27957 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
27959 When this feature is enabled (the default) Alpine will create a new thread
27960 every time that the subject line becomes empty at any time during composition.
27963 This behavior is particularly useful in case you are replying to a message.
27964 Replying to a message causes the message to be in the same thread than the
27965 original message that is being replied to. However, many authors want to create
27966 a new message (in a different thread) while replying to a message, and they do
27967 this by changing the full subject, by first deleting the original subject and
27968 typing the new subject of the current message.
27971 Enabling this feature causes that any time that the subject is deleted, the 
27972 message being composed will be considered the first message of a new thread.
27975 <UL>   
27976 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27977 </UL><P>
27978 &lt;End of help on this topic&gt;
27979 </BODY>
27980 </HTML>
27981 ====== h_config_strip_sigdashes =====
27982 <HTML>
27983 <HEAD>
27984 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
27985 </HEAD>
27986 <BODY>
27987 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
27989 This feature doesn't do anything if the feature
27990 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
27991 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
27992 then turning on this feature enables support for the convention
27993 of not including text beyond the sigdashes line when Replying or Following
27994 up to a message and including the text of that message.
27995 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
27996 mode is enabled and turned on, then Alpine <EM>will</EM>
27997 include the text beyond the special line regardless of the setting of
27998 this feature.
28000 In other words, this is a way to turn on the signature stripping behavior
28001 without also turning on the dashes-adding behavior.
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_forward_as_attachment =====
28010 <HTML>
28011 <HEAD>
28012 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28013 </HEAD>
28014 <BODY>
28015 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28017 This feature affects the way forwarded message text is handled.  When set, rather than 
28018 include the text of the forwarded message below any additional text you provide in the
28019 composer, the forwarded message is attached in its entirety to the message you send.
28021 This is useful in that it keeps the text you provide in the composer distinct from the
28022 text of the forwarded message.  Similarly, it allows the recipient to 
28023 conveniently operate on the forwarded message.  For example, they might reply directly to
28024 the sender of the forwarded message, or process it as part of a spam report.
28025 <UL>   
28026 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28027 </UL><P>
28028 &lt;End of help on this topic&gt;
28029 </BODY>
28030 </HTML>
28031 ====== h_config_preserve_field =====
28032 <HTML>
28033 <HEAD>
28034 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28035 </HEAD>
28036 <BODY>
28037 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28039 This feature affects Alpine's behavior when one replies to a message. 
28040 When you receive a message, some or all of the recipients of the message 
28041 have been added to the To: and Cc: fields. If you reply to such message, 
28042 and this feature is disabled, then the original sender of the message is 
28043 added to the To: field, and all other recipients are added to the Cc: 
28044 field, while your address is added to the From: field.
28047 However, if this feature is enabled, then Alpine will preserve the 
28048 original fields as sent in the original message, so the Cc: and To: 
28049 fields will be preserved. The sender's address will be added to the To: 
28050 field, while your address is added to the From: field.
28053 The behavior of this feature is that replies to all messages will behave 
28054 in the way described above. If you only intend this to happen on a per 
28055 message basis, then keep this feature disabled, and when replying to a 
28056 message you will see a new option in the menu for the &quot;Reply to all 
28057 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28058 make Alpine toggle its question so you can preserve the To: and Cc: 
28059 fields for that message only.
28061 <UL>   
28062 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28063 </UL><P>
28064 &lt;End of help on this topic&gt;
28065 </BODY>
28066 </HTML>
28067 ====== h_config_sub_lists =====
28068 <HTML>
28069 <HEAD>
28070 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28071 </HEAD>
28072 <BODY>
28073 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28075 This feature affects the subcommands available when Saving, 
28076 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28077 available. This command allows you to type in a substring of the folder
28078 you are looking for and when you type ^X it will display all folders
28079 that contain that substring in their names.
28080 This feature is set by default.
28083 &lt;End of help on this topic&gt;
28084 </BODY>
28085 </HTML>
28086 ====== h_config_scramble_message_id =====
28087 <HTML>
28088 <HEAD>
28089 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28090 </HEAD>
28091 <BODY>
28092 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28094 Normally the Message-ID header that Alpine generates when sending a message
28095 contains the name of the computer from which the message is being sent.
28096 Some believe that this hostname could be used by spammers or could
28097 be used by others for nefarious purposes.
28098 If this feature is set, that name will be transformed with a simple
28099 Rot13 transformation.
28100 The result will still have the correct syntax for a Message-ID but the
28101 part of the MessageID that is often a domain name will not be an actual
28102 domain name because the letters will be scrambled.
28104 It is possible (but unlikely?) that some spam detection
28105 software will use that as a reason to reject the mail as spam.
28106 It has also been reported that some spam detection software uses the
28107 fact that there are no dots after the &quot;@&quot; as a reason to reject
28108 messages.
28109 If your PC-Alpine Message-ID is using a name without a dot that is because
28110 that is what Windows thinks is your &quot;Full computer name&quot;.
28111 The method used to set this varies from one type of Windows to another but
28112 check under Settings -> Control Panel -> System and
28113 look for Network Identification or Computer Name or something similar.
28114 How to set it is beyond the scope of Alpine.
28117 &lt;End of help on this topic&gt;
28118 </BODY>
28119 </HTML>
28120 ====== h_downgrade_multipart_to_text =====
28121 <HTML>
28122 <HEAD>
28123 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28124 </HEAD>
28125 <BODY>
28126 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28129 This feature affects Alpine's behavior when sending mail.  Internet
28130 standards require Alpine to translate all non-ASCII characters in
28131 messages that it sends using MIME encoding.  This encoding can be
28132 ostensibly broken for recipients if any agent between Alpine and the
28133 recipient, such as an email list expander, appends text to the
28134 message, such as list information or advertising.  When sending such
28135 messages Alpine attempts to protect such encoding by placing extra
28136 MIME boundaries around the message text.
28138 These extra boundaries are invisible to recipients that 
28139 use MIME-aware email programs (the vast majority).  However, if
28140 you correspond with users of email programs that are not MIME-aware,
28141 or do not handle the extra boundaries gracefully, you can
28142 use this feature to prevent Alpine from including the extra
28143 MIME information.  Of course, it will increase the likelihood
28144 that non-ASCII text you send may appear corrupt to the recipient.
28146 &lt;End of help on this topic&gt;
28147 </BODY>
28148 </HTML>
28149 ====== h_config_show_sort =====
28150 <HTML>
28151 <HEAD>
28152 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28153 </HEAD>
28154 <BODY>
28155 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28157 If this feature is set and there is sufficient space on the screen,
28158 a short indication of the current sort order will be
28159 added in the titlebar (the top line on the screen), before the name
28160 of the folder.
28161 For example, with the default Arrival sort in effect,
28162 the display would have the characters
28164 <P><CENTER>[A]</CENTER><P>
28166 added between the title of the screen and the folder name.
28167 The letters are the same as the letters you may type to manually
28168 sort a folder with the SortIndex command ($).
28169 The letters in the table below are the ones that may show
28170 up in the titlebar line.
28172 <TABLE>   
28173 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28174 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28175 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28176 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28177 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28178 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28179 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28180 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28181 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28182 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28183 </TABLE>
28185 If the sort order is Reversed, the letter above will be preceded by the letter
28186 &quot;R&quot;, for example
28188 <P><CENTER>[RS]</CENTER><P>
28190 means that a Reverse Subject sort is in effect.
28191 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28192 left out, and just an &quot;R&quot; is shown.
28194 <P><CENTER>[R]</CENTER>
28197 &lt;End of help on this topic&gt;
28198 </BODY>
28199 </HTML>
28200 ====== h_config_disable_reset_disp =====
28201 <HTML>
28202 <HEAD>
28203 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28204 </HEAD>
28205 <BODY>
28206 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28208 UNIX Alpine only.
28210 This feature affects Alpine's behavior when using
28211 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28212 Normally, before the display filter is run, the terminal mode is reset
28213 to what it was before you started Alpine.
28214 This may be necessary if the filter requires the use of the terminal.
28215 For example, it may need to interact with you.
28216 If you set this feature, then the terminal mode will not be reset.
28217 One thing that turning on this feature should fix is the coloring of
28218 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28219 breaks because the terminal reset resets the color state of the terminal.
28222 &lt;End of help on this topic&gt;
28223 </BODY>
28224 </HTML>
28225 ====== h_config_disable_sender =====
28226 <HTML>
28227 <HEAD>
28228 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28229 </HEAD>
28230 <BODY>
28231 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
28233 This feature affects Alpine's generation of the &quot;Sender:&quot; or
28234 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
28235 header fields.
28236 By default, Alpine will generate such a header in situations where the
28237 username or domain are not the same as
28238 the &quot;From:&quot; header on the message.
28239 With this feature set,
28240 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
28241 This may be desirable on a system that is virtually hosting many domains,
28242 and the sysadmin has other methods available for tracking a message to
28243 its originator.
28245 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
28248 &lt;End of help on this topic&gt;
28249 </BODY>
28250 </HTML>
28251 ====== h_config_use_sender_not_x =====
28252 <HTML>
28253 <HEAD>
28254 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
28255 </HEAD>
28256 <BODY>
28257 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
28259 Normally Alpine adds a header line
28260 labeled &quot;X-X-Sender&quot;, if the sender is
28261 different from the From: line.
28262 The standard specifies that this header
28263 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
28264 Setting this feature causes
28265 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
28267 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
28270 &lt;End of help on this topic&gt;
28271 </BODY>
28272 </HTML>
28273 ====== h_config_use_fk =====
28274 <HTML>
28275 <HEAD>
28276 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
28277 </HEAD>
28278 <BODY>
28279 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
28281 This feature specifies that Alpine will respond to function keys instead of
28282 the normal single-letter commands. In this mode, the key menus at the
28283 bottom of each screen will show function key designations instead of the
28284 normal mnemonic key.
28287 &lt;End of help on this topic&gt;
28288 </BODY>
28289 </HTML>
28290 ====== h_config_cancel_confirm =====
28291 <HTML>
28292 <HEAD>
28293 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
28294 </HEAD>
28295 <BODY>
28296 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
28298 This feature affects what happens when you type ^C to cancel a composition.
28299 By default, if you attempt to cancel a composition by typing ^C, you will be
28300 asked to confirm the cancellation by typing a &quot;C&quot;
28301 for <EM>C</EM>onfirm.
28302 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
28303 risky because the &quot;^C Y&quot; needed to cancel a message
28304 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
28306 If this feature is set the confirmation asked for
28307 will be a &quot;<EM>Y</EM>es&quot;
28308 instead of a &quot;<EM>C</EM>onfirm&quot; response.
28311 &lt;End of help on this topic&gt;
28312 </BODY>
28313 </HTML>
28314 ====== h_config_compose_maps_del =====
28315 <HTML>
28316 <HEAD>
28317 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
28318 </HEAD>
28319 <BODY>
28320 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
28322 This feature affects the behavior of the DELETE key.
28323 If set, Delete will be equivalent to ^D, and delete
28324 the current character.  Normally Alpine defines the Delete key
28325 to be equivalent to ^H, which deletes the <EM>previous</EM>
28326 character.
28329 &lt;End of help on this topic&gt;
28330 </BODY>
28331 </HTML>
28332 ====== h_config_compose_bg_post =====
28333 <HTML>
28334 <HEAD>
28335 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
28336 </HEAD>
28337 <BODY>
28338 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
28340 This feature affects the behavior of Alpine's mail sending.  If set, this
28341 feature enables a subcommand in the composer's "Send?" confirmation
28342 prompt.  The subcommand allows you to tell Alpine to handle the actual
28343 posting in the background.  While this feature usually allows posting
28344 to appear to happen very fast, it has no affect on the actual delivery
28345 time it takes a message to arrive at its destination.
28348 Please Note:
28349 <OL>
28350  <LI>This feature will have no effect if the feature
28351        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
28352        is set.
28353  <LI>This feature isn't supported on all systems.  All DOS and Windows,
28354        as well as several Unix ports, do not recognize this feature.
28355  <LI>Error handling is significantly different when this feature is
28356         enabled.  Any message posting failure results in the message
28357         being appended to your &quot;Interrupted&quot; mail folder.  When you
28358         type the <A HREF="h_common_compose">C</A>ompose command,
28359         Alpine will notice this folder and
28360         offer to extract any messages contained.  Upon continuing a 
28361         failed message, Alpine will display the nature of the failure 
28362         in the status message line.
28363  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
28364         for message data to
28365         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
28366         if you typically run close to any sort of disk-space limits or quotas.
28367 </OL>
28369 &lt;End of help on this topic&gt;
28370 </BODY>
28371 </HTML>
28372 ====== h_config_compose_dsn =====
28373 <HTML>
28374 <HEAD>
28375 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
28376 </HEAD>
28377 <BODY>
28378 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
28380 This feature affects the behavior of Alpine's mail sending.  If set, this
28381 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
28382 prompt.  The subcommand allows you to tell Alpine to request the type of
28383 Delivery Status Notification (DSN) that you would like.  Most users will
28384 be happy with the default, and need not enable this feature.
28386 If the feature
28387 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28388 then this feature has no effect and the type of DSN is not selectable.
28391 Turning on this feature and then turning on the DSNOpts from the send
28392 prompt reveals four on-off toggles at the bottom of the screen.
28393 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
28394 that no notification be returned to you, even if there is a delivery
28395 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
28396 server that you are willing (or not) to receive delay notifications, which
28397 happen when there is an unusual delay at some mail server (in that mail
28398 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
28399 Success requests that you be sent a DSN message when the message is
28400 successfully delivered to the recipients mailbox.  Setting NoErrRets will
28401 automatically turn off Delay and Success notification, and will flip the
28402 toggles to show that.  Similarly, turning on Delay and/or Success will
28403 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
28404 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
28405 the full message be returned in any failed DSN.  RetHdrs requests that
28406 only the headers be returned in any failed DSN.  Notice that this command
28407 applies only to failed delivery status reports.  For delay or success
28408 reports, the full message is never returned, only the headers are returned.
28411 If you don't enable the DSN feature or if you don't turn it on for a
28412 particular message, the default is that you will be notified about failures,
28413 you might be notified about delays, and you won't be notified about
28414 successes.  You will usually receive the full message back when there is
28415 a failure.
28418 If you turn on the DSNOpts the default is to return as much information as
28419 possible to you.  That is, by default, the Success and Delay options are
28420 turned on and the full message will be returned on failure.
28423 The sending prompt will display the current DSN request (if any) in a
28424 shorthand form.  It will be:
28426 <P><CENTER>[Never]</CENTER>
28429 if you have requested NoErrRets.  Otherwise, it will look something like:
28431 <P><CENTER>[FDS-Hdrs]</CENTER>
28434 The &quot;F&quot; will always be there, indicating that you will be notified
28435 of failures.  (Alpine doesn't provide a way to request no failure notification
28436 and at the same time request either success or delay notification.  The only
28437 way to request no failure notifications is to request no notifications at
28438 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
28439 requested Delay and/or Success notification.  If one of those is missing,
28440 that means you are requesting no notification of the corresponding type.
28441 After the dash it will say either Hdrs or Full.  Hdrs means to return only
28442 the headers and Full means to return the full message (applies to
28443 failure notifications only).
28446 NOTE: This feature relies on your system's mail transport agent or
28447 configured
28448 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
28449 having the negotiation mechanism introduced in
28450 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
28451 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
28452 are using doesn't support DSN, a short warning will be shown to you on
28453 the message line at the bottom of the screen after you send your message,
28454 but your message will have been sent anyway.
28457 Note that DSNs don't provide a mechanism to request read receipts.  That
28458 is, if you request notification on success you are notified when the
28459 message is delivered to the mailbox, not when the message is read.
28462 ESMTP allows for graceful migration to upgraded mail transfer agents, but
28463 it is possible that this feature might cause problems for some servers. 
28466 &lt;End of help on this topic&gt;
28467 </BODY>
28468 </HTML>
28469 ====== h_config_auto_zoom =====
28470 <HTML>
28471 <HEAD>
28472 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
28473 </HEAD>
28474 <BODY>
28475 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
28477 This feature affects the behavior of the Select command.
28478 If set, the select command will automatically perform a zoom
28479 after the select is complete.
28480 This feature is set by default.
28482 Some related help topics are
28483 <UL>
28484 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28485 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28486 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28487 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28488 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28489 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28490 </UL>
28493 &lt;End of help on this topic&gt;
28494 </BODY>
28495 </HTML>
28496 ====== h_config_auto_unzoom =====
28497 <HTML>
28498 <HEAD>
28499 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
28500 </HEAD>
28501 <BODY>
28502 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
28504 This feature affects the behavior of the Apply command.  If set, and if
28505 you are currently looking at a Zoomed Index view of selected messages,
28506 the Apply command will do the operation you specify, but then will
28507 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
28508 the normal Index view after the Apply. 
28509 This feature is set by default.
28512 Some related help topics are
28513 <UL>
28514 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28515 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28516 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28517 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28518 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28519 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28520 </UL>
28522 &lt;End of help on this topic&gt;
28523 </BODY>
28524 </HTML>
28525 ====== h_config_auto_unselect =====
28526 <HTML>
28527 <HEAD>
28528 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
28529 </HEAD>
28530 <BODY>
28531 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
28533 This feature affects the behavior of the Apply command.  If set,
28534 the Apply command will do the operation you specify, but then will
28535 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
28536 the normal Index view after the Apply. 
28539 Some related help topics are
28540 <UL>
28541 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28542 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28543 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
28544 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28545 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
28546 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28547 </UL>
28549 &lt;End of help on this topic&gt;
28550 </BODY>
28551 </HTML>
28552 ====== h_config_fast_recent =====
28553 <HTML>
28554 <HEAD>
28555 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
28556 </HEAD>
28557 <BODY>
28558 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
28560 This feature controls the behavior of the TAB key when traversing folders
28561 in the optional 
28562 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
28563 collection or in optional <!--#echo var="VAR_news-collections"-->.
28566 When the TAB
28567 (<A HREF="h_common_nextnew">NextNew</A>)
28568 key is pressed, the default behavior is to
28569 explicitly examine the status of the folder for the number of recent
28570 messages (messages delivered since the last time it was viewed).
28571 Depending on the size and number of messages in the folder, this test
28572 can be time consuming.
28575 Enabling this feature will cause Alpine to only test for the existence of
28576 any recent messages rather than to obtain the count.  This is much faster
28577 in many cases.  The downside is that you're not given the number of recent
28578 messages when prompted to view the next folder.
28579 If the feature
28580 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
28581 is turned on, then the present feature will have no effect.
28584 <UL>   
28585 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28586 </UL><P>
28587 &lt;End of help on this topic&gt;
28588 </BODY>
28589 </HTML>
28590 ====== h_config_arrow_nav =====
28591 <HTML>
28592 <HEAD>
28593 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
28594 </HEAD>
28595 <BODY>
28596 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
28598 This feature controls the behavior of the left and right arrow keys.
28599 If set, the left and right arrow keys will operate like the usual
28600 navigation keys &lt; and &gt;.
28601 This feature is set by default.
28604 If you set this feature, and do not like the changed behavior of the up/down 
28605 arrow 
28606 keys when navigating through the FOLDER LIST screen -- 
28607 <B>first</B> from column to column, if more than one folder is 
28608 displayed per row, 
28609 and <B>then</B> from row to row -- you may either also wish to set the feature 
28610 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
28611 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
28612 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
28613 folders in each column.
28615 <UL>   
28616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28617 </UL><P>
28618 &lt;End of help on this topic&gt;
28619 </BODY>
28620 </HTML>
28621 ====== h_config_relaxed_arrow_nav =====
28622 <HTML>
28623 <HEAD>
28624 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
28625 </HEAD>
28626 <BODY>
28627 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
28629 This feature controls the behavior of the left, right, up and down
28630 arrow keys in the FOLDER LIST screen when the &quot;<A
28631 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
28632 set.
28633 This feature is set by default.
28637 When this feature is set, the left and right
28638 arrow keys in the FOLDER LIST screen
28639 move the highlight bar to the left or right, and the up and
28640 down arrows move it up or down.
28643 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
28644 feature is not set;
28645 the left and right arrow keys in the Folder List screen strictly
28646 track the commands bound to the '&lt;' and '&gt;' keys, and the up
28647 and down arrow keys move the highlight bar to the previous and next
28648 folder or directory name.
28651 <UL>   
28652 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28653 </UL><P>
28654 &lt;End of help on this topic&gt;
28655 </BODY>
28656 </HTML>
28657 ====== h_config_alt_compose_menu =====
28658 <HTML>
28659 <HEAD>
28660 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
28661 </HEAD>
28662 <BODY>
28663 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
28665 This feature controls the menu that is displayed when Compose is selected.
28666 If set, a list of options will be presented, with each option representing
28667 the type of composition that could be used. This feature is most useful for
28668 users who want to avoid being prompted with each option separately, or who
28669 want to avoid the checking of remote postponed or form letter folders.
28670 The possible types of composition are:
28673 New, for starting a new composition. Note that if New is selected and roles
28674 are set, roles are checked for matches and applied according to the setting
28675 of the matching role.
28678 Interrupted, for continuing an interrupted composition. This option is only
28679 offered if an interrupted message folder is detected.
28682 Postponed, for continuing postponed compositions. This option is offered
28683 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
28684 the postponed folder actually exists. This option is especially handy
28685 for avoiding having to check for the existence of a remote postponed folder.
28688 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
28689 is set in the config, and is not checked for existence for reasons similar
28690 to those explained by the postponed option.
28693 setRole, for selecting a role to apply to a composition.
28696 &lt;End of help on this topic&gt;
28697 </BODY>
28698 </HTML>
28699 ====== h_config_alt_role_menu =====
28700 <HTML>
28701 <HEAD>
28702 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
28703 </HEAD>
28704 <BODY>
28705 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
28707 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
28708 a role and compose a new message using that role.
28709 When this feature is set, the role command will first ask whether you want to
28710 Compose a new message, Forward the current message, Reply to the
28711 current message, or Bounce the current message.
28712 If you are not in the MESSAGE INDEX and are not viewing a message,
28713 then there is no current message and the question will be skipped.
28714 After you have chosen to Compose, Forward, Reply, or Bounce you will
28715 then choose the role to be used.
28717 When Bouncing the &quot;Set From&quot; address is used for the
28718 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
28719 provided that the option
28720 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
28721 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
28722 set.
28723 Other actions of the role are ignored when Bouncing.
28726 &lt;End of help on this topic&gt;
28727 </BODY>
28728 </HTML>
28729 ====== h_config_always_spell_check =====
28730 <HTML>
28731 <HEAD>
28732 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
28733 </HEAD>
28734 <BODY>
28735 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
28737 When this feature is set, every composed message will be spell-checked before
28738 being sent.
28740 &lt;End of help on this topic&gt;
28741 </BODY>
28742 </HTML>
28743 ====== h_config_quell_asterisks =====
28744 <HTML>
28745 <HEAD>
28746 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
28747 </HEAD>
28748 <BODY>
28749 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
28751 When you are running Alpine you will sometimes be asked for a password
28752 in a prompt on the third line from the bottom of the screen.
28753 Normally each password character you type will cause an asterisk to echo
28754 on the screen. That gives you some feedback to know that your typing is
28755 being recognized.
28756 There is a very slight security risk in doing it this way because someone
28757 watching over your shoulder might be able to see how many characters there
28758 are in your password.
28759 If you'd like to suppress the echoing of the asterisks set this feature.
28761 &lt;End of help on this topic&gt;
28762 </BODY>
28763 </HTML>
28764 ====== h_config_quell_flowed_text =====
28765 <HTML>
28766 <HEAD>
28767 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
28768 </HEAD>
28769 <BODY>
28770 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
28772 Alpine generates flowed text where possible.
28773 The method for generating flowed text is defined by
28774 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
28775 the benefit of doing so is
28776 to send message text that can properly be viewed both on normal width displays
28777 and on displays with smaller or larger than normal screen widths.
28778 With flowed text, a space at the end of a line tells the receiving mail
28779 client that the following line belongs to the same paragraph.
28780 Quoted text will also be affected, with only the innermost
28781 level of &quot;&gt;&quot; quoting being followed by a space.
28782 However, if you have changed the
28783 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
28784 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
28785 quoted text will not be flowed.
28786 For this reason, we recommend that you leave your
28787 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
28789 This feature turns off the generation of flowed text, as it might be
28790 desired to more tightly control how a message is displayed on the receiving end.
28792 If this feature is <EM>not</EM> set, you can control on a message by message
28793 basis whether or not flowed text is generated.
28794 You do this by typing ^V at the Send confirmation prompt that you get
28795 after typing ^X to send a message.
28796 ^V is a toggle that turns flowing off and back on if typed again.
28797 If for some reason flowing cannot be done on a particular message, then the
28798 ^V command will not be available.
28799 This would be the case, for example, if this feature was set, or if your
28800 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
28801 If the feature
28802 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
28803 then the opportunity to control on a message by message basis
28804 whether or not flowed text is generated is lost.
28806 When this feature is not set and you have typed ^V to turn off flowing,
28807 the Send confirmation prompt will change to look like
28809 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
28811 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
28812 also turn off the sending of flowed text messages, but it differs in that
28813 it also trims all trailing white space from a message before sending it.
28815 If alternate editors are used extensively, be aware that a message will still
28816 be sent flowed if this feature is unset.  In most cases this will be fine,
28817 but if the editor has a &quot;flowed text&quot; mode, it would be best to
28818 use that.
28820 &lt;End of help on this topic&gt;
28821 </BODY>
28822 </HTML>
28823 ====== h_config_strip_ws_before_send =====
28824 <HTML>
28825 <HEAD>
28826 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
28827 </HEAD>
28828 <BODY>
28829 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
28831 By default, trailing whitespace is not stripped from
28832 a message before sending.  Trailing whitespace should have no effect on an
28833 email message, and in flowed text can aid in delimiting paragraphs.
28834 However, the old behavior of stripping trailing whitespace was in place
28835 to better deal with older clients that couldn't handle certain types of
28836 text encodings.  This feature restores the old behavior
28838 Trailing whitespace is of aid to flowed-text-formatted messages, which are
28839 generated by default but can be turned off via the
28840 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
28841 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
28842 of flowed text.
28844 &lt;End of help on this topic&gt;
28845 </BODY>
28846 </HTML>
28847 ====== h_config_del_from_dot =====
28848 <HTML>
28849 <HEAD>
28850 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
28851 </HEAD>
28852 <BODY>
28853 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
28855 This feature controls the behavior of the Ctrl-K command in the composer.
28856 If set, ^K will cut from the current cursor position to the end of the line,
28857 rather than cutting the entire line.
28860 &lt;End of help on this topic&gt;
28861 </BODY>
28862 </HTML>
28863 ====== h_config_print_index =====
28864 <HTML>
28865 <HEAD>
28866 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
28867 </HEAD>
28868 <BODY>
28869 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
28871 This feature controls the behavior of the Print command when in the
28872 MESSAGE INDEX screen.  If set, the print command will give you a prompt
28873 asking if you wish to print the message index, or the currently highlighted
28874 message. If not set, the message will be printed.
28877 &lt;End of help on this topic&gt;
28878 </BODY>
28879 </HTML>
28880 ====== h_config_allow_talk =====
28881 <HTML>
28882 <HEAD>
28883 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
28884 </HEAD>
28885 <BODY>
28886 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
28888 UNIX Alpine only.
28890 By default, permission for others to &quot;talk&quot; to your terminal is turned
28891 off when you are running Alpine.  When this feature is set, permission is
28892 instead turned on.  If enabled, you may see unexpected messages in the
28893 middle of your Alpine screen from someone attempting to contact you via the
28894 &quot;talk&quot; program.
28897 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
28898 talk daemon on your system will attempt to print a message on your screen 
28899 when someone else is trying to contact you.  If you wish to see these
28900 messages while you are running Alpine, you should enable this feature.
28903 If you do enable this feature and see a &quot;talk&quot; message, you must 
28904 suspend or quit Alpine before you can respond.
28907 &lt;End of help on this topic&gt;
28908 </BODY>
28909 </HTML>
28910 ====== h_config_send_filter_dflt =====
28911 <HTML>
28912 <HEAD>
28913 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
28914 </HEAD>
28915 <BODY>
28916 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
28917 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
28918 configured, setting this feature will cause
28919 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
28920 instead of unfiltered, the usual default.
28922 <UL>   
28923 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28924 </UL><P>
28925 &lt;End of help on this topic&gt;
28926 </BODY>
28927 </HTML>
28928 ====== h_config_custom_print =====
28929 <HTML>
28930 <HEAD>
28931 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
28932 </HEAD>
28933 <BODY>
28934 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
28936 When this feature is set, the print command will have an additional
28937 subcommand called "C CustomPrint".  If selected, you will have
28938 the opportunity to enter any system print command --instead of being 
28939 restricted to using those that have been previously configured in the 
28940 printer setup menu.
28943 &lt;End of help on this topic&gt;
28944 </BODY>
28945 </HTML>
28946 ====== h_config_enable_dot_files =====
28947 <HTML>
28948 <HEAD>
28949 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
28950 </HEAD>
28951 <BODY>
28952 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
28954 When this feature is set, files beginning with dot (".") will be
28955 visible in the file browser.  For example, you'll be able to select them
28956 when using the browser to add an attachment to a message.
28958 &lt;End of help on this topic&gt;
28959 </BODY>
28960 </HTML>
28961 ====== h_config_enable_dot_folders =====
28962 <HTML>
28963 <HEAD>        
28964 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
28965 </HEAD>
28966 <BODY>
28967 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
28969 When this feature is set, folders beginning with dot (".") may be added
28970 and viewed.
28972 &lt;End of help on this topic&gt;
28973 </BODY>
28974 </HTML>
28975 ====== h_config_ff_between_msgs =====
28976 <HTML>
28977 <HEAD>
28978 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
28979 </HEAD>
28980 <BODY>
28981 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
28983 Setting this feature causes a formfeed to be printed between messages when
28984 printing multiple messages (with Apply Print command).
28986 &lt;End of help on this topic&gt;
28987 </BODY>
28988 </HTML>
28989 ====== h_config_blank_keymenu =====
28990 <HTML>
28991 <HEAD>
28992 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
28993 </HEAD>
28994 <BODY>
28995 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
28997 If this feature is set the command key menu that normally appears on the
28998 bottom two lines of the screen will not usually be there.  Asking for
28999 help with ^G or ? will cause the key menu to appear instead of causing
29000 the help message to come up.  If you want to actually see the help text,
29001 another ^G or ? will show it to you.  After the key menu has popped
29002 up with the help key it will remain there for an O for Other command but
29003 disappear if any other command is typed.
29005 &lt;End of help on this topic&gt;
29006 </BODY>
29007 </HTML>
29008 ====== h_config_enable_mouse =====
29009 <HTML>
29010 <HEAD>
29011 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29012 </HEAD>
29013 <BODY>
29014 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29016 This feature controls whether or not an X terminal mouse can be used with
29017 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29018 being used, the left mouse button on the mouse can be used to select text
29019 or commands.
29020 Clicking on a command at the bottom of the screen will behave as if you had
29021 typed that command.
29022 Clicking on an index line will move the current message highlight to
29023 that line.
29024 Double-clicking on an index line will view the message.
29025 Double-clicking on a link will view the link.
29027 This type of mouse support will also work in some terminal emulators which are
29028 not actually X terminals, but which have extra code to support the xterm
29029 style mouse.
29030 For those emulators you not only need to turn this feature on but you also
29031 have to set the $DISPLAY environment variable even though it isn't needed
29032 for your terminal.
29033 That will cause Alpine to think that it is an xterm and to properly interpret the
29034 escape sequences sent by the mouse.
29036 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29037 also modified.  It is sometimes possible to hold the shift key down while clicking
29038 left or middle mouse buttons for the normal xterm cut/paste operations. 
29039 There is also an Alpine command to toggle this mode on or off.
29040 The command is Ctrl-&#92; (Control-backslash).
29042 &lt;End of help on this topic&gt;
29043 </BODY>
29044 </HTML>
29045 ====== h_config_enable_xterm_newmail =====
29046 <HTML>
29047 <HEAD>        
29048 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29049 </HEAD>
29050 <BODY>
29051 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29053 This feature controls whether or not Alpine will attempt to announce new
29054 mail arrival when it is running in an X terminal window and that window
29055 is iconified.  If set, and the $DISPLAY variable indicates that an X
29056 terminal is being used, Alpine will send appropriate escape sequences to
29057 the X terminal to modify the label on Alpine's icon to indicate that new
29058 mail has arrived. Alpine will also modify the Alpine window's title to
29059 indicate new mail.
29060 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29062 &lt;End of help on this topic&gt;
29063 </BODY></HTML>
29064 ====== h_config_enable_newmail_short_text =====
29065 <HTML>
29066 <HEAD>        
29067 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29068 </HEAD>
29069 <BODY>
29070 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29072 This feature controls the text to be displayed in an icon in the event
29073 of a new message arrival.  Normally, the message will
29074 be the one that is displayed on the screen.  This feature shortens the
29075 message to a count of the number of new messages in brackets.  This may be
29076 more useful for those who use the window's title bar in the task bar as a
29077 new mail indicator.  This feature is only useful if the
29078 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29079 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29080 feature, this feature is only relevant when run in an xterm environment.
29082 &lt;End of help on this topic&gt;
29083 </BODY></HTML>
29084 ====== h_config_copy_to_to_from =====
29085 <HTML>
29086 <HEAD>
29087 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29088 </HEAD>
29089 <BODY>
29090 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29092 This feature affects the From address used when Replying to a message.
29093 It is probably only useful if you have some
29094 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29095 defined.
29096 When enabled, it checks to see if any of the addresses in the To or Cc
29097 fields of the message you are replying to is one of your addresses.
29098 If it is, and there is only one of them, then that address is used as
29099 the From address in the message you are composing.
29100 In other words, you will be using a From address that is the same
29101 as the To address that was used to get the mail to you in the first place.
29104 If a role is being used and it has a From address defined, that From address will
29105 be used rather than the one derived from this feature.
29108 <UL>   
29109 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29110 </UL><P>
29111 &lt;End of help on this topic&gt;
29112 </BODY>
29113 </HTML>
29114 ====== h_config_prefix_editing =====
29115 <HTML>
29116 <HEAD>
29117 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29118 </HEAD>
29119 <BODY>
29120 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29122 This feature affects the Reply command's &quot;Include original message
29123 in Reply?&quot; prompt.  When enabled, it causes the
29124 &quot;Edit Indent String&quot; sub-command to appear which allows 
29125 you to edit the string Alpine would otherwise use to denote included 
29126 text from the message being replied to.<P>
29128 Thus, you can change Alpine's default message quote character (usually
29129 an angle bracket) on a per message basis. So you could change your quoted message to
29130 look, for example, like this:<p>
29132 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29134 John: I just wanted to say hello and to congratulate you
29135 John: on a job well done!</pre><p>
29137 The configuration option
29138 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29139 may be used to change what appears as the default string to be edited.
29141 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29142 currently being replied to.
29144 If you change your <!--#echo var="VAR_reply-indent-string"-->
29145 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29146 quoted text will not be flowed
29147 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29148 when you reply.
29149 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
29150 set to the default value.
29152 <UL>   
29153 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29154 </UL><P>
29155 &lt;End of help on this topic&gt;
29156 </BODY>
29157 </HTML>
29158 ====== h_config_enable_search_and_repl =====
29159 <HTML>
29160 <HEAD>
29161 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
29162 </HEAD>
29163 <BODY>
29164 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
29166 This feature modifies the behavior of Alpine's composer.  Setting this
29167 feature causes Alpine to offer the "^R Replace" subcommand, which
29168 allows you to search and replace text strings in a message you are composing, 
29169 inside the "^W Where is" command.  
29173 To search and replace text, first enter the text to be replaced at the 
29174 "Search: " prompt.  Then, rather than pressing Enter to just search for that
29175 text, press ^R, which turns the prompt into 
29179 Search (to replace): 
29183 and then press Enter.  The cursor will highlight the first occurrence 
29184 of the text string you entered, and the prompt will show: 
29188 Replace "<your text string>" with : 
29192 where <your text string> is what you entered at the previous prompt;
29193 here, enter the replacement text.  To only replace the highlighted 
29194 occurrence, simply press Enter now; to replace all occurrences in the 
29195 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
29196 each replacement.
29200 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
29201 ^X toggles between "Replace All" and "Replace One."
29205 If you previously searched for text in a message, it will be offered for 
29206 re-use as part of the prompt, shown in [ ] brackets.
29209 &lt;End of help on this topic&gt;
29210 </BODY>
29211 </HTML>
29212 ====== h_config_enable_view_attach =====
29213 <HTML>
29214 <HEAD>
29215 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
29216 </HEAD>
29217 <BODY>
29218 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
29220 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29221 Setting this feature causes Alpine to present attachments in boldface.
29222 The first available attachment is displayed in inverse.  This is the
29223 "selected" attachment.  Pressing RETURN will cause Alpine to display
29224 the selected attachment.  Use the arrow keys to change which of the
29225 attachments displayed in boldface is the current selection.
29229 Speaking of arrow keys, the Up and Down Arrows will select the next
29230 and previous attachments if one is available on the screen for selection.
29231 Otherwise, they will simply adjust the viewed text one line up or down.
29235 Similarly, when selectable items are present in a message, the Ctrl-F key
29236 can be used to select the next item in the message independent of which
29237 portion of the viewed message is currently displayed. The Ctrl-B key can
29238 be used to select the previous item in the same way. 
29239 <P> 
29240 &lt;End of help on this topic&gt;
29241 </BODY>
29242 </HTML>
29243 ====== h_config_enable_y_print =====
29244 <HTML>
29245 <HEAD>
29246 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
29247 </HEAD>
29248 <BODY>
29249 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
29251 This feature modifies the behavior of Alpine's Print command.
29253 By default, Alpine's print command is available by pressing the "%" key.  
29254 (This command is a substantial change from Pine versions before 4.00 -- 
29255 where the print command was "Y" -- based on numerous complaints about 
29256 printing being invoked inadvertently, since Y also means "Yes.")  
29260 This feature is supplied to mitigate any disruption or anxiety users 
29261 might feel as a result of this change.  
29265 Enabling this feature will cause Alpine to recognize both the old
29266 command, "Y" for Prynt, as well the new "%" method for invoking
29267 printing.  Note, key menu labels are not changed as a result of
29268 enabling this feature.
29272 &lt;End of help on this topic&gt;
29273 </BODY>
29274 </HTML>
29275 ====== h_config_enable_lessthan_exit =====
29276 <HTML>
29277 <HEAD>
29278 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
29279 </HEAD>
29280 <BODY>
29281 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
29283 If this feature is set, then on screens where there is an Exit command
29284 but no < command, the < key will perform the same function as the Exit
29285 command.
29286 This feature is set by default.
29288 &lt;End of help on this topic&gt;
29289 </BODY>
29290 </HTML>
29291 ====== h_config_enable_view_url =====
29292 <HTML>
29293 <HEAD>
29294 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
29295 </HEAD>
29296 <BODY>
29297 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
29298 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29299 When this feature is set (the default) Alpine will select possible URLs from the
29300 displayed text and display them in boldface for selection.
29302 The first available URL is displayed in inverse.  This is the
29303 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
29304 the selected URL via either built-in means as with mailto:, imap:,
29305 news:, and nntp:, or via an external application as defined
29306 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29307 variable.
29309 Use the arrow keys to change which of the URLs displayed in boldface
29310 is the current selection.
29312 Speaking of arrow keys, the Up and Down Arrows will select the next
29313 and previous URL if one is available on the screen for selection (unless 
29314 you have set the feature 
29315 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
29316 Otherwise, they will simply adjust the viewed text one line up or down.
29318 Similarly, when selectable items are present in a message, the Ctrl-F
29319 key can be used to select the next item in the message independent
29320 of which portion of the viewed message is currently displayed. The
29321 Ctrl-B key can be used to select the previous item in the same way.
29323 <UL>   
29324 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29325 </UL><P>
29326 &lt;End of help on this topic&gt;
29327 </BODY>
29328 </HTML>
29329 ====== h_config_enable_view_web_host =====
29330 <HTML>
29331 <HEAD>
29332 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
29333 </HEAD>
29334 <BODY>
29335 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
29337 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29338 When this feature is set (the default) Alpine will select possible web hostnames
29339 from the displayed text and display them in boldface for selection.  
29340 This can be useful when you receive messages referencing World Wide Web 
29341 sites without the use of complete URLs; for example, specifying only 
29342 &quot;www.patches.freeiz.com/alpine/&quot; (which will <B>not</B> become a 
29343 selectable 
29344 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
29345 rather than explicitly
29346 &quot;http://www.patches.freeiz.com/alpine/&quot;.  
29348 The first available hostname is displayed in inverse.  This is the
29349 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
29350 the selected hostname via an external application as defined
29351 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
29352 variable.
29354 Use the arrow keys (unless you have set the feature 
29355 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29356 to change which of the hostnames displayed in
29357 boldface is the current selection.
29359 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29360 key can be used to select the next web hostname in the message independent
29361 of which portion of the viewed message is currently displayed. The
29362 Ctrl-B key can be used to select the previous web hostnames in the same way.
29364 <UL>   
29365 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29366 </UL><P>
29367 &lt;End of help on this topic&gt;
29368 </BODY>
29369 </HTML>
29370 ====== h_config_enable_view_addresses =====
29371 <HTML>
29372 <HEAD>
29373 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
29374 </HEAD>
29375 <BODY>
29376 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
29378 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
29379 Setting this feature causes Alpine to select possible email addresses
29380 from the displayed text and display them in boldface for selection.  
29383 The first available email address is displayed in inverse.  This is the
29384 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
29385 the message composition screen with the To: field filled in with the
29386 selected address.
29388 Use the arrow keys (unless you have set the feature 
29389 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
29390 to change which of the hostnames displayed in
29391 boldface is the current selection.
29393 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
29394 key can be used to select the next web hostname in the message independent
29395 of which portion of the viewed message is currently displayed. The
29396 Ctrl-B key can be used to select the previous web hostnames in the same way.
29398 <UL>   
29399 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29400 </UL><P>
29401 &lt;End of help on this topic&gt;
29402 </BODY>
29403 </HTML>
29404 ====== h_config_enable_view_arrows =====
29405 <HTML>
29406 <HEAD>
29407 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
29408 </HEAD>
29409 <BODY>
29410 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
29412 This feature modifies Up and Down arrow key behavior in Alpine's
29413 MESSAGE TEXT screen when selectable Attachments, URL's, or
29414 web-hostnames are presented. Alpine's usual behavior is to move to
29415 the next or previous selectable item if currently displayed or
29416 simply to adjust the screen view by one line.
29420 Setting this feature causes the UP and Down arrow key to behave as
29421 if no selectable items were present in the message.
29425 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
29426 item) functionality is unchanged.
29429 &lt;End of help on this topic&gt;
29430 </BODY>
29431 <HTML>
29432 ====== h_config_quell_charset_warning =====
29433 <HTML>
29434 <HEAD>
29435 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
29436 </HEAD>
29437 <BODY>
29438 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
29440 By default, if the message you are viewing contains characters that are
29441 not representable in your
29442 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
29443 then Alpine will
29444 add a warning to the start of the displayed text.
29445 If this option is set, then that editorial message will be suppressed.
29447 Setting this feature also suppresses the comment about the character set
29448 in header lines.
29449 For example, when viewing a message you might see
29451 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
29453 in the From header if your Character-Set is something other than ISO-8859-2.
29454 If you set this feature, the comment about the character set will
29455 no longer be there.
29457 &lt;End of help on this topic&gt;
29458 </BODY>
29459 </HTML>
29460 ====== h_config_quell_host_after_url =====
29461 <HTML>
29462 <HEAD>
29463 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
29464 </HEAD>
29465 <BODY>
29466 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
29468 By default, links in HTML text are displayed with the host the link
29469 references appended, within square brackets, to the link text.  Alpine
29470 does this to help indicate where a link will take you, particularly when
29471 the link text might suggest a different destination.
29474 Setting this feature will prevent the server name from being appended
29475 to the displayed text.
29478 &lt;End of help on this topic&gt;
29479 </BODY>
29480 </HTML>
29481 ====== h_config_prefer_plain_text =====
29482 <HTML>
29483 <HEAD>
29484 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
29485 </HEAD>
29486 <BODY>
29487 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
29489 A message being viewed may contain alternate versions of the same content.
29490 Those alternate versions are supposed to be ordered by the sending software such that the
29491 first alternative is the least preferred and the last alternative is the
29492 most preferred. Alpine will normally display the most-preferred version that
29493 it knows how to display. This is most often encountered where the two
29494 alternate versions are a plain text version and an HTML version, with the
29495 HTML version listed last as the most preferred.
29497 If this option is set, then any plain text version will be preferred to
29498 all other versions.
29500 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
29501 which will temporarily change the sense of this option.
29502 If this option is set you will first see the plain text version of a
29503 message.
29504 If you then type the &quot;A&quot; command, you will see the most preferred version,
29505 most likely HTML, instead.
29506 Typing the &quot;A&quot; command a second time will switch it back.
29507 Alternatively, if the present option is not set you will originally see
29508 the most preferred version of the message and typing &quot;A&quot; will switch to
29509 the plain text version.
29511 &lt;End of help on this topic&gt;
29512 </BODY>
29513 </HTML>
29514 ====== h_config_pass_control =====
29515 <HTML>
29516 <HEAD>
29517 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
29518 </HEAD>
29519 <BODY>
29520 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
29522 It is probably not useful to set this option.
29523 This is a legacy option left behind &quot;just in case&quot;.
29524 Multi-byte characters that have an octet that has the same
29525 value as a control character are permitted through whether or not
29526 this option is turned on.
29528 This feature controls how certain characters contained in messages are
29529 displayed.
29530 If set, all characters in a message will be sent to the
29531 screen. Normally, control characters are displayed as shown below to
29532 avoid a garbled screen and to 
29533 avoid inadvertently changing terminal setup parameters.
29534 Control characters are usually displayed as two character sequences like
29535 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
29536 for Control-C,
29537 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
29538 for ESCAPE,
29539 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
29540 for DELETE, and
29541 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
29542 for the character with value 133 (0x85).
29543 (The DEL character is displayed as ^?, regular control characters are displayed
29544 as the character ^ followed by the character obtained by adding the
29545 five low-order bits of the character to 0x40, and the C1
29546 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
29547 character obtained by adding the
29548 five low-order bits of the character to 0x40.)
29549 Sometimes, in cases where changing a single control character into a
29550 two-character sequence would confuse Alpine's display routines,
29551 a question mark is substituted for the control character.
29553 If you wish to filter out regular control characters but pass the
29554 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29555 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.
29557 &lt;End of help on this topic&gt;
29558 </BODY>
29559 </HTML>
29560 ====== h_config_pass_c1_control =====
29561 <HTML>
29562 <HEAD>
29563 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
29564 </HEAD>
29565 <BODY>
29566 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
29568 It is probably not useful to set this option.
29569 This is a legacy option left behind &quot;just in case&quot;.
29570 Multi-byte characters that have an octet that has the same
29571 value as a control character are permitted through whether or not
29572 this option is turned on.
29574 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29575 is set, then this feature has no effect.
29576 However, if you wish to filter out regular control characters but pass the
29577 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
29578 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
29579 unset and set this feature.
29581 &lt;End of help on this topic&gt;
29582 </BODY>
29583 </HTML>
29584 ====== h_config_fcc_on_bounce =====
29585 <HTML>
29586 <HEAD>
29587 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
29588 </HEAD>
29589 <BODY>
29590 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
29592 This feature controls an aspect of Alpine's behavior when bouncing a
29593 message. If set, normal FCC ("File Carbon Copy") processing will be
29594 done, just as if you had composed a message to the address you are
29595 bouncing to.  If not set, no FCC of the message will be saved. 
29597 &lt;End of help on this topic&gt;
29598 </BODY>
29599 </HTML>
29600 ====== h_config_show_cursor =====
29601 <HTML>
29602 <HEAD>
29603 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
29604 </HEAD>
29605 <BODY>
29606 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
29608 This feature controls an aspect of Alpine's displays.  If set, the system
29609 cursor will move to convenient locations in the displays.  For example,
29610 to the beginning of the status field of the highlighted index line, or
29611 to the highlighted word after a successful WhereIs command.  It is intended
29612 to draw your attention to an "interesting" spot on the screen.
29614 &lt;End of help on this topic&gt;
29615 </BODY>
29616 </HTML>
29617 ====== h_config_sort_fcc_alpha =====
29618 <HTML>
29619 <HEAD>
29620 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
29621 </HEAD>
29622 <BODY>
29623 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
29625 This feature controls an aspect of Alpine's FOLDER LIST screen.
29626 If set, the default Fcc folder will be sorted alphabetically with the other
29627 folders instead of appearing right after the INBOX.
29629 &lt;End of help on this topic&gt;
29630 </BODY>
29631 </HTML>
29632 ====== h_config_sort_save_alpha =====
29633 <HTML>
29634 <HEAD>
29635 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
29636 </HEAD>
29637 <BODY>
29638 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
29640 This feature controls an aspect of Alpine's FOLDER LIST screen.
29641 If set, the default save folder will be sorted alphabetically with the other
29642 folders instead of appearing right after the INBOX (and default FCC folder).
29644 &lt;End of help on this topic&gt;
29645 </BODY>
29646 </HTML>
29647 ====== h_config_single_list =====
29648 <HTML>
29649 <HEAD>
29650 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
29651 </HEAD>
29652 <BODY>
29653 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
29655 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
29656 the folders will be listed one per line instead of several per line
29657 in the FOLDER LIST display.
29659 &lt;End of help on this topic&gt;
29660 </BODY>
29661 </HTML>
29662 ====== h_config_vertical_list =====
29663 <HTML>
29664 <HEAD>
29665 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
29666 </HEAD>
29667 <BODY>
29668 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
29670 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
29671 the folders will be listed alphabetically down the columns rather
29672 than across the columns as is the default.
29674 &lt;End of help on this topic&gt;
29675 </BODY>
29676 </HTML>
29677 ====== h_config_verbose_post =====
29678 <HTML>
29679 <HEAD>
29680 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
29681 </HEAD>
29682 <BODY>
29683 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
29684 This feature controls an aspect of Alpine's message sending.  When enabled,
29685 Alpine will send a VERB (i.e., VERBose) command early in the posting process
29686 intended to cause the SMTP server to provide a more detailed account of
29687 the transaction.  This feature is typically only useful to system
29688 administrators and other support personel as an aid in troublshooting
29689 problems.
29691 Note, this feature relies on a specific capability of the system's mail
29692 transport agent or configured 
29693 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
29694 It is possible that this
29695 feature will cause problems for some tranport agents, and may result in
29696 sending failure.  In addition, as the verbose output comes from the mail
29697 transport agent, it is likely to vary from one system to another. 
29698 <P><UL>
29699 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29700 </UL><P>
29701 &lt;End of help on this topic&gt;
29702 </BODY>
29703 </HTML>
29704 ====== h_config_auto_reply_to =====
29705 <HTML>
29706 <HEAD>
29707 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
29708 </HEAD>
29709 <BODY>
29710 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
29712 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
29713 will not prompt when a message being replied to contains a "Reply-To:"
29714 header value, but will simply use its value (as opposed to using the
29715 "From:" field's value).
29719 Note: Using the "Reply-To:" address is usually the preferred behavior,
29720 however, some mailing list managers choose to place the list's address in
29721 the "Reply-To:" field of any message sent out to the list.  In such
29722 cases, this feature makes it all too easy for personal replies to be
29723 inadvertently sent to the entire mail list, so be careful! 
29725 &lt;End of help on this topic&gt;
29726 </BODY>
29727 </HTML>
29728 ====== h_config_del_skips_del =====
29729 <HTML>
29730 <HEAD>
29731 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
29732 </HEAD>
29733 <BODY>
29734 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
29736 This feature controls an aspect of Alpine's Delete command.  If set, this
29737 feature will cause the Delete command to advance past following messages that
29738 are marked deleted.  In other words, pressing "D" will both mark the
29739 current message deleted and advance to the next message that is not marked
29740 deleted.
29741 This feature is set by default.
29743 &lt;End of help on this topic&gt;
29744 </BODY></HTML>
29745 ====== h_config_expunge_manually =====
29746 <HTML>
29747 <HEAD>
29748 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
29749 </HEAD>
29750 <BODY>
29751 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
29753 Normally, when you close a folder that contains deleted messages you are
29754 asked if you want to expunge those messages from the folder permanently.
29755 If this feature is set, you won't be asked and the deleted messages will
29756 remain in the folder.
29757 If you choose to set this feature you will have to expunge the
29758 messages manually using the eXpunge command, which you can use while
29759 in the MESSAGE INDEX screen.
29760 If you do not expunge deleted messages the size of your
29761 folder will continue to increase until you are out of disk space.
29763 <UL>   
29764 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29765 </UL><P>
29766 &lt;End of help on this topic&gt;
29767 </BODY>
29768 </HTML>
29769 ====== h_config_auto_expunge =====
29770 <HTML>
29771 <HEAD>
29772 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
29773 </HEAD>
29774 <BODY>
29775 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
29777 This features controls an aspect of Alpine's eXpunge command.  If set, you
29778 will <B>not</B> be prompted to confirm your intent before the expunge takes 
29779 place.
29780 Actually, this is only true for the INBOX folder and for folders in the
29781 Incoming Folders collection. See the feature
29782 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
29784 <UL>   
29785 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29786 </UL><P>
29787 &lt;End of help on this topic&gt;
29788 </BODY>
29789 </HTML>
29790 ====== h_config_full_auto_expunge =====
29791 <HTML>
29792 <HEAD>
29793 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
29794 </HEAD>
29795 <BODY>
29796 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
29798 This features controls an aspect of Alpine's eXpunge command.  If set, you
29799 will <B>not</B> be prompted to confirm your intent before the expunge 
29800 takes place.  This feature sets this behavior for all folders, unlike the
29801 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
29802 feature that works only for incoming folders.
29804 <UL>   
29805 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29806 </UL><P>
29807 &lt;End of help on this topic&gt;
29808 </BODY>
29809 </HTML>
29810 ====== h_config_auto_read_msgs =====
29811 <HTML>
29812 <HEAD>
29813 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
29814 </HEAD>
29815 <BODY>
29816 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
29817 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
29818 and the 
29819 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
29820 option is also set, then Alpine will
29821 automatically transfer all read messages to the designated folder and mark
29822 them as deleted in the INBOX.  Messages in the INBOX marked with an 
29823 &quot;N&quot; (meaning New, or unseen) are not affected.
29825 <UL>   
29826 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29827 </UL><P>
29828 &lt;End of help on this topic&gt;
29829 </BODY>
29830 </HTML>
29831 ====== h_config_auto_fcc_only =====
29832 <HTML>
29833 <HEAD>
29834 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
29835 </HEAD>
29836 <BODY>
29837 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
29838 This features controls an aspect of Alpine's composer.
29839 The only time this feature will be used is if you attempt to send mail
29840 that has no recipients but does have an Fcc.
29841 Normally, Alpine will ask if you really mean to copy the message only to
29842 the Fcc.
29843 That is, it asks if you really meant to have no recipients.
29844 If this feature is set, you
29845 will <B>not</B> be prompted to confirm your intent to make only a copy
29846 of a message with no recipients.
29848 This feature is closely related to
29849 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
29850 The difference between this feature and that feature is that this feature
29851 considers a Bcc to be a recipient while that feature will ask for confirmation
29852 even if there is a Bcc when there is no To, Cc, or Newsgroup.
29853 The default values also differ. This feature defaults to asking the question
29854 and you have to turn it off.
29855 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
29856 unless you turn it on.
29859 <UL>   
29860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29861 </UL><P>
29862 &lt;End of help on this topic&gt;
29863 </BODY>
29864 </HTML>
29865 ====== h_config_mark_fcc_seen =====
29866 <HTML>
29867 <HEAD>
29868 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
29869 </HEAD>
29870 <BODY>
29871 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
29873 This features controls the way Fccs (File carbon copies) are
29874 made of the messages you send.
29877 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
29878 copy will be marked as Unseen.
29879 When you look at the folder it was saved in the message will appear to
29880 be a New message until you read it.
29881 When this feature is enabled, the message will be marked as having
29882 been Seen.
29885 <UL>   
29886 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29887 </UL><P>
29888 &lt;End of help on this topic&gt;
29889 </BODY>
29890 </HTML>
29891 ====== h_config_no_fcc_attach =====
29892 <HTML>
29893 <HEAD>
29894 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
29895 </HEAD>
29896 <BODY>
29897 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
29899 This features controls the way Fcc's (File carbon copies) are
29900 made of the messages you send.
29903 Normally, Alpine saves an exact copy of your message as it was sent.
29904 When this feature is enabled, the &quot;body&quot; of the message
29905 you send (the text you type in the composer) is preserved in the 
29906 copy as before, however all attachments are replaced with text
29907 explaining what had been sent rather than the attachments themselves.
29910 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
29911 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
29912 allows you to interactively set whether or not attachments are saved
29913 to the Fcc'd copy.
29916 <UL>   
29917 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29918 </UL><P>
29919 &lt;End of help on this topic&gt;
29920 </BODY>
29921 </HTML>
29922 ====== h_config_read_in_newsrc_order =====
29923 <HTML>
29924 <HEAD>
29925 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
29926 </HEAD>
29927 <BODY>
29928 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
29930 This feature controls the order in which newsgroups will be presented.  If
29931 set, they will be presented in the same order as they occur in your 
29932 <!--chtml if pinemode="os_windows"-->
29933 &quot;NEWSRC&quot;
29934 <!--chtml else-->
29935 &quot;.newsrc&quot;
29936 <!--chtml endif-->
29937 file (the default location of which can be changed with the 
29938 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
29940 If not set, the newsgroups will be presented in alphabetical order.
29942 <UL>   
29943 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29944 </UL><P>
29945 &lt;End of help on this topic&gt;
29946 </BODY>
29947 </HTML>
29948 ====== h_config_quell_tz_comment =====
29949 <HTML>
29950 <HEAD>
29951 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
29952 </HEAD>
29953 <BODY>
29954 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
29956 Normally, when Alpine generates a Date header for outgoing mail,
29957 it will try to include the symbolic timezone at the end of the
29958 header inside parentheses.
29959 The symbolic timezone is often three characters long, but on
29960 some operating systems, it may be longer.
29961 Apparently there are some SMTP servers in the world that will reject an
29962 incoming message if it has a Date header longer than about 80 characters.
29963 If this feature is set, the symbolic timezone normally generated by
29964 Alpine will not be included.
29965 You probably don't need to worry about this feature unless you run into
29966 the problem described above.
29969 &lt;End of help on this topic&gt;
29970 </BODY>
29971 </HTML>
29972 ====== h_config_post_wo_validation =====
29973 <HTML>
29974 <HEAD>
29975 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
29976 </HEAD>
29977 <BODY>
29978 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
29980 This feature controls whether the NNTP server is queried as newsgroups
29981 are entered for posting.  Validation over slow links (e.g. dialup using
29982 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
29984 &lt;End of help on this topic&gt;
29985 </BODY>
29986 </HTML>
29987 ====== h_config_send_wo_confirm =====
29988 <HTML>
29989 <HEAD>
29990 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
29991 </HEAD>
29992 <BODY>
29993 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
29995 By default, when you send or post a message you will be asked to confirm
29996 with a question that looks something like:
29999 <CENTER><SAMP>Send message?</SAMP></CENTER>
30002 If this feature is set, you
30003 will <B>not</B> be prompted to confirm your intent to send
30004 and your message will be sent.
30006 If this feature is set it disables some possibilities and renders some
30007 other features meaningless.
30008 You will not be able to use
30009 <A HREF="h_config_sending_filter">Sending Filters</A>,
30010 Verbose sending mode,
30011 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30012 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30013 or ^V to turn off the generation of flowed text for this message.
30014 These options are normally available as suboptions in the Send prompt, but
30015 with no Send prompt the options are gone.
30018 A somewhat related feature is
30019 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30020 which may be used to eliminate the extra confirmation
30021 question when posting to a newsgroup.
30023 <UL>   
30024 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30025 </UL><P>
30026 &lt;End of help on this topic&gt;
30027 </BODY>
30028 </HTML>
30029 ====== h_config_quell_filtering_done_message =====
30030 <HTML>
30031 <HEAD>
30032 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30033 </HEAD>
30034 <BODY>
30035 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30037 If you use Filter Rules that move messages or set status of messages
30038 you sometimes see a message from Alpine that looks like
30041 <CENTER><SAMP>filtering done</SAMP></CENTER>
30044 If this feature is set, this message will be suppressed.
30045 If the feature
30046 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30047 is set then this message will be suppressed regardless.
30050 <UL>   
30051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30052 </UL><P>
30053 &lt;End of help on this topic&gt;
30054 </BODY>
30055 </HTML>
30056 ====== h_config_quell_filtering_messages =====
30057 <HTML>
30058 <HEAD>
30059 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30060 </HEAD>
30061 <BODY>
30062 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30064 If you use Filter Rules that move messages or set status of messages
30065 you sometimes see messages from Alpine that look like
30068 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30074 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30080 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30083 If this feature is set, these messages will be suppressed.
30084 The feature
30085 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30086 is related.
30089 <UL>   
30090 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30091 </UL><P>
30092 &lt;End of help on this topic&gt;
30093 </BODY>
30094 </HTML>
30095 ====== h_config_quell_post_prompt =====
30096 <HTML>
30097 <HEAD>
30098 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30099 </HEAD>
30100 <BODY>
30101 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30103 By default, when you post a message to a newsgroup you are asked to confirm
30104 that you want to post with the question
30107 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30110 If this feature is set, you
30111 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30112 and your message will be posted.
30115 <UL>   
30116 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30117 </UL><P>
30118 &lt;End of help on this topic&gt;
30119 </BODY>
30120 </HTML>
30121 ====== h_config_check_mail_onquit =====
30122 <HTML>
30123 <HEAD>
30124 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30125 </HEAD>
30126 <BODY>
30127 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30129 If this feature is set, Alpine will check for new mail after you give the
30130 Quit command.
30131 If new mail has arrived since the previous check, you will be notified
30132 and given the choice of quitting or not quitting.
30134 <UL>   
30135 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30136 </UL><P>
30137 &lt;End of help on this topic&gt;
30138 </BODY>
30139 </HTML>
30140 ====== h_config_inbox_no_confirm =====
30141 <HTML>
30142 <HEAD>
30143 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30144 </HEAD>
30145 <BODY>
30146 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30148 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30149 command and there are no more folders or newsgroups to visit, you are asked
30150 if you want to return to the INBOX.
30151 If this feature is set you will not be asked.
30152 It will be assumed that you do want to return to the INBOX.
30154 <UL>   
30155 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30156 </UL><P>
30157 &lt;End of help on this topic&gt;
30158 </BODY>
30159 </HTML>
30160 ====== h_config_dates_to_local =====
30161 <HTML>
30162 <HEAD>
30163 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
30164 </HEAD>
30165 <BODY>
30166 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
30168 Normally, the message dates that you see in the
30169 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
30170 For example, if a message was sent to you from a few timezones to the east
30171 it might appear that it was sent from the future;
30172 or if it was sent from somewhere to the west it might appear
30173 as if it is from yesterday even though it was sent only a few minutes ago.
30174 If this feature is set an attempt will be made to convert the dates
30175 to your local timezone to be displayed.
30177 Note that this does not affect the results of Select by Date or of
30178 anything else other than these displayed dates.
30179 When viewing the message you may look at the original unconverted value of the Date
30180 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
30182 <UL>   
30183 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30184 </UL><P>
30185 &lt;End of help on this topic&gt;
30186 </BODY>
30187 </HTML>
30188 ====== h_config_tab_no_prompt =====
30189 <HTML>
30190 <HEAD>
30191 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
30192 </HEAD>
30193 <BODY>
30194 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
30196 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30197 command and there is a problem checking a folder, you are asked
30198 whether you want to continue with the search in the following folder or not.
30199 This question gives you a chance to stop the NextNew processing.
30200 (The checking problem might be caused by the fact that the folder does not
30201 exist, or by an authentication problem, or by a server problem
30202 of some sort.)
30205 If this feature is set you will not be asked.
30206 It will be assumed that you do want to continue.
30208 <UL>   
30209 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30210 </UL><P>
30211 &lt;End of help on this topic&gt;
30212 </BODY>
30213 </HTML>
30214 ====== h_config_input_history =====
30215 <HTML>
30216 <HEAD>
30217 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
30218 </HEAD>
30219 <BODY>
30220 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
30222 Many of the prompts that ask for input in the status line near the
30223 bottom of the screen will respond to Up Arrow and Down Arrow
30224 with the history of previous entries.
30225 For example, in the MESSAGE INDEX screen when you use the WhereIs
30226 command the text you entered will be remembered and can be recalled
30227 by using the Up Arrow key.
30228 Another example, when saving a message the folders saved to will
30229 be remembered and can be recalled using the arrow keys.
30231 In the Save prompt, some users prefer that the Up and Down arrow keys
30232 be used for the Previous Collection and Next Collection commands
30233 instead of for a history of previous saves.
30234 If this option is set the Up and Down arrow keys will become synonyms for the
30235 Previous Collection and Next Collection (^P and ^N) commands in the
30236 prompt for the name of a folder to Save to or in the prompt for the
30237 name of a folder to GoTo.
30238 When this feature is not set (the default), ^P and ^N will change the
30239 collection and the arrow keys will show the history.
30241 <UL>   
30242 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30243 </UL><P>
30244 &lt;End of help on this topic&gt;
30245 </BODY>
30246 </HTML>
30247 ====== h_config_confirm_role =====
30248 <HTML>
30249 <HEAD>
30250 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
30251 </HEAD>
30252 <BODY>
30253 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
30255 If you have roles, when you Reply to or Forward a message, or Compose
30256 a new message, Alpine
30257 will search through your roles for one that matches.
30258 Normally, if no matches are found you will be placed into the composer
30259 with no opportunity to select a role.
30260 If this feature is set, then you will be asked to confirm that you don't
30261 want a role.
30262 This will give you the opportunity to select a role (with the ^T command).
30263 If you confirm no role with a Return, you will be placed in
30264 the composer with no role.
30265 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
30266 These behave the same as if you pressed the Return.
30267 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
30268 match what you might type if there was a role match.)
30270 If you are using the alternate form of the Compose command called
30271 &quot;Role&quot;, then all of your roles will be available to you,
30272 independent of the value of this feauture and of the values set for all of
30273 Reply Use, Forward Use, and Compose Use.
30275 <UL>   
30276 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30277 </UL><P>
30278 &lt;End of help on this topic&gt;
30279 </BODY>
30280 </HTML>
30281 ====== h_config_news_cross_deletes =====
30282 <HTML>
30283 <HEAD>
30284 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
30285 </HEAD>
30286 <BODY>
30287 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
30289 This feature controls what Alpine does when you delete a message in a
30290 newsgroup that appears in more than one newsgroup.  Such a message
30291 is sometimes termed a &quot;crossposting&quot; in that it was posted
30292 across several newsgroups.
30295 Alpine's default behavior when you delete such a message is to remove
30296 only the copy in the current newsgroup from view when you use the
30297 &quot;Exclude&quot; command or the next time you visit the newsgroup.
30300 Enabling this feature causes Alpine to remove every occurrence of the
30301 message from all newsgroups it appears in and to which you are
30302 subscribed.
30305 NOTE: As currently implemented, enabling this feature may increase the
30306 time it takes the Expunge command and newsgroup closing to complete.
30309 <UL>   
30310 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30311 </UL><P>
30312 &lt;End of help on this topic&gt;
30313 </BODY>
30314 </HTML>
30315 ====== h_config_news_catchup =====
30316 <HTML>
30317 <HEAD>
30318 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
30319 </HEAD>
30320 <BODY>
30321 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
30323 This feature controls what Alpine does as it closes a newsgroup.
30324 When set, Alpine will offer to delete all messages from the newsgroup
30325 as you are quitting Alpine or opening a new folder.
30328 This feature is useful if you typically read all the interesting messages
30329 in a newsgroup each time you open it.  This feature saves you from
30330 having to delete each message in a newsgroup as you read it or from
30331 selecting all the messages and doing an
30332 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
30333 move on to the next folder or newsgroup.
30336 <UL>   
30337 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30338 </UL><P>
30339 &lt;End of help on this topic&gt;
30340 </BODY>
30341 </HTML>
30342 ====== h_config_next_thrd_wo_confirm =====
30343 <HTML>
30344 <HEAD>
30345 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
30346 </HEAD>
30347 <BODY>
30348 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
30350 This feature controls an aspect of Alpine's Next and Prev commands in
30351 the case where you are using one of the
30352 &quot;separate-index-screen&quot; styles for the configuration option
30353 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
30354 and currently have the folder sorted by a Threaded or OrderedSubject sort.
30355 When you are Viewing a particular thread you have a
30356 MESSAGE INDEX of only the messages in that thread.
30357 If you press the Next command with the last message in the thread highlighted
30358 you will normally be asked if you want to &quot;View next thread?&quot;,
30359 assuming there is a next thread to view.
30360 If this feature is set it will be assumed that you always want to view the
30361 next thread and you won't be asked to confirm that.
30362 Similarly, if the first message of the thread is highlighted and you
30363 press the Prev command, this feature will prevent the question
30364 &quot;View previous thread&quot;.
30366 This feature only has an effect in the MESSAGE INDEX screen.
30367 If you then view a particular message from that screen and press the
30368 Next command, you will be sent to the next thread without being asked,
30369 independent of the setting of this feature.
30371 The feature
30372 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
30374 &lt;End of help on this topic&gt;
30375 </BODY>
30376 </HTML>
30377 ====== h_config_kw_braces =====
30378 <HTML>
30379 <HEAD>
30380 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
30381 </HEAD>
30382 <BODY>
30383 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
30385 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
30386 TEXT screens.
30387 If you have modified the
30388 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
30389 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
30390 are used to display keywords or their initials along with the Subject; then
30391 this option may be used to modify the resulting display slightly.
30392 By default, the keywords or initials displayed for these tokens will be
30393 surrounded with curly braces ({ and }) and a trailing space.
30394 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
30395 a message, the &quot;SUBJKEY&quot; token will normally look like
30397 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
30399 and the SUBJKEYINIT token would look like
30401 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
30403 The default character before the keywords is the left brace ({) and the
30404 default after the keywords is the right brace followed by a space (} ).
30406 This option allows you to change that.
30407 You should set it to two values separated by a space.
30408 The values may be quoted if they include space characters.
30409 So, for example, the default value could be specified explicitly by setting this
30410 option to
30412 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
30414 The first part wouldn't need to be quoted (but it doesn't hurt).
30415 The second part does need the quotes because it includes a space character.
30416 If you wanted to change the braces to brackets you could use
30418 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
30420 Inside the quotes you can use backslash quote to mean quote, so
30422 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
30424 would produce
30426 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
30428 It is also possible to color keywords in the index using the
30429 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
30431 It is not possible to change the fact that a space character is used to
30432 separate the keywords if more than one keyword is set for a message.
30433 It is also not possible to change the fact that there are no separators
30434 between the keyword initials if more than one keyword is set.
30436 &lt;End of help on this topic&gt;
30437 </BODY>
30438 </HTML>
30439 ====== h_config_opening_sep =====
30440 <HTML>
30441 <HEAD>
30442 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
30443 </HEAD>
30444 <BODY>
30445 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
30447 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
30448 With some setups the text of the subject is followed
30449 by the opening text of the message if there is any room available in the index line.
30450 If you have configured your
30451 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
30452 to include one of the Subject tokens that causes this behavior
30453 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
30454 to modify what is displayed slightly.
30455 By default, the Subject is separated from the opening text of the message by
30456 the three characters space dash space;
30458 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
30460 Use this option to set it to something different.
30461 The value must be quoted if it includes any space characters.
30462 For example, the default value could be specified explicitly by setting this
30463 option to
30465 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
30467 &lt;End of help on this topic&gt;
30468 </BODY>
30469 </HTML>
30470 ====== h_config_select_wo_confirm =====
30471 <HTML>
30472 <HEAD>
30473 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
30474 </HEAD>
30475 <BODY>
30476 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
30478 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
30479 These commands all take text input to specify the name of the folder or
30480 file to be used, but allow you to press ^T for a list of possible names.
30481 If set, the selected name will be used immediately, without further
30482 opportunity to confirm or edit the name.
30484 Some related help topics are
30485 <UL>
30486 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
30487 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
30488 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
30489 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
30490 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
30491 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
30492 </UL>
30494 &lt;End of help on this topic&gt;
30495 </BODY>
30496 </HTML>
30497 ====== h_config_save_part_wo_confirm =====
30498 <HTML>
30499 <HEAD>
30500 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
30501 </HEAD>
30502 <BODY>
30503 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
30505 This feature controls an aspect of Alpine's Save command.
30506 By default, when you Save a message that has some deleted parts, you will
30507 be asked to confirm that you want to Save with a prompt that looks like:
30509 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
30511 If this feature is set, you will not be asked.
30513 &lt;End of help on this topic&gt;
30514 </BODY>
30515 </HTML>
30516 ====== h_config_use_resentto =====
30517 <HTML>
30518 <HEAD>
30519 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
30520 </HEAD>
30521 <BODY>
30522 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
30524 This feature is turned off by default because turning it on causes problems
30525 with some deficient IMAP servers.
30526 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
30527 <A HREF="h_rule_patterns">Pattern</A>
30528 contains a To header pattern and this feature is turned on,
30529 then a check is made in the message to see
30530 if a Resent-To header is present, and that is used instead of the To header.
30531 If this feature is not turned on, then the regular To header will always
30532 be used.
30535 &lt;End of help on this topic&gt;
30536 </BODY>
30537 </HTML>
30538 ====== h_config_use_reg_start_for_stayopen =====
30539 <HTML>
30540 <HEAD>
30541 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
30542 </HEAD>
30543 <BODY>
30544 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
30546 This feature affects which message is selected as the current message
30547 when you enter a
30548 <A HREF="h_config_permlocked">Stay Open</A> folder.
30550 Normally, the starting position for an incoming folder (which most Stay Open
30551 folders will likely be) is controlled by the
30552 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
30553 However, if a folder is a Stay Open folder, when you re-enter the folder
30554 after the first time the current message will be the same as it was when
30555 you left the folder.
30556 An exception is made if you use the TAB command to get to the folder.
30557 In that case, the message number will be incremented by one from what it
30558 was when you left the folder.
30560 The above special behavior is thought to be useful.
30561 However, it is special and different from what you might at first expect.
30562 If this feature is set, then Stay Open folders will not be treated specially
30563 as far as the startup rule is concerned.
30566 &lt;End of help on this topic&gt;
30567 </BODY>
30568 </HTML>
30569 ====== h_config_use_current_dir =====
30570 <HTML>
30571 <HEAD>
30572 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
30573 </HEAD>
30574 <BODY>
30575 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
30577 This feature controls an aspect of several commands. 
30578 If set, your &quot;current working directory&quot; 
30579 <!--chtml if pinemode="running"-->
30580 (which, at least for your current Alpine &quot;session,&quot; 
30581 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
30582 <!--chtml endif-->
30583 will be used instead of your home directory 
30584 <!--chtml if pinemode="running"-->
30585 (which, in the present configuration of your system, is
30586  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
30587 <!--chtml endif-->
30588 for all of the following operations:<UL>
30589     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
30590     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
30591     <LI> <!--chtml if pinemode="function_key"-->F4
30592          <!--chtml else-->Ctrl-R
30593          <!--chtml endif--> file inclusion in the COMPOSER
30594     <LI> <!--chtml if pinemode="function_key"-->F5
30595          <!--chtml else-->Ctrl-J
30596          <!--chtml endif--> file attachment in the COMPOSER
30597 </UL>
30598 <!--chtml if pinemode="os_windows"-->
30600 If you are starting PC-Alpine from a desktop icon or the Start menu, 
30601 you can set the &quot;current drive&quot; 
30602 by specifying it in the &quot;Start in:&quot; 
30603 box found in the Shortcut tab of the Properties.  
30604 <!--chtml endif-->
30606 <UL>   
30607 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30608 </UL>
30611 &lt;End of help on this topic&gt;
30612 </BODY>
30613 </HTML>
30614 ====== h_config_save_wont_delete =====
30615 <HTML>
30616 <HEAD>
30617 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
30618 </HEAD>
30619 <BODY>
30620 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
30622 This feature controls one aspect of the Save command.  If set, Save will
30623 not mark the message &quot;deleted&quot; (its default behavior) after
30624 it has been copied to the designated folder.
30627 &lt;End of help on this topic&gt;
30628 </BODY>
30629 </HTML>
30630 ====== h_config_use_boring_spinner =====
30631 <HTML>
30632 <HEAD>
30633 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
30634 </HEAD>
30635 <BODY>
30636 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
30638 When Alpine is delayed for some reason it usually shows that
30639 something is happening with a small animated display in the status
30640 message line near the bottom of the screen.
30641 Setting this feature will cause that animation to be the same
30642 each time instead of having Alpine choose a random animation.
30643 You may turn the animation off altogether by setting the
30644 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
30645 option to zero.
30648 &lt;End of help on this topic&gt;
30649 </BODY>
30650 </HTML>
30651 ====== h_config_unsel_wont_advance =====
30652 <HTML>
30653 <HEAD>
30654 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
30655 </HEAD>
30656 <BODY>
30657 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
30659 This feature controls one aspect of the Unselect Current message command.
30660 Normally, when the Unselect current message command (:) is typed when the
30661 current message is selected, the message will be unselected and the next
30662 message will become the current message.
30663 If this feature is set, the cursor will not advance to the next message.
30664 Instead, the current message will remain the current message after
30665 unselecting.
30668 &lt;End of help on this topic&gt;
30669 </BODY>
30670 </HTML>
30671 ====== h_config_prune_uses_iso =====
30672 <HTML>
30673 <HEAD>
30674 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
30675 </HEAD>
30676 <BODY>
30677 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
30679 By default, Alpine asks monthly whether or not you would like to rename
30680 some folders to a new name containing the date.
30681 It also asks whether or not you would like to delete some old folders.
30682 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
30683 explanation.
30686 By default, the name used when renaming a folder looks like
30688 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
30690 For example, the first time you run Alpine in May of 2004,
30691 the folder &quot;sent-mail&quot; might be renamed to
30693 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
30695 If this feature is set, the name used will be of the form
30697 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
30699 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
30700 month (01, 02, ..., 12).
30701 For the April, 2004 example above, it would instead be
30703 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
30705 because April is the 4th month of the year.
30706 A reason you might want to set this feature is so that the folders
30707 will sort in chronological order.
30710 &lt;End of help on this topic&gt;
30711 </BODY>
30712 </HTML>
30713 ====== h_config_save_advances =====
30714 <HTML>
30715 <HEAD>
30716 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
30717 </HEAD>
30718 <BODY>
30719 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
30721 This feature controls one aspect of the Save command.  If set, Save will
30722 (in addition to copying the current message to the designated folder) also
30723 advance to the next message.
30726 &lt;End of help on this topic&gt;
30727 </BODY>
30728 </HTML>
30729 ====== h_config_force_arrow =====
30730 <HTML>
30731 <HEAD>
30732 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
30733 </HEAD>
30734 <BODY>
30735 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
30737 This feature affects Alpine's MESSAGE INDEX display routine.
30738 If set, the normal inverse-video cursor will be
30739 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
30740 second column of the index display.
30742 This is the same index cursor you get if you turn on
30743 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
30744 line coloring will still be present if this feature is turned on and
30745 <!--#echo var="FEAT_assume-slow-link"--> is off.
30747 An alternative version of the Arrow cursor is available by including the
30748 <A HREF="h_config_index_arrow_color">ARROW</A>
30749 token in the
30750 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
30752 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
30753 but that is not implemented.
30756 &lt;End of help on this topic&gt;
30757 </BODY>
30758 </HTML>
30759 ====== h_config_force_low_speed =====
30760 <HTML>
30761 <HEAD>
30762 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
30763 </HEAD>
30764 <BODY>
30765 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
30767 UNIX Alpine only.
30769 This feature affects Alpine's display routines.  If set, the normal
30770 inverse-video cursor (used to highlight the current item in a list) will be
30771 replaced by an &quot;arrow&quot; cursor and other
30772 screen update optimizations for
30773 low-speed links (e.g. 2400 bps dialup connections) will be activated.
30774 One of the optimizations is that colored index lines (set up with Indexcolor
30775 Rules) will not be colored.
30776 If you are just turning this feature on because you like using
30777 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
30778 coloring by turning this feature off and the
30779 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
30782 &lt;End of help on this topic&gt;
30783 </BODY>
30784 </HTML>
30785 ====== h_config_show_delay_cue =====
30786 <HTML>
30787 <HEAD>
30788 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
30789 </HEAD>
30790 <BODY>
30791 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
30793 If set, this feature will cause an asterisk to appear in the upper
30794 left-hand corner of the screen whenever Alpine checks for new mail.
30795 Two asterisks whenever Alpine saves (checkpoints) the state of the current
30796 mailbox to disk.
30798 <!--chtml if pinemode="os_windows"-->
30800 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
30801 it is trying to open a network connection (e.g, to open your INBOX
30802 on an IMAP
30803 server) or read from the network connection.  A greater-than symbol,
30804 will be displayed when PC-Alpine is trying to write to the network
30805 connection (e.g, sending a command to your IMAP server).
30806 <!--chtml endif-->
30809 &lt;End of help on this topic&gt;
30810 </BODY>
30811 </HTML>
30812 ====== h_config_color_style =====
30813 <HTML>
30814 <HEAD>
30815 <TITLE>OPTION: Color Style</TITLE>
30816 </HEAD>
30817 <BODY>
30818 <H1>OPTION: Color Style</H1>
30820 UNIX Alpine only.
30822 If the terminal or terminal emulator you are using is capable of displaying
30823 colors, this option controls whether or not color will be used in Alpine.
30824 If you turn color on and things are set up correctly,
30825 you should see color appear on the screen immmediately.
30826 Modern terminal emulators are usually capable of displaying colors.
30828 The available options include:
30831 <DL>
30832 <DT>no-color</DT>
30833 <DD>Don't use color.
30834 </DD>
30836 <DT>use-termdef</DT>
30837 <DD>In order to decide if your terminal is capable of color, Alpine looks in
30838 the terminal capabilities database, TERMINFO or TERMCAP, depending on
30839 how Alpine was compiled.
30840 This is a good option to choose if you switch between a color and a non-color
30841 terminal with the same Alpine configuration.
30842 Alpine will know to use color on the color terminal because it is described
30843 in the termcap entry, and Alpine will know to use black and white on the
30844 non-color terminal.
30845 The Alpine Technical Notes
30846 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
30847 have more information on configuring a TERMCAP or TERMINFO
30848 entry for color Alpine.
30849 This is usually something a system administrator does.
30850 </DD>
30852 <DT>force-ansi-8color</DT>
30853 <DD>This is probably the setting that most people should use.
30854 Because setting up a termcap entry is confusing and because the
30855 terminal capabilities database is often not correctly configured for color,
30856 this choice and the next may be easier for you to use.
30857 If your terminal emulator responds to ANSI color escape sequences, which
30858 many do, this option will cause Alpine to believe your terminal will respond
30859 to the escape sequences that produce eight different foreground and background
30860 colors.
30861 The escape sequences used to set the foreground colors are
30863   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
30865 where the color_number is an ASCII digit between 0 and 7.
30866 The numbers 0 through 7 should correspond to the colors black, red, green,
30867 yellow, blue, magenta, cyan, and white.
30868 Some terminal emulators use a pre-ANSI scheme that swaps
30869 the colors blue and red and the colors yellow and cyan.
30870 This will cause the default colors to be different, but other than that
30871 things should work fine.
30872 There is also a 9th color available, the last one shown, which is the default
30873 color from the terminal emulator.
30874 When used as a background color some people refer to this color as
30875 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
30876 shown in the color swatch of the SETUP COLOR screen.
30877 The foreground transparent color is shown as
30878 the color of the &quot;TRAN&quot; text.
30879 (The transparent color will not work correctly in a PC-Alpine configuration.)
30880 The escape sequences used to set the background colors are the same
30881 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
30882 The escape sequences for foreground and background default colors (transparent)
30883 are 39m and 49m.
30885 Note: With the Tera Term terminal emulator this setting works well.
30886 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
30887 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
30888 menu, in the &quot;Window&quot; submenu.
30889 </DD>
30891 <DT>force-ansi-16color</DT>
30892 <DD>Many terminal emulators know about the same eight colors above
30893 plus eight more.
30894 This option attempts to use all 16 colors.
30895 The same escape sequences as for the eight-color terminal are used
30896 for the first eight colors.
30897 The escape sequences used to set foreground colors 8-15 are the same as
30898 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
30899 The background color sequences for colors 8-15 are the same as for 0-7
30900 except the &quot;4&quot; is replaced with &quot;10&quot;.
30901 You can tell if the 16 colors are working by turning on this option
30902 and then going into one of the color configuration screens, for example,
30903 the configuration screen for Normal Color.
30904 If you see 16 different colors to select from (plus a 17th for
30905 the transparent color), it's working.
30906 </DD>
30908 <DT>force-xterm-256color</DT>
30909 <DD>Some versions of xterm (and some other terminal emulators)
30910 have support for 256 colors.
30911 The escape sequences used to set the foreground colors are
30913   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
30915 where the color_number is an ASCII digit between 0 and 255.
30916 Background colors are the same with the 38 replaced with a 48.
30917 The numbers 0 through 15 are probably similar to the 16 color version
30918 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
30919 The terminal default (transparent) color is the 257th color at the bottom.
30920 Some terminal emulators will misinterpret these escape sequences causing
30921 the terminal to blink or overstrike characters or to do something else
30922 undesirable.
30924 The PuTTY terminal emulator has an option called &quot;Allow terminal to
30925 use xterm 256-colour mode&quot; which allows PuTTY to work well with
30926 this 256-color setting.
30928 </DD>
30929 </DL>
30932 The normal default is &quot;no-color&quot;.
30935 Once you've turned on color you may set the
30936 colors of many objects on the screen individually.
30937 For example, you may add colors to the status letters on the MESSAGE
30938 INDEX page.
30939 Most categories of color that Alpine supports are configurable here.
30940 For example, &quot;Normal Color&quot;
30941 is the color used to display most of the text in Alpine, and
30942 &quot;Reverse Color&quot; is used to display highlighted text, such as the
30943 current message in the MESSAGE INDEX.
30945 Lines in the MESSAGE INDEX may also be colored.
30946 Use Setup Rules to get to the Indexcolor configuration screen.
30949 <UL>   
30950 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30951 </UL><P>
30952 &lt;End of help on this topic&gt;
30953 </BODY>
30954 </HTML>
30955 ====== h_config_disable_index_locale_dates =====
30956 <HTML>
30957 <HEAD>
30958 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
30959 </HEAD>
30960 <BODY>
30961 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
30963 This feature affects the display of dates in the MESSAGE INDEX.
30964 Normally an attempt is made to localize the dates
30965 used in the MESSAGE INDEX display to your locale.
30966 This is controlled with the
30967 LC_TIME locale setting on a UNIX system.
30968 On Windows the Regional Options control panel may be used to set the date format.
30969 At the programming level, Alpine is using the strftime routine
30970 to print the parts of a date.
30972 If this feature is set, dates are displayed in English and
30973 with the conventions of the United States.
30976 <UL>   
30977 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30978 </UL><P>
30979 &lt;End of help on this topic&gt;
30980 </BODY>
30981 </HTML>
30982 ====== h_config_auto_open_unread =====
30983 <HTML>
30984 <HEAD>
30985 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
30986 </HEAD>
30987 <BODY>
30988 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
30990 This feature controls the behavior of the TAB key when traversing folders
30991 in the optional 
30992 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
30993 collection or in optional <!--#echo var="VAR_news-collections"-->.
30995 When the TAB
30996 (<A HREF="h_common_nextnew">NextNew</A>)
30997 key is pressed, and there
30998 are no more unseen messages in the current (incoming message or news)
30999 folder, Alpine will search the list of folders in the current collection for
31000 one containing New or Recent (new since the last time the folder was
31001 opened) messages.
31002 This behavior may be modified slightly with the
31003 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
31004 feature that causes Alpine to look for Unseen messages instead of Recent
31005 messages.
31006 Normally, when such a folder is found, Alpine will ask
31007 whether you wish to open the folder.  If this feature is set, Alpine will
31008 automatically open the folder without prompting.
31010 This feature also affects some other similar situations.
31011 If you have a
31012 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
31013 that is equal to one of the &quot;separate-&quot; values, and you are
31014 viewing a thread; then when you type the NextNew command and are at the
31015 end of the current thread you will automatically go to the next thread
31016 if this feature is set.
31017 By default, you would be asked if you want to view the next thread.
31018 You will also be asked at times whether or not you want to view the next
31019 thread after you delete the last message in the thread.
31020 Setting this feature will also cause that question to be skipped.
31023 <UL>   
31024 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31025 </UL><P>
31026 &lt;End of help on this topic&gt;
31027 </BODY>
31028 </HTML>
31029 ====== h_config_auto_include_reply =====
31030 <HTML>
31031 <HEAD>
31032 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31033 </HEAD>
31034 <BODY>
31035 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31037 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31038 will ask whether you wish to include the original message in your reply.
31039 If this feature is set and the feature
31040 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31041 is <EM>not</EM> set, then the original message will be included in the reply
31042 automatically, without prompting.
31044 &lt;End of help on this topic&gt;
31045 </BODY>
31046 </HTML>
31047 ====== h_config_select_in_bold =====
31048 <HTML>
31049 <HEAD>
31050 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31051 </HEAD>
31052 <BODY>
31053 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31055 This feature controls an aspect of Alpine's 
31056 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31057 commands; in
31058 particular, the Select and WhereIs commands. Select and WhereIs (with the
31059 ^X subcommand) will search the current folder for messages meeting a
31060 specified criteria, and &quot;tag&quot; the resulting messages with an 
31061 &quot;X&quot; in the
31062 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31063 is set, instead of using the &quot;X&quot; to denote a selected message, 
31064 Alpine will
31065 attempt to display those index lines in boldface. Whether this is
31066 preferable to the &quot;X&quot; will depend on personal taste and the type of
31067 terminal being used.
31069 <UL>   
31070 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31071 </UL><P>
31072 &lt;End of help on this topic&gt;
31073 </BODY>
31074 </HTML>
31075 ====== h_config_alt_auth =====
31076 <HTML>
31077 <HEAD>
31078 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31079 </HEAD>
31080 <BODY>
31081 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31083 This feature affects how Alpine connects to IMAP servers.
31084 It's utility has largely been overtaken by events,
31085 but it may still be useful in some circumstances.
31086 If you only connect to modern IMAP servers that support
31087 &quot;TLS&quot; you can ignore this feature.
31090 Details:
31093 By default, Alpine will attempt to connect to an IMAP server on the
31094 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31095 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31096 then a secure (encrypted) session will be negotiated.
31099 With this feature enabled, before connecting on the normal IMAP port, Alpine
31100 will first attempt to connect to an alternate IMAP service port (993) used
31101 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31102 (SSL) method.
31103 If the SSL attempt fails, Alpine will then try the default
31104 behavior described in the previous paragraph.
31107 TLS negotiation on the normal port is preferred, and supersedes the use of
31108 SSL on port 993, but older servers may not provide TLS support.
31109 This feature may be convenient when accessing IMAP servers that do not support
31110 TLS, but do support SSL connections on port 993.
31111 However, it is important to understand that with this feature enabled,
31112 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
31113 but it will proceed to make an insecure connection if that is the only
31114 option offered by the server, or if the Alpine in question has been built
31115 without encryption capability.
31118 Note that this feature specifies a per-user (or system-wide) default
31119 behavior, but host/folder specification flags may be used to control the
31120 behavior of any specific connection.
31121 This feature interacts with some of
31122 the possible host/folder path specification flags as follows:
31125 The <SAMP>/tls</SAMP> host flag, for example,
31128 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
31130 will over-ride this feature for the specified host by bypassing the
31131 SSL connection attempt.
31132 Moreover, with <SAMP>/tls</SAMP> specified,
31133 the connection attempt will fail if the
31134 service on port 143 does not offer TLS support.
31137 The <SAMP>/ssl</SAMP> host flag, for example,
31140 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
31142 will insist on an SSL connection for the specified host,
31143 and will fail if the SSL service on port 993 is not available.
31144 Alpine will not subsequently retry a connection
31145 on port 143 if <SAMP>/ssl</SAMP> is specified.
31148 <UL>   
31149 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31150 </UL><P>
31151 &lt;End of help on this topic&gt;
31152 </BODY>
31153 </HTML>
31154 ====== h_config_file_dir ======
31155 <HTML>
31156 <HEAD>
31157 <TITLE>OPTION: File Directory</TITLE>
31158 </HEAD>
31159 <BODY>
31160 <H1>OPTION: File Directory</H1>
31162 PC-Alpine only.
31164 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
31165 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
31166 Message Index's &quot;E&nbsp;Export&quot; command.
31169 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
31170 component, Alpine assumes the file exists in the user's home directory.
31171 Under Windows operating systems, this definition isn't always clear.  This 
31172 feature allows you to explictly set where Alpine should look for files
31173 without a leading path.
31176 NOTE: this feature's value is ignored if either 
31177 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
31178 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
31181 <UL>   
31182 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31183 </UL><P>
31184 &lt;End of help on this topic&gt;
31185 </BODY>
31186 </HTML>
31187 ====== h_config_quote_all_froms =====
31188 <HTML>
31189 <HEAD>
31190 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
31191 </HEAD>
31192 <BODY>
31193 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
31195 This feature controls an aspect of the Save command (and also the way
31196 outgoing messages are saved to an FCC folder).  If set, Alpine will add
31197 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
31198 when they are saved to another folder, including lines syntactically
31199 distinguishable from the type of message separator line commonly used on
31200 Unix systems.
31203 The default behavior is that a &quot;>&quot; will be prepended only to lines
31204 beginning with &quot;From &quot; that might otherwise be confused with a message
31205 separator line on Unix systems.  If pine is the only mail program you use,
31206 this default is reasonable.  If another program you use has trouble
31207 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
31208 enable this feature.  This feature only applies to the common Unix mailbox
31209 format that uses message separator lines beginning with &quot;From &quot;.  If
31210 Alpine has been configured to use a different mailbox format (possibly
31211 incompatible with other mail programs), then this issue does not arise,
31212 and the feature is irrelevant.
31215 &lt;End of help on this topic&gt;
31216 </BODY>
31217 </HTML>
31218 ====== h_config_normal_color =====
31219 <HTML>
31220 <HEAD>
31221 <TITLE>OPTION: Normal Color</TITLE>
31222 </HEAD>
31223 <BODY>
31224 <H1>OPTION: Normal Color</H1>
31226 Sets the color Alpine normally uses.
31227 The foreground color is the color of the actual character and the
31228 background color is the color of the area behind the character.
31229 By default this color is black characters on a white background.
31231 <A HREF="h_color_setup">Descriptions of the available commands</A>
31233 Look <A HREF="h_edit_nav_cmds">here</A>
31234 to see the available Editing and Navigation commands.
31236 &lt;End of help on this topic&gt;
31237 </BODY>
31238 </HTML>
31239 ====== h_config_reverse_color =====
31240 <HTML>
31241 <HEAD>
31242 <TITLE>OPTION: Reverse Color</TITLE>
31243 </HEAD>
31244 <BODY>
31245 <H1>OPTION: Reverse Color</H1>
31247 Sets the color Alpine uses for reverse video characters.
31248 The foreground color is the color of the actual character and the
31249 background color is the color of the area behind the character.
31251 <A HREF="h_color_setup">Descriptions of the available commands</A>
31253 Look <A HREF="h_edit_nav_cmds">here</A>
31254 to see the available Editing and Navigation commands.
31256 &lt;End of help on this topic&gt;
31257 </BODY>
31258 </HTML>
31259 ====== h_config_title_color =====
31260 <HTML>
31261 <HEAD>
31262 <TITLE>OPTION: Title Color</TITLE>
31263 </HEAD>
31264 <BODY>
31265 <H1>OPTION: Title Color</H1>
31267 Sets the color Alpine uses for the titlebar (the top line on the screen).
31268 The foreground color is the color of the actual character and the
31269 background color is the color of the area behind the character.
31270 By default, the Title Color is black characters on a yellow background.
31272 The actual titlebar color may be different from the Title Color if
31273 the option
31274 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
31275 is set to some value other than the default.
31276 It may also be different if the current folder is closed and the
31277 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
31278 color is set to something different from the Title Color.
31280 <A HREF="h_color_setup">Descriptions of the available commands</A>
31282 Look <A HREF="h_edit_nav_cmds">here</A>
31283 to see the available Editing and Navigation commands.
31285 &lt;End of help on this topic&gt;
31286 </BODY>
31287 </HTML>
31288 ====== h_config_titleclosed_color =====
31289 <HTML>
31290 <HEAD>
31291 <TITLE>OPTION: Title Closed Color</TITLE>
31292 </HEAD>
31293 <BODY>
31294 <H1>OPTION: Title Closed Color</H1>
31296 Sets the color Alpine uses for the titlebar (the top line on the screen)
31297 when the current folder is closed.
31298 The foreground color is the color of the actual character and the
31299 background color is the color of the area behind the character.
31300 By default, the Title Color Closed Color is white characters on a red background.
31302 By setting this color to something noticeable you will be alerted to the
31303 fact that the current folder is closed, perhaps unexpectedly.
31305 &lt;End of help on this topic&gt;
31306 </BODY>
31307 </HTML>
31308 ====== h_config_status_color =====
31309 <HTML>
31310 <HEAD>
31311 <TITLE>OPTION: Status Color</TITLE>
31312 </HEAD>
31313 <BODY>
31314 <H1>OPTION: Status Color</H1>
31316 Sets the color Alpine uses for status messages written to the message
31317 line near the bottom of the screen.
31318 The foreground color is the color of the actual character and the
31319 background color is the color of the area behind the character.
31320 By default, the Status Color is the same as the Reverse Color.
31322 <A HREF="h_color_setup">Descriptions of the available commands</A>
31324 Look <A HREF="h_edit_nav_cmds">here</A>
31325 to see the available Editing and Navigation commands.
31327 &lt;End of help on this topic&gt;
31328 </BODY>
31329 </HTML>
31330 ====== h_config_index_opening_color =====
31331 <HTML>
31332 <HEAD>
31333 <TITLE>OPTION: Index Opening Color</TITLE>
31334 </HEAD>
31335 <BODY>
31336 <H1>OPTION: Index Opening Color</H1>
31338 With some setups the text of the subject is followed
31339 by the opening text of the message if there is any room available in the index line.
31340 If you have configured your
31341 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31342 to include one of the Subject tokens that causes this behavior
31343 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
31344 this opening text with this option.
31345 This coloring takes place for all but the current index line, and the Opening
31346 Color appears to be in front of any color from an Index Color Rule.
31348 By default the Index Opening Color is gray characters on a white background.
31351 <A HREF="h_color_setup">Descriptions of the available commands</A>
31353 Look <A HREF="h_edit_nav_cmds">here</A>
31354 to see the available Editing and Navigation commands.
31356 &lt;End of help on this topic&gt;
31357 </BODY>
31358 </HTML>
31359 ====== h_config_index_pri_color =====
31360 <HTML>
31361 <HEAD>
31362 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
31363 </HEAD>
31364 <BODY>
31365 <H1>OPTION: Index Priority Symbol Colors</H1>
31367 The X-Priority header is a non-standard header that is used in a
31368 somewhat standard way by many mail programs.
31369 Alpine expects the value of this header to be a digit with a value
31370 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
31371 Alpine can be made to display an indication of this priority in
31372 messages by use of one of the tokens
31373 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
31374 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
31375 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31378 You may set the color used to draw these tokens by use of the colors
31379 Index High Priority Symbol Color and Index Low Priority Symbol Color.
31380 This coloring takes place for all but the current index line, and the Priority
31381 Color appears to be in front of any color from an Index Color Rule.
31382 If the priority has a value of 1 or 2 the High Priority color will be
31383 used,
31384 and if the value is 4 or 5 the Low Priority color will be used.
31386 If you don't set these colors the index line will be colored in the same color as
31387 the bulk of the index line.
31390 <A HREF="h_color_setup">Descriptions of the available commands</A>
31392 Look <A HREF="h_edit_nav_cmds">here</A>
31393 to see the available Editing and Navigation commands.
31395 &lt;End of help on this topic&gt;
31396 </BODY>
31397 </HTML>
31398 ====== h_config_index_subject_color =====
31399 <HTML>
31400 <HEAD>
31401 <TITLE>OPTION: Index Subject Color</TITLE>
31402 </HEAD>
31403 <BODY>
31404 <H1>OPTION: Index Subject Color</H1>
31406 You may set the color used to draw the Subject part of the index line.
31407 This coloring takes place for all but the current index line, and the Subject
31408 Color appears to be in front of any color from an Index Color Rule.
31410 If you don't set this color it will be colored in the same color as
31411 the bulk of the index line.
31414 <A HREF="h_color_setup">Descriptions of the available commands</A>
31416 Look <A HREF="h_edit_nav_cmds">here</A>
31417 to see the available Editing and Navigation commands.
31419 &lt;End of help on this topic&gt;
31420 </BODY>
31421 </HTML>
31422 ====== h_config_index_from_color =====
31423 <HTML>
31424 <HEAD>
31425 <TITLE>OPTION: Index From Color</TITLE>
31426 </HEAD>
31427 <BODY>
31428 <H1>OPTION: Index From Color</H1>
31430 You may set the color used to draw the From part of the index line.
31431 This coloring takes place for all but the current index line, and the From
31432 Color appears to be in front of any color from an Index Color Rule.
31434 If you don't set this color it will be colored in the same color as
31435 the bulk of the index line.
31438 <A HREF="h_color_setup">Descriptions of the available commands</A>
31440 Look <A HREF="h_edit_nav_cmds">here</A>
31441 to see the available Editing and Navigation commands.
31443 &lt;End of help on this topic&gt;
31444 </BODY>
31445 </HTML>
31446 ====== h_config_index_arrow_color =====
31447 <HTML>
31448 <HEAD>
31449 <TITLE>OPTION: Index Arrow Color</TITLE>
31450 </HEAD>
31451 <BODY>
31452 <H1>OPTION: Index Arrow Color</H1>
31454 If you have configured your
31455 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31456 to include the &quot;ARROW&quot; token, you may set the color of
31457 the arrow displayed with this option.
31458 If you don't set the color it will be colored in the same color as
31459 the bulk of the index line.
31462 <A HREF="h_color_setup">Descriptions of the available commands</A>
31464 Look <A HREF="h_edit_nav_cmds">here</A>
31465 to see the available Editing and Navigation commands.
31467 &lt;End of help on this topic&gt;
31468 </BODY>
31469 </HTML>
31470 ====== h_config_index_color =====
31471 <HTML>
31472 <HEAD>
31473 <TITLE>OPTION: Index Colors</TITLE>
31474 </HEAD>
31475 <BODY>
31476 <H1>OPTION: Index Colors</H1>
31478 You may add color to the single character symbols that give the status
31479 of each message in the MESSAGE INDEX.
31480 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
31481 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
31482 screen depending on whether the message is addressed to you, and whether
31483 the message is marked Important, is Deleted, is Answered, or is New.
31484 The color for each of those characters may be specified by setting the
31485 &quot;Index-to-me&quot; Symbol Color,
31486 the &quot;Index-important&quot; Symbol Color,
31487 the &quot;Index-deleted&quot; Symbol Color,
31488 the &quot;Index-answered&quot; Symbol Color,
31489 and the &quot;Index-new&quot; Symbol Color.
31490 There are also two other symbol colors called &quot;Index-recent&quot;
31491 and &quot;Index-unseen&quot;.
31492 These two colors will only be used if you have configured your
31493 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31494 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
31496 The default colors for these symbols are:
31497 <TABLE>
31498 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
31499 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
31500 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31501 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
31502 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
31503 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31504 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
31505 </TABLE>
31507 Besides coloring the message status symbols, you may also color the
31508 entire index line.
31509 This is done by using the
31510 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
31511 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
31512 When the entire line is colored that color will be &quot;behind&quot; the
31513 status symbol colors talked about in the paragraph above.
31515 You may also color
31516 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
31517 in the index using the
31518 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
31519 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
31520 the Subject using
31521 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
31522 the From field using
31523 <A HREF="h_config_index_from_color">Index From Color</A>;
31524 and the
31525 <A HREF="h_config_index_opening_color">Index Opening</A> text.
31527 <A HREF="h_color_setup">Descriptions of the available commands</A>
31529 Look <A HREF="h_edit_nav_cmds">here</A>
31530 to see the available Editing and Navigation commands.
31532 &lt;End of help on this topic&gt;
31533 </BODY>
31534 </HTML>
31535 ====== h_config_metamsg_color =====
31536 <HTML>
31537 <HEAD>
31538 <TITLE>OPTION: Meta-Message Color</TITLE>
31539 </HEAD>
31540 <BODY>
31541 <H1>OPTION: Meta-Message Color</H1>
31543 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
31544 that aren't part of the message itself.
31545 For example, an attachment that isn't shown might produce a meta
31546 message something like:
31548 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
31550 If you set the
31551 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
31552 option you might see
31554 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
31556 Warnings about suspicious looking URLs in HTML will also be colored
31557 with this color.
31559 The foreground color is the color of the actual character and the
31560 background color is the color of the area behind the character.
31561 By default, the Meta-Message Color is black characters on a yellow background.
31563 <A HREF="h_color_setup">Descriptions of the available commands</A>
31565 Look <A HREF="h_edit_nav_cmds">here</A>
31566 to see the available Editing and Navigation commands.
31568 &lt;End of help on this topic&gt;
31569 </BODY>
31570 </HTML>
31571 ====== h_config_keylabel_color =====
31572 <HTML>
31573 <HEAD>
31574 <TITLE>OPTION: KeyLabel Color</TITLE>
31575 </HEAD>
31576 <BODY>
31577 <H1>OPTION: KeyLabel Color</H1>
31579 Sets the color Alpine uses for the labels of the keys in the two-line
31580 menu at the bottom of the screen.
31581 For example, some of the screens have a &quot;P PrevMsg&quot; command.
31582 This option sets the color used when displaying &quot;PrevMsg&quot;.
31583 The foreground color is the color of the actual character and the
31584 background color is the color of the area behind the character.
31585 By default, the KeyLabel Color is the same as the Normal Color.
31587 WARNING: Some terminal emulators have the property that the screen will scroll
31588 down one line whenever a character is written to the character cell in the
31589 lower right corner of the screen.
31590 Alpine can usually avoid writing a character in that corner of the screen.
31591 However, if you have defined a KeyLabel Color then Alpine does have to write
31592 a character in that cell in order to color the cell correctly.
31593 If you find that your display sometimes scrolls up a line this could be
31594 the problem.
31595 The most obvious symptom is probably that the titlebar at the top of the
31596 screen scrolls off the screen.
31597 Try setting KeyLabel Color to Default to see if that fixes the problem.
31599 <A HREF="h_color_setup">Descriptions of the available commands</A>
31601 Look <A HREF="h_edit_nav_cmds">here</A>
31602 to see the available Editing and Navigation commands.
31604 &lt;End of help on this topic&gt;
31605 </BODY>
31606 </HTML>
31607 ====== h_config_keyname_color =====
31608 <HTML>
31609 <HEAD>
31610 <TITLE>OPTION: KeyName Color</TITLE>
31611 </HEAD>
31612 <BODY>
31613 <H1>OPTION: KeyName Color</H1>
31615 Sets the color Alpine uses for the names of the keys in the two-line
31616 menu at the bottom of the screen.
31617 For example, some of the screens have a &quot;P PrevMsg&quot; command.
31618 This option sets the color used when displaying the &quot;P&quot;.
31619 The foreground color is the color of the actual character and the
31620 background color is the color of the area behind the character.
31621 By default, the KeyName Color is the same as the Reverse Color.
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_slctbl_color =====
31632 <HTML>
31633 <HEAD>
31634 <TITLE>OPTION: Selectable Item Color</TITLE>
31635 </HEAD>
31636 <BODY>
31637 <H1>OPTION: Selectable Item Color</H1>
31639 Sets the color Alpine uses for selectable items, such as URLs.
31640 The foreground color is the color of the actual character and the
31641 background color is the color of the area behind the character.
31642 By default, the Selectable Item Color is the same as the Normal Color,
31643 except that it is bold.
31645 <A HREF="h_color_setup">Descriptions of the available commands</A>
31647 Look <A HREF="h_edit_nav_cmds">here</A>
31648 to see the available Editing and Navigation commands.
31650 &lt;End of help on this topic&gt;
31651 </BODY>
31652 </HTML>
31653 ====== h_config_quote_color =====
31654 <HTML>
31655 <HEAD>
31656 <TITLE>OPTION: Quote Colors</TITLE>
31657 </HEAD>
31658 <BODY>
31659 <H1>OPTION: Quote Colors</H1>
31661 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
31662 screen.
31663 If a line begins with a &gt; character (or space followed by &gt;)
31664 it is considered a quote.
31665 That line will be given the Quote1 Color (first level quote).
31666 If there is a second level of quoting then the Quote2 Color will be used.
31667 Alpine considers there to be a second level of quoting if that first &gt; is
31668 followed by another &gt; (or space followed by &gt;).
31669 If there are characters other than whitespace and &gt; signs, then it isn't
31670 considered another level of quoting.
31671 Similarly, if there is a third level of quoting the Quote3 Color will be
31672 used.
31673 If there are more levels after that the Quote Colors are re-used.
31674 If you define all three colors then it would repeat like Color1, Color2, Color3,
31675 Color1, Color2, Color3, ...
31676 If you only define the first two it would be
31677 Color1, Color2, Color1, Color2, ...
31678 If you define only the Quote1 Color, then the entire quote would be that
31679 color regardless of the quoting levels.
31680 By default, the Quote1 Color is black characters on a greenish-blue background;
31681 the Quote2 Color is black characters on a dull yellow background; and
31682 the Quote3 Color is black characters on a green background.
31684 <A HREF="h_color_setup">Descriptions of the available commands</A>
31686 Look <A HREF="h_edit_nav_cmds">here</A>
31687 to see the available Editing and Navigation commands.
31689 &lt;End of help on this topic&gt;
31690 </BODY>
31691 </HTML>
31692 ====== h_config_folder_color =====
31693 <HTML>
31694 <HEAD>
31695 <TITLE>OPTION: Folder Color</TITLE>
31696 </HEAD>
31697 <BODY>
31698 <H1>OPTION: Folder Color</H1>
31700 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
31701 screen. By default, the Folder Color is the normal text color.
31704 If you set a color for this feature, other than the normal color
31705 (the default), or a color for
31706 <A HREF="h_config_directory_color">Directory Color</A>, then directories
31707 will be colored according to the color specified in the
31708 <A HREF="h_config_directory_color">Directory Color</A> option. In this
31709 case, the color will be the only indication that the colored name
31710 refers to a directory. The normal behavior is that Alpine
31711 indicates that a name refers to a directory by appending a
31712 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
31713 the folder.
31716 If a folder is a directory, then the folder name will be painted
31717 according to the color defined by this variable, and a separator
31718 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
31719 to the name. That
31720 indicator will be painted according to the color defined in the
31721 <A HREF="h_config_directory_color">Directory Color</A> option.
31724 &lt;End of help on this topic&gt;
31725 </BODY>
31726 </HTML>
31727 ====== h_config_directory_color =====
31728 <HTML>
31729 <HEAD>
31730 <TITLE>OPTION: Directory Color</TITLE>
31731 </HEAD>
31732 <BODY>
31733 <H1>OPTION: Directory Color</H1>
31735 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
31736 screen. By default, the Folder Color is the normal text color.
31738 If you set a color for this feature, other than the normal color
31739 (the default), or a color for
31740 <A HREF="h_config_folder_color">Folder Color</A>, then folders
31741 will be colored according to the color specified in the
31742 <A HREF="h_config_folder_color">Folder Color</A> option. In this
31743 case, the color will be the only indication that the colored name
31744 refers to a directory. The normal behavior is that Alpine
31745 indicates that a name refers to a directory by appending a
31746 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
31747 the folder.
31749 If a folder is a directory, then the folder name will be painted
31750 according to the color defined by the option
31751 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
31752 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
31753 after the name. That
31754 indicator will be painted according to the color defined in this
31755 option.
31757 &lt;End of help on this topic&gt;
31758 </BODY>
31759 </HTML>
31760 ====== h_config_folder_list_color =====
31761 <HTML>
31762 <HEAD>
31763 <TITLE>OPTION: Folder-List Color</TITLE>
31764 </HEAD>
31765 <BODY>
31766 <H1>OPTION: Folder-List Color</H1>
31768 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
31769 screen. By default, the Folder-List Color is the normal text color.
31771 This text refers to the informative text that Alpine displays so you
31772 can recognize each collection. The color of the content of each collection
31773 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
31774 and <A HREF="h_config_directory_color">Directory Color</A>.
31776 Unlike the options
31777 <A HREF="h_config_folder_color">Folder Color</A>
31778 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
31779 this option does not affect the way that Alpine reports folders,
31780 directories and folders that are directories.
31782 &lt;End of help on this topic&gt;
31783 </BODY>
31784 </HTML>
31785 ====== h_config_incunseen_color =====
31786 <HTML>
31787 <HEAD>
31788 <TITLE>OPTION: Incoming Unseen Color</TITLE>
31789 </HEAD>
31790 <BODY>
31791 <H1>OPTION: Incoming Unseen Color</H1>
31793 If the option
31794 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
31795 is turned on it is possible to highlight the folders that contain
31796 unseen messages by coloring them with this color.
31797 By default, this is the same as the Normal Color and no highlighting is done.
31799 Usually the &quot;current&quot; folder (the folder the cursor is on)
31800 is highlighted using reverse video.
31801 If the current folder is colored because it contains unseen messages then
31802 the color used to show that it is also the current folder is controlled
31803 by the
31804 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
31805 feature at the top of the SETUP COLOR screen.
31807 <A HREF="h_color_setup">Descriptions of the available commands</A>
31809 Look <A HREF="h_edit_nav_cmds">here</A>
31810 to see the available Editing and Navigation commands.
31812 &lt;End of help on this topic&gt;
31813 </BODY>
31814 </HTML>
31815 ====== h_config_signature_color =====
31816 <HTML>
31817 <HEAD>
31818 <TITLE>OPTION: Signature Color</TITLE>
31819 </HEAD>
31820 <BODY>
31821 <H1>OPTION: Signature Color</H1>
31823 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
31824 screen. According to USENET conventions, the signature is defined as the
31825 paragraph following the &quot;sigdashes&quot;, that is, the special line
31826 consisting of the three characters
31827 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
31828 empty line right after the sigdashes to be considered as part of the
31829 signature.
31830 By default, the Signature Color is blue characters on a white background.
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_prompt_color =====
31841 <HTML>
31842 <HEAD>
31843 <TITLE>OPTION: Prompt Color</TITLE>
31844 </HEAD>
31845 <BODY>
31846 <H1>OPTION: Prompt Color</H1>
31848 Sets the color Alpine uses for confirmation prompts and questions that
31849 appear in the status line near the bottom of the 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, the Prompt Color is the same as the Reverse Color.
31854 <A HREF="h_color_setup">Descriptions of the available commands</A>
31856 Look <A HREF="h_edit_nav_cmds">here</A>
31857 to see the available Editing and Navigation commands.
31859 &lt;End of help on this topic&gt;
31860 </BODY>
31861 </HTML>
31862 ====== h_config_header_general_color =====
31863 <HTML>
31864 <HEAD>
31865 <TITLE>OPTION: Header General Color</TITLE>
31866 </HEAD>
31867 <BODY>
31868 <H1>OPTION: Header General Color</H1>
31870 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
31871 screen.
31872 The foreground color is the color of the actual character and the
31873 background color is the color of the area behind the character.
31874 By default, this is the same as the Normal Color.
31876 It is also possible to set the colors for specific header fields, for
31877 example the Subject, using
31878 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
31879 If both a Header General Color and a specific Viewer Header Color are set
31880 the specific color will override the general color, as you would expect.
31882 <A HREF="h_color_setup">Descriptions of the available commands</A>
31884 Look <A HREF="h_edit_nav_cmds">here</A>
31885 to see the available Editing and Navigation commands.
31887 &lt;End of help on this topic&gt;
31888 </BODY>
31889 </HTML>
31890 ====== h_config_incol =====
31891 <HTML>
31892 <HEAD>
31893 <TITLE>Index Line Color</TITLE>
31894 </HEAD>
31895 <BODY>
31896 <H1>Index Line Color</H1>
31898 This option is used to set the color of a line in the index when the
31899 message for that line matches the Pattern.
31900 This colors the whole index line, except possibly the status letters,
31901 which may be colored separately using the
31902 <A HREF="h_color_setup">Setup Kolor</A> screen.
31903 The foreground color is the color of the actual characters and the
31904 background color is the color of the area behind the characters.
31906 <A HREF="h_color_setup">Descriptions of the available commands</A>
31908 Look <A HREF="h_edit_nav_cmds">here</A>
31909 to see the available Editing and Navigation commands.
31911 &lt;End of help on this topic&gt;
31912 </BODY>
31913 </HTML>
31914 ====== h_config_usetransparent_color =====
31915 <HTML>
31916 <HEAD>
31917 <TITLE>OPTION: Use Transparent Color</TITLE>
31918 </HEAD>
31919 <BODY>
31920 <H1>OPTION: Use Transparent Color</H1>
31922 This is a special color supported by some terminal emulators.
31923 It is intended to result in the default foreground or background color
31924 from the terminal emulator.
31925 This is the color the terminal was displaying characters in before you started Alpine.
31926 The reason it is called Transparent is because you could set the foreground color
31927 to some specific color, like Red, and then set the background color to the
31928 Transparent Color. If it works as expected, the background color from the terminal
31929 window in which Alpine is running will show through but with the Red characters
31930 in the foreground.
31932 <A HREF="h_color_setup">Descriptions of the available commands</A>
31934 Look <A HREF="h_edit_nav_cmds">here</A>
31935 to see the available Editing and Navigation commands.
31937 &lt;End of help on this topic&gt;
31938 </BODY>
31939 </HTML>
31940 ====== h_config_usenormal_color =====
31941 <HTML>
31942 <HEAD>
31943 <TITLE>OPTION: Use Normal Color</TITLE>
31944 </HEAD>
31945 <BODY>
31946 <H1>OPTION: Use Normal Color</H1>
31948 When you use this color value, the actual color used will be the same
31949 as the corresponding Normal Color.
31950 For example if your Normal Color is black on white and you set both
31951 the foreground and background colors here to use the Normal Color, you'll
31952 get black on white. If you later change the Normal Color to red on blue
31953 this color will also change to red on blue.
31955 <A HREF="h_color_setup">Descriptions of the available commands</A>
31957 Look <A HREF="h_edit_nav_cmds">here</A>
31958 to see the available Editing and Navigation commands.
31960 &lt;End of help on this topic&gt;
31961 </BODY>
31962 </HTML>
31963 ====== h_config_usenone_color =====
31964 <HTML>
31965 <HEAD>
31966 <TITLE>OPTION: Use None Color</TITLE>
31967 </HEAD>
31968 <BODY>
31969 <H1>OPTION: Use None Color</H1>
31971 This is a special color that simply means to leave the color alone.
31972 It is useful for Index symbols and for Keyword Colors used in the Subject
31973 field of an index line.
31974 The most likely use is to set an explicit foreground color and then set
31975 the background color to the None Color.
31976 That will cause the symbol or keyword to be drawn in the foreground color
31977 with a background equal to whatever color the rest of the index line is already
31978 drawn in.
31979 You will see no visible effect unless you have assigned Indexcolor Rules to
31980 color index lines or you have set an actual color for the Reverse Color.
31982 <A HREF="h_color_setup">Descriptions of the available commands</A>
31984 Look <A HREF="h_edit_nav_cmds">here</A>
31985 to see the available Editing and Navigation commands.
31987 &lt;End of help on this topic&gt;
31988 </BODY>
31989 </HTML>
31990 ====== h_config_dflt_color =====
31991 <HTML>
31992 <HEAD>
31993 <TITLE>OPTION: Default Color</TITLE>
31994 </HEAD>
31995 <BODY>
31996 <H1>OPTION: Default Color</H1>
31998 Setting default will cause the color to be the default color.
31999 Unsetting default is normally done by choosing a color, but in some cases
32000 you may want to declare the current default color to be your non-default
32001 choice.
32002 For example, the default Keyname Color is the same as the Reverse Color.
32003 Whenever the Reverse Color changes the Keyname Color will also change, unless
32004 you've changed it or unset the default box.
32006 <A HREF="h_color_setup">Descriptions of the available commands</A>
32008 Look <A HREF="h_edit_nav_cmds">here</A>
32009 to see the available Editing and Navigation commands.
32011 &lt;End of help on this topic&gt;
32012 </BODY>
32013 </HTML>
32014 ====== h_config_bold_slctbl =====
32015 <HTML>
32016 <HEAD>
32017 <TITLE>OPTION: Bold</TITLE>
32018 </HEAD>
32019 <BODY>
32020 <H1>OPTION: Bold</H1>
32022 The color for this particular section may have the Bold attribute turned
32023 on or off.
32024 Setting bold will cause the characters to be bold.
32026 <A HREF="h_color_setup">Descriptions of the available commands</A>
32028 Look <A HREF="h_edit_nav_cmds">here</A>
32029 to see the available Editing and Navigation commands.
32031 &lt;End of help on this topic&gt;
32032 </BODY>
32033 </HTML>
32034 ====== h_config_kw_color =====
32035 <HTML>
32036 <HEAD>
32037 <TITLE>OPTION: Keyword Colors</TITLE>
32038 </HEAD>
32039 <BODY>
32040 <H1>OPTION: Keyword Colors</H1>
32042 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32043 Keywords are displayed as part of the Subject by default.
32044 They are also displayed as part of the Subject if the tokens
32045 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32046 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32047 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32048 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32050 For example, you might have set up a Keyword
32051 &quot;Work&quot; using the
32052 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32053 You could cause that Keyword to show up as a special color
32054 by setting up the Keyword Color using this option, and then including it
32055 in the MESSAGE INDEX screen using one of the tokens listed above in the
32056 <!--#echo var="VAR_index-format"-->.
32058 <A HREF="h_color_setup">Descriptions of the available commands</A>
32060 Look <A HREF="h_edit_nav_cmds">here</A>
32061 to see the available Editing and Navigation commands.
32063 &lt;End of help on this topic&gt;
32064 </BODY>
32065 </HTML>
32066 ====== h_config_customhdr_color =====
32067 <HTML>
32068 <HEAD>
32069 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32070 </HEAD>
32071 <BODY>
32072 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32074 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32075 For example, you may set the color of the Subject header or the From header.
32076 The foreground color is the color of the actual character and the
32077 background color is the color of the area behind the character.
32079 In addition to setting the colors for particular headers (like the Subject)
32080 you may also set a color to be used for all headers unless overridden by a
32081 more specific Viewer Header Color.
32082 To do this use the
32083 <A HREF="h_config_header_general_color">Header General Color</A>.
32085 For Header Colors,
32086 there is an additional line on the
32087 screen labeled &quot;Pattern to match&quot;.
32088 If you leave that blank, then the whole field for that header will
32089 be colored.
32090 However, if you give a pattern to match, the coloring will only take place
32091 if there is a match for that pattern in the value of the field.
32092 For example, if you are working on a color for the Subject header and
32093 you fill in a pattern of &quot;important&quot;, then only Subjects that
32094 contain the word &quot;important&quot; will be colored.
32096 If the pattern you enter is a comma-separated list of patterns, then coloring
32097 happens if any of those patterns matches.
32099 <A HREF="h_color_setup">Descriptions of the available commands</A>
32101 Look <A HREF="h_edit_nav_cmds">here</A>
32102 to see the available Editing and Navigation commands.
32104 &lt;End of help on this topic&gt;
32105 </BODY>
32106 </HTML>
32107 ====== h_config_indextoken_color =====
32108 <HTML>
32109 <HEAD>
32110 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
32111 </HEAD>
32112 <BODY>
32113 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
32115 This option allows you to set up the color in which any token, not specified by the
32116 previous options, will be colored in the MESSAGE INDEX screen. 
32118 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
32119 a token that can be used in the index format. 
32120 The list of available tokens is <A HREF="h_index_tokens">here</A>.
32122 If you fail to enter a valid token your entry will be ignored, and you will be asked to
32123 enter a new one. Once you have entered a valid token, a line will be added to the
32124 configuration screen that you can use to set up the colors in which that token will
32125 be painted. This is done in the same way that you configure colors for other
32126 variables.
32128 <A HREF="h_color_setup">Descriptions of the available commands</A>
32130 Look <A HREF="h_edit_nav_cmds">here</A>
32131 to see the available Editing and Navigation commands.
32133 &lt;End of help on this topic&gt;
32134 </BODY>
32135 </HTML>
32136 ====== h_config_customhdr_pattern =====
32137 <HTML>
32138 <HEAD>
32139 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
32140 </HEAD>
32141 <BODY>
32142 <H1>OPTION: Viewer Header Color Pattern</H1>
32144 If you leave this blank, then the whole field for the header will
32145 be colored.
32146 If you give a pattern to match, the coloring will only take place
32147 if there is a match for that pattern in the value of the field.
32148 For example, if you are working on a color for the Subject header and
32149 you fill in a pattern of &quot;important&quot;, then only Subjects that
32150 contain the word &quot;important&quot; will be colored.
32152 For address headers (like From and To) and for the Newsgroups header,
32153 a pattern match will cause only the matched addresses or newsgroups to be
32154 colored.
32155 If there is no pattern to match, then all of the addresses or newsgroups
32156 in the relevant header will be colored.
32158 The matching pattern may be a comma-separated list of patterns to match
32159 instead of a single pattern.
32160 For example, you could use the pattern &quot;important,urgent&quot; which would
32161 cause a match if either the word &quot;important&quot; or the word
32162 &quot;urgent&quot; appeared in the value of the header.
32163 You could list several comma-separated email addresses in the Header
32164 From Color pattern so that those addresses will be colored when any of
32165 them appear in the From header.
32167 To add a new matching pattern or change the existing pattern use the 
32168 <!--chtml if pinemode="function_key"-->
32169 &quot;F4&quot;
32170 <!--chtml else-->
32171 &quot;C&quot;
32172 <!--chtml endif-->
32173 &quot;Change&quot; command that is available when the &quot;Pattern to
32174 match&quot; line is highlighted.
32176 <!--chtml if pinemode="function_key"-->
32177 &quot;F10&quot;
32178 <!--chtml else-->
32179 &quot;D&quot;
32180 <!--chtml endif-->
32181 &quot;Delete&quot; command may be used to quickly remove all patterns
32182 for a particular header.
32184 &lt;End of help on this topic&gt;
32185 </BODY>
32186 </HTML>
32187 ====== h_color_setup =====
32188 <HTML>
32189 <HEAD>
32190 <TITLE>SETUP COLOR COMMANDS</TITLE>
32191 </HEAD>
32192 <BODY>
32193 <H1>SETUP COLOR COMMANDS</H1>
32194 <!--chtml if pinemode="function_key"-->
32195 <PRE>
32196 Available Commands -- Group 1
32197 -------------------------------
32198 F1  Display this help text
32199 F2  Show other available commands
32200 F3  Exit to MAIN MENU
32201 F4  Select the highlighted foreground or background color
32202 F5  Move to previous line
32203 F6  Move to next line
32204 F7  Previous page
32205 F8  Next page
32206 F9  Add a config section for a header field
32207 F10 Restore all default colors (for all sections)
32208 F11 Print color configuration screen
32209 F12 Whereis (search for word)
32211 Available Commands -- Group 2
32212 -------------------------------
32213 F1  Display this help text
32214 F2  Show other available commands
32215 F5  Delete config section for highlighted header field
32216 F6  Shuffle the order of Header Color sections
32217 </PRE>
32218 <!--chtml else-->
32219 <PRE>
32220 General commands
32221 -------------------------------------------------
32222  ?  Display this help text     E  Exit back to MAIN MENU
32223  P  Previous Line              N  Next Line
32224  -  Previous page             Spc (space bar) Next page
32225  W  WhereIs (search for word)  %  Print color configuration screen
32227 Color Setup Commands
32228 ------------------------------------------------
32229  *  Select the highlighted foreground or background color
32230  A  Add a config section for a header field
32231  D  Delete config section for highlighted header field
32232  R  Restore all default colors (for all sections)
32233  $  Shuffle the order of Header Color sections
32234 </PRE>
32235 <!--chtml endif-->
32237 <H2>Description of the Setup Color Screen</H2>
32239 From this screen you may turn on color and set the colors of
32240 various parts of the Alpine display.
32241 For help on turning on color move your cursor into the Color Style section
32242 at the top of the Setup Color screen and ask for help.
32245 There are several sections in the Setup Color Screen.
32246 At the top are some settings that handle the style of color used
32247 with your terminal emulator (UNIX only), and some settings that
32248 control how the current indexline and the titlebar are colored.
32249 After that comes a long section called GENERAL COLORS that allows
32250 you to set the color of many elements in the Alpine screens.
32251 For example, the color of the titlebar, status messages,
32252 selectable links, quotes and signatures in messages, and so on.
32253 After that is a section called INDEX COLORS that allows you to
32254 set the colors of various pieces of the displayed index lines in
32255 the MESSAGE INDEX screen.
32256 The next section is HEADER COLORS. This is for coloring headers of
32257 messages in the MESSAGE TEXT screen in just about any way you would like.
32258 Finally, the KEYWORD COLORS section allows you to highlight
32259 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32260 in the MESSAGE INDEX screen.
32263 To change a color, highlight the color you want to change (for example,
32264 the Status Color) by moving
32265 the cursor into it.
32266 You may want to read the help text for the color to see a brief desription
32267 of what you are coloring.
32268 Then press &quot;C&quot; for Change to set the color to something new.
32269 That will put you into a screen with two columns of colors, one for
32270 the foreground color and one for the background color.
32271 The foreground color is just the color you want the actual characters
32272 to be and the background color is the color of the rest of the rectangle
32273 behind the characters.
32274 Select the foreground and background colors desired by using the Next and
32275 Prev keys to highlight the color, and the * command to select it.
32277 To set a color to its default value, set the X in the Default line at
32278 the bottom of the list of colors.
32281 The HEADER COLORS section is a little bit different from the others.
32282 Besides coloring the specific fields that Alpine knows about, you may also
32283 color specific header fields when viewing a message in the MESSAGE TEXT
32284 screen.
32285 For example, you may color the Subject header a particular color.
32286 There are a few commands for use with headers.
32287 The &quot;AddHeader&quot; command adds a section to the color
32288 configuration screen that allows you to set the color for that header.
32289 You'll be asked for the name of the header field you want to color.
32290 If you wanted to color the Subject, you would answer
32291 with the word &quot;subject&quot;.
32292 Once you've added a header field, the color setting works just like the
32293 other color fields, except that there is an additional line on the
32294 configuration screen labeled &quot;Pattern to match&quot;.
32295 If you leave that blank, then the whole field for that header will always
32296 be colored.
32297 However, if you give a pattern to match, the coloring will only take place
32298 if there is a match for that pattern in the value of the field.
32299 For example, if you are working on a color for the Subject header and
32300 you fill in a pattern of &quot;important&quot;, then only Subjects that
32301 contain the word &quot;important&quot; will be colored.
32303 The &quot;DeleteHdr&quot; command removes a header section from the
32304 configuration altogether.
32305 The &quot;Shuffle&quot; command changes the order of header sections.
32306 This is only necessary if you use header sections with pattern fields.
32307 For example, if you have two Subject sections, one with one pattern and
32308 another with another pattern, and the subject for a particular message
32309 happens to match both, then the color from the first match is used.
32312 The command &quot;RestoreDefs&quot; will restore all of the default colors.
32313 Each section will change to the default value used for that section when
32314 color is first enabled.
32315 When you restore all default colors the color settings for the Header Colors
32316 will be unset (since that's the default), but the header fields you've
32317 added will remain so that you may easily reset them.
32318 In order to get rid of them completely you'd have to use
32319 the &quot;DeleteHdr&quot; command.
32322 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
32323 may be set with matching rules and that is configured separately from
32324 the rest of the color settings described here.
32325 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
32326 instead of in the Setup/Kolor section.
32328 <P><UL>
32329 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32330 </UL><P>
32331 &lt;End of help on this topic&gt;
32332 </BODY>
32333 </HTML>
32334 ====== h_config_news_uses_recent ======
32335 <HTML>
32336 <HEAD>
32337 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
32338 </HEAD>
32339 <BODY>
32340 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
32342 This feature causes certain messages to be marked as "New" in the
32343 MESSAGE INDEX of newsgroups.
32344 This feature is set by default.
32348 When opening a newsgroup, Alpine will consult your "newsrc" file and
32349 determine the last message you have previously disposed of via the "D"
32350 key.  If this feature is set, any subsequent messages will be shown in the
32351 Index with an "N", and the first of these messages will be highlighted.
32352 Although this is only an approximation of true "New" or "Unseen"
32353 status, it provides a useful cue to distinguish more-or-less recent
32354 messages from those you have seen previously, but are not yet ready to
32355 mark deleted.
32359 Background: your "newsrc" file (used to store message status information
32360 for newsgroups) is only capable of storing a single flag, and Alpine uses
32361 this to record whether or not you are "done with" a message, as
32362 indicated by marking the message as "Deleted".  Unfortunately, this
32363 means that Alpine has no way to record exactly which messages you have
32364 previously seen, so it normally does not show the "N" status flag for
32365 any messages in a newsgroup. This feature enables a starting
32366 *approximation* of seen/unseen status that may be useful.
32368 &lt;End of help on this topic&gt;
32369 </BODY>
32370 </HTML>
32371 ====== h_config_expose_hidden_config =====
32372 <HTML>
32373 <HEAD>
32374 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
32375 </HEAD>
32376 <BODY>
32377 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
32379 If set, this causes configuration options and features that are normally
32380 hidden from view to be editable in the Setup/Config screen.
32383 The purpose of this feature is to allow you to change configuration
32384 features and variables that are normally hidden.
32385 This is particularly useful if you are using a remote configuration,
32386 where it is difficult to edit the contents manually, but it may also be used
32387 on a local pinerc configuration file.
32389 If set, several configuration variables and features that are normally
32390 hidden from view will show up in the Setup/Configuration screen.
32391 They will be at the bottom of the configuration screen.
32392 You can find them by searching for the words &quot;hidden configuration&quot;.
32395 Note that this is an advanced feature that should be used with care.
32396 The reason that this part of the configuration is normally hidden is because
32397 there is a significant potential for causing problems if you change these
32398 variables.
32399 If something breaks after a change try changing it back to see if that is
32400 what is causing the problem.
32401 There are also some variables that are normally hidden because they are
32402 manipulated through Alpine in other ways.
32403 For example, colors are normally set using the Setup/Kolors screen and
32404 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
32405 the Setup/AddressBooks screen, so there is little reason to edit these directly.
32406 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
32407 the Add, Delete, and Rename commands in the FOLDER LIST screen,
32408 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
32409 internally by Alpine and not set directly by the user.
32411 <UL>   
32412 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32413 </UL><P>
32414 &lt;End of help on this topic&gt;
32415 </BODY>
32416 </HTML>
32417 ====== h_config_disable_signature_edit =====
32418 <HTML>
32419 <HEAD>
32420 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
32421 </HEAD>
32422 <BODY>
32423 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
32425 If set, this disables the editing of signature files from within
32426 the Setup/Config screen.
32428 <UL>   
32429 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32430 </UL><P>
32431 &lt;End of help on this topic&gt;
32432 </BODY>
32433 </HTML>
32434 ====== h_config_disable_roles_templateedit =====
32435 <HTML>
32436 <HEAD>
32437 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
32438 </HEAD>
32439 <BODY>
32440 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
32442 If set, this disables the editing of template files within the
32443 Role setup screen.
32445 <UL>   
32446 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32447 </UL><P>
32448 &lt;End of help on this topic&gt;
32449 </BODY>
32450 </HTML>
32451 ====== h_config_disable_roles_sigedit =====
32452 <HTML>
32453 <HEAD>
32454 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
32455 </HEAD>
32456 <BODY>
32457 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
32459 If set, this disables the editing of signature files within the
32460 Role setup screen.
32462 <UL>   
32463 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32464 </UL><P>
32465 &lt;End of help on this topic&gt;
32466 </BODY>
32467 </HTML>
32468 ====== h_config_disable_roles_setup =====
32469 <HTML>
32470 <HEAD>
32471 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
32472 </HEAD>
32473 <BODY>
32474 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
32476 If set, this disables the Setup/Rules/Roles command.
32478 <UL>   
32479 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32480 </UL><P>
32481 &lt;End of help on this topic&gt;
32482 </BODY>
32483 </HTML>
32484 ====== h_config_disable_pipes_in_templates =====
32485 <HTML>
32486 <HEAD>
32487 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
32488 </HEAD>
32489 <BODY>
32490 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
32492 By default, if a template file name is followed by a vertical bar (|) then
32493 that causes the file to be executed to produce the text for the template.
32494 If this feature is set, then this is not allowed.
32496 <UL>   
32497 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32498 </UL><P>
32499 &lt;End of help on this topic&gt;
32500 </BODY>
32501 </HTML>
32502 ====== h_config_disable_pipes_in_sigs =====
32503 <HTML>
32504 <HEAD>
32505 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
32506 </HEAD>
32507 <BODY>
32508 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
32510 By default, if a signature file name is followed by a vertical bar (|) then
32511 that causes the file to be executed to produce the text for the signature.
32512 If this feature is set, then this is not allowed.
32514 <UL>   
32515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32516 </UL><P>
32517 &lt;End of help on this topic&gt;
32518 </BODY>
32519 </HTML>
32520 ====== h_config_disable_password_cmd =====
32521 <HTML>
32522 <HEAD>
32523 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
32524 </HEAD>
32525 <BODY>
32526 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
32528 If set, then the Setup/Newpassword command is disabled.
32530 <UL>   
32531 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32532 </UL><P>
32533 &lt;End of help on this topic&gt;
32534 </BODY>
32535 </HTML>
32536 ====== h_config_disable_password_caching =====
32537 <HTML>
32538 <HEAD>
32539 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
32540 </HEAD>
32541 <BODY>
32542 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
32544 Normally, loginname/password combinations are cached in Alpine so that
32545 you do not have to enter the same password more than once in a session.
32546 A disadvantage to this approach is that the password must be stored in
32547 the memory image of the running Alpine in order that it can be re-used.
32548 In the event that Alpine crashes and produces a core dump, and that core
32549 dump is readable by others, the loginname and password could be read
32550 from the core dump.
32552 If this feature is set, then the passwords will not be cached and you
32553 will have to retype the password whenever Alpine needs it.
32554 Even with this feature set there is still some chance that the core
32555 file will contain a password, so care should be taken to make the
32556 core files unreadable.
32558 NOTE: If PASSFILE caching is enabled, this does not disable it.
32559 That is a separate and independent feature.
32560 <UL>   
32561 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32562 </UL><P>
32563 &lt;End of help on this topic&gt;
32564 </BODY>
32565 </HTML>
32566 ====== h_config_disable_kb_lock =====
32567 <HTML>
32568 <HEAD>
32569 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
32570 </HEAD>
32571 <BODY>
32572 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
32574 If set, then the Keyboard Lock command is removed from the MAIN MENU.
32576 <UL>   
32577 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32578 </UL><P>
32579 &lt;End of help on this topic&gt;
32580 </BODY>
32581 </HTML>
32582 ====== h_config_disable_config_cmd =====
32583 <HTML>
32584 <HEAD>
32585 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
32586 </HEAD>
32587 <BODY>
32588 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
32590 If set, then the Setup/Config screen is disabled.
32592 <UL>   
32593 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32594 </UL><P>
32595 &lt;End of help on this topic&gt;
32596 </BODY>
32597 </HTML>
32598 ====== h_config_allow_chg_from =====
32599 <HTML>
32600 <HEAD>
32601 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
32602 </HEAD>
32603 <BODY>
32604 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
32606 This feature affects Alpine's handling of the &quot;From:&quot; header field
32607 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
32608 option.
32610 If this feature is set then the From line can be changed just like
32611 all the other header fields that can be changed.
32612 This feature defaults to <EM>ON</EM>.
32614 Even with this feature turned ON (the default) you will not be able 
32615 to change the From header unless you add it to your list of
32616 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
32617 You may also want to change the
32618 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
32619 if you want the From header to always show up in the composer without
32620 having to type the Rich Headers command first.
32622 Note that many sites restrict the use of this feature in order to
32623 reduce the chance of falsified addresses and misdirected mail.
32624 If you want to change the value of what gets included in the From header
32625 in messages you send
32626 look <A HREF="h_config_change_your_from">here</A> for a description.
32628 <UL>   
32629 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32630 </UL><P>
32631 &lt;End of help on this topic&gt;
32632 </BODY>
32633 </HTML>
32634 ====== h_config_disable_collate =====
32635 <HTML>
32636 <HEAD>
32637 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
32638 </HEAD>
32639 <BODY>
32640 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
32642 This is a hard to understand feature that should only be used in rare cases.
32643 Normally, the C function call
32645 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
32647 is used by Alpine.
32648 If you want to try turning it off,
32649 setting this feature will turn it off.
32650 This part of the locale has to do with the sort order
32651 of characters in your locale.
32653 <UL>   
32654 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32655 </UL><P>
32656 &lt;End of help on this topic&gt;
32657 </BODY>
32658 </HTML>
32659 ====== h_config_quell_attach_extra_prompt =====
32660 <HTML>
32661 <HEAD>
32662 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
32663 </HEAD>
32664 <BODY>
32665 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
32667 By default, when you attempt to view an attachment externally
32668 from the &quot;Attachment View&quot; screen, you are asked if you
32669 really want to view the selected attachment.
32672 If this feature is set, you will <B>not</B> be prompted to confirm
32673 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
32674 prompt. This feature was added for those wanting to preserve that
32675 behavior (along with 
32676 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
32679 <UL>   
32680 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32681 </UL><P>
32682 &lt;End of help on this topic&gt;
32683 </BODY>
32684 </HTML>
32685 ====== h_config_quell_attach_ext_warn =====
32686 <HTML>
32687 <HEAD>
32688 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
32689 </HEAD>
32690 <BODY>
32691 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
32694 This feature suppresses the extra warning you can get when trying
32695 to view an attachment for which there is no mime-type match.  Turning
32696 on this feature will just run the program according to extension
32697 instead of first warning the user that it will run according to the
32698 file's extension.
32700 This feature can be used along side 
32701 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
32702 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
32704 <UL>   
32705 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32706 </UL><P>
32707 &lt;End of help on this topic&gt;
32708 </BODY>
32709 </HTML>
32710 ====== h_config_mailcap_params =====
32711 <HTML>
32712 <HEAD>
32713 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
32714 </HEAD>
32715 <BODY>
32716 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
32718 If set, this will allow mailcap named parameter substitution to occur
32719 in mailcap entries.
32720 By default, this is turned off to prevent security problems that may occur
32721 with some incorrect mailcap configurations.
32722 For more information, see RFC1524 and look for "named parameters" in the
32723 text of the RFC.
32725 <UL>   
32726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32727 </UL><P>
32728 &lt;End of help on this topic&gt;
32729 </BODY>
32730 </HTML>
32731 ====== h_config_disable_shared =====
32732 <HTML>
32733 <HEAD>
32734 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
32735 </HEAD>
32736 <BODY>
32737 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
32739 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
32740 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
32741 will be disabled.
32742 The reason this feature exists is because there are some implementations
32743 of system password lookup routines that are very slow when presented with
32744 a long loginname that does not exist.
32745 This feature could be set to prevent the delay at startup time when the
32746 names above are searched for in the password file.
32748 <UL>   
32749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32750 </UL><P>
32751 &lt;End of help on this topic&gt;
32752 </BODY>
32753 </HTML>
32754 ====== h_config_hide_nntp_path =====
32755 <HTML>
32756 <HEAD>
32757 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
32758 </HEAD>
32759 <BODY>
32760 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
32762 Normally the Path header that Alpine generates when posting to a newsgroup
32763 contains the name of the computer from which the message is being sent and
32764 the user name.
32765 Some believe that this information is used by spammers.
32766 If this feature is set, that information will be replaced with the text
32768 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
32770 instead.
32772 It should be noted that many servers being connected to will still reveal
32773 the information that this feature attempts to protect.
32775 <UL>   
32776 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32777 </UL><P>
32778 &lt;End of help on this topic&gt;
32779 </BODY>
32780 </HTML>
32781 ====== h_config_no_bezerk_zone =====
32782 <HTML>
32783 <HEAD>
32784 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
32785 </HEAD>
32786 <BODY>
32787 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
32789 POSIX mandates a timezone in UNIX mailbox format folder delimiters
32790 (the line that begins with From <SPACE>).
32791 Some versions of Berkeley mail have trouble with this, and don't recognize
32792 the line as a message delimiter.
32793 If this feature is set, the timezone will be left off the delimiter line.
32795 <UL>   
32796 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32797 </UL><P>
32798 &lt;End of help on this topic&gt;
32799 </BODY>
32800 </HTML>
32801 ====== h_config_quell_domain_warn =====
32802 <HTML>
32803 <HEAD>
32804 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
32805 </HEAD>
32806 <BODY>
32807 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
32809 When your configuration is set up so that your domain name contains no dots,
32810 it is usually a configuration error.
32811 By default, Alpine will warn you about this when you start it up.
32812 You will see a warning message that looks like
32815 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
32818 If this feature is set, the warning is turned off.
32820 <UL>   
32821 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32822 </UL><P>
32823 &lt;End of help on this topic&gt;
32824 </BODY>
32825 </HTML>
32826 ====== h_config_quell_imap_env =====
32827 <HTML>
32828 <HEAD>
32829 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
32830 </HEAD>
32831 <BODY>
32832 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
32834 In the MESSAGE INDEX screen, if the open folder is being accessed
32835 using IMAP, Alpine normally tries to paint the index lines on the screen
32836 as soon as the information arrives from the IMAP server.
32837 This means that the index information makes it onto the screen more quickly
32838 than it otherwise would.
32839 This sometimes results in behavior that bothers some users.
32840 For example, when paging to a new page of the index, it may be possible for
32841 the lines to be painted on the screen in a random order, rather than from
32842 top to bottom.
32845 Setting this feature causes Alpine to wait for all of the information
32846 to be gathered before it paints the index screen.
32847 Once it collects all of the information, the screen will be painted quickly
32848 from top to bottom.
32850 <UL>   
32851 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32852 </UL><P>
32853 &lt;End of help on this topic&gt;
32854 </BODY>
32855 </HTML>
32856 ====== h_config_quell_news_env =====
32857 <HTML>
32858 <HEAD>
32859 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
32860 </HEAD>
32861 <BODY>
32862 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
32864 In the MESSAGE INDEX screen, if the open folder is being accessed
32865 using NNTP (News), Alpine normally tries to paint the index lines on the screen
32866 as soon as the information arrives from the NNTP server.
32867 This means that the index information makes it onto the screen more quickly
32868 than it otherwise would.
32869 This sometimes results in behavior that bothers some users.
32870 For example, when paging to a new page of the index, it may be possible for
32871 the lines to be painted on the screen in a random order, rather than from
32872 top to bottom.
32875 Setting this feature causes Alpine to wait for all of the information
32876 to be gathered before it paints the index screen.
32877 Once it collects all of the information, the screen will be painted quickly
32878 from top to bottom.
32880 <UL>   
32881 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32882 </UL><P>
32883 &lt;End of help on this topic&gt;
32884 </BODY>
32885 </HTML>
32886 ====== h_config_quell_content_id =====
32887 <HTML>
32888 <HEAD>
32889 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
32890 </HEAD>
32891 <BODY>
32892 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
32894 This feature changes the behavior of Alpine when sending messages.
32895 It is intended to work around a bug in Microsoft's Outlook XP mail user
32896 agent.
32897 As of this writing, Microsoft has acknowledged the bug but
32898 has not added it to the Knowledge Base.
32899 We have been told that there will be a post-SP1 hotfix for Outlook XP.
32900 This particular bug has bug fix number OfficeQFE:4781.
32901 The nature of the bug is that messages with attachments that
32902 contain a Content-ID header (which standard Alpine attachments do)
32903 do not show the attachment indicator (a paperclip) when viewed with
32904 Outlook XP.
32905 So the user has no indication that the message contains an attachment.
32908 If this feature is set then Alpine will remove most Content-ID headers
32909 before sending a message.
32910 If an attachment is of type MESSAGE, then the existing Content-ID headers
32911 inside the message will be left intact.
32912 This would only happen with Alpine if a message was forwarded as an attachment
32913 or if a message with a message attached was forwarded.
32914 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
32915 the Content-ID headers of the alternative parts will not be removed.
32918 Because the Content-ID header is a standard part of MIME it is possible
32919 that setting this feature will break something.
32920 For example, if an attachment has a Content-ID header that is necessary
32921 for the correct functioning of that attachment, it is possible that Alpine
32922 may remove that header when the attachment is forwarded.
32923 However, it seems fairly safe at this time.
32926 <UL>   
32927 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32928 </UL><P>
32929 &lt;End of help on this topic&gt;
32930 </BODY>
32931 </HTML>
32932 ====== h_config_winpos_in_config =====
32933 <HTML>
32934 <HEAD>
32935 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
32936 </HEAD>
32937 <BODY>
32938 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
32940 PC-Alpine only.
32943 Normally, PC-Alpine will store its window size and position in the
32944 Windows Registry.
32945 This is convenient if you want to use the same remote
32946 configuration from more than one PC.
32947 If you use multiple configuration files to start PC-Alpine, you may want
32948 to store the window size and position in the configuration file instead
32949 of in the Registry.
32950 Setting this feature causes the value to be stored in 
32951 <A HREF="h_config_window_position">Window-Position</A>.
32954 <UL>   
32955 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32956 </UL><P>
32957 &lt;End of help on this topic&gt;
32958 </BODY>
32959 </HTML>
32960 ====== h_config_quell_ssl_largeblocks =====
32961 <HTML>
32962 <HEAD>
32963 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
32964 </HEAD>
32965 <BODY>
32966 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
32968 PC-Alpine only.
32970 This feature changes the behavior of fetching messages
32971 and attachments so that the message data is fetched in chunks no larger
32972 than 12K bytes.
32973 This works around a bug in Microsoft's SSL/TLS support.
32974 Some versions of Microsoft SSL are not able to read full-sized (16K)
32975 SSL/TLS packets.
32976 Some servers will send such packets and this will
32977 cause PC-Alpine to crash with the error
32980 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
32983 Microsoft is aware of the problem and has developed a hotfix for it, it is
32984 discussed in article 300562 in the Microsoft Knowledge Base.
32986 <UL>   
32987 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32988 </UL><P>
32989 &lt;End of help on this topic&gt;
32990 </BODY>
32991 </HTML>
32992 ====== h_config_quell_partial =====
32993 <HTML>
32994 <HEAD>
32995 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
32996 </HEAD>
32997 <BODY>
32998 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
33000 Partial fetching is a feature of the IMAP protocol.
33001 By default, Alpine
33002 will use partial fetching when copying the contents of a message or attachment
33003 from the IMAP server to Alpine.
33004 This means that the fetch will be done in many
33005 small chunks instead of one big chunk. The main benefit of this approach is
33006 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
33007 to stop the fetch early. In some cases partial fetching may cause a performance
33008 problem so that the fetching of data takes significantly longer when partial
33009 fetching is used. Turning on this feature will turn off partial fetching.
33011 <UL>   
33012 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33013 </UL><P>
33014 &lt;End of help on this topic&gt;
33015 </BODY>
33016 </HTML>
33017 ====== h_config_quell_personal_name_prompt =====
33018 <HTML>
33019 <HEAD>
33020 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
33021 </HEAD>
33022 <BODY>
33023 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33025 PC-Alpine only.  This feature quells the prompting for a 
33026 <A HREF="h_config_pers_name">personal name</A>.  This
33027 prompt normally happens before composing a message, and only happens when
33028 there is no personal name already set.
33030 <UL>   
33031 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33032 </UL><P>
33033 &lt;End of help on this topic&gt;
33034 </BODY>
33035 </HTML>
33036 ====== h_config_quell_user_id_prompt =====
33037 <HTML>
33038 <HEAD>
33039 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33040 </HEAD>
33041 <BODY>
33042 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33044 PC-Alpine only.  This feature quells the prompting for a 
33045 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33046 if the information can be obtained from the login name used
33047 to open the INBOX.  Normally, this prompt happens before composing
33048 a message, and only happens when there is no user-id already set
33049 in the configuration.
33051 With this feature set, composing a message is only possible after
33052 establishing a connection to the INBOX.
33054 <UL>   
33055 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33056 </UL><P>
33057 &lt;End of help on this topic&gt;
33058 </BODY>
33059 </HTML>
33060 ====== h_config_save_aggregates =====
33061 <HTML>
33062 <HEAD>
33063 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33064 </HEAD>
33065 <BODY>
33066 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
33068 This feature will optimize an aggregate copy operation, if
33069 possible, by issuing a single IMAP <EM>COPY</EM> command with a
33070 list of the messages to be copied.
33071 This feature is set by default.
33072 This may reduce network traffic and elapsed time for the Save.
33073 <EM>However, many IMAP servers (including the UW IMAP server) do
33074 not preserve the order of messages when this optimization is applied.</EM>
33075 If this feature is not set, 
33076 Alpine will copy each message individually and the order of the messages
33077 will be preserved.
33079 <UL>   
33080 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33081 </UL><P>
33082 &lt;End of help on this topic&gt;
33083 </BODY>
33084 </HTML>
33085 ====== h_config_use_system_translation =====
33086 <HTML>
33087 <HEAD>
33088 <TITLE>FEATURE: Use System Translation</TITLE>
33089 </HEAD>
33090 <BODY>
33091 <H1>FEATURE: Use System Translation</H1>
33093 UNIX Alpine only.
33095 Alpine normally uses its own internal software to convert between the multi-byte
33096 representation of characters and the Unicode representation of those
33097 same characters.
33098 It converts from the multi-byte characters your keyboard produces to Unicode,
33099 and from Unicode to the multi-byte characters your display expects.
33100 Alpine also uses its own internal software to decide how much space on
33101 the screen a particular Unicode character will occupy.
33104 Setting this feature tells Alpine to use the system-supplied routines to
33105 perform these tasks instead.
33106 In particular there are three tasks and three system routines that will
33107 be used for these tasks.
33110 To convert from multi-byte to Unicode the routine
33113 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
33116 is used.
33117 To convert from Unicode to multi-byte the routine
33120 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
33123 is used.
33124 And to find the screen width a particular Unicode character will
33125 occupy the routine used is
33128 <CENTER><SAMP>wcwidth</SAMP></CENTER>
33131 This feature has been only lightly tested.
33132 The internal routines should normally be used unless you run into
33133 a problem that you think may be solved by using the system routines.
33134 Note that your environment needs to be set up for these
33135 routines to work correctly.
33136 In particular, the LANG or LC_CTYPE variable in your environment will
33137 need to be set.
33140 <UL>   
33141 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33142 </UL><P>
33143 &lt;End of help on this topic&gt;
33144 </BODY>
33145 </HTML>
33146 ====== h_config_suspend_spawns =====
33147 <HTML>
33148 <HEAD>
33149 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
33150 </HEAD>
33151 <BODY>
33152 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
33154 This feature affects Alpine's behavior when process suspension is enabled
33155 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
33156 temporarily interact with the operating system command &quot;shell&quot; 
33157 without
33158 quitting Alpine, and then subsequently resume the still-active Alpine session.
33161 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
33162 is set and subsequently the Ctrl-Z key
33163 is pressed, Alpine will normally suspend itself and return temporary control
33164 to Alpine's parent shell process.  However, if this feature is set, Alpine
33165 will instead create an inferior subshell process.  This is useful when the
33166 parent process is not intended to be used interactively.  Examples include
33167 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
33168 or via a menu system.<P>
33170 Note that one typically resumes a suspended Alpine by entering the Unix
33171 &quot;fg&quot; command, but if this feature is set, it will be necessary to
33172 enter the &quot;exit&quot; command instead.
33174 <UL>   
33175 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33176 </UL><P>
33177 &lt;End of help on this topic&gt;
33178 </BODY>
33179 </HTML>
33180 ====== h_config_8bit_smtp =====
33181 <HTML>
33182 <HEAD>
33183 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
33184 </HEAD>
33185 <BODY>
33186 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
33188 This feature affects Alpine's behavior when sending mail.
33189 By default, this feature is set.
33190 Internet standards
33191 require that all electronic mail messages traversing the global Internet
33192 consist of 7bit ASCII characters unless a pair of cooperating mail 
33193 transfer agents explicitly agree to allow 8bit messages.  In general, 
33194 then, exchanging messages in non-ASCII characters requires MIME encoding.
33196 However, there are now Internet standards that allow for unencoded 8bit
33197 exchange of messages between cooperating systems.  When this feature is set
33198 Alpine will try to negotiate unencoded 8bit transmission during the
33199 sending process.  Should the negotiation fail, Alpine will fall back to its
33200 ordinary encoding rules. 
33202 Note, this feature relies on your system's mail transport agent or
33203 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
33204 having the negotiation mechanism introduced in
33205 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
33206 &quot;8BITMIME&quot;. 
33208 ESMTP allows for graceful migration to upgraded mail transfer agents, but
33209 it is possible that this feature might cause problems for some servers. 
33210 <P><UL>
33211 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33212 </UL>
33213 <P>&lt;End of help on this topic&gt;
33214 </BODY>
33215 </HTML>
33216 ====== h_config_8bit_nntp =====
33217 <HTML>
33218 <HEAD>
33219 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
33220 </HEAD>
33221 <BODY>
33222 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
33224 This feature affects Alpine's behavior when posting news.  
33228 The Internet standard for exchanging USENET news messages (RFC-1036)
33229 specifies that USENET messages should conform to Internet mail standards
33230 and contain only 7bit characters, but much of the news transport software
33231 in use today is capable of successfully sending messages containing 8bit
33232 characters.  Hence, many people believe that it is appropriate to send 8bit
33233 news messages without any MIME encoding.
33237 Moreover, there is no Internet standard for explicitly negotiating 8bit
33238 transfer, as there is for Internet email.  Therefore, Alpine provides the
33239 option of posting unencoded 8bit news messages, though not as the default.
33240 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
33241 postings that contain 8bit characters. 
33245 Note, articles may cross a path or pass through news transport software
33246 that is unsafe or even hostile to 8bit characters.  At best this will only
33247 cause the posting to become garbled.  The safest way to transmit 8bit
33248 characters is to leave Alpine's MIME encoding turned on, but recipients
33249 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
33250 messages.
33252 &lt;End of help on this topic&gt;
33253 </BODY>
33254 </HTML>
33255 ====== h_config_mark_for_cc =====
33256 <HTML>
33257 <HEAD>
33258 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
33259 </HEAD>
33260 <BODY>
33261 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
33263 This feature affects Alpine's MESSAGE INDEX display.
33264 By default, a '+' is displayed in the first column if the
33265 message is addressed directly to you.
33266 When this feature is set and the message is not addressed to you, then a
33267 '-' character is displayed if the message is instead Cc'd directly
33268 to you.
33271 <UL>   
33272 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33273 </UL><P>
33274 &lt;End of help on this topic&gt;
33275 </BODY>
33276 </HTML>
33277 ====== h_config_tab_uses_unseen =====
33278 <HTML>
33279 <HEAD>
33280 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
33281 </HEAD>
33282 <BODY>
33283 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
33285 This feature affects Alpine's behavior when using the TAB
33286 <A HREF="h_common_nextnew">NextNew Command</A>
33287 to move from one folder to the next.
33288 Alpine's usual behavior is to search for folders
33289 with <EM>Recent</EM> messages in them.
33290 Recent messages are messages that have arrived since the last time the
33291 folder was opened.
33294 Setting this feature causes Alpine to search for <EM>Unseen</EM>
33295 messages instead of Recent messages.
33296 Unseen messages remain Unseen until you view them (or flag then as Seen with
33297 the <A HREF="h_common_flag">Flag Command</A>).
33298 Setting this feature allows you to locate messages you have not read
33299 instead of only recently received messages.
33300 When this feature is set, the feature
33301 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
33302 will have no effect, so the checking may be slower.
33305 Another reason why you might want to use this feature is that Alpine sometimes
33306 opens folders implicitly behind the scenes, and this clears the
33307 Recent status of all messages in the folder.
33308 One example where this happens is when Saving or filtering a
33309 message to another folder.
33310 If that message has some <A HREF="h_config_keywords">keywords</A>
33311 set, then because of some shortcomings
33312 in the IMAP specification, the best way to ensure that those keywords are
33313 still set in the saved copy of the message is to open the folder and
33314 set the keywords explicitly.
33315 Because this clears the Recent status of all messages in that folder the
33316 folder will not be found by the NextNew command unless this feature is set.
33319 &lt;End of help on this topic&gt;
33320 </BODY>
33321 </HTML>
33322 ====== h_config_tab_new_only =====
33323 <HTML>
33324 <HEAD>
33325 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
33326 </HEAD>
33327 <BODY>
33328 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
33330 This feature affects Alpine's behavior when using the TAB key to move from
33331 one message to the next.  Alpine's usual behavior is to select the next
33332 unread message or message flagged as "Important".
33336 Setting this feature causes Alpine to skip the messages flagged as important,
33337 and select unread messages exclusively.  Tab behavior when there are no
33338 new messages left to select remains unchanged.
33340 &lt;End of help on this topic&gt;
33341 </BODY>
33342 </HTML>
33343 ====== h_config_warn_if_subj_blank =====
33344 <HTML>
33345 <HEAD>
33346 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
33347 </HEAD>
33348 <BODY>
33349 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
33351 This feature affects Alpine's behavior when you send a message being
33352 composed.
33353 If this option is set, Alpine will check to see if the message about to be sent
33354 has a subject or not.
33355 If not, you will be asked if you want to send the message anyway.
33358 <UL>   
33359 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33360 </UL><P>
33361 &lt;End of help on this topic&gt;
33362 </BODY>
33363 </HTML>
33364 ====== h_config_warn_if_fcc_blank =====
33365 <HTML>
33366 <HEAD>
33367 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
33368 </HEAD>
33369 <BODY>
33370 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
33372 This feature affects Alpine's behavior when you send a message being
33373 composed.
33374 If this option is set, Alpine will check to see if the message about to be sent
33375 has an Fcc or not.
33376 If not, you will be asked if you want to send the message anyway.
33379 <UL>   
33380 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33381 </UL><P>
33382 &lt;End of help on this topic&gt;
33383 </BODY>
33384 </HTML>
33385 ====== h_config_warn_if_no_to_or_cc =====
33386 <HTML>
33387 <HEAD>
33388 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
33389 </HEAD>
33390 <BODY>
33391 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
33393 This feature affects Alpine's behavior when you send a message being
33394 composed.
33395 If this option is set, Alpine will check to see if the message about to be sent
33396 has either a To address, a Cc address, or a Newsgroup.
33397 If none of these is set,
33398 you will be asked if you want to send the message anyway.
33401 This feature is closely related to
33402 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
33403 Alpine will normally ask if you want to copy a message only to the Fcc.
33404 This feature also applies to cases where there is a Bcc but still no To, Cc,
33405 or Newsgroup.
33406 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
33407 message with only an Fcc, then you won't be asked about sending with
33408 a blank To and Cc and Newsgroups header even if this feature is set.
33409 Similarly, if you have already been asked if you want to send to the Fcc
33410 only and you have answered Yes, then you won't be asked again about sending with
33411 blank To, Cc, and Newsgroups headers even if this feature is set.
33414 <UL>   
33415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33416 </UL><P>
33417 &lt;End of help on this topic&gt;
33418 </BODY>
33419 </HTML>
33420 ====== h_config_quell_dead_letter =====
33421 <HTML>
33422 <HEAD>
33423 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
33424 </HEAD>
33425 <BODY>
33426 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
33428 This feature affects Alpine's behavior when you cancel a message being
33429 composed.  Alpine's usual behavior is to write the canceled message to
33430 a file named 
33431 <!--chtml if pinemode="os_windows"-->
33432 &quot;DEADLETR&quot;,
33433 <!--chtml else-->
33434 &quot;dead.letter&quot; in your home directory,
33435 <!--chtml endif-->
33436 overwriting any previous message. Under
33437 some conditions (some routine), this can introduce a noticeable delay.
33438 Setting this feature will cause Alpine NOT to write canceled compositions
33439 into the file.
33441 NOTE: Enabling this feature means NO record of canceled messages is
33442 maintained.
33444 This feature affects the newer option
33445 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
33446 number of dead letter files to keep around.
33447 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
33449 <UL>   
33450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33451 </UL><P>
33452 &lt;End of help on this topic&gt;
33453 </BODY>
33454 </HTML>
33455 ====== h_config_quell_beeps =====
33456 <HTML>
33457 <HEAD>
33458 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
33459 </HEAD>
33460 <BODY>
33461 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
33463 This feature affects Alpine's behavior when it displays status message
33464 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
33465 will not affect the display of such messages, but will cause those that
33466 emit a beep to become silent.
33469 <UL>   
33470 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33471 </UL><P>
33472 &lt;End of help on this topic&gt;
33473 </BODY>
33474 </HTML>
33475 ====== h_config_suppress_user_agent =====
33476 <HTML>
33477 <HEAD>
33478 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
33479 </HEAD>
33480 <BODY>
33481 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
33483 If this feature is set then Alpine will not generate a
33484 <CODE>User-Agent</CODE> header in outgoing messages.
33486 <UL>   
33487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33488 </UL><P>
33489 &lt;End of help on this topic&gt;
33490 </BODY>
33491 </HTML>
33492 ====== h_config_quell_lock_failure_warnings =====
33493 <HTML>
33494 <HEAD>
33495 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
33496 </HEAD>
33497 <BODY>
33498 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
33500 This feature affects Alpine's behavior when it encounters a problem
33501 acquiring a mail folder lock.  Typically, a secondary file associated
33502 with the mail folder being opened is created as part of the locking
33503 process.  On some systems, such file creation has been administratively
33504 precluded by the system configuration.
33506 Alpine issues a warning when such failures occur, which can become bothersome
33507 if the system is configured to disallow such actions.  Setting this
33508 feature causes Alpine to remain silent when this part of lock creation fails.
33510 WARNING: systems that have been configured in a way that precludes locking
33511 introduce some risk of mail folder corruption when more than one program
33512 attempts to modify the mail folder.  This is most likely to occur to one's
33513 INBOX or other incoming message folder. 
33515 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
33517 <UL>   
33518 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33519 </UL><P>
33520 &lt;End of help on this topic&gt;
33521 </BODY>
33522 </HTML>
33523 ====== h_config_enable_role_take ======
33524 <HTML>
33525 <HEAD>
33526 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
33527 </HEAD>
33528 <BODY>
33529 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
33531 Normally, the Take command takes addresses from a message and helps you
33532 put them into your Address Book.
33533 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
33534 you may find it useful
33535 to be able to Take information from a message's headers and put it into
33536 a new Rule.
33537 When this feature is set, you will be given an extra prompt that gives
33538 you the choice to Take into the Address Book or Take into a rule.
33539 <P><UL>
33540 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33541 </UL>
33543 &lt;End of help on this topic&gt;
33544 </BODY>
33545 </HTML>
33546 ====== h_config_enable_take_export ======
33547 <HTML>
33548 <HEAD>
33549 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
33550 </HEAD>
33551 <BODY>
33552 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
33554 Normally, the Take command takes addresses from a message and helps you
33555 put them into your Address Book.
33556 When this feature is set, you will be given an extra prompt that gives you
33557 the choice to Take addresses into a file instead of your Address
33558 Book.
33559 Only the user@domain_name part of the address is put in the file.
33560 <P><UL>
33561 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33562 </UL>
33564 &lt;End of help on this topic&gt;
33565 </BODY>
33566 </HTML>
33567 ====== h_config_quell_folder_internal_msg ======
33568 <HTML>
33569 <HEAD>
33570 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
33571 </HEAD>
33572 <BODY>
33573 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
33575 This feature determines whether or not Alpine will create 
33576 &quot;pseudo messages&quot; in folders that are in standard Unix or 
33577 MMDF format. <P> 
33579 Alpine will normally create these pseudo messages when they are not already
33580 present in a standard Unix or MMDF folder.  Their purpose is to record
33581 certain mailbox state data needed for correct IMAP and POP server
33582 operation, and also for Alpine to be able to mark messages as Answered when
33583 the Reply has been postponed.<P>
33585 Sites that do not use IMAP/POP for remote mail access, and that need to
33586 support mail tools that are adversely affected by the presence of the
33587 pseudo-messages (e.g. some mail notification tools) may enable this
33588 feature to tell Alpine not to create them.  Note that Alpine's 
33589 &quot;Answered&quot; flag
33590 capability will be adversely affected if this is done.<P>
33592 Note too that, even if this feature is enabled, Alpine will not remove
33593 pseudo-messages when it encounters them (e.g. those created by UW's imapd
33594 or ipopd servers.) This feature has no effect on folders that are not in
33595 standard Unix or MMDF format, as pseudo-messages are not needed in the
33596 other formats to record mailbox state information.
33597 <P><UL>
33598 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33599 </UL>
33601 &lt;End of help on this topic&gt;
33602 </BODY>
33603 </HTML>
33604 ====== h_config_mulnews_as_typed ======
33605 <HTML>
33606 <HEAD>
33607 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
33608 </HEAD>
33609 <BODY>
33610 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
33612 This feature will be of little use to most users.
33613 It has no effect unless the feature
33614 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
33615 is set.
33617 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
33618 then the setting of this feature may have an effect on the names of the
33619 newsrc files used.
33620 Normally, the name of the news server will be canonicalized before it is
33621 used in the newsrc file name.
33622 For example, if you type the news server name
33625 <CENTER><SAMP>servername</SAMP></CENTER>
33628 it is likely that the canonical name will be something like
33631 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
33634 Or it may be the case that
33637 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
33640 is really an alias (a DNS CNAME) for
33643 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
33646 If this feature is not set, then the canonicalized names will be used.
33647 If this feature is set, then the name you typed in (or put in your
33648 configuration) will be used.
33650 <P><UL>
33651 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33652 </UL>
33654 &lt;End of help on this topic&gt;
33655 </BODY>
33656 </HTML>
33657 ====== h_config_quell_empty_dirs ======
33658 <HTML>
33659 <HEAD>
33660 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
33661 </HEAD>
33662 <BODY>
33663 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
33665 This feature causes Alpine to remove from the display any directories
33666 that do not contain at least one file or directory.  This can be useful
33667 to prevent overly cluttered folder lists when a collection is stored on
33668 a server that treats all names as both a folder and a directory.
33671 Note, enabling this feature can cause surprising behavior!  For example,
33672 you can still use Add to create a directory, but unless you immediately
33673 enter that directory and create a folder, that newly created directory
33674 may not be displayed next time you enter the folder list.
33677 The description above is not quite correct.
33678 Only directories which potentially may hold messages are hidden if empty.
33679 That is, a directory which is really just a directory and is not selectable
33680 as a folder will not be hidden.
33681 Such directories can occur on servers that treat most names as both a folder
33682 and a directory.
33683 These directories are typically created implicitly when a folder is created
33684 inside a directory that does not yet exist.
33687 <UL>   
33688 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33689 </UL><P>
33690 &lt;End of help on this topic&gt;
33691 </BODY>
33692 </HTML>
33693 ====== h_config_termcap_wins =====
33694 <HTML>
33695 <HEAD>
33696 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
33697 </HEAD>
33698 <BODY>
33699 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
33701 This feature may affect Alpine's low-level input routines.  Termcap (or
33702 terminfo, depending on how your copy of Alpine was compiled and linked)
33703 is the name of the database that describes terminal capabilities.  In
33704 particular, it describes the sequences of characters that various keys
33705 will emit.
33708 An example would be the Up Arrow key on the keyboard.  Up
33709 Arrow is not a distinct character on most Unix systems.  When you press
33710 the Up Arrow key a short sequence of characters are produced.  This
33711 sequence is supposed to be described in the termcap database by the
33712 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
33713 are using terminfo instead of termcap).
33716 By default, Alpine defines some terminal
33717 escape sequences that are commonly used.  For example, the sequence
33718 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
33719 &quot;ESC&nbsp;[&nbsp;A&quot;
33720 is also recognized as an Up Arrow key.  These are chosen because common
33721 terminals like VT100's or ANSI standard terminals produce these
33722 sequences when you press the Up Arrow key.
33725 If your system's termcap
33726 (terminfo) database assigns some other function to the sequence
33727 &quot;ESC&nbsp;O&nbsp;A&quot;
33728 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
33729 database assigns a sequence that doesn't begin with an escape
33730 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
33731 This usually works fine
33732 because most terminals emit the escape sequences that Alpine has defined
33733 by default.  We have also found that it is usually better to have these
33734 defaults take precedence over the definitions contained in the database
33735 because the defaults are more likely to be correct than the database.
33738 There are some terminals where this breaks down.  If you want Alpine to
33739 believe the definitions given in your termcap (terminfo) database in
33740 preference to the defaults the Alpine itself sets up, then you may turn
33741 this feature on.  Then, sequences of characters that are defined in
33742 both termcap (terminfo) and in Alpine's set of defaults will be
33743 interpreted the way that termcap (terminfo) says they should be
33744 interpreted.  Also, if your terminal capabilities database assigns a
33745 sequence that doesn't begin with escape, it will not be ignored.
33748 <UL>   
33749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33750 </UL><P>
33751 &lt;End of help on this topic&gt;
33752 </BODY>
33753 </HTML>
33754 ====== h_config_cruise_mode =====
33755 <HTML>
33756 <HEAD>
33757 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
33758 </HEAD>
33759 <BODY>
33760 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
33762 This feature affects Alpine's behavior when you hit the
33763 &quot;Space&nbsp;Bar&quot; at
33764 the end of a displayed message.  Typically, Alpine complains that the end
33765 of the text has already been reached.  Setting this feature causes such
33766 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
33767 taking you to the next &quot;interesting&quot; message,
33768 or scanning ahead to the 
33769 next incoming folder with &quot;interesting&quot; messages.
33772 <UL>   
33773 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33774 </UL><P>
33775 &lt;End of help on this topic&gt;
33776 </BODY>
33777 </HTML>
33778 ====== h_config_cruise_mode_delete =====
33779 <HTML>
33780 <HEAD>
33781 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
33782 </HEAD>
33783 <BODY>
33784 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
33786 This feature modifies the behavior of Alpine's 
33787 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
33788 Setting this feature causes Alpine to implicitly delete read
33789 messages when it moves on to display the next &quot;interesting&quot; message.
33791 NOTE: Beware when enabling this feature AND the 
33792 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
33793 feature.
33795 <UL>   
33796 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33797 </UL><P>
33798 &lt;End of help on this topic&gt;
33799 </BODY>
33800 </HTML>
33801 ====== h_config_slash_coll_entire =====
33802 <HTML>
33803 <HEAD>
33804 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
33805 </HEAD>
33806 <BODY>
33807 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
33809 The slash (/) command is available from the MESSAGE INDEX screen when
33810 the folder is sorted by either Threads or OrderedSubject, and the
33811 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
33812 is set to something other than &quot;none&quot;.
33813 Normally, the slash command Collapses or Expands the subthread that
33814 starts at the currently highlighted message, if any.
33815 If this option is set, then the slash command Collapses or Expands the
33816 <EM>entire</EM> current thread instead of just the subthread.
33817 The current thread is simply the top-level thread that contains the
33818 current message.
33821 <UL>   
33822 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33823 </UL><P>
33824 &lt;End of help on this topic&gt;
33825 </BODY>
33826 </HTML>
33827 ====== h_config_color_thrd_import =====
33828 <HTML>
33829 <HEAD>
33830 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
33831 </HEAD>
33832 <BODY>
33833 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
33835 This option affects only the THREAD INDEX screen.
33836 Whether or not you ever see a THREAD INDEX screen depends on the setting
33837 of the configuration option
33838 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
33839 and on the sort order of the index.
33842 If a message within a thread is flagged as Important
33843 and this option is set, then
33844 the entire line in the THREAD INDEX will be colored the color of the
33845 Index-important Symbol, which can be set using the
33846 <A HREF="h_color_setup">Setup Kolor</A> screen.
33849 <UL>   
33850 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33851 </UL><P>
33852 &lt;End of help on this topic&gt;
33853 </BODY>
33854 </HTML>
33855 ====== h_config_allow_goto =====
33856 <HTML>
33857 <HEAD>        
33858 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
33859 </HEAD>
33860 <BODY>
33861 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
33863 This feature modifies the behavior of Alpine's file browser.  Setting this
33864 feature causes Alpine to offer the "G Goto" command in the file browser.
33865 That is the default.
33869 The Goto command allows you to explicitly type in the desired directory.
33871 &lt;End of help on this topic&gt;
33872 </BODY></HTML>
33873 ====== h_config_add_ldap =====
33874 <HTML>
33875 <HEAD>
33876 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
33877 </HEAD>
33878 <BODY>
33879 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
33881 If both the Directory option
33882 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
33883 and this feature are set,
33884 then when an implicit directory lookup is done from the
33885 composer you will automatically be prompted to add the result of the
33886 directory lookup to your address book.
33888 <UL>   
33889 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33890 </UL><P>
33891 &lt;End of help on this topic&gt;
33892 </BODY>
33893 </HTML>
33894 ===== h_patterns_compat_behavior =====
33895 <HTML>
33896 <HEAD>
33897 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
33898 </HEAD>
33899 <BODY>
33900 <H1>Rules Behavior Changes in Pine 4.50</H1>
33902 In Alpine, Rules that contain unrecognized elements
33903 are ignored.
33904 In most cases, the unrecognized elements will be something that was
33905 added as a new Rules feature in a later version of Alpine.
33906 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
33907 ignore rules that contained unrecognized elements.
33908 For example, a new element of Rules that was added in Pine 4.50 is
33909 Age interval.
33910 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
33911 all messages older than a week red.
33912 Now, if you run Pine 4.44 using that same configuration file, it will not
33913 recognize the Age interval and so will just ignore it.
33914 That means that all messages will match that rule so all messages will
33915 be colored red when using Pine version 4.44.
33918 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
33919 However, since the behavior still exists in versions prior to Pine 4.50 and
33920 since Filtering is a potentially destructive operation, another measure
33921 was taken to attempt to avoid unintentional Filtering of messages.
33922 The first time that you run Alpine or a Pine that is version 4.50 or greater,
33923 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
33924 will be copied to a new Filters configuration variable
33925 with a different name (&quot;Patterns-Filters2&quot;).
33926 From then on, Alpine will continue to use the new
33927 variable.
33928 Of course, Pine version 4.44 or lower will continue to use the old
33929 variable.
33930 That means that if you are using Alpine
33931 and also using a version of Pine that is older than 4.50, they will not
33932 share the configuration information about Filters.
33933 If you make a change in one version you won't see it in the other version.
33936 Since Scoring can be used to trigger Filtering, the same thing has been
33937 done for Score rules.
33938 The old configuration variable name is (&quot;Patterns-Scores&quot;)
33939 and the new name is (&quot;Patterns-Scores2&quot;).
33940 The same is not true of Role, Indexcolor, and Other rules that are
33941 thought to be less harmful when a mistake is made.
33944 &lt;End of help on this topic&gt;
33945 </BODY>
33946 </HTML>
33947 ======= h_config_filt_opts_sentdate =======
33948 <HTML>
33949 <HEAD>
33950 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
33951 </HEAD>
33952 <BODY>
33953 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
33955 By default, the Age interval of a Pattern uses a message's time of
33956 arrival to compute the age of the message.
33957 If this feature is set, the date in the message's Date header will
33958 be used instead.
33960 &lt;End of help on this topic&gt;
33961 </BODY>
33962 </HTML>
33963 ======= h_config_filt_opts_notdel =======
33964 <HTML>
33965 <HEAD>
33966 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
33967 </HEAD>
33968 <BODY>
33969 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
33971 If this option is set then a message will be moved into the
33972 specified folder only if it is not marked for deletion.
33973 This is useful if you have multiple Alpine sessions running
33974 simultaneously and you don't want messages to be filtered into a
33975 folder more than once.
33976 It is also useful if you want to filter
33977 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
33978 This method is not foolproof.
33979 There may be cases where a message
33980 gets marked deleted and so it is never filtered into the folder.
33981 For example, if you deleted it in another Alpine session or another mail
33982 program that didn't use the filtering rule.
33984 This option has no effect if the Filter Action is not set to Move.
33986 &lt;End of help on this topic&gt;
33987 </BODY>
33988 </HTML>
33989 ======= h_config_filt_opts_nonterm =======
33990 <HTML>
33991 <HEAD>
33992 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
33993 </HEAD>
33994 <BODY>
33995 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
33997 If this option is set then this is a non-terminating rule.
33998 Usually, for each message, Alpine searches through the Filter Rules until
33999 a match is found and then it performs the action associated with that rule.
34000 Rules following the match are not considered.
34001 If this option is set then the search for matches will continue at the next
34002 rule.
34004 If a non-terminating rule matches then the actions associated with
34005 that rule, except for any implied deletion of the message, are performed
34006 before the match for the next rule is checked.
34007 For example, if the non-terminating rule sets the Important status, then that
34008 status will be set when the next rule is considered.
34009 However, if the non-terminating rule Moves the message, the message will
34010 actually be copied instead of copied and deleted so that it is still there
34011 for the next rule.
34012 A moved message is deleted after all the relevant rules have been checked.
34013 The name of the &quot;Move&quot; action is confusing in this case because
34014 a single message can be moved to more than one folder.
34015 It turns the Move into a Copy instead, but it is still followed by a deletion
34016 at the end.
34018 This option may be useful if you want to have a single message filtered to
34019 two different folders because it matches two different Patterns.
34020 For example, suppose you normally filter messages to a particular mailing
34021 list into one folder, and messages addressed directly to you into a second
34022 folder.
34023 If a message is sent to both you and the list (and you can tell that by
34024 looking at the headers of the message) this option may give you a convenient
34025 way to capture a copy to each folder.
34026 (It may also cause you to capture two copies to each folder,
34027 depending on whether your mail system delivers one or two copies of the
34028 message to you and on how the list works.)
34030 &lt;End of help on this topic&gt;
34031 </BODY>
34032 </HTML>
34033 ===== h_mainhelp_smime ======
34034 <HTML>
34035 <HEAD>
34036 <TITLE>S/MIME Overview</TITLE>
34037 </HEAD>
34038 <BODY>
34039 <H1>S/MIME Overview</H1>
34041 S/MIME is a standard for the public key encryption and signing of email.
34042 UNIX Alpine contains a basic implementation of S/MIME based on
34043 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries.
34044 To check if this version of Alpine supports S/MIME look at
34045 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34046 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34048 Some limitations:
34049 <UL>
34050    <LI> There is no PC-Alpine implementation.
34051    <LI> There is no provision for checking for CRLs
34052         (Certificate Revocation Lists) in Alpine.
34053    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34054    <LI> There is no mechanism available for feeding either an entire incoming
34055         or an entire outgoing message to an external
34056         filter and using that external filter to do S/MIME or PGP processing.
34057    <LI> Because the implementation currently uses OpenSSL, there is only a very
34058         limited integration with the Mac OS Keychain (the storing and access of
34059         public certificates).
34060 </UL>
34062 The S/MIME configuration screen is reached by going to the Main Menu and typing
34063 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
34066 <H2>S/MIME BASICS</H2>
34068 In order to digitally sign messages you send you must have a public/private key-pair.
34069 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
34070 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
34071 users or a company which provides certificates for its workers.
34072 These certificates are bound to an email address, so the identity being verified is the
34073 email address not a person's name.
34075 Mail is signed by using the sender's private key, which only the owner of the private key
34076 has access to.
34077 The signature is verified using the signer's public key, which anyone can
34078 have access to.
34079 With Alpine, the first time you receive a signed message the public key of the
34080 sender will be stored for future use.
34083 Mail is encrypted using the recipient's public key and decrypted by
34084 the recipient with their private key.
34087 You need a key of your own in order to sign outgoing messages and to have others
34088 encrypt messages sent to you.
34089 You do not need a key of your own to verify signed messages sent by others or to
34090 encrypt messages sent to others.
34092 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
34094 By default UNIX Alpine stores the certificates it uses in a directory in your
34095 home directory.
34096 The directory name is
34098 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
34100 Within that directory are three subdirectories.
34101 Each of the three subdirectories contains files with PEM-encoded contents,
34102 the default format for OpenSSL.
34103 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
34104 The files within that directory have names that are email addresses with the
34105 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
34106 An example filename is
34108 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34110 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
34111 your private key.
34112 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
34113 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
34114 Authorities that you want to trust but that aren't contained in the set of system CAs.
34115 Those files may have arbitrary names as long as they end with the
34116 suffix &quot;<SAMP>.crt</SAMP>&quot;.
34118 <H2>HOW TO SIGN AND ENCRYPT</H2>
34120 If you have a certificate you may sign outgoing messages.
34121 After typing the Ctrl-X command to send a message you will see the prompt
34123 <CENTER><SAMP>Send message?</SAMP></CENTER>
34125 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
34126 Typing the &quot;G&quot; command will change the prompt to
34128 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
34130 Typing the &quot;E&quot; command will change the prompt to
34132 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
34134 You may even type both to get
34136 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
34139 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
34141 The reading of a signed message should not require any special action on
34142 your part.
34143 There should be an editorial addition at the start of the message which
34144 says either
34146 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
34150 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
34152 If an encrypted message is sent to you the encrypted text will not
34153 be shown.
34154 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
34155 you are viewing the message) and supply your passphrase when asked.
34157 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
34158 which gives you some information about the certificate used to sign or encrypt the message.
34160 <H2>MISCELLANEOUS</H2>
34162 You may have access to a private certificate in the PKCS12 format,
34163 which would sometimes be in a file with a &quot;.p12&quot; suffix.
34164 The UNIX shell command
34166 <CENTER><SAMP>openssl pkcs12 -in file.p12 -out file.pem</SAMP></CENTER>
34168 may work to convert that from the PKCS12 format to the PEM format.
34169 Then that file could be placed in the &quot;<SAMP>private</SAMP>&quot;
34170 directory with a filename of your email address followed by the
34171 suffix &quot;<SAMP>.key</SAMP>&quot;.
34174 &lt;End of help on this topic&gt;
34175 </BODY>
34176 </HTML>
34177 ====== h_config_smime_pubcertdir =====
34178 <HTML>
34179 <HEAD>
34180 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
34181 </HEAD>
34182 <BODY>
34183 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
34185 UNIX Alpine only.
34187 If the option
34188 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34189 is set then this option will have no effect.
34191 Normally, Public Certificates for use with S/MIME will be stored in the directory
34192 which is the value of this option.
34193 Those certificates will be stored in PEM format, one certificate per file.
34194 The name of the file for the certificate corresponding to
34196 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34198 should be
34200 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
34202 For example, a file for user@example.com would be in the file
34204 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34206 in this directory.
34208 Use the Setup/SMIME screen to modify this variable.
34210 Typically, the public certificates that you have will come from S/MIME signed
34211 messages that are sent to you.
34212 Alpine will extract the public certificate from the signed message and store
34213 it in the certificates directory.
34214 These PEM format public certificates look something like:
34215 <PRE>
34216 -----BEGIN CERTIFICATE-----
34217 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
34218 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
34219 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
34221 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
34222 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
34223 -----END CERTIFICATE-----
34224 </PRE>
34226 <UL>   
34227 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34228 </UL><P>
34230 <UL>   
34231 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34232 </UL><P>
34233 &lt;End of help on this topic&gt;
34234 </BODY>
34235 </HTML>
34236 ====== h_config_smime_pubcertcon =====
34237 <HTML>
34238 <HEAD>
34239 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
34240 </HEAD>
34241 <BODY>
34242 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
34244 UNIX Alpine only.
34246 If this option is set it will be used instead of
34247 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34249 This option gives you a way to store certificates remotely on an IMAP server
34250 instead of storing the certificates one per file locally.
34251 In order to do that you just give this option a remote folder name for a folder
34252 which does not yet exist.
34253 The name is similar to the name you might use for a remote configuration file.
34254 A remote folder name might look something like:
34256 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
34259 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34260 about the syntax of folder names.
34262 Use the Setup/SMIME screen to modify this variable.
34264 <UL>   
34265 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34266 </UL><P>
34268 <UL>   
34269 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34270 </UL><P>
34271 &lt;End of help on this topic&gt;
34272 </BODY>
34273 </HTML>
34274 ====== h_config_smime_privkeydir =====
34275 <HTML>
34276 <HEAD>
34277 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
34278 </HEAD>
34279 <BODY>
34280 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
34282 UNIX Alpine only.
34284 In order to sign outgoing S/MIME messages you will need a
34285 personal digital ID certificate.
34286 You will usually get such a certificate from a certificate authority such as
34287 Thawte or CAcert.
34288 (In order to encrypt outgoing messages you don't need a personal digital ID, you
34289 need the public certificate of the recipient instead.)
34290 If the option
34291 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
34292 is set then this option will have no effect.
34294 Normally, Private Keys for use with S/MIME will be stored in the directory
34295 which is the value of this option.
34296 Those certificates will be stored in PEM format, one certificate per file.
34297 The name of the file for the certificate corresponding to your
34299 <CENTER><SAMP>emailaddress</SAMP></CENTER>
34301 should be
34303 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
34305 For example, if your address is user@example.com the name of the file would be
34307 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
34309 in this directory.
34311 Use the Setup/SMIME screen to modify this variable.
34313 Typically, the private key that you have will come from a Certificate
34314 Authority.
34315 The private key should be stored in a PEM format file that
34316 looks something like:
34317 <PRE>
34318 -----BEGIN RSA PRIVATE KEY-----
34319 Proc-Type: 4,ENCRYPTED
34320 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
34322 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
34323 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
34324 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
34326 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
34327 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
34328 -----END RSA PRIVATE KEY-----
34329 </PRE>
34331 <UL>   
34332 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34333 </UL><P>
34335 <UL>   
34336 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34337 </UL><P>
34338 &lt;End of help on this topic&gt;
34339 </BODY>
34340 </HTML>
34341 ====== h_config_smime_privkeycon =====
34342 <HTML>
34343 <HEAD>
34344 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
34345 </HEAD>
34346 <BODY>
34347 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
34349 UNIX Alpine only.
34351 If this option is set it will be used instead of
34352 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34354 This option gives you a way to store keys remotely on an IMAP server
34355 instead of storing the keys one per file locally.
34356 In order to do that you just give this option a remote folder name for a folder
34357 which does not yet exist.
34358 The name is similar to the name you might use for a remote configuration file.
34359 A remote folder name might look something like:
34361 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
34364 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34365 about the syntax of folder names.
34367 Use the Setup/SMIME screen to modify this variable.
34369 <UL>   
34370 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34371 </UL><P>
34373 <UL>   
34374 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34375 </UL><P>
34376 &lt;End of help on this topic&gt;
34377 </BODY>
34378 </HTML>
34379 ====== h_config_smime_cacertdir =====
34380 <HTML>
34381 <HEAD>
34382 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
34383 </HEAD>
34384 <BODY>
34385 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
34387 UNIX Alpine only.
34389 If the option
34390 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
34391 is set then this option will have no effect.
34393 CACert is a shorthand name for certification authority certificate.
34394 Normally Alpine will use the CACerts that are located in the standard system
34395 location for CACerts.
34396 It may be the case that one of your correspondents has a Digital ID which has
34397 been signed by a certificate authority that is not in the regular set of system certificate
34398 authorities.
34399 You may supplement the system list by adding further certificates of your own.
34400 These should  be stored in the directory
34401 which is the value of this option.
34402 The certificates will be stored in PEM format, one certificate per file.
34403 The names of the files can be anything ending in &quot;.crt&quot;.
34405 Use the Setup/SMIME screen to modify this variable.
34407 These PEM format CA certificates look very similar to your public
34408 certificates for particular email addresses
34409 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
34411 <UL>   
34412 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34413 </UL><P>
34415 <UL>   
34416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34417 </UL><P>
34418 &lt;End of help on this topic&gt;
34419 </BODY>
34420 </HTML>
34421 ====== h_config_smime_cacertcon =====
34422 <HTML>
34423 <HEAD>
34424 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
34425 </HEAD>
34426 <BODY>
34427 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
34429 UNIX Alpine only.
34431 If this option is set it will be used instead of
34432 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34434 This option gives you a way to store certificates remotely on an IMAP server
34435 instead of storing the certificates one per file locally.
34436 In order to do that you just give this option a remote folder name for a folder
34437 which does not yet exist.
34438 The name is similar to the name you might use for a remote configuration file.
34439 A remote folder name might look something like:
34441 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
34444 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
34445 about the syntax of folder names.
34447 Use the Setup/SMIME screen to modify this variable.
34449 <UL>   
34450 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34451 </UL><P>
34453 <UL>   
34454 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34455 </UL><P>
34456 &lt;End of help on this topic&gt;
34457 </BODY>
34458 </HTML>
34459 ========== h_config_smime_sign_by_default ==========
34460 <HTML>
34461 <HEAD>
34462 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
34463 </HEAD>
34464 <BODY>
34465 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
34467 UNIX Alpine only.
34469 This feature only has an effect if your version of Alpine includes
34470 support for S/MIME.
34471 It affects Alpine's behavior when you send a message.
34472 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
34474 Only the default value is affected.
34475 In any case, you may still toggle the Signing option on or off before sending
34476 with the &quot;G Sign&quot; command (provided you have a personal digital ID
34477 certificate).
34479 <UL>   
34480 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34481 </UL><P>
34484 <UL>   
34485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34486 </UL><P>
34487 &lt;End of help on this topic&gt;
34488 </BODY>
34489 </HTML>
34490 ========== h_config_smime_pubcerts_in_keychain ==========
34491 <HTML>
34492 <HEAD>
34493 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
34494 </HEAD>
34495 <BODY>
34496 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
34498 UNIX Alpine only.
34500 If this feature is set the Mac OS X default keychain will be used as the place
34501 to store public certificates instead of a
34502 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
34503 or a
34504 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
34506 <UL>   
34507 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34508 </UL><P>
34510 <UL>   
34511 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34512 </UL><P>
34513 &lt;End of help on this topic&gt;
34514 </BODY>
34515 </HTML>
34516 ========== h_config_smime_dont_do_smime ==========
34517 <HTML>
34518 <HEAD>
34519 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
34520 </HEAD>
34521 <BODY>
34522 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
34524 UNIX Alpine only.
34526 Setting this feature turns off all of Alpine's S/MIME support.
34527 You might want to set this if you are having trouble due to the S/MIME support.
34529 <UL>   
34530 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34531 </UL><P>
34534 <UL>   
34535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34536 </UL><P>
34537 &lt;End of help on this topic&gt;
34538 </BODY>
34539 </HTML>
34540 ========== h_config_smime_encrypt_by_default ==========
34541 <HTML>
34542 <HEAD>
34543 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
34544 </HEAD>
34545 <BODY>
34546 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
34548 UNIX Alpine only.
34550 This feature only has an effect if your version of Alpine includes
34551 support for S/MIME.
34552 It affects Alpine's behavior when you send a message.
34553 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
34555 Only the default value is affected.
34556 In any case, you may still toggle the Encrypt option on or off before sending
34557 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
34558 for the recipient).
34560 <UL>   
34561 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34562 </UL><P>
34565 <UL>   
34566 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34567 </UL><P>
34568 &lt;End of help on this topic&gt;
34569 </BODY>
34570 </HTML>
34571 ========== h_config_smime_remember_passphrase ==========
34572 <HTML>
34573 <HEAD>
34574 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
34575 </HEAD>
34576 <BODY>
34577 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
34579 UNIX Alpine only.
34581 This feature only has an effect if your version of Alpine includes
34582 support for S/MIME.
34583 If this option is set, you will only have to enter your passphrase for your private key
34584 once during an Alpine session.
34586 <UL>   
34587 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34588 </UL><P>
34591 <UL>   
34592 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34593 </UL><P>
34594 &lt;End of help on this topic&gt;
34595 </BODY>
34596 </HTML>
34597 ====== h_config_smime_transfer_pub_to_con =====
34598 <HTML>
34599 <HEAD>
34600 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
34601 </HEAD>
34602 <BODY>
34603 <H1>S/MIME: Transfer Public Certs to Container</H1>
34605 UNIX Alpine only.
34607 The Transfer command will copy the public certificates in your configured
34608 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
34609 to the container in your configured
34610 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
34611 This might be useful if you decide to switch from using a cert directory to a cert
34612 container.
34614 Warning: Any previous contents in the container will be lost.
34616 <UL>   
34617 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34618 </UL><P>
34620 <UL>   
34621 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34622 </UL><P>
34623 &lt;End of help on this topic&gt;
34624 </BODY>
34625 </HTML>
34626 ====== h_config_smime_transfer_pub_to_dir =====
34627 <HTML>
34628 <HEAD>
34629 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
34630 </HEAD>
34631 <BODY>
34632 <H1>S/MIME: Transfer Public Certs to Directory</H1>
34634 UNIX Alpine only.
34636 The Transfer command will copy the public certificates in your configured
34637 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34638 to the directory in your configured
34639 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
34640 This might be useful if you decide to switch from using a cert container to a cert
34641 directory.
34643 <UL>   
34644 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34645 </UL><P>
34647 <UL>   
34648 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34649 </UL><P>
34650 &lt;End of help on this topic&gt;
34651 </BODY>
34652 </HTML>
34653 ====== h_config_smime_transfer_priv_to_con =====
34654 <HTML>
34655 <HEAD>
34656 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
34657 </HEAD>
34658 <BODY>
34659 <H1>S/MIME: Transfer Private Keys to Container</H1>
34661 UNIX Alpine only.
34663 The Transfer command will copy the private keys in your configured
34664 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34665 to the container in your configured
34666 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
34667 This might be useful if you decide to switch from using a key directory to a key
34668 container.
34670 Warning: Any previous contents in the container will be lost.
34672 <UL>   
34673 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34674 </UL><P>
34676 <UL>   
34677 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34678 </UL><P>
34679 &lt;End of help on this topic&gt;
34680 </BODY>
34681 </HTML>
34682 ====== h_config_smime_transfer_priv_to_dir =====
34683 <HTML>
34684 <HEAD>
34685 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
34686 </HEAD>
34687 <BODY>
34688 <H1>S/MIME: Transfer Private Keys to Directory</H1>
34690 UNIX Alpine only.
34692 The Transfer command will copy the private keys in your configured
34693 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
34694 to the directory in your configured
34695 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
34696 This might be useful if you decide to switch from using a key container to a key
34697 directory.
34699 <UL>   
34700 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34701 </UL><P>
34703 <UL>   
34704 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34705 </UL><P>
34706 &lt;End of help on this topic&gt;
34707 </BODY>
34708 </HTML>
34709 ====== h_config_smime_transfer_cacert_to_con =====
34710 <HTML>
34711 <HEAD>
34712 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
34713 </HEAD>
34714 <BODY>
34715 <H1>S/MIME: Transfer CA Certs to Container</H1>
34717 UNIX Alpine only.
34719 The Transfer command will copy the CA certificates in your configured
34720 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
34721 to the container in your configured
34722 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
34723 This might be useful if you decide to switch from using a CA cert directory to a CA cert
34724 container.
34726 Warning: Any previous contents in the container will be lost.
34728 <UL>   
34729 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34730 </UL><P>
34732 <UL>   
34733 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34734 </UL><P>
34735 &lt;End of help on this topic&gt;
34736 </BODY>
34737 </HTML>
34738 ====== h_config_smime_transfer_cacert_to_dir =====
34739 <HTML>
34740 <HEAD>
34741 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
34742 </HEAD>
34743 <BODY>
34744 <H1>S/MIME: Transfer CA Certs to Directory</H1>
34746 UNIX Alpine only.
34748 The Transfer command will copy the CA certificates in your configured
34749 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
34750 to the directory in your configured
34751 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
34752 This might be useful if you decide to switch from using a CA cert container to a CA cert
34753 directory.
34755 <UL>   
34756 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34757 </UL><P>
34759 <UL>   
34760 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34761 </UL><P>
34762 &lt;End of help on this topic&gt;
34763 </BODY>
34764 </HTML>
34765 ====== h_config_smime_transfer_pubcon_to_key =====
34766 <HTML>
34767 <HEAD>
34768 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
34769 </HEAD>
34770 <BODY>
34771 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
34773 Mac OS X Alpine only.
34775 The Transfer command will copy the public certificates in your configured
34776 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34777 to your default Mac OS X Keychain.
34778 This might be useful if you decide to switch from using a cert container to using
34779 the Keychain to store your public certs, which you may do by using the
34780 feature
34781 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
34783 <UL>   
34784 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34785 </UL><P>
34787 <UL>   
34788 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34789 </UL><P>
34790 &lt;End of help on this topic&gt;
34791 </BODY>
34792 </HTML>
34793 ====== h_config_smime_transfer_pubkey_to_con =====
34794 <HTML>
34795 <HEAD>
34796 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
34797 </HEAD>
34798 <BODY>
34799 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
34801 UNIX Alpine only.
34803 The Transfer command will copy the public certificates in your configured
34804 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
34805 to your default Mac OS X Keychain.
34806 This might be useful if you decide to switch from using a cert container to using
34807 the Keychain to store your public certs.
34809 <UL>   
34810 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34811 </UL><P>
34813 <UL>   
34814 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34815 </UL><P>
34816 &lt;End of help on this topic&gt;
34817 </BODY>
34818 </HTML>
34819 ====== h_config_smime_public_certificates =====
34820 <HTML>
34821 <HEAD>
34822 <TITLE>S/MIME: Manage Public Certificates</TITLE>
34823 </HEAD>
34824 <BODY>
34825 <H1>S/MIME: Manage Public Certificates</H1>
34827 UNIX Alpine only.
34829 This menu item allows you to manage your public certificates, this
34830 may include your own public certificate, but it normally includes
34831 certificates of people you correspond with. These certificates are
34832 saved by Alpine automatically when they are found in signed messages
34833 that you receive. This interface allows you to manage them, by
34834 giving you the option to delete them, or trust them (in the case
34835 of self-signed certificates).
34838 Please note that Alpine will not validate a message that was sent to you
34839 using a self-signed certificate, unless you decide to trust that certificate.
34840 Internally, a certificate is trusted by copying it to the
34841 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
34842 collection. If you decide that you want to stop trusting a self-signed
34843 certificate, you must delete such certificate from such collection.
34845 The <B>I</B> Import command available in this screen allows you to 
34846 import a command to this collection.
34848 <UL>   
34849 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34850 </UL><P>
34852 <UL>   
34853 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34854 </UL><P>
34855 &lt;End of help on this topic&gt;
34856 </BODY>
34857 </HTML>
34858 ====== h_config_smime_private_keys =====
34859 <HTML>
34860 <HEAD>
34861 <TITLE>S/MIME: Manage Private Keys</TITLE>
34862 </HEAD>
34863 <BODY>
34864 <H1>S/MIME: Manage Private Keys</H1>
34866 UNIX Alpine only.
34868 This option allows you to manage your private key. Normally a person has only
34869 one key, in the same way that a person only has one valid passport, or ID card,
34870 at any given time. This option allows you to manage private keys. You can
34871 delete them or import them. Additionally, you can view information
34872 about your public certificate, such as the issuer and the dates of validity
34873 of such certificate, among others.
34876 If you have more than one e-mail address for which you want to use the 
34877 same private key, you must add all those addresses to the private key at 
34878 the moment that the key is generated. When you receive a signed message using 
34879 a key generated for several e-mail addresses, Alpine will save a 
34880 certificate for each e-mail address included in such certificate.
34882 The <B>I</B> Import command available in this screen allows you to 
34883 import a command to this collection.
34885 <UL>   
34886 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34887 </UL><P>
34889 <UL>   
34890 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34891 </UL><P>
34892 &lt;End of help on this topic&gt;
34893 </BODY>
34894 </HTML>
34895 ====== h_config_smime_certificate_authorities =====
34896 <HTML>
34897 <HEAD>
34898 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
34899 </HEAD>
34900 <BODY>
34901 <H1>S/MIME: Manage Certificate Authorities</H1>
34903 UNIX Alpine only.
34905 This collection contains certificates that are needed to validate the 
34906 certificate of another person, and therefore contains certificates that 
34907 you trust. Typically a certificate is signed by another entity, called a 
34908 certificate authority. This option allows you to manage which certificates 
34909 you trust, allowing you to import them and to delete them or view information
34910 about each certificate, such as the issuer and the dates of validity
34911 of such certificate.
34913 The <B>I</B> Import command available in this screen allows you to 
34914 import a command to this collection.
34916 <UL>   
34917 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34918 </UL><P>
34920 <UL>   
34921 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34922 </UL><P>
34923 &lt;End of help on this topic&gt;
34924 </BODY>
34925 </HTML>
34926 ====== h_certificate_information =====
34927 <HTML>
34928 <HEAD>
34929 <TITLE>S/MIME: Certificate Information Screen</TITLE>
34930 </HEAD>
34931 <BODY>
34932 <H1>S/MIME: Certificate Information Screen</H1>
34934 UNIX Alpine only.
34936 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
34937 such as its owner, e-mail address, issuer, and interval of validity, 
34938 among others.
34940 In the case of public certificates, this screen shows you if there was a
34941 failure when attempting to validate such message. If the certificate is
34942 self-signed, then the <B>T</B> Trust command will be available, which
34943 you can use to trust such certificate and make Alpine not fail validating 
34944 signatures signed with such certificate.
34946 You can also mark a certificate deleted, with the <B>D</B> command, or 
34947 remove the deleted mark with the <B>U</B> undelete command.
34949 In the case of your private key, Alpine shows you the information
34950 from your public key. Additionally, Alpine allows you to see public
34951 and private information about your key, with the <B>B</B> and
34952 <B>R</B> commands respectively.
34953 <UL>   
34954 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34955 </UL><P>
34957 <UL>   
34958 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34959 </UL><P>
34960 &lt;End of help on this topic&gt;
34961 </BODY>
34962 </HTML>
34963 ====== h_config_smime_manage_public_menu =====
34964 <HTML>
34965 <HEAD>
34966 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
34967 </HEAD>
34968 <BODY>
34969 <H1>S/MIME: Commands that Manage Public Certificates</H1>
34971 UNIX Alpine only.
34973 This screen allows you to manage your public certificates. Available commands and
34974 a short description of what they do follows.
34975 <UL>
34976 <LI> <B>I</B> Imports a public certificate to this collection.
34977 <LI> <B>V</B> View information about a certificate such as the name of the person the
34978 certificate was issued to, its dates of validity, and validity status.
34979 <LI> <B>D</B> Marks a certificate deleted.
34980 <LI> <B>U</B> Removes the deletion mark on a certificate.
34981 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
34982 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
34983 trust a certificate by copying it to the collection of trusted certificates.
34984 </UL>
34986 All commands provide feedback to let you know about their success or failure.
34988 <UL>   
34989 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
34990 </UL><P>
34992 <UL>   
34993 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34994 </UL><P>
34995 &lt;End of help on this topic&gt;
34996 </BODY>
34997 </HTML>
34998 ====== h_config_smime_manage_private_menu =====
34999 <HTML>
35000 <HEAD>
35001 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
35002 </HEAD>
35003 <BODY>
35004 <H1>S/MIME: Commands that Manage Private Keys</H1>
35006 UNIX Alpine only.
35008 This screen allows you to manage your private key. Available commands and
35009 a short description of what they do follows.
35010 <UL>
35011 <LI> <B>I</B> Imports a new public key to this collection.
35012 <LI> <B>V</B> View information about the public certificate corresponding to this
35013 key.
35014 <LI> <B>D</B> Marks a key to be deleted.
35015 <LI> <B>U</B> Removes the deletion mark on a key.
35016 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
35017 Note that expunging a private key does not remove the public key, which must
35018 be removed separately.
35019 </UL>
35021 All commands provide feedback to let you know about their success or failure.
35023 <UL>   
35024 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35025 </UL><P>
35027 <UL>   
35028 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35029 </UL><P>
35030 &lt;End of help on this topic&gt;
35031 </BODY>
35032 </HTML>
35033 ====== h_config_smime_manage_cacerts_menu =====
35034 <HTML>
35035 <HEAD>
35036 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
35037 </HEAD>
35038 <BODY>
35039 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
35041 UNIX Alpine only.
35043 This screen allows you to manage your collection of certificates that you
35044 trust. Available commands and a short description of what they do follows.
35045 <UL>
35046 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
35047 done by reading the certificate and validating it. Once a certificate
35048 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
35049 to the certificate, if necessary.
35050 <LI> <B>V</B> View information about this certificate, such as its issuer 
35051 and validity dates.
35052 <LI> <B>D</B> Marks a certificate to be deleted.
35053 <LI> <B>U</B> Removes the deletion mark on a certificate.
35054 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35055 </UL>
35057 All commands provide feedback to let you know about their success or failure.
35059 <UL>
35060 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35061 </UL><P>
35063 <UL>   
35064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35065 </UL><P>
35066 &lt;End of help on this topic&gt;
35067 </BODY>
35068 </HTML>
35069 ====== h_config_lame_list_mode =====
35070 <HTML>
35071 <HEAD>
35072 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
35073 </HEAD>
35074 <BODY>
35075 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
35077 This feature modifies the method Alpine uses to ask your IMAP
35078 server for folder names to display in the FOLDER LIST screen.
35079 It is intended to compensate for a small set of IMAP servers that
35080 are programmed to ignore a part of the request, and thus respond
35081 to Alpine's query with nonsensical results.
35084 If you find that Alpine is erroneously displaying blank folder lists,
35085 try enabling this feature.
35088 NOTE: Enabling this feature has consequences for the Goto and Save
35089 commands.  Many servers allow access to folders outside the area
35090 reserved for your personal folders via some reserved character,
35091 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
35092 allows, at the Goto and Save prompts, quick access to folders
35093 outside your personal folder collection without requiring a specific
35094 collection definition.  This behavior will generally not be available
35095 when this feature is enabled.
35098 <UL>   
35099 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35100 </UL><P>
35101 &lt;End of help on this topic&gt;
35102 </BODY>
35103 </HTML>
35104 ====== h_config_enable_mulnewsrcs =====
35105 <HTML>
35106 <HEAD>
35107 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
35108 </HEAD>
35109 <BODY>
35110 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
35112 This feature makes it so Alpine can use multiple newsrcs based on
35113 the news server being connected to, which allows for separate lists
35114 of subscribed-to newsgroups. When this feature is not set, there is only
35115 one list of newsgroups.
35117 Under this feature, the name of a newsrc is based on the news server.
35118 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
35119 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
35120 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
35121 Setting this feature for the first time will allow for the option of using
35122 your old newsrc the next time you read news.
35124 If this feature is set, then the feature
35125 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
35126 also may affect the name of the newsrc file that is used.
35128 <UL>   
35129 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35130 </UL><P>
35131 &lt;End of help on this topic&gt;
35132 </BODY>
35133 </HTML>
35134 ======= h_ab_export_vcard =======
35135 <HTML>
35136 <HEAD>
35137 <TITLE>Address Book Export Format</TITLE>
35138 </HEAD>
35139 <BODY>
35140 <H1>Address Book Export Format</H1>
35142 You are exporting address book data from Alpine to a file outside of Alpine.
35143 You are being asked to choose the format of the export.
35144 Here are the choices:
35146 <DL>
35147 <DT><EM>A</EM>ddress List</DT>
35148 <DD>
35149 The addresses from the address book entries you are saving
35150 from will be saved one address per line.
35151 Address book lists (those with more than one address) will have
35152 all of their addresses saved separately.
35153 </DD>
35155 <DT><EM>V</EM>Card</DT>
35156 <DD>
35157 The entries will be saved in
35158 <A HREF="h_whatis_vcard">vCard</A> format.
35159 </DD>
35161 <DT><EM>T</EM>ab Separated</DT>
35162 <DD>
35163 The entries will be saved in tab-separated columns.
35164 There will be just 4 columns of data that correspond to Alpine's
35165 Nickname field, Full Name field, Address field, and Comment field.
35166 It might prove useful to Select only the Simple, non-List address book
35167 entries before Saving.
35168 </DD>
35170 <DT><EM>^C</EM> Cancel</DT>
35171 <DD>
35172 Cancel out of the Save.
35173 </DD>
35175 </DL>
35179 &lt;End of help on this topic&gt;
35180 </BODY>
35181 </HTML>
35182 ====== h_config_predict_nntp_server =====
35183 <HTML>
35184 <HEAD>
35185 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
35186 </HEAD>
35187 <BODY>
35188 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
35190 This feature allows Alpine to assume that the open NNTP server at the
35191 time of composition is the NNTP server to which the message should be
35192 posted.  This is especially recommended when there are multiple News
35193 collections.  If this feature is not set, Alpine will try to post to the first server in
35194 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
35195 this feature also negates the need to add News collection servers to
35196 the <!--#echo var="VAR_nntp-server"--> variable.
35198 This feature can be especially handy when used in conjunction with
35199 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
35201 <UL>   
35202 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35203 </UL><P>
35204 &lt;End of help on this topic&gt;
35205 </BODY>
35206 </HTML>
35207 ====== h_config_nntp_search_uses_overview =====
35208 <HTML>
35209 <HEAD>
35210 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
35211 </HEAD>
35212 <BODY>
35213 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
35215 This feature should probably be turned on unless it causes trouble.
35216 The results of the NNTP overview command (XOVER) may be used to help
35217 with some searches in news groups.
35218 It should result in quicker response time.
35219 Turning this feature on apparently causes search results which are
35220 different from what you would get with the feature turned off on some
35221 servers.
35223 <UL>   
35224 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35225 </UL><P>
35226 &lt;End of help on this topic&gt;
35227 </BODY>
35228 </HTML>
35229 ====== h_config_thread_sorts_by_arrival =====
35230 <HTML>
35231 <HEAD>
35232 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
35233 </HEAD>
35234 <BODY>
35235 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
35237 This feature affects how a threading sort arranges threads.  The default way
35238 to arrange threads is by the date of the earliest message in the thread.
35239 This feature arranges threads by the last message to arrive in a thread.
35241 This feature causes old threads that get recent messages to sort to the bottom,
35242 where previously a message arrival to a thread would not rearrange the order of
35243 that thread.
35245 <UL>   
35246 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35247 </UL><P>
35248 &lt;End of help on this topic&gt;
35249 </BODY>
35250 </HTML>
35251 ====== h_config_textplain_int =====
35252 <HTML>
35253 <HEAD>
35254 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
35255 </HEAD>
35256 <BODY>
35257 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
35259 This feature modifies the method Alpine uses to display Text/Plain
35260 MIME attachments from the Attachment Index screen.  Normally, the
35261 &quot;View&quot; command searches for any externally defined (usually
35262 via the
35263 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
35264 and displays the selected text within that viewer.
35267 Enabling this feature causes Alpine to ignore any external viewer
35268 settings and always display text with Alpine's internal viewer.
35271 <UL>   
35272 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35273 </UL><P>
35274 &lt;End of help on this topic&gt;
35275 </BODY>
35276 </HTML>
35277 ====== h_config_wp_columns =====
35278 <HTML>
35279 <HEAD>
35280 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
35281 </HEAD>
35282 <BODY>
35283 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
35285 Web Alpine only.
35287 This configuration setting specifies the number of horizontal characters
35288 used to format various WebAlpine pages.  Smaller values will tend to reduce
35289 the amount of horizontal scrolling required to view pages within narrow
35290 browsers, such as those found on PDAs, and larger values will tend to 
35291 spread more information across the page.
35294 The Message List page uses the width to determine how many characters
35295 to assign each field.  Note, a smaller value may result in a disproportionate
35296 amount of blank space between fields on each line.  Similarly, a large
35297 value may result in cramped fields or horizontal scrolling.
35300 The Message View page uses this value to determine when to wrap lines
35301 in displayed message text.  Note, a smaller value may result in jagged
35302 right margins or confusing quoting.  A larger value may cause lines of text to
35303 run beyond the browser's right edge, requiring horizontal scrolling.
35306 <UL>   
35307 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35308 </UL><P>
35309 &lt;End of help on this topic&gt;
35310 </BODY>
35311 </HTML>
35312 ====== h_config_wp_state =====
35313 <HTML>
35314 <HEAD>
35315 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
35316 </HEAD>
35317 <BODY>
35318 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
35320 Web Alpine only.
35322 Various aspects of cross-session state.
35325 <UL>   
35326 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35327 </UL><P>
35328 &lt;End of help on this topic&gt;
35329 </BODY>
35330 </HTML>
35331 ====== h_config_wp_aggstate =====
35332 <HTML>
35333 <HEAD>
35334 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
35335 </HEAD>
35336 <BODY>
35337 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
35339 Web Alpine only.
35341 Aggregate operations tab state.
35344 <UL>   
35345 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35346 </UL><P>
35347 &lt;End of help on this topic&gt;
35348 </BODY>
35349 </HTML>
35350 ====== h_config_wp_indexlines =====
35351 <HTML>
35352 <HEAD>
35353 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
35354 </HEAD>
35355 <BODY>
35356 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
35358 Web Alpine only.
35360 Number of index lines in table.
35363 <UL>   
35364 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35365 </UL><P>
35366 &lt;End of help on this topic&gt;
35367 </BODY>
35368 </HTML>
35369 ====== h_config_wp_indexheight =====
35370 <HTML>
35371 <HEAD>
35372 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
35373 </HEAD>
35374 <BODY>
35375 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
35377 Web Alpine only.
35379 Index table row height.
35382 <UL>   
35383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35384 </UL><P>
35385 &lt;End of help on this topic&gt;
35386 </BODY>
35387 </HTML>
35388 ====== h_config_rss_news =====
35389 <HTML>
35390 <HEAD>
35391 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
35392 </HEAD>
35393 <BODY>
35394 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
35396 Web Alpine only.
35398 RSS News feed.
35401 <UL>   
35402 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35403 </UL><P>
35404 &lt;End of help on this topic&gt;
35405 </BODY>
35406 </HTML>
35407 ====== h_config_rss_weather =====
35408 <HTML>
35409 <HEAD>
35410 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
35411 </HEAD>
35412 <BODY>
35413 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
35415 Web Alpine only.
35417 RSS Weather feed.
35420 <UL>   
35421 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35422 </UL><P>
35423 &lt;End of help on this topic&gt;
35424 </BODY>
35425 </HTML>
35426 ====== h_config_send_confirms_only_expanded =====
35427 <HTML>
35428 <HEAD>
35429 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
35430 </HEAD>
35431 <BODY>
35432 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
35434 This Web Alpine option specifies whether or not a Send confirmations
35435 happens when a composed message is readied for sending or not.  The
35436 default behavior is to not confirm that the nicknames were expanded to
35437 the intended addresses.
35440 <UL>   
35441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35442 </UL><P>
35443 &lt;End of help on this topic&gt;
35444 </BODY>
35445 </HTML>
35446 ====== h_config_enable_jump_command =====
35447 <HTML>
35448 <HEAD>
35449 <TITLE>FEATURE: enable-jump-command</TITLE>
35450 </HEAD>
35451 <BODY>
35452 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
35454 This Web Alpine option specifies whether or not a Jump command is
35455 offered in the Message List and Message View pages.  The command is
35456 implemented as an input field in the left column of the List and View
35457 screens. 
35460 When enabled and a number is entered in the input field while the
35461 Message List is displayed, the Message List is reframed with the
35462 specified message.  While viewing a message, the message associated
35463 with the specified message number is displayed.
35466 <UL>   
35467 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35468 </UL><P>
35469 &lt;End of help on this topic&gt;
35470 </BODY>
35471 </HTML>
35472 ====== h_config_enable_newmail_sound =====
35473 <HTML>
35474 <HEAD>
35475 <TITLE>FEATURE: enable-newmail-sound</TITLE>
35476 </HEAD>
35477 <BODY>
35478 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
35480 This Web Alpine option specifies whether or not a sound file is sent
35481 to the web browser along with the newmail notification message.
35485 <UL>   
35486 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35487 </UL><P>
35488 &lt;End of help on this topic&gt;
35489 </BODY>
35490 </HTML>
35491 ====== h_config_render_html_internally =====
35492 <HTML>
35493 <HEAD>
35494 <TITLE>FEATURE: render-html-internally</TITLE>
35495 </HEAD>
35496 <BODY>
35497 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
35499 By default, Web Alpine will pass cleansed HTML text you receive in messages 
35500 to the browser for display (rendering).  This feature causes Web Alpine to convert 
35501 the HTML text into plain text in the same way Unix and PC-Alpine do.
35505 <UL>   
35506 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35507 </UL><P>
35508 &lt;End of help on this topic&gt;
35509 </BODY>
35510 </HTML>
35511 ====== h_config_role_undo =====
35512 Yes, remember changes and exit back to list of roles; No, discard changes
35513 made in this screen; ^C, cancel exit and stay in this config screen.
35514 ====== h_exit_editor =====
35515 S, save changes and exit from the editor; D, do not save changes but
35516 do exit from the editor; or ^C, cancel exit and stay in the editor.
35517 ====== h_config_undo =====
35518 Yes, save changes and exit; No, exit without saving any changes made since
35519 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
35520 ====== h_os_index_whereis =====
35521 Enter ^V or ^Y to go immediately to the last or first message in the index.
35522 Or, enter the match string followed by RETURN.
35523 ====== h_os_index_whereis_agg =====
35524 Enter ^V or ^Y to go immediately to the last or first message in the index,
35525 Or, enter the match string followed by RETURN (or ^X to select all matches).
35526 =========== h_oe_add_full ==================
35527 Type the full name of the person being added and press the RETURN key.
35528 Press ^C to cancel addition.
35529 =========== h_oe_add_nick ==================
35530 Type a short nickname and press RETURN.  A nickname is a short easy-to-
35531 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
35532 ========== h_oe_add_addr ================
35533 Type the e-mail address and press RETURN.
35534 Press ^C to cancel addition.
35535 ========== h_oe_crlst_full ==============
35536 Type a long name or description for the list that you are creating and
35537 press RETURN.  Press ^C to cancel creation of list.
35538 =========== h_oe_crlst_nick =============
35539 Type a nickname (short, easy-to-remember name or single word) for the list
35540 you are creating and press RETURN.  Press ^C to cancel.
35541 ========== h_oe_crlst_addr ==============
35542 Type an e-mail address, or a nickname already in the address book that you
35543 want to be part of this list and press RETURN.
35544 ========== h_oe_adlst_addr =============
35545 Type an e-mail address or a nickname already in the address book that you
35546 want to add to this list and press RETURN.
35547 ========== h_oe_editab_nick ============
35548 Change the nickname using the arrow keys and delete key.  Press RETURN
35549 when done.  Press ^C to cancel editing and leave the nickname as it was.
35550 ========== h_oe_editab_full ============
35551 Change the full name using the arrow keys and delete key.  Press RETURN
35552 when done.  Press ^C to cancel editing and leave the full name as it was.
35553 ========== h_oe_editab_addr ============
35554 Change the address using the arrow keys and delete key.  Press RETURN
35555 when done.  Press ^C to cancel editing and leave the address as it was.
35556 ========== h_oe_editab_fcc ============
35557 Change the fcc using the arrow keys and delete key.  Press RETURN when
35558 done.  Press ^C to cancel editing and leave the fcc as it was.
35559 ========== h_oe_editab_comment ============
35560 Change the comment field using the arrow keys and delete key.  Press RETURN
35561 when done.  Press ^C to cancel editing and leave the comment as it was.
35562 ====== h_ab_forward =====
35563 Yes, expand nicknames and qualify local names with your current domain name;
35564 No, leave nicknames and local names as is;  ^C, cancel.
35565 ========== h_ab_export ==========
35566 Type the name of a file to write the addresses into and
35567 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
35568 ========== h_ab_edit_a_field ==========
35569 Edit any of the fields of the currently selected entry by typing one of the
35570 letters at the bottom of the screen.  Press ^C to cancel edit.
35571 ====== h_ab_del_data_revert =====
35572 Press B to completely delete addrbook and revert to default, C to delete config
35573 and revert while leaving data, or D to only delete data (make it empty).
35574 ====== h_ab_del_data_modify =====
35575 Press B to completely delete addrbook, C to delete configuration while leaving
35576 data, or D to delete data (make it empty) but leave config. ^C to cancel.
35577 ====== h_ab_del_config_modify =====
35578 Yes, remove this address book from my configuration.
35579 No, make no changes now.
35580 ====== h_ab_del_config_revert =====
35581 Yes, remove this address book from my config and revert to default.
35582 No, make no changes now.
35583 ====== h_ab_del_default =====
35584 Yes, remove this default address book from my configuration.
35585 No, make no changes now.
35586 ====== h_ab_really_delete =====
35587 Yes, delete the actual contents of the address book, not just the 
35588 configuration.  No, don't delete the data after all, cancel and start over.
35589 ====== h_ab_del_ignore =====
35590 Press I to ignore all the default address books for this category.  Press R to
35591 remove this one address book and add the others to your personal list.
35592 ====== h_ab_del_dir_ignore =====
35593 Press I to ignore all the default directory servers for this category.
35594 Press R to remove this one server and add the others to your personal list.
35595 ====== h_ab_copy_dups =====
35596 Yes, overwrite the existing entry.
35597 No, skip duplicates but save the rest. Press ^C to cancel.
35598 ====== h_confirm_cancel =====
35599 Type C to Confirm that you want to abandon the message you are composing.
35600 Type N or ^C to cancel out of the cancel and keep composing.
35601 ====== h_ab_text_or_vcard =====
35602 Text, start composer with displayed text already included.
35603 VCard, start composer with address book entry attached as a vCard. ^C cancels.
35604 ====== h_ab_backup_or_ldap =====
35605 Backup, copy email address from entry and allow editing of it.
35606 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
35607 ====== h_ldap_text_or_vcard =====
35608 Text: export displayed text for selected entry. Address: export only the
35609 email address. VCard: export entry in vCard format. ^C cancels.
35610 ====== h_ab_save_exp =====
35611 Save, save entry or entries to an address book.
35612 Export, save to file outside of pine. ^C cancels save.
35613 ====== h_ab_add =====
35614 A, add a brand new entry to this address book.
35615 E, edit the entry that is currently highlighted. ^C to cancel.
35616 ====== h_ab_shuf =====
35617 U, swap order of highlighted address book and the one above it.
35618 D, swap order of highlighted address book and the one below it. ^C to cancel.
35619 ====== h_ab_shuf_up =====
35620 U, swap order of highlighted address book and the one above it.
35621 Press ^C to cancel.
35622 ====== h_ab_shuf_down =====
35623 D, swap order of highlighted address book and the one below it.
35624 Press ^C to cancel.
35625 ====== h_folder_prop =====
35626 Count is # of messages in the folder, Unseen means messages that have not
35627 been read, New means messages that were Recently added to the folder.
35628 ====== h_role_shuf =====
35629 U, swap order of highlighted rule and the one above it.
35630 D, swap order of highlighted rule and the one below it. ^C to cancel.
35631 ====== h_role_shuf_up =====
35632 U, swap order of highlighted rule and the one above it.
35633 Press ^C to cancel.
35634 ====== h_role_shuf_down =====
35635 D, swap order of highlighted rule and the one below it.
35636 Press ^C to cancel.
35637 ====== h_incoming_shuf =====
35638 B, swap order of highlighted directory and the one before it.
35639 F, swap order of highlighted directory and the one after it. ^C to cancel.
35640 ====== h_incoming_shuf_up =====
35641 B, swap order of highlighted directory and the one before it.
35642 Press ^C to cancel.
35643 ====== h_incoming_shuf_down =====
35644 F, swap order of highlighted directory and the one after it.
35645 Press ^C to cancel.
35646 ====== h_dir_shuf =====
35647 U, swap order of highlighted directory and the one above it.
35648 D, swap order of highlighted directory and the one below it. ^C to cancel.
35649 ====== h_dir_shuf_up =====
35650 U, swap order of highlighted directory and the one above it.
35651 Press ^C to cancel.
35652 ====== h_dir_shuf_down =====
35653 D, swap order of highlighted directory and the one below it.
35654 Press ^C to cancel.
35655 ====== h_hdrcolor_shuf =====
35656 U, swap order of highlighted Header Color and the one above it.
35657 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
35658 ====== h_hdrcolor_shuf_up =====
35659 U, swap order of highlighted Header Color and the one above it.
35660 Press ^C to cancel.
35661 ====== h_hdrcolor_shuf_down =====
35662 D, swap order of highlighted Header Color and the one below it.
35663 Press ^C to cancel.
35664 ========== h_oe_editab_al ============
35665 Change the address using the arrow keys and delete key.  Press RETURN
35666 when done.  Press ^C to cancel editing and leave the address as it was.
35667 ========== h_dir_comp_search ===============
35668 Type a string to look for just like you would in the composer. Your configured
35669 rules for the servers with the implicit flag set will be used.
35670 ========== h_oe_searchab ===============
35671 Type the word or name you want to search for and press RETURN.  If you press
35672 RETURN without entering anything the word in [] will be searched for.
35673 ========== h_oe_chooseabook ==========
35674 Choose the address book you want to save the new entry in.
35675 Use ^N or ^P to change address books.  ^C to cancel.
35676 ========== h_oe_takeaddr ==========
35677 Edit the e-mail address using the arrow and delete keys.  Press RETURN
35678 when done.  Press ^C to cancel adding this entry to the address book.
35679 ========== h_oe_take_replace ==========
35680 Press R to replace the old entry with this new data.  You will still have
35681 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
35682 ========== h_oe_take_replace_or_add ==========
35683 Press R to replace the old entry.  Press A to add the selected addresses to
35684 the old existing list.  N to enter another nickname. ^C to cancel now.
35685 ========== h_oe_takename ==========
35686 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
35687 when done.  Press ^C to cancel adding this entry to the address book.
35688 ========== h_oe_takenick ==========
35689 Type a nickname (short easy-to-remember name, initials or single word) for this
35690 entry in the address book and press RETURN.  Press ^C to cancel addition.
35691 ========== h_oe_jump ==========
35692 Type the message number you want to jump to and press RETURN.  The word "end"
35693 represents the last message. Press ^C to cancel jumping to another message.
35694 ========== h_oe_jump_thd ==========
35695 Type the thread number you want to jump to and press RETURN.  The word "end"
35696 represents the last thread. Press ^C to cancel jumping to another thread.
35697 ========== h_oe_debuglevel ==========
35698 Higher number shows more debugging details.
35699 Press ^C if you want to cancel the change.
35700 ========== h_oe_broach ==========
35701 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
35702 to go to the previous/next collections in the list.  Press ^C to cancel goto.
35703 ========== h_oe_foldsearch ==========
35704 Type the text you want to search for in foldernames and press RETURN.  If you
35705 press RETURN without entering anything, any text in [] will be searched for.
35706 ========== h_oe_foldrename ==========
35707 Change the old name of the folder to the new name using the arrow and
35708 delete keys and press RETURN.  Press ^C to cancel rename.
35709 ========== h_oe_login ==========
35710 Enter your login name for the host you are opening the mailbox on.  Just press
35711 RETURN to use your login from this host as is, or edit it with delete key.
35712 ========== h_oe_passwd ==========
35713 Type your password for the host and login shown as part of the prompt.
35714 Press ^C to cancel opening folder.
35715 ========== h_oe_choosep ==========
35716 Enter the number associated with the printer you want to select.  Press ^C to
35717 cancel the printer selection.  The current selection is highlighted.
35718 ========== h_oe_customp ==========
35719 Type the name of the Unix print command and press RETURN.  Press ^C to
35720 cancel the printer selection.
35721 ========== h_oe_searchview ==========
35722 Type the word or name you want to search for and press RETURN.  If you press
35723 RETURN without entering anything the word in [] will be searched for.
35724 ========== h_oe_keylock ==========
35725 The keyboard is in use and locked by another user.  Only that user can
35726 unlock this keyboard by typing the password.
35727 ========== h_wt_expire ==========
35728 At the beginning of each month Alpine offers to rename your current sent-mail
35729 folder to one named for the month so you have a sent-mail folder for each month
35730 ========== h_wt_delete_old ==========
35731 It is the beginning of the month, and we need to conserve disk
35732 space.  Please delete any sent-mail that you do not need.
35733 ========== h_select_sort ==========
35734 Select the order for sorting the index by typing the capitalized letter.
35735 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
35736 ========== h_no_F_arg ============
35737 Enter name of file to be opened.
35739 ========== h_sticky_personal_name ==========
35740 Type in your name as you want it to appear on outgoing email.  This entry
35741 will be saved into your Alpine configuration file.
35742 ========== h_sticky_inbox ============
35743 INBOX syntax is usually {complete.machine.name}INBOX
35744 This entry will be saved in your Alpine configuration file.
35745 ========== h_sticky_smtp ============
35746 The name of the computer on your campus that relays your outgoing email
35747 to the Internet.  This entry will be saved in your Alpine configuration file.
35748 ========== h_sticky_user_id ==========
35749 The username or login-id part of your email address.  This entry will be
35750 saved in your Alpine configuration file.
35751 ========== h_sticky_domain ==========
35752 The domain part of your email address, NOT the name of your PC.  This
35753 entry will be saved in your Alpine configuration file.
35754 ========== h_bounce =========
35755 Enter the address or nickname of the intended recipient.  Alpine will resend
35756 the message, which will retain the original author's From: address.
35757 ========== h_incoming_add_folder_nickname =========
35758 Enter an (optional) nickname that will be used in lieu of the actual
35759 host and folder names in the FOLDER LIST display.
35760 ========== h_anon_forward ==========
35761 Enter the address of your intended recipient, or ^C to cancel.
35762 Example: jsmith@somewhere.edu
35763 ========== h_news_subscribe ==========
35764 Enter the name of the newsgroup to which you wish to subscribe,
35765 or ^C to cancel.  Example: comp.mail.pine
35766 ========== h_pipe_msg ==========
35767 Enter the name of the Unix command to which you wish to send this
35768 message, or ^C to cancel.
35769 ========== h_pipe_attach ==========
35770 Enter the name of the Unix command to which you wish to send this
35771 attachment, or ^C to cancel.
35772 ========== h_select_by_num ==========
35773 Enter a list of message numbers (or number ranges), or ^C to cancel.  The word
35774 "end" represents the last message. Example: 2-5,7-9,11,19,35-end
35775 ========== h_select_by_thrdnum ==========
35776 Enter a list of thread numbers (or number ranges), or ^C to cancel.  The word
35777 "end" represents the last thread. Example: 2-5,7-9,11,19,35-end
35778 ========== h_select_txt_from ==========
35779 Messages with From: headers containing the entered string will be selected.
35780 ^C to cancel. ^G again to see original options.
35781 ========== h_select_txt_not_from ==========
35782 Messages without From: headers containing the entered string will be selected.
35783 ^C to cancel. ^G again to see original options.
35784 ========== h_select_txt_to ==========
35785 Messages with To: headers containing the entered string will be selected.
35786 ^C to cancel. ^G again to see original options.
35787 ========== h_select_txt_not_to ==========
35788 Messages without To: headers containing the entered string will be selected.
35789 ^C to cancel. ^G again to see original options.
35790 ========== h_select_txt_cc ==========
35791 Messages with Cc: headers containing the entered string will be selected.
35792 ^C to cancel. ^G again to see original options.
35793 ========== h_select_txt_not_cc ==========
35794 Messages without Cc: headers containing the entered string will be selected.
35795 ^C to cancel. ^G again to see original options.
35796 ========== h_select_txt_subj ==========
35797 Messages with Subject: headers containing the entered string will be selected.
35798 ^C to cancel.  ^X enters Subject: line of current message.
35799 ========== h_select_txt_not_subj ==========
35800 Messages without Subject headers containing the entered string will be selected.
35801 ^C to cancel.  ^X enters Subject: line of current message.
35802 ========== h_select_txt_all ==========
35803 All messages containing the entered string will be selected.  Headers and body,
35804 but not encoded attachments, will be compared.  Enter ^C to cancel.
35805 ========== h_select_txt_not_all ==========
35806 All messages that don't contain the entered string will be selected.  Headers
35807 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
35808 ========== h_select_txt_body ==========
35809 All messages containing the entered string will be selected. Body text, but
35810 not headers or encoded attachments, will be compared. ^C to cancel.
35811 ========== h_select_txt_not_body ==========
35812 All messages that don't contain the entered string will be selected. Body
35813 text, but not headers or encoded attachments, will be compared. ^C to cancel.
35814 ========== h_select_txt_recip ==========
35815 Messages with Cc: or To: headers containing the entered string will be selected.
35816 ^C to cancel. ^G again to see original options.
35817 ========== h_select_txt_not_recip ==========
35818 Messages without Cc: or To: headers containing the string will be selected.
35819 ^C to cancel. ^G again to see original options.
35820 ========== h_select_txt_partic ==========
35821 Messages with Cc, To, or From headers containing the string will be selected.
35822 ^C to cancel. ^G again to see original options.
35823 ========== h_select_txt_not_partic ==========
35824 Messages without Cc, To, or From headers containing the string will be selected.
35825 ^C to cancel. ^G again to see original options.
35826 ========== h_select_date ==========
35827 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
35828 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
35829 ========== h_attach_index_whereis ==========
35830 Enter some text that appears in the Attachment Index entry for the desired
35831 attachment.  The first attachment containing that text will be highlighted.
35832 ========== h_kb_lock ==========
35833 Keystrokes entered here (up to a RETURN) comprise a password that must
35834 be entered again later in order to unlock the keyboard.
35835 ========== h_compose_default ==========
35836 N, compose a new message. R, set a role.
35837 ^C to cancel.
35838 ========== h_untranslatable ==========
35839 Send using UTF-8 character set; Send but replace untranslatable characters
35840 with question marks; return to the composer; or cancel message altogether.
35841 ========== h_compose_intrptd ==========
35842 N, compose a new msg. I, continue interrupted msg. R, set a role.
35843 ^C to cancel.
35844 ========== h_compose_postponed ==========
35845 N, compose a new message. P, continue postponed msg. R, set a role.
35846 ^C to cancel.
35847 ========== h_compose_intrptd_postponed ==========
35848 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
35849 R, set a role. ^C to cancel.
35850 ========== h_compose_form ==========
35851 N, compose a new message. F, use form letter. R, set a role.
35852 ^C to cancel.
35853 ========== h_compose_intrptd_form ==========
35854 N, compose a new msg. I, continue interrupted msg. F, use form letter.
35855 R, set a role. ^C to cancel.
35856 ========== h_compose_postponed_form ==========
35857 N, compose a new message. P, continue postponed msg. F, use form letter.
35858 R, set a role. ^C to cancel.
35859 ========== h_compose_intrptd_postponed_form ==========
35860 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
35861 F, use form letter. R, set a role. ^C to cancel.
35862 ========== h_config_context_del_except ==========
35863 If you delete the last exceptional collection you can only add it back by
35864 manually editing the exceptions config file.
35865 ========== h_config_whereis ==========
35866 To move quickly to a particular line, enter a search string or
35867 ^C to cancel.
35868 ========== h_config_edit_scorei ==========
35869 Enter interval in the form (min,max). -INF and INF may be used to represent
35870 -infinity and infinity. ^C to cancel change. RETURN to accept change.
35871 ========== h_config_add ==========
35872 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
35873 pressing RETURN sets the Empty Value (this turns off any global default).
35874 ========== h_config_add_custom_color ==========
35875 Enter a header fieldname. For example, "subject" or "from".
35877 ========== h_config_add_pat_hdr ==========
35878 Enter a header fieldname. For example, "reply-to" or "organization" or
35879 any fieldname you want that isn't included already.
35880 ========== h_config_print_opt_choice ==========
35881 You may edit either the initialization string (characters printed before
35882 printing starts) or the trailer string.  Choose one or ^C to cancel.
35883 ========== h_config_print_init ==========
35884 Enter a C-style string for this.  You may use common backslash escapes like
35885 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
35886 ========== h_config_change ==========
35887 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
35888 delete current (highlighted) character, etc.  Enter ^C to cancel change.
35889 ========== h_config_replace_add ==========
35890 Replace ignores the current default, Add places the current default in your
35891 editing buffer as if you had typed it in.
35892 ========== h_config_insert_after ==========
35893 Enter a nickname for this print command.  (InsertBefore puts the new item
35894 before the current line, InsertAfter puts it after the current line.)
35895 ========== h_config_print_cmd ==========
35896 Enter command to be executed for the printer.  Use normal editing keys
35897 to modify, ^C to cancel, carriage return to accept current value.
35898 ========== h_config_role_del ==========
35899 Answering Yes will remove this rule completely from your rules list.
35900 ========== h_config_role_addfile ==========
35901 Type the name of a file to add to your configuration. You don't need to
35902 use a file, you may add rules directly (with Add) without using a file.
35903 ========== h_config_role_delfile ==========
35904 Answering Yes will remove this rule file completely from your rules list.
35905 The rules data file itself will not be removed.
35906 ========== h_config_print_del ==========
35907 Answering Yes will remove this printer completely from your printer list.
35908 ========== h_config_print_name_cmd ==========
35909 You may edit the Nickname of this printer, the Command to be executed when
35910 printing, or change the Options associated with this printer.
35911 ========== h_send_check_fcc ==========
35912 Yes, send message without an Fcc.
35913 No, return to composer.
35914 ========== h_send_check_subj ==========
35915 Yes, send message without a Subject.
35916 No, return to composer.
35917 ========== h_send_check_to_cc ==========
35918 Yes, send message without a To address, or a Cc address, or a Newsgroup.
35919 No, return to composer.
35920 ========== h_send_fcc_only ==========
35921 Yes, copy message to Fcc only and send to NO recipients.
35922 No, return to composer.
35923 ========== h_send_prompt ==========
35924 Yes, send the message.
35925 No or ^C, return to composer.
35926 ========== h_send_prompt_flowed ==========
35927 Yes, send the message.  No or ^C, return to composer.
35928 What's Flowed? See Do Not Send Flowed Text in config screen.
35929 ========== h_send_prompt_dsn ==========
35930 Yes, send the message.  No or ^C, return to composer.
35931 What's DSNOpts? See Enable Delivery Status Notification in config screen.
35932 ========== h_send_prompt_dsn_flowed ==========
35933 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
35934 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
35935 ========== h_role_confirm ==========
35936 Yes, use displayed role. No, compose without a role.
35937 ^C, cancel the message. ^T, select a role from your other eligible roles.
35938 ========== h_norole_confirm ==========
35939 Return, compose without a role.
35940 ^C, cancel the message. ^T, select a role from your eligible roles.
35941 ========== h_custom_print ==========
35942 Enter a Unix command that accepts its data on standard input.
35943 Alpine will display any information the command sends to standard output.
35944 ========== h_convert_abooks_and_sigs ==========
35945 You will be given the opportunity to convert address books and signature files
35946 to remote configurations.
35947 ========== h_convert_abooks ==========
35948 You will be given the opportunity to convert address books to remote
35949 configurations.
35950 ========== h_flag_keyword ==========
35951 Enter the name of the keyword you want to add for this folder.
35952 No spaces, parentheses, braces, percents or asterisks are allowed.
35953 ========== h_select_keyword ==========
35954 Enter the keyword you want to match, or use ^T to select a keyword from a list
35955 of possible keywords for this folder. Use ! to look for non-matches instead.
35956 ========== h_type_keyword ==========
35957 Enter the keyword you want to add. You may add a nickname in the next step.
35958 No spaces, parentheses, braces, percents or asterisks are allowed.
35959 ========== h_type_keyword_nickname ==========
35960 Enter an optional nickname for the keyword you want to add.
35961 Type Carriage return to use the keyword name instead of a nickname.
35962 ========== h_convert_sigs ==========
35963 You will be given the opportunity to convert signature files to remote
35964 configurations.
35965 ========== h_convert_abook ==========
35966 Yes is fairly safe. You will be ADDing a remote address book that is a copy
35967 of the current address book. The current abook won't be removed automatically.
35968 ========== h_convert_sig ==========
35969 Answering Yes copies the contents of the signature file into your Alpine
35970 configuration file. After that, the contents of the file will not be used.
35971 ========== h_save_addman ==========
35972 Enter the simple name of the folder you want to add. Carriage return to
35973 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
35974 ========== h_reopen_folder ==========
35975 Yes reopens the folder, as if you were starting over. This uncovers new mail.
35976 No leaves the folder index as it was without discovering new mail.
35977 ========== h_convert_pinerc_server ==========
35978 This is the name of the host (computer) where the remote Alpine configuration
35979 will be stored. This should be an IMAP server that you have permission to use.
35980 ========== h_convert_pinerc_folder ==========
35981 Enter the correct remote folder name. This folder is special and should
35982 contain only configuration data. It shouldn't contain other mail messages.
35983 ========== h_role_compose ==========
35984 Compose a New message, Reply to current message, Forward current message, or
35985 Bounce message. Then you will be asked to choose one of your Roles to be used.
35986 ========== h_save_size_changed ==========
35987 The reported size of a message is not the same as the actual size. Answer Yes
35988 to continue and hope for the best or No to Cancel the entire Save.
35989 ========== h_select_by_larger_size ==========
35990 Enter a number or ^C to cancel. All messages greater than this many characters
35991 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
35992 ========== h_select_by_smaller_size ==========
35993 Enter a number or ^C to cancel. All messages less than this many characters
35994 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
35995 ========== h_preserve_field ==========
35996 Use 'p' to toggle between preserving or not preserving the original To:
35997 and Cc: fields of the message. Enter ^C to cancel message.